]> sourceware.org Git - glibc.git/blob - sysdeps/mips/dl-machine.h
Amend log entry with omitted file.
[glibc.git] / sysdeps / mips / dl-machine.h
1 /* Machine-dependent ELF dynamic relocation inline functions. MIPS version.
2 Copyright (C) 1996-2001, 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Kazumoto Kojima <kkojima@info.kanagawa-u.ac.jp>.
6
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
11
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307 USA. */
21
22 /* FIXME: Profiling of shared libraries is not implemented yet. */
23 #ifndef dl_machine_h
24 #define dl_machine_h
25
26 #define ELF_MACHINE_NAME "MIPS"
27
28 #define ELF_MACHINE_NO_PLT
29
30 #include <entry.h>
31
32 #ifndef ENTRY_POINT
33 #error ENTRY_POINT needs to be defined for MIPS.
34 #endif
35
36 #include <sgidefs.h>
37 #include <sys/asm.h>
38 #include <dl-tls.h>
39
40 /* The offset of gp from GOT might be system-dependent. It's set by
41 ld. The same value is also */
42 #define OFFSET_GP_GOT 0x7ff0
43
44 #ifndef _RTLD_PROLOGUE
45 # define _RTLD_PROLOGUE(entry) \
46 ".globl\t" __STRING(entry) "\n\t" \
47 ".ent\t" __STRING(entry) "\n\t" \
48 ".type\t" __STRING(entry) ", @function\n" \
49 __STRING(entry) ":\n\t"
50 #endif
51
52 #ifndef _RTLD_EPILOGUE
53 # define _RTLD_EPILOGUE(entry) \
54 ".end\t" __STRING(entry) "\n\t" \
55 ".size\t" __STRING(entry) ", . - " __STRING(entry) "\n\t"
56 #endif
57
58 /* A reloc type used for ld.so cmdline arg lookups to reject PLT entries.
59 This makes no sense on MIPS but we have to define this to R_MIPS_REL32
60 to avoid the asserts in dl-lookup.c from blowing. */
61 #define ELF_MACHINE_JMP_SLOT R_MIPS_REL32
62 #define elf_machine_type_class(type) ELF_RTYPE_CLASS_PLT
63
64 /* Translate a processor specific dynamic tag to the index
65 in l_info array. */
66 #define DT_MIPS(x) (DT_MIPS_##x - DT_LOPROC + DT_NUM)
67
68 /* If there is a DT_MIPS_RLD_MAP entry in the dynamic section, fill it in
69 with the run-time address of the r_debug structure */
70 #define ELF_MACHINE_DEBUG_SETUP(l,r) \
71 do { if ((l)->l_info[DT_MIPS (RLD_MAP)]) \
72 *(ElfW(Addr) *)((l)->l_info[DT_MIPS (RLD_MAP)]->d_un.d_ptr) = \
73 (ElfW(Addr)) (r); \
74 } while (0)
75
76 /* Return nonzero iff ELF header is compatible with the running host. */
77 static inline int __attribute_used__
78 elf_machine_matches_host (const ElfW(Ehdr) *ehdr)
79 {
80 #if _MIPS_SIM == _ABIO32 || _MIPS_SIM == _ABIN32
81 /* Don't link o32 and n32 together. */
82 if (((ehdr->e_flags & EF_MIPS_ABI2) != 0) != (_MIPS_SIM == _ABIN32))
83 return 0;
84 #endif
85
86 switch (ehdr->e_machine)
87 {
88 case EM_MIPS:
89 case EM_MIPS_RS3_LE:
90 return 1;
91 default:
92 return 0;
93 }
94 }
95
96 static inline ElfW(Addr) *
97 elf_mips_got_from_gpreg (ElfW(Addr) gpreg)
98 {
99 /* FIXME: the offset of gp from GOT may be system-dependent. */
100 return (ElfW(Addr) *) (gpreg - OFFSET_GP_GOT);
101 }
102
103 /* Return the link-time address of _DYNAMIC. Conveniently, this is the
104 first element of the GOT. This must be inlined in a function which
105 uses global data. We assume its $gp points to the primary GOT. */
106 static inline ElfW(Addr)
107 elf_machine_dynamic (void)
108 {
109 register ElfW(Addr) gp __asm__ ("$28");
110 return *elf_mips_got_from_gpreg (gp);
111 }
112
113 #define STRINGXP(X) __STRING(X)
114 #define STRINGXV(X) STRINGV_(X)
115 #define STRINGV_(...) # __VA_ARGS__
116
117 /* Return the run-time load address of the shared object. */
118 static inline ElfW(Addr)
119 elf_machine_load_address (void)
120 {
121 ElfW(Addr) addr;
122 asm (" .set noreorder\n"
123 " " STRINGXP (PTR_LA) " %0, 0f\n"
124 " bltzal $0, 0f\n"
125 " nop\n"
126 "0: " STRINGXP (PTR_SUBU) " %0, $31, %0\n"
127 " .set reorder\n"
128 : "=r" (addr)
129 : /* No inputs */
130 : "$31");
131 return addr;
132 }
133
134 /* The MSB of got[1] of a gnu object is set to identify gnu objects. */
135 #if _MIPS_SIM == _ABI64
136 # define ELF_MIPS_GNU_GOT1_MASK 0x8000000000000000L
137 #else
138 # define ELF_MIPS_GNU_GOT1_MASK 0x80000000L
139 #endif
140
141 /* We can't rely on elf_machine_got_rel because _dl_object_relocation_scope
142 fiddles with global data. */
143 #define ELF_MACHINE_BEFORE_RTLD_RELOC(dynamic_info) \
144 do { \
145 struct link_map *map = &bootstrap_map; \
146 ElfW(Sym) *sym; \
147 ElfW(Addr) *got; \
148 int i, n; \
149 \
150 got = (ElfW(Addr) *) D_PTR (map, l_info[DT_PLTGOT]); \
151 \
152 if (__builtin_expect (map->l_addr == 0, 1)) \
153 break; \
154 \
155 /* got[0] is reserved. got[1] is also reserved for the dynamic object \
156 generated by gnu ld. Skip these reserved entries from \
157 relocation. */ \
158 i = (got[1] & ELF_MIPS_GNU_GOT1_MASK)? 2 : 1; \
159 n = map->l_info[DT_MIPS (LOCAL_GOTNO)]->d_un.d_val; \
160 \
161 /* Add the run-time displacement to all local got entries. */ \
162 while (i < n) \
163 got[i++] += map->l_addr; \
164 \
165 /* Handle global got entries. */ \
166 got += n; \
167 sym = (ElfW(Sym) *) D_PTR(map, l_info[DT_SYMTAB]) \
168 + map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val; \
169 i = (map->l_info[DT_MIPS (SYMTABNO)]->d_un.d_val \
170 - map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val); \
171 \
172 while (i--) \
173 { \
174 if (sym->st_shndx == SHN_UNDEF || sym->st_shndx == SHN_COMMON) \
175 *got = map->l_addr + sym->st_value; \
176 else if (ELFW(ST_TYPE) (sym->st_info) == STT_FUNC \
177 && *got != sym->st_value) \
178 *got += map->l_addr; \
179 else if (ELFW(ST_TYPE) (sym->st_info) == STT_SECTION) \
180 { \
181 if (sym->st_other == 0) \
182 *got += map->l_addr; \
183 } \
184 else \
185 *got = map->l_addr + sym->st_value; \
186 \
187 got++; \
188 sym++; \
189 } \
190 } while(0)
191
192
193 /* Mask identifying addresses reserved for the user program,
194 where the dynamic linker should not map anything. */
195 #define ELF_MACHINE_USER_ADDRESS_MASK 0x80000000UL
196
197
198 /* Initial entry point code for the dynamic linker.
199 The C function `_dl_start' is the real entry point;
200 its return value is the user program's entry point.
201 Note how we have to be careful about two things:
202
203 1) That we allocate a minimal stack of 24 bytes for
204 every function call, the MIPS ABI states that even
205 if all arguments are passed in registers the procedure
206 called can use the 16 byte area pointed to by $sp
207 when it is called to store away the arguments passed
208 to it.
209
210 2) That under Linux the entry is named __start
211 and not just plain _start. */
212
213 #define RTLD_START asm (\
214 ".text\n\
215 " _RTLD_PROLOGUE(ENTRY_POINT) "\
216 " STRINGXV(SETUP_GPX($25)) "\n\
217 " STRINGXV(SETUP_GPX64($18,$25)) "\n\
218 # i386 ABI book says that the first entry of GOT holds\n\
219 # the address of the dynamic structure. Though MIPS ABI\n\
220 # doesn't say nothing about this, I emulate this here.\n\
221 " STRINGXP(PTR_LA) " $4, _DYNAMIC\n\
222 # Subtract OFFSET_GP_GOT\n\
223 " STRINGXP(PTR_S) " $4, -0x7ff0($28)\n\
224 move $4, $29\n\
225 " STRINGXP(PTR_SUBIU) " $29, 16\n\
226 \n\
227 " STRINGXP(PTR_LA) " $8, .Lcoff\n\
228 bltzal $8, .Lcoff\n\
229 .Lcoff: " STRINGXP(PTR_SUBU) " $8, $31, $8\n\
230 \n\
231 " STRINGXP(PTR_LA) " $25, _dl_start\n\
232 " STRINGXP(PTR_ADDU) " $25, $8\n\
233 jalr $25\n\
234 \n\
235 " STRINGXP(PTR_ADDIU) " $29, 16\n\
236 # Get the value of label '_dl_start_user' in t9 ($25).\n\
237 " STRINGXP(PTR_LA) " $25, _dl_start_user\n\
238 " _RTLD_EPILOGUE(ENTRY_POINT) "\
239 \n\
240 \n\
241 " _RTLD_PROLOGUE(_dl_start_user) "\
242 " STRINGXP(SETUP_GP) "\n\
243 " STRINGXV(SETUP_GP64($18,_dl_start_user)) "\n\
244 move $16, $28\n\
245 # Save the user entry point address in a saved register.\n\
246 move $17, $2\n\
247 # See if we were run as a command with the executable file\n\
248 # name as an extra leading argument.\n\
249 lw $2, _dl_skip_args\n\
250 beq $2, $0, 1f\n\
251 # Load the original argument count.\n\
252 " STRINGXP(PTR_L) " $4, 0($29)\n\
253 # Subtract _dl_skip_args from it.\n\
254 subu $4, $2\n\
255 # Adjust the stack pointer to skip _dl_skip_args words.\n\
256 sll $2, " STRINGXP (PTRLOG) "\n\
257 " STRINGXP(PTR_ADDU) " $29, $2\n\
258 # Save back the modified argument count.\n\
259 " STRINGXP(PTR_S) " $4, 0($29)\n\
260 1: # Call _dl_init (struct link_map *main_map, int argc, char **argv, char **env) \n\
261 " STRINGXP(PTR_L) " $4, _rtld_local\n\
262 " STRINGXP(PTR_L) /* or lw??? fixme */ " $5, 0($29)\n\
263 " STRINGXP(PTR_LA) " $6, " STRINGXP (PTRSIZE) "($29)\n\
264 sll $7, $5, " STRINGXP (PTRLOG) "\n\
265 " STRINGXP(PTR_ADDU) " $7, $7, $6\n\
266 " STRINGXP(PTR_ADDU) " $7, $7, " STRINGXP (PTRSIZE) " \n\
267 # Make sure the stack pointer is aligned for _dl_init_internal.\n\
268 and $2, $29, -2 * " STRINGXP(SZREG) "\n\
269 " STRINGXP(PTR_S) " $29, -" STRINGXP(SZREG) "($2)\n\
270 " STRINGXP(PTR_SUBIU) " $29, $2, 32\n\
271 " STRINGXP(SAVE_GP(16)) "\n\
272 # Call the function to run the initializers.\n\
273 jal _dl_init_internal\n\
274 # Restore the stack pointer for _start.\n\
275 " STRINGXP(PTR_L) " $29, 32-" STRINGXP(SZREG) "($29)\n\
276 # Pass our finalizer function to the user in $2 as per ELF ABI.\n\
277 " STRINGXP(PTR_LA) " $2, _dl_fini\n\
278 # Jump to the user entry point.\n\
279 move $25, $17\n\
280 jr $25\n\t"\
281 _RTLD_EPILOGUE(_dl_start_user)\
282 ".previous"\
283 );
284
285 /* The MIPS never uses Elfxx_Rela relocations. */
286 #define ELF_MACHINE_NO_RELA 1
287
288 /* Names of the architecture-specific auditing callback functions. */
289 # if _MIPS_SIM == _ABIO32
290 # define ARCH_LA_PLTENTER mips_o32_gnu_pltenter
291 # define ARCH_LA_PLTEXIT mips_o32_gnu_pltexit
292 # elif _MIPS_SIM == _ABIN32
293 # define ARCH_LA_PLTENTER mips_n32_gnu_pltenter
294 # define ARCH_LA_PLTEXIT mips_n32_gnu_pltexit
295 # else
296 # define ARCH_LA_PLTENTER mips_n64_gnu_pltenter
297 # define ARCH_LA_PLTEXIT mips_n64_gnu_pltexit
298 # endif
299
300 #endif /* !dl_machine_h */
301
302 #ifdef RESOLVE_MAP
303
304 /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
305 MAP is the object containing the reloc. */
306
307 auto inline void
308 __attribute__ ((always_inline))
309 elf_machine_rel (struct link_map *map, const ElfW(Rel) *reloc,
310 const ElfW(Sym) *sym, const struct r_found_version *version,
311 void *const reloc_addr)
312 {
313 const unsigned long int r_type = ELFW(R_TYPE) (reloc->r_info);
314
315 #if !defined RTLD_BOOTSTRAP && !defined SHARED
316 /* This is defined in rtld.c, but nowhere in the static libc.a;
317 make the reference weak so static programs can still link. This
318 declaration cannot be done when compiling rtld.c (i.e. #ifdef
319 RTLD_BOOTSTRAP) because rtld.c contains the common defn for
320 _dl_rtld_map, which is incompatible with a weak decl in the same
321 file. */
322 weak_extern (GL(dl_rtld_map));
323 #endif
324
325 switch (r_type)
326 {
327 #if defined (USE_TLS) && !defined (RTLD_BOOTSTRAP)
328 # if _MIPS_SIM == _ABI64
329 case R_MIPS_TLS_DTPMOD64:
330 case R_MIPS_TLS_DTPREL64:
331 case R_MIPS_TLS_TPREL64:
332 # else
333 case R_MIPS_TLS_DTPMOD32:
334 case R_MIPS_TLS_DTPREL32:
335 case R_MIPS_TLS_TPREL32:
336 # endif
337 {
338 struct link_map *sym_map = RESOLVE_MAP (&sym, version, r_type);
339 Elf32_Addr value = sym == NULL ? 0 : sym_map->l_addr + sym->st_value;
340
341 if (sym)
342 value += sym->st_value;
343
344 switch (r_type)
345 {
346 case R_MIPS_TLS_DTPMOD64:
347 case R_MIPS_TLS_DTPMOD32:
348 if (sym_map)
349 *(ElfW(Word) *)reloc_addr = sym_map->l_tls_modid;
350 break;
351
352 case R_MIPS_TLS_DTPREL64:
353 case R_MIPS_TLS_DTPREL32:
354 *(ElfW(Word) *)reloc_addr += TLS_DTPREL_VALUE (sym);
355 break;
356
357 case R_MIPS_TLS_TPREL32:
358 case R_MIPS_TLS_TPREL64:
359 CHECK_STATIC_TLS (map, sym_map);
360 *(ElfW(Word) *)reloc_addr += TLS_TPREL_VALUE (sym_map, sym);
361 break;
362 }
363
364 break;
365 }
366 #endif
367
368 #if _MIPS_SIM == _ABI64
369 case (R_MIPS_64 << 8) | R_MIPS_REL32:
370 #else
371 case R_MIPS_REL32:
372 #endif
373 {
374 int symidx = ELFW(R_SYM) (reloc->r_info);
375 ElfW(Addr) reloc_value;
376
377 /* Support relocations on mis-aligned offsets. Should we ever
378 implement RELA, this should be replaced with an assignment
379 from reloc->r_addend. */
380 __builtin_memcpy (&reloc_value, reloc_addr, sizeof (reloc_value));
381
382 if (symidx)
383 {
384 const ElfW(Word) gotsym
385 = (const ElfW(Word)) map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val;
386
387 if ((ElfW(Word))symidx < gotsym)
388 {
389 /* This wouldn't work for a symbol imported from other
390 libraries for which there's no GOT entry, but MIPS
391 requires every symbol referenced in a dynamic
392 relocation to have a GOT entry in the primary GOT,
393 so we only get here for locally-defined symbols.
394 For section symbols, we should *NOT* be adding
395 sym->st_value (per the definition of the meaning of
396 S in reloc expressions in the ELF64 MIPS ABI),
397 since it should have already been added to
398 reloc_value by the linker, but older versions of
399 GNU ld didn't add it, and newer versions don't emit
400 useless relocations to section symbols any more, so
401 it is safe to keep on adding sym->st_value, even
402 though it's not ABI compliant. Some day we should
403 bite the bullet and stop doing this. */
404 #ifndef RTLD_BOOTSTRAP
405 if (map != &GL(dl_rtld_map))
406 #endif
407 reloc_value += sym->st_value + map->l_addr;
408 }
409 else
410 {
411 #ifndef RTLD_BOOTSTRAP
412 const ElfW(Addr) *got
413 = (const ElfW(Addr) *) D_PTR (map, l_info[DT_PLTGOT]);
414 const ElfW(Word) local_gotno
415 = (const ElfW(Word))
416 map->l_info[DT_MIPS (LOCAL_GOTNO)]->d_un.d_val;
417
418 reloc_value += got[symidx + local_gotno - gotsym];
419 #endif
420 }
421 }
422 else
423 #ifndef RTLD_BOOTSTRAP
424 if (map != &GL(dl_rtld_map))
425 #endif
426 reloc_value += map->l_addr;
427
428 __builtin_memcpy (reloc_addr, &reloc_value, sizeof (reloc_value));
429 }
430 break;
431 case R_MIPS_NONE: /* Alright, Wilbur. */
432 break;
433 #if _MIPS_SIM == _ABI64
434 case R_MIPS_64:
435 /* For full compliance with the ELF64 ABI, one must precede the
436 _REL32/_64 pair of relocations with a _64 relocation, such
437 that the in-place addend is read as a 64-bit value. IRIX
438 didn't pick up on this requirement, so we treat the
439 _REL32/_64 relocation as a 64-bit relocation even if it's by
440 itself. For ABI compliance, we ignore such _64 dummy
441 relocations. For RELA, this may be simply removed, since
442 it's totally unnecessary. */
443 if (ELFW(R_SYM) (reloc->r_info) == 0)
444 break;
445 /* Fall through. */
446 #endif
447 default:
448 _dl_reloc_bad_type (map, r_type, 0);
449 break;
450 }
451 }
452
453 auto inline void
454 __attribute__((always_inline))
455 elf_machine_rel_relative (ElfW(Addr) l_addr, const ElfW(Rel) *reloc,
456 void *const reloc_addr)
457 {
458 /* XXX Nothing to do. There is no relative relocation, right? */
459 }
460
461 auto inline void
462 __attribute__((always_inline))
463 elf_machine_lazy_rel (struct link_map *map,
464 ElfW(Addr) l_addr, const ElfW(Rel) *reloc)
465 {
466 /* Do nothing. */
467 }
468
469 auto inline void
470 __attribute__ ((always_inline))
471 elf_machine_rela (struct link_map *map, const ElfW(Rela) *reloc,
472 const ElfW(Sym) *sym, const struct r_found_version *version,
473 void *const reloc_addr)
474 {
475 }
476
477 auto inline void
478 __attribute__((always_inline))
479 elf_machine_rela_relative (ElfW(Addr) l_addr, const ElfW(Rela) *reloc,
480 void *const reloc_addr)
481 {
482 }
483
484 #ifndef RTLD_BOOTSTRAP
485 /* Relocate GOT. */
486 auto inline void
487 __attribute__((always_inline))
488 elf_machine_got_rel (struct link_map *map, int lazy)
489 {
490 ElfW(Addr) *got;
491 ElfW(Sym) *sym;
492 const ElfW(Half) *vernum;
493 int i, n, symidx;
494
495 #define RESOLVE_GOTSYM(sym,vernum,sym_index) \
496 ({ \
497 const ElfW(Sym) *ref = sym; \
498 const struct r_found_version *version \
499 = vernum ? &map->l_versions[vernum[sym_index] & 0x7fff] : NULL; \
500 struct link_map *sym_map; \
501 sym_map = RESOLVE_MAP (&ref, version, R_MIPS_REL32); \
502 ref ? sym_map->l_addr + ref->st_value : 0; \
503 })
504
505 if (map->l_info[VERSYMIDX (DT_VERSYM)] != NULL)
506 vernum = (const void *) D_PTR (map, l_info[VERSYMIDX (DT_VERSYM)]);
507 else
508 vernum = NULL;
509
510 got = (ElfW(Addr) *) D_PTR (map, l_info[DT_PLTGOT]);
511
512 n = map->l_info[DT_MIPS (LOCAL_GOTNO)]->d_un.d_val;
513 /* The dynamic linker's local got entries have already been relocated. */
514 if (map != &GL(dl_rtld_map))
515 {
516 /* got[0] is reserved. got[1] is also reserved for the dynamic object
517 generated by gnu ld. Skip these reserved entries from relocation. */
518 i = (got[1] & ELF_MIPS_GNU_GOT1_MASK)? 2 : 1;
519
520 /* Add the run-time displacement to all local got entries if
521 needed. */
522 if (__builtin_expect (map->l_addr != 0, 0))
523 {
524 while (i < n)
525 got[i++] += map->l_addr;
526 }
527 }
528
529 /* Handle global got entries. */
530 got += n;
531 /* Keep track of the symbol index. */
532 symidx = map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val;
533 sym = (ElfW(Sym) *) D_PTR (map, l_info[DT_SYMTAB]) + symidx;
534 i = (map->l_info[DT_MIPS (SYMTABNO)]->d_un.d_val
535 - map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val);
536
537 /* This loop doesn't handle Quickstart. */
538 while (i--)
539 {
540 if (sym->st_shndx == SHN_UNDEF)
541 {
542 if (ELFW(ST_TYPE) (sym->st_info) == STT_FUNC
543 && sym->st_value && lazy)
544 *got = sym->st_value + map->l_addr;
545 else
546 *got = RESOLVE_GOTSYM (sym, vernum, symidx);
547 }
548 else if (sym->st_shndx == SHN_COMMON)
549 *got = RESOLVE_GOTSYM (sym, vernum, symidx);
550 else if (ELFW(ST_TYPE) (sym->st_info) == STT_FUNC
551 && *got != sym->st_value
552 && lazy)
553 *got += map->l_addr;
554 else if (ELFW(ST_TYPE) (sym->st_info) == STT_SECTION)
555 {
556 if (sym->st_other == 0)
557 *got += map->l_addr;
558 }
559 else
560 *got = RESOLVE_GOTSYM (sym, vernum, symidx);
561
562 ++got;
563 ++sym;
564 ++symidx;
565 }
566
567 #undef RESOLVE_GOTSYM
568 }
569 #endif
570
571 /* Set up the loaded object described by L so its stub function
572 will jump to the on-demand fixup code __dl_runtime_resolve. */
573
574 auto inline int
575 __attribute__((always_inline))
576 elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
577 {
578 # ifndef RTLD_BOOTSTRAP
579 ElfW(Addr) *got;
580 extern void _dl_runtime_resolve (ElfW(Word));
581 extern int _dl_mips_gnu_objects;
582
583 if (lazy)
584 {
585 /* The GOT entries for functions have not yet been filled in.
586 Their initial contents will arrange when called to put an
587 offset into the .dynsym section in t8, the return address
588 in t7 and then jump to _GLOBAL_OFFSET_TABLE[0]. */
589 got = (ElfW(Addr) *) D_PTR (l, l_info[DT_PLTGOT]);
590
591 /* This function will get called to fix up the GOT entry indicated by
592 the register t8, and then jump to the resolved address. */
593 got[0] = (ElfW(Addr)) &_dl_runtime_resolve;
594
595 /* Store l to _GLOBAL_OFFSET_TABLE[1] for gnu object. The MSB
596 of got[1] of a gnu object is set to identify gnu objects.
597 Where we can store l for non gnu objects? XXX */
598 if ((got[1] & ELF_MIPS_GNU_GOT1_MASK) != 0)
599 got[1] = ((ElfW(Addr)) l | ELF_MIPS_GNU_GOT1_MASK);
600 else
601 _dl_mips_gnu_objects = 0;
602 }
603
604 /* Relocate global offset table. */
605 elf_machine_got_rel (l, lazy);
606
607 # endif
608 return lazy;
609 }
610
611 #endif /* RESOLVE_MAP */
This page took 0.064078 seconds and 5 git commands to generate.