OSDN Git Service

Moved the addition of load address from the fast path
[uclinux-h8/uClibc.git] / ldso / ldso / powerpc / dl-sysdep.h
1 /*
2  * Various assmbly language/system dependent  hacks that are required
3  * so that we can minimize the amount of platform specific code.
4  */
5
6 /*
7  * Define this if the system uses RELOCA.
8  */
9 #define ELF_USES_RELOCA
10 #include <elf.h>
11 /*
12  * Initialization sequence for a GOT.
13  */
14 #define INIT_GOT(GOT_BASE,MODULE)  _dl_init_got(GOT_BASE,MODULE)
15
16 /* Stuff for the PLT.  */
17 #define PLT_INITIAL_ENTRY_WORDS 18
18 #define PLT_LONGBRANCH_ENTRY_WORDS 0
19 #define PLT_TRAMPOLINE_ENTRY_WORDS 6
20 #define PLT_DOUBLE_SIZE (1<<13)
21 #define PLT_ENTRY_START_WORDS(entry_number) \
22   (PLT_INITIAL_ENTRY_WORDS + (entry_number)*2                           \
23    + ((entry_number) > PLT_DOUBLE_SIZE                                  \
24       ? ((entry_number) - PLT_DOUBLE_SIZE)*2                            \
25       : 0))
26 #define PLT_DATA_START_WORDS(num_entries) PLT_ENTRY_START_WORDS(num_entries)
27
28 /* Macros to build PowerPC opcode words.  */
29 #define OPCODE_ADDI(rd,ra,simm) \
30   (0x38000000 | (rd) << 21 | (ra) << 16 | ((simm) & 0xffff))
31 #define OPCODE_ADDIS(rd,ra,simm) \
32   (0x3c000000 | (rd) << 21 | (ra) << 16 | ((simm) & 0xffff))
33 #define OPCODE_ADD(rd,ra,rb) \
34   (0x7c000214 | (rd) << 21 | (ra) << 16 | (rb) << 11)
35 #define OPCODE_B(target) (0x48000000 | ((target) & 0x03fffffc))
36 #define OPCODE_BA(target) (0x48000002 | ((target) & 0x03fffffc))
37 #define OPCODE_BCTR() 0x4e800420
38 #define OPCODE_LWZ(rd,d,ra) \
39   (0x80000000 | (rd) << 21 | (ra) << 16 | ((d) & 0xffff))
40 #define OPCODE_LWZU(rd,d,ra) \
41   (0x84000000 | (rd) << 21 | (ra) << 16 | ((d) & 0xffff))
42 #define OPCODE_MTCTR(rd) (0x7C0903A6 | (rd) << 21)
43 #define OPCODE_RLWINM(ra,rs,sh,mb,me) \
44   (0x54000000 | (rs) << 21 | (ra) << 16 | (sh) << 11 | (mb) << 6 | (me) << 1)
45
46 #define OPCODE_LI(rd,simm)    OPCODE_ADDI(rd,0,simm)
47 #define OPCODE_ADDIS_HI(rd,ra,value) \
48   OPCODE_ADDIS(rd,ra,((value) + 0x8000) >> 16)
49 #define OPCODE_LIS_HI(rd,value) OPCODE_ADDIS_HI(rd,0,value)
50 #define OPCODE_SLWI(ra,rs,sh) OPCODE_RLWINM(ra,rs,sh,0,31-sh)
51
52
53 #define PPC_DCBST(where) asm volatile ("dcbst 0,%0" : : "r"(where) : "memory")
54 #define PPC_SYNC asm volatile ("sync" : : : "memory")
55 #define PPC_ISYNC asm volatile ("sync; isync" : : : "memory")
56 #define PPC_ICBI(where) asm volatile ("icbi 0,%0" : : "r"(where) : "memory")
57 #define PPC_DIE asm volatile ("tweq 0,0")
58
59 /* Here we define the magic numbers that this dynamic loader should accept */
60
61 #define MAGIC1 EM_PPC
62 #undef  MAGIC2
63 /* Used for error messages */
64 #define ELF_TARGET "powerpc"
65
66 struct elf_resolve;
67 extern unsigned long _dl_linux_resolver(struct elf_resolve * tpnt, int reloc_entry);
68 void _dl_init_got(unsigned long *lpnt,struct elf_resolve *tpnt);
69
70
71 #define do_rem(result, n, base) ((result) = (n) % (base))
72
73 /* 4096 bytes alignment */
74 #define PAGE_ALIGN 0xfffff000
75 #define ADDR_ALIGN 0xfff
76 #define OFFS_ALIGN 0x7ffff000
77
78 /* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry, so
79    PLT entries should not be allowed to define the value.
80    ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one
81    of the main executable's symbols, as for a COPY reloc.  */
82 /* We never want to use a PLT entry as the destination of a
83    reloc, when what is being relocated is a branch. This is
84    partly for efficiency, but mostly so we avoid loops.  */
85 #define elf_machine_type_class(type) \
86   ((((type) == R_PPC_JMP_SLOT                           \
87     || (type) == R_PPC_REL24                            \
88     || (type) == R_PPC_ADDR24) * ELF_RTYPE_CLASS_PLT)   \
89    | (((type) == R_PPC_COPY) * ELF_RTYPE_CLASS_COPY))
90
91 /* The SVR4 ABI specifies that the JMPREL relocs must be inside the
92    DT_RELA table.  */
93 #define ELF_MACHINE_PLTREL_OVERLAP 1
94
95 /* Return the link-time address of _DYNAMIC, stored as
96    the first value in the GOT. */
97 static inline Elf32_Addr
98 elf_machine_dynamic (void)
99 {
100   Elf32_Addr *got;
101   asm (" bl _GLOBAL_OFFSET_TABLE_-4@local"
102        : "=l"(got));
103   return *got;
104 }
105
106 /* Return the run-time load address of the shared object.  */
107 static inline Elf32_Addr
108 elf_machine_load_address (void)
109 {
110   unsigned int *got;
111   unsigned int *branchaddr;
112
113   /* This is much harder than you'd expect.  Possibly I'm missing something.
114      The 'obvious' way:
115
116        Apparently, "bcl 20,31,$+4" is what should be used to load LR
117        with the address of the next instruction.
118        I think this is so that machines that do bl/blr pairing don't
119        get confused.
120
121      asm ("bcl 20,31,0f ;"
122           "0: mflr 0 ;"
123           "lis %0,0b@ha;"
124           "addi %0,%0,0b@l;"
125           "subf %0,%0,0"
126           : "=b" (addr) : : "r0", "lr");
127
128      doesn't work, because the linker doesn't have to (and in fact doesn't)
129      update the @ha and @l references; the loader (which runs after this
130      code) will do that.
131
132      Instead, we use the following trick:
133
134      The linker puts the _link-time_ address of _DYNAMIC at the first
135      word in the GOT. We could branch to that address, if we wanted,
136      by using an @local reloc; the linker works this out, so it's safe
137      to use now. We can't, of course, actually branch there, because
138      we'd cause an illegal instruction exception; so we need to compute
139      the address ourselves. That gives us the following code: */
140
141   /* Get address of the 'b _DYNAMIC@local'...  */
142   asm ("bl 0f ;"
143        "b _DYNAMIC@local;"
144        "0:"
145        : "=l"(branchaddr));
146
147   /* ... and the address of the GOT.  */
148   asm (" bl _GLOBAL_OFFSET_TABLE_-4@local"
149        : "=l"(got));
150
151   /* So now work out the difference between where the branch actually points,
152      and the offset of that location in memory from the start of the file.  */
153   return ((Elf32_Addr)branchaddr - *got
154           + ((int)(*branchaddr << 6 & 0xffffff00) >> 6));
155 }
156
157 static inline void
158 elf_machine_relative (Elf32_Addr load_off, const Elf32_Addr rel_addr,
159                       Elf32_Word relative_count)
160 {
161          Elf32_Rela * rpnt = (void *)rel_addr;
162         --rpnt;
163         do {     /* PowerPC handles pre increment/decrement better */ 
164                 Elf32_Addr *const reloc_addr = (void *) (load_off + (++rpnt)->r_offset);
165
166                 *reloc_addr = load_off + rpnt->r_addend;
167         } while (--relative_count);
168 }