OSDN Git Service

- trim any trailing whitespace
[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 /* 4096 bytes alignment */
71 #define PAGE_ALIGN 0xfffff000
72 #define ADDR_ALIGN 0xfff
73 #define OFFS_ALIGN 0x7ffff000
74
75 /* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry, so
76    PLT entries should not be allowed to define the value.
77    ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one
78    of the main executable's symbols, as for a COPY reloc.  */
79 /* We never want to use a PLT entry as the destination of a
80    reloc, when what is being relocated is a branch. This is
81    partly for efficiency, but mostly so we avoid loops.  */
82 #define elf_machine_type_class(type) \
83   ((((type) == R_PPC_JMP_SLOT                           \
84     || (type) == R_PPC_REL24                            \
85     || (type) == R_PPC_ADDR24) * ELF_RTYPE_CLASS_PLT)   \
86    | (((type) == R_PPC_COPY) * ELF_RTYPE_CLASS_COPY))
87
88 /* The SVR4 ABI specifies that the JMPREL relocs must be inside the
89    DT_RELA table.  */
90 #define ELF_MACHINE_PLTREL_OVERLAP 1
91
92 /* Return the value of the GOT pointer.  */
93 static __inline__ Elf32_Addr * __attribute__ ((const))
94 ppc_got (void)
95 {
96         Elf32_Addr *got;
97 #ifdef HAVE_ASM_PPC_REL16
98         __asm__ ("      bcl 20,31,1f\n"
99              "1:mflr %0\n"
100              "  addis %0,%0,_GLOBAL_OFFSET_TABLE_-1b@ha\n"
101              "  addi %0,%0,_GLOBAL_OFFSET_TABLE_-1b@l\n"
102              : "=b" (got) : : "lr");
103 #else
104         __asm__ (" bl _GLOBAL_OFFSET_TABLE_-4@local"
105              : "=l" (got));
106 #endif
107         return got;
108 }
109
110 /* Return the link-time address of _DYNAMIC, stored as
111    the first value in the GOT. */
112 static __inline__ Elf32_Addr __attribute__ ((const))
113 elf_machine_dynamic (void)
114 {
115         return *ppc_got();
116 }
117
118 /* Return the run-time load address of the shared object.  */
119 static __inline__ Elf32_Addr __attribute__ ((const))
120 elf_machine_load_address (void)
121 {
122   Elf32_Addr *branchaddr;
123   Elf32_Addr runtime_dynamic;
124
125   /* This is much harder than you'd expect.  Possibly I'm missing something.
126      The 'obvious' way:
127
128        Apparently, "bcl 20,31,$+4" is what should be used to load LR
129        with the address of the next instruction.
130        I think this is so that machines that do bl/blr pairing don't
131        get confused.
132
133      __asm__ ("bcl 20,31,0f ;"
134           "0: mflr 0 ;"
135           "lis %0,0b@ha;"
136           "addi %0,%0,0b@l;"
137           "subf %0,%0,0"
138           : "=b" (addr) : : "r0", "lr");
139
140      doesn't work, because the linker doesn't have to (and in fact doesn't)
141      update the @ha and @l references; the loader (which runs after this
142      code) will do that.
143
144      Instead, we use the following trick:
145
146      The linker puts the _link-time_ address of _DYNAMIC at the first
147      word in the GOT. We could branch to that address, if we wanted,
148      by using an @local reloc; the linker works this out, so it's safe
149      to use now. We can't, of course, actually branch there, because
150      we'd cause an illegal instruction exception; so we need to compute
151      the address ourselves. That gives us the following code: */
152
153   /* Get address of the 'b _DYNAMIC@local'...  */
154   __asm__ ("bcl 20,31,0f;"
155        "b _DYNAMIC@local;"
156        "0:"
157        : "=l"(branchaddr));
158
159   /* So now work out the difference between where the branch actually points,
160      and the offset of that location in memory from the start of the file.  */
161   runtime_dynamic = ((Elf32_Addr) branchaddr
162                      + ((Elf32_Sword) (*branchaddr << 6 & 0xffffff00) >> 6));
163
164   return runtime_dynamic - elf_machine_dynamic ();
165 }
166
167 static __inline__ void
168 elf_machine_relative (Elf32_Addr load_off, const Elf32_Addr rel_addr,
169                       Elf32_Word relative_count)
170 {
171          Elf32_Rela * rpnt = (void *)rel_addr;
172         --rpnt;
173         do {     /* PowerPC handles pre increment/decrement better */
174                 Elf32_Addr *const reloc_addr = (void *) (load_off + (++rpnt)->r_offset);
175
176                 *reloc_addr = load_off + rpnt->r_addend;
177         } while (--relative_count);
178 }
179
180 #define ARCH_NUM 1
181 #define DT_PPC_GOT_IDX  (DT_NUM + OS_NUM)
182
183 #define ARCH_DYNAMIC_INFO(dpnt,  dynamic, debug_addr) \
184 do { \
185 if (dpnt->d_tag == DT_PPC_GOT) \
186      dynamic[DT_PPC_GOT_IDX] = dpnt->d_un.d_ptr; \
187 } while (0)