Update.
[glibc.git] / sysdeps / alpha / dl-machine.h
blobb63661f6f3ce52c5b487dd71e30ff3392bff5c19
1 /* Machine-dependent ELF dynamic relocation inline functions. Alpha version.
2 Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Richard Henderson <rth@tamu.edu>.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* This was written in the absence of an ABI -- don't expect
22 it to remain unchanged. */
24 #ifndef dl_machine_h
25 #define dl_machine_h 1
27 #define ELF_MACHINE_NAME "alpha"
29 #include <assert.h>
30 #include <string.h>
33 /* Return nonzero iff E_MACHINE is compatible with the running host. */
34 static inline int
35 elf_machine_matches_host (Elf64_Word e_machine)
37 return e_machine == EM_ALPHA;
40 /* Return the link-time address of _DYNAMIC. The multiple-got-capable
41 linker no longer allocates the first .got entry for this. But not to
42 worry, no special tricks are needed. */
43 static inline Elf64_Addr
44 elf_machine_dynamic (void)
46 #ifndef NO_AXP_MULTI_GOT_LD
47 return (Elf64_Addr) &_DYNAMIC;
48 #else
49 register Elf64_Addr *gp __asm__ ("$29");
50 return gp[-4096];
51 #endif
54 /* Return the run-time load address of the shared object. */
55 static inline Elf64_Addr
56 elf_machine_load_address (void)
58 /* NOTE: While it is generally unfriendly to put data in the text
59 segment, it is only slightly less so when the "data" is an
60 instruction. While we don't have to worry about GLD just yet, an
61 optimizing linker might decide that our "data" is an unreachable
62 instruction and throw it away -- with the right switches, DEC's
63 linker will do this. What ought to happen is we should add
64 something to GAS to allow us access to the new GPREL_HI32/LO32
65 relocation types stolen from OSF/1 3.0. */
66 /* This code relies on the fact that BRADDR relocations do not
67 appear in dynamic relocation tables. Not that that would be very
68 useful anyway -- br/bsr has a 4MB range and the shared libraries
69 are usually many many terabytes away. */
71 Elf64_Addr dot;
72 long zero_disp;
74 asm("br %0, 1f\n\t"
75 ".weak __load_address_undefined\n\t"
76 "br $0, __load_address_undefined\n"
77 "1:"
78 : "=r"(dot));
80 zero_disp = *(int *)dot;
81 zero_disp = (zero_disp << 43) >> 41;
83 return dot + 4 + zero_disp;
86 /* Set up the loaded object described by L so its unrelocated PLT
87 entries will jump to the on-demand fixup code in dl-runtime.c. */
89 static inline int
90 elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
92 Elf64_Addr plt;
93 extern void _dl_runtime_resolve (void);
94 extern void _dl_runtime_profile (void);
96 if (l->l_info[DT_JMPREL] && lazy)
98 /* The GOT entries for the functions in the PLT have not been
99 filled in yet. Their initial contents are directed to the
100 PLT which arranges for the dynamic linker to be called. */
101 plt = l->l_addr + l->l_info[DT_PLTGOT]->d_un.d_ptr;
103 /* This function will be called to perform the relocation. */
104 if (!profile)
105 *(Elf64_Addr *)(plt + 16) = (Elf64_Addr) &_dl_runtime_resolve;
106 else
108 *(Elf64_Addr *)(plt + 16) = (Elf64_Addr) &_dl_runtime_profile;
110 if (_dl_name_match_p (_dl_profile, l))
112 /* This is the object we are looking for. Say that we really
113 want profiling and the timers are started. */
114 _dl_profile_map = l;
118 /* Identify this shared object */
119 *(Elf64_Addr *)(plt + 24) = (Elf64_Addr) l;
121 /* If the first instruction of the plt entry is not
122 "br $28, plt0", we cannot do lazy relocation. */
123 lazy = (*(unsigned *)(plt + 32) == 0xc39ffff7);
126 return lazy;
129 /* This code is used in dl-runtime.c to call the `fixup' function
130 and then redirect to the address it returns. */
131 #define TRAMPOLINE_TEMPLATE(tramp_name, fixup_name, IMB) \
132 extern void tramp_name (void); \
133 asm ( "\
134 .globl " #tramp_name "
135 .ent " #tramp_name "
136 " #tramp_name ":
137 lda $sp, -168($sp)
138 .frame $sp, 168, $26
139 /* Preserve all integer registers that C normally doesn't. */
140 stq $26, 0($sp)
141 stq $0, 8($sp)
142 stq $1, 16($sp)
143 stq $2, 24($sp)
144 stq $3, 32($sp)
145 stq $4, 40($sp)
146 stq $5, 48($sp)
147 stq $6, 56($sp)
148 stq $7, 64($sp)
149 stq $8, 72($sp)
150 stq $16, 80($sp)
151 stq $17, 88($sp)
152 stq $18, 96($sp)
153 stq $19, 104($sp)
154 stq $20, 112($sp)
155 stq $21, 120($sp)
156 stq $22, 128($sp)
157 stq $23, 136($sp)
158 stq $24, 144($sp)
159 stq $25, 152($sp)
160 stq $29, 160($sp)
161 .mask 0x27ff01ff, -168
162 /* Set up our $gp */
163 br $gp, .+4
164 ldgp $gp, 0($gp)
165 .prologue 0
166 /* Set up the arguments for fixup: */
167 /* $16 = link_map out of plt0 */
168 /* $17 = offset of reloc entry = ($28 - $27 - 20) /12 * 24 */
169 /* $18 = return address */
170 subq $28, $27, $17
171 ldq $16, 8($27)
172 subq $17, 20, $17
173 mov $26, $18
174 addq $17, $17, $17
175 /* Do the fixup */
176 bsr $26, " ASM_ALPHA_NG_SYMBOL_PREFIX #fixup_name "..ng
177 /* Move the destination address into position. */
178 mov $0, $27
179 /* Restore program registers. */
180 ldq $26, 0($sp)
181 ldq $0, 8($sp)
182 ldq $1, 16($sp)
183 ldq $2, 24($sp)
184 ldq $3, 32($sp)
185 ldq $4, 40($sp)
186 ldq $5, 48($sp)
187 ldq $6, 56($sp)
188 ldq $7, 64($sp)
189 ldq $8, 72($sp)
190 ldq $16, 80($sp)
191 ldq $17, 88($sp)
192 ldq $18, 96($sp)
193 ldq $19, 104($sp)
194 ldq $20, 112($sp)
195 ldq $21, 120($sp)
196 ldq $22, 128($sp)
197 ldq $23, 136($sp)
198 ldq $24, 144($sp)
199 ldq $25, 152($sp)
200 ldq $29, 160($sp)
201 /* Flush the Icache after having modified the .plt code. */
202 " #IMB "
203 /* Clean up and turn control to the destination */
204 lda $sp, 168($sp)
205 jmp $31, ($27)
206 .end " #tramp_name)
208 #ifndef PROF
209 #define ELF_MACHINE_RUNTIME_TRAMPOLINE \
210 TRAMPOLINE_TEMPLATE (_dl_runtime_resolve, fixup, imb); \
211 TRAMPOLINE_TEMPLATE (_dl_runtime_profile, profile_fixup, #nop);
212 #else
213 #define ELF_MACHINE_RUNTIME_TRAMPOLINE \
214 TRAMPOLINE_TEMPLATE (_dl_runtime_resolve, fixup, imb); \
215 strong_alias (_dl_runtime_resolve, _dl_runtime_profile);
216 #endif
218 /* Initial entry point code for the dynamic linker.
219 The C function `_dl_start' is the real entry point;
220 its return value is the user program's entry point. */
222 #define RTLD_START asm ("\
223 .text
224 .set at
225 .globl _start
226 .ent _start
227 _start:
228 br $gp, 0f
229 0: ldgp $gp, 0($gp)
230 .prologue 0
231 /* Pass pointer to argument block to _dl_start. */
232 mov $sp, $16
233 bsr $26, "ASM_ALPHA_NG_SYMBOL_PREFIX"_dl_start..ng
234 .end _start
235 /* FALLTHRU */
236 .globl _dl_start_user
237 .ent _dl_start_user
238 _dl_start_user:
239 .frame $30,0,$31,0
240 .prologue 0
241 /* Save the user entry point address in s0. */
242 mov $0, $9
243 /* Store the highest stack address. */
244 stq $30, __libc_stack_end
245 /* See if we were run as a command with the executable file
246 name as an extra leading argument. If so, adjust the stack
247 pointer to skip _dl_skip_args words. */
248 ldl $1, _dl_skip_args
249 beq $1, 0f
250 ldq $2, 0($sp)
251 subq $2, $1, $2
252 s8addq $1, $sp, $sp
253 stq $2, 0($sp)
254 /* Load _dl_main_searchlist into s1 to pass to _dl_init_next. */
255 0: ldq $10, _dl_main_searchlist
256 /* Call _dl_init_next to return the address of an initializer
257 function to run. */
258 1: mov $10, $16
259 jsr $26, _dl_init_next
260 ldgp $gp, 0($26)
261 beq $0, 2f
262 mov $0, $27
263 jsr $26, ($0)
264 ldgp $gp, 0($26)
265 br 1b
266 2: /* Clear the startup flag. */
267 stl $31, _dl_starting_up
268 /* Pass our finalizer function to the user in $0. */
269 lda $0, _dl_fini
270 /* Jump to the user's entry point. */
271 mov $9, $27
272 jmp ($9)
273 .end _dl_start_user
274 .set noat
275 .previous");
277 /* Nonzero iff TYPE describes relocation of a PLT entry, so
278 PLT entries should not be allowed to define the value. */
279 #define elf_machine_lookup_noplt_p(type) ((type) == R_ALPHA_JMP_SLOT)
281 /* Nonzero iff TYPE should not be allowed to resolve to one of
282 the main executable's symbols, as for a COPY reloc, which we don't use. */
283 #define elf_machine_lookup_noexec_p(type) (0)
285 /* A reloc type used for ld.so cmdline arg lookups to reject PLT entries. */
286 #define ELF_MACHINE_JMP_SLOT R_ALPHA_JMP_SLOT
288 /* The alpha never uses Elf64_Rel relocations. */
289 #define ELF_MACHINE_NO_REL 1
291 /* Fix up the instructions of a PLT entry to invoke the function
292 rather than the dynamic linker. */
293 static inline void
294 elf_machine_fixup_plt(struct link_map *l, const Elf64_Rela *reloc,
295 Elf64_Addr *got_addr, Elf64_Addr value)
297 const Elf64_Rela *rela_plt;
298 Elf64_Word *plte;
299 long edisp;
301 /* Store the value we are going to load. */
302 *got_addr = value;
304 /* Recover the PLT entry address by calculating reloc's index into the
305 .rela.plt, and finding that entry in the .plt. */
306 rela_plt = (void *)(l->l_addr + l->l_info[DT_JMPREL]->d_un.d_ptr);
307 plte = (void *)(l->l_addr + l->l_info[DT_PLTGOT]->d_un.d_ptr + 32);
308 plte += 3 * (reloc - rela_plt);
310 /* Find the displacement from the plt entry to the function. */
311 edisp = (long)(value - (Elf64_Addr)&plte[3]) / 4;
313 if (edisp >= -0x100000 && edisp < 0x100000)
315 /* If we are in range, use br to perfect branch prediction and
316 elide the dependency on the address load. This case happens,
317 e.g., when a shared library call is resolved to the same library. */
319 int hi, lo;
320 hi = value - (Elf64_Addr)&plte[0];
321 lo = (short)hi;
322 hi = (hi - lo) >> 16;
324 /* Emit "lda $27,lo($27)" */
325 plte[1] = 0x237b0000 | (lo & 0xffff);
327 /* Emit "br $31,function" */
328 plte[2] = 0xc3e00000 | (edisp & 0x1fffff);
330 /* Think about thread-safety -- the previous instructions must be
331 committed to memory before the first is overwritten. */
332 __asm__ __volatile__("wmb" : : : "memory");
334 /* Emit "ldah $27,hi($27)" */
335 plte[0] = 0x277b0000 | (hi & 0xffff);
337 else
339 /* Don't bother with the hint since we already know the hint is
340 wrong. Eliding it prevents the wrong page from getting pulled
341 into the cache. */
343 int hi, lo;
344 hi = (Elf64_Addr)got_addr - (Elf64_Addr)&plte[0];
345 lo = (short)hi;
346 hi = (hi - lo) >> 16;
348 /* Emit "ldq $27,lo($27)" */
349 plte[1] = 0xa77b0000 | (lo & 0xffff);
351 /* Emit "jmp $31,($27)" */
352 plte[2] = 0x6bfb0000;
354 /* Think about thread-safety -- the previous instructions must be
355 committed to memory before the first is overwritten. */
356 __asm__ __volatile__("wmb" : : : "memory");
358 /* Emit "ldah $27,hi($27)" */
359 plte[0] = 0x277b0000 | (hi & 0xffff);
362 /* At this point, if we've been doing runtime resolution, Icache is dirty.
363 This will be taken care of in _dl_runtime_resolve. If instead we are
364 doing this as part of non-lazy startup relocation, that bit of code
365 hasn't made it into Icache yet, so there's nothing to clean up. */
368 /* Return the final value of a plt relocation. */
369 static inline Elf64_Addr
370 elf_machine_plt_value (struct link_map *map, const Elf64_Rela *reloc,
371 Elf64_Addr value)
373 return value + reloc->r_addend;
376 #endif /* !dl_machine_h */
378 #ifdef RESOLVE
380 /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
381 MAP is the object containing the reloc. */
382 static inline void
383 elf_machine_rela (struct link_map *map,
384 const Elf64_Rela *reloc,
385 const Elf64_Sym *sym,
386 const struct r_found_version *version,
387 Elf64_Addr *const reloc_addr)
389 unsigned long const r_type = ELF64_R_TYPE (reloc->r_info);
391 #ifndef RTLD_BOOTSTRAP
392 /* This is defined in rtld.c, but nowhere in the static libc.a; make the
393 reference weak so static programs can still link. This declaration
394 cannot be done when compiling rtld.c (i.e. #ifdef RTLD_BOOTSTRAP)
395 because rtld.c contains the common defn for _dl_rtld_map, which is
396 incompatible with a weak decl in the same file. */
397 weak_extern (_dl_rtld_map);
398 #endif
400 /* We cannot use a switch here because we cannot locate the switch
401 jump table until we've self-relocated. */
403 if (r_type == R_ALPHA_RELATIVE)
405 #ifndef RTLD_BOOTSTRAP
406 /* Already done in dynamic linker. */
407 if (map != &_dl_rtld_map)
408 #endif
409 *reloc_addr += map->l_addr;
411 else if (r_type == R_ALPHA_NONE)
412 return;
413 else
415 Elf64_Addr loadbase, sym_value;
417 loadbase = RESOLVE (&sym, version, r_type);
418 sym_value = sym ? loadbase + sym->st_value : 0;
419 sym_value += reloc->r_addend;
421 if (r_type == R_ALPHA_GLOB_DAT)
422 *reloc_addr = sym_value;
423 else if (r_type == R_ALPHA_JMP_SLOT)
424 elf_machine_fixup_plt (map, reloc, reloc_addr, sym_value);
425 else if (r_type == R_ALPHA_REFQUAD)
427 sym_value += *reloc_addr;
428 #ifndef RTLD_BOOTSTRAP
429 if (map == &_dl_rtld_map)
431 /* Undo the relocation done here during bootstrapping.
432 Now we will relocate anew, possibly using a binding
433 found in the user program or a loaded library rather
434 than the dynamic linker's built-in definitions used
435 while loading those libraries. */
436 const Elf64_Sym *const dlsymtab
437 = (void *)(map->l_addr + map->l_info[DT_SYMTAB]->d_un.d_ptr);
438 sym_value -= map->l_addr;
439 sym_value -= dlsymtab[ELF64_R_SYM(reloc->r_info)].st_value;
440 sym_value -= reloc->r_addend;
442 #endif
443 *reloc_addr = sym_value;
445 else
446 assert (! "unexpected dynamic reloc type");
450 static inline void
451 elf_machine_lazy_rel (Elf64_Addr l_addr, const Elf64_Rela *reloc)
453 Elf64_Addr * const reloc_addr = (void *)(l_addr + reloc->r_offset);
454 unsigned long const r_type = ELF64_R_TYPE (reloc->r_info);
456 if (r_type == R_ALPHA_JMP_SLOT)
458 /* Perform a RELATIVE reloc on the .got entry that transfers
459 to the .plt. */
460 *reloc_addr += l_addr;
462 else if (r_type == R_ALPHA_NONE)
463 return;
464 else
465 assert (! "unexpected PLT reloc type");
468 #endif /* RESOLVE */