Updated to fedora-glibc-20041018T0940
[glibc.git] / sysdeps / sh / dl-machine.h
blobd3cd73762ea7fedc6cccc82c7fa93279cf0641a2
1 /* Machine-dependent ELF dynamic relocation inline functions. SH version.
2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the 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 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #ifndef dl_machine_h
22 #define dl_machine_h
24 /* Only dummy. This doesn't work. */
26 #define ELF_MACHINE_NAME "SH"
28 #include <sys/param.h>
30 #include <assert.h>
32 /* Return nonzero iff ELF header is compatible with the running host. */
33 static inline int __attribute__ ((unused))
34 elf_machine_matches_host (const Elf32_Ehdr *ehdr)
36 return ehdr->e_machine == EM_SH;
40 /* Return the link-time address of _DYNAMIC. Conveniently, this is the
41 first element of the GOT. This must be inlined in a function which
42 uses global data. */
43 static inline Elf32_Addr __attribute__ ((unused))
44 elf_machine_dynamic (void)
46 register Elf32_Addr *got;
47 asm ("mov r12,%0" :"=r" (got));
48 return *got;
52 /* Return the run-time load address of the shared object. */
53 static inline Elf32_Addr __attribute__ ((unused))
54 elf_machine_load_address (void)
56 Elf32_Addr addr;
57 asm ("mov.l 1f,r0\n\
58 mov.l 3f,r2\n\
59 add r12,r2\n\
60 mov.l @(r0,r12),r0\n\
61 bra 2f\n\
62 sub r0,r2\n\
63 .align 2\n\
64 1: .long _dl_start@GOT\n\
65 3: .long _dl_start@GOTOFF\n\
66 2: mov r2,%0"
67 : "=r" (addr) : : "r0", "r1", "r2");
68 return addr;
72 /* Set up the loaded object described by L so its unrelocated PLT
73 entries will jump to the on-demand fixup code in dl-runtime.c. */
75 static inline int __attribute__ ((unused))
76 elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
78 Elf32_Addr *got;
79 extern void _dl_runtime_resolve (Elf32_Word);
80 extern void _dl_runtime_profile (Elf32_Word);
82 if (l->l_info[DT_JMPREL] && lazy)
84 /* The GOT entries for functions in the PLT have not yet been filled
85 in. Their initial contents will arrange when called to load an
86 offset into the .rela.plt section and _GLOBAL_OFFSET_TABLE_[1],
87 and then jump to _GLOBAL_OFFSET_TABLE[2]. */
88 got = (Elf32_Addr *) D_PTR (l, l_info[DT_PLTGOT]);
89 /* If a library is prelinked but we have to relocate anyway,
90 we have to be able to undo the prelinking of .got.plt.
91 The prelinker saved us here address of .plt + 36. */
92 if (got[1])
94 l->l_mach.plt = got[1] + l->l_addr;
95 l->l_mach.gotplt = (Elf32_Addr) &got[3];
97 got[1] = (Elf32_Addr) l; /* Identify this shared object. */
99 /* The got[2] entry contains the address of a function which gets
100 called to get the address of a so far unresolved function and
101 jump to it. The profiling extension of the dynamic linker allows
102 to intercept the calls to collect information. In this case we
103 don't store the address in the GOT so that all future calls also
104 end in this function. */
105 if (profile)
107 got[2] = (Elf32_Addr) &_dl_runtime_profile;
108 /* Say that we really want profiling and the timers are started. */
109 GL(dl_profile_map) = l;
111 else
112 /* This function will get called to fix up the GOT entry indicated by
113 the offset on the stack, and then jump to the resolved address. */
114 got[2] = (Elf32_Addr) &_dl_runtime_resolve;
116 return lazy;
119 /* This code is used in dl-runtime.c to call the `fixup' function
120 and then redirect to the address it returns. */
122 #define ELF_MACHINE_RUNTIME_FIXUP_ARGS int plt_type
124 #ifdef SHARED
125 #define FUN_ADDR "\
126 mov.l 1f,r2\n\
127 mova 1f,r0\n\
128 bra 2f\n\
129 add r0,r2 ! Get GOT address in r2\n\
130 0: .align 2\n\
131 1: .long _GLOBAL_OFFSET_TABLE_\n\
132 2: mov.l 3f,r0\n\
133 add r2,r0"
134 #define GOTJMP(x) #x "@GOTOFF"
135 #else
136 #define FUN_ADDR "\
137 mov.l 3f,r0"
138 #define GOTJMP(x) #x
139 #endif
141 #ifdef HAVE_FPU
142 #define FGR_SAVE "\
143 sts.l fpscr, @-r15\n\
144 mov #8,r3\n\
145 swap.w r3, r3\n\
146 lds r3, fpscr\n\
147 fmov.s fr11, @-r15\n\
148 fmov.s fr10, @-r15\n\
149 fmov.s fr9, @-r15\n\
150 fmov.s fr8, @-r15\n\
151 fmov.s fr7, @-r15\n\
152 fmov.s fr6, @-r15\n\
153 fmov.s fr5, @-r15\n\
154 fmov.s fr4, @-r15"
155 #define FGR_LOAD "\
156 fmov.s @r15+, fr4\n\
157 fmov.s @r15+, fr5\n\
158 fmov.s @r15+, fr6\n\
159 fmov.s @r15+, fr7\n\
160 fmov.s @r15+, fr8\n\
161 fmov.s @r15+, fr9\n\
162 fmov.s @r15+, fr10\n\
163 fmov.s @r15+, fr11\n\
164 lds.l @r15+, fpscr"
165 #else
166 #define FGR_SAVE ""
167 #define FGR_LOAD ""
168 #endif
170 #ifndef PROF
171 # define ELF_MACHINE_RUNTIME_TRAMPOLINE asm ("\
172 .text\n\
173 .globl _dl_runtime_resolve\n\
174 .type _dl_runtime_resolve, @function\n\
175 .align 5\n\
176 _dl_runtime_resolve:\n\
177 mov.l r2,@-r15\n\
178 mov.l r3,@-r15\n\
179 mov.l r4,@-r15\n\
180 mov.l r5,@-r15\n\
181 mov.l r6,@-r15\n\
182 mov.l r7,@-r15\n\
183 mov.l r12,@-r15\n\
184 movt r3 ! Save T flag.\n\
185 mov.l r3,@-r15\n\
186 " FGR_SAVE "\n\
187 sts.l pr,@-r15\n\
188 tst r0,r0\n\
189 bt 1f\n\
190 mov r0,r2\n\
191 1:\n\
192 mov r0,r4 ! PLT type\n\
193 mov r2,r5 ! link map address\n\
194 " FUN_ADDR "\n\
195 jsr @r0 ! Call resolver.\n\
196 mov r1,r6 ! reloc offset\n\
197 lds.l @r15+,pr ! Get register content back.\n\
198 " FGR_LOAD "\n\
199 mov.l @r15+,r3\n\
200 shal r3 ! Lode T flag.\n\
201 mov.l @r15+,r12\n\
202 mov.l @r15+,r7\n\
203 mov.l @r15+,r6\n\
204 mov.l @r15+,r5\n\
205 mov.l @r15+,r4\n\
206 mov.l @r15+,r3\n\
207 jmp @r0 ! Jump to function address.\n\
208 mov.l @r15+,r2\n\
209 .align 2\n\
210 3:\n\
211 .long " GOTJMP (fixup) "\n\
212 .size _dl_runtime_resolve, .-_dl_runtime_resolve\n\
214 .globl _dl_runtime_profile\n\
215 .type _dl_runtime_profile, @function\n\
216 .align 5\n\
217 _dl_runtime_profile:\n\
218 mov.l r2,@-r15\n\
219 mov.l r3,@-r15\n\
220 mov.l r4,@-r15\n\
221 mov.l r5,@-r15\n\
222 mov.l r6,@-r15\n\
223 mov.l r7,@-r15\n\
224 mov.l r12,@-r15\n\
225 movt r3 ! Save T flag.\n\
226 mov.l r3,@-r15\n\
227 " FGR_SAVE "\n\
228 sts.l pr,@-r15\n\
229 tst r0,r0\n\
230 bt 1f\n\
231 mov r0,r2\n\
232 1:\n\
233 mov r0,r4 ! PLT type\n\
234 mov r2,r5 ! link map address\n\
235 sts pr,r7 ! return address\n\
236 " FUN_ADDR "\n\
237 jsr @r0 ! Call resolver.\n\
238 mov r1,r6 ! reloc offset\n\
239 lds.l @r15+,pr ! Get register content back.\n\
240 " FGR_LOAD "\n\
241 mov.l @r15+,r3\n\
242 shal r3 ! Lode T flag.\n\
243 mov.l @r15+,r12\n\
244 mov.l @r15+,r7\n\
245 mov.l @r15+,r6\n\
246 mov.l @r15+,r5\n\
247 mov.l @r15+,r4\n\
248 mov.l @r15+,r3\n\
249 jmp @r0 ! Jump to function address.\n\
250 mov.l @r15+,r2\n\
251 .align 2\n\
252 3:\n\
253 .long " GOTJMP (profile_fixup) "\n\
254 .size _dl_runtime_profile, .-_dl_runtime_profile\n\
255 .previous\n\
257 #else
258 # define ELF_MACHINE_RUNTIME_TRAMPOLINE asm ("\
259 .text\n\
260 .globl _dl_runtime_resolve\n\
261 .globl _dl_runtime_profile\n\
262 .type _dl_runtime_resolve, @function\n\
263 .type _dl_runtime_profile, @function\n\
264 .align 5\n\
265 _dl_runtime_resolve:\n\
266 _dl_runtime_profile:\n\
267 mov.l r2,@-r15\n\
268 mov.l r3,@-r15\n\
269 mov.l r4,@-r15\n\
270 mov.l r5,@-r15\n\
271 mov.l r6,@-r15\n\
272 mov.l r7,@-r15\n\
273 mov.l r12,@-r15\n\
274 movt r3 ! Save T flag.\n\
275 mov.l r3,@-r15\n\
276 " FGR_SAVE "\n\
277 sts.l pr,@-r15\n\
278 tst r0,r0\n\
279 bt 1f\n\
280 mov r0,r2\n\
281 1:\n\
282 mov r0,r4 ! PLT type\n\
283 mov r2,r5 ! link map address\n\
284 sts pr,r7 ! return address\n\
285 " FUN_ADDR "\n\
286 jsr @r0 ! Call resolver.\n\
287 mov r1,r6 ! reloc offset\n\
288 lds.l @r15+,pr ! Get register content back.\n\
289 " FGR_LOAD "\n\
290 mov.l @r15+,r3\n\
291 shal r3 ! Lode T flag.\n\
292 mov.l @r15+,r12\n\
293 mov.l @r15+,r7\n\
294 mov.l @r15+,r6\n\
295 mov.l @r15+,r5\n\
296 mov.l @r15+,r4\n\
297 mov.l @r15+,r3\n\
298 jmp @r0 ! Jump to function address.\n\
299 mov.l @r15+,r2\n\
300 .align 2\n\
301 3:\n\
302 .long " GOTJMP (fixup) "\n\
303 .size _dl_runtime_resolve, .-_dl_runtime_resolve\n\
304 .size _dl_runtime_profile, .-_dl_runtime_profile\n\
305 .previous\n\
307 #endif
309 /* Mask identifying addresses reserved for the user program,
310 where the dynamic linker should not map anything. */
311 #define ELF_MACHINE_USER_ADDRESS_MASK 0x80000000UL
313 /* Initial entry point code for the dynamic linker.
314 The C function `_dl_start' is the real entry point;
315 its return value is the user program's entry point. */
317 #define RTLD_START asm ("\
318 .text\n\
319 .globl _start\n\
320 .globl _dl_start_user\n\
321 _start:\n\
322 mov r15,r4\n\
323 mov.l .L_dl_start,r1\n\
324 mova .L_dl_start,r0\n\
325 add r1,r0\n\
326 jsr @r0\n\
327 nop\n\
328 _dl_start_user:\n\
329 ! Save the user entry point address in r8.\n\
330 mov r0,r8\n\
331 ! Point r12 at the GOT.\n\
332 mov.l 1f,r12\n\
333 mova 1f,r0\n\
334 bra 2f\n\
335 add r0,r12\n\
336 .align 2\n\
337 1: .long _GLOBAL_OFFSET_TABLE_\n\
338 2: ! See if we were run as a command with the executable file\n\
339 ! name as an extra leading argument.\n\
340 mov.l .L_dl_skip_args,r0\n\
341 mov.l @(r0,r12),r0\n\
342 mov.l @r0,r0\n\
343 ! Get the original argument count.\n\
344 mov.l @r15,r5\n\
345 ! Subtract _dl_skip_args from it.\n\
346 sub r0,r5\n\
347 ! Adjust the stack pointer to skip _dl_skip_args words.\n\
348 shll2 r0\n\
349 add r0,r15\n\
350 ! Store back the modified argument count.\n\
351 mov.l r5,@r15\n\
352 ! Compute argv address and envp.\n\
353 mov r15,r6\n\
354 add #4,r6\n\
355 mov r5,r7\n\
356 shll2 r7\n\
357 add r15,r7\n\
358 mov.l .L_dl_loaded,r0\n\
359 mov.l @(r0,r12),r0\n\
360 mov.l @r0,r4\n\
361 ! Call _dl_init.\n\
362 mov.l .L_dl_init,r1\n\
363 mova .L_dl_init,r0\n\
364 add r1,r0\n\
365 jsr @r0\n\
366 nop\n\
367 1: ! Pass our finalizer function to the user in r4, as per ELF ABI.\n\
368 mov.l .L_dl_fini,r0\n\
369 mov.l @(r0,r12),r4\n\
370 ! Jump to the user's entry point.\n\
371 jmp @r8\n\
372 nop\n\
373 .align 2\n\
374 .L_dl_start:\n\
375 .long _dl_start@PLT\n\
376 .L_dl_skip_args:\n\
377 .long _dl_skip_args@GOT\n\
378 .L_dl_init:\n\
379 .long _dl_init_internal@PLT\n\
380 .L_dl_loaded:\n\
381 .long _rtld_local@GOT\n\
382 .L_dl_fini:\n\
383 .long _dl_fini@GOT\n\
384 .previous\n\
387 /* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry or
388 TLS variable, so undefined references should not be allowed to
389 define the value.
390 ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one
391 of the main executable's symbols, as for a COPY reloc. */
392 #if defined USE_TLS && (!defined RTLD_BOOTSTRAP || USE___THREAD)
393 # define elf_machine_type_class(type) \
394 ((((type) == R_SH_JMP_SLOT || (type) == R_SH_TLS_DTPMOD32 \
395 || (type) == R_SH_TLS_DTPOFF32 || (type) == R_SH_TLS_TPOFF32) \
396 * ELF_RTYPE_CLASS_PLT) \
397 | (((type) == R_SH_COPY) * ELF_RTYPE_CLASS_COPY))
398 #else
399 #define elf_machine_type_class(type) \
400 ((((type) == R_SH_JMP_SLOT) * ELF_RTYPE_CLASS_PLT) \
401 | (((type) == R_SH_COPY) * ELF_RTYPE_CLASS_COPY))
402 #endif
404 /* A reloc type used for ld.so cmdline arg lookups to reject PLT entries. */
405 #define ELF_MACHINE_JMP_SLOT R_SH_JMP_SLOT
407 /* We define an initialization functions. This is called very early in
408 _dl_sysdep_start. */
409 #define DL_PLATFORM_INIT dl_platform_init ()
411 static inline void __attribute__ ((unused))
412 dl_platform_init (void)
414 if (GLRO(dl_platform) != NULL && *GLRO(dl_platform) == '\0')
415 /* Avoid an empty string which would disturb us. */
416 GLRO(dl_platform) = NULL;
419 static inline Elf32_Addr
420 elf_machine_fixup_plt (struct link_map *map, lookup_t t,
421 const Elf32_Rela *reloc,
422 Elf32_Addr *reloc_addr, Elf32_Addr value)
424 return *reloc_addr = value;
427 /* Return the final value of a plt relocation. */
428 static inline Elf32_Addr
429 elf_machine_plt_value (struct link_map *map, const Elf32_Rela *reloc,
430 Elf32_Addr value)
432 return value + reloc->r_addend;
435 #endif /* !dl_machine_h */
437 #ifdef RESOLVE
439 /* SH never uses Elf32_Rel relocations. */
440 #define ELF_MACHINE_NO_REL 1
442 /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
443 MAP is the object containing the reloc. */
445 static inline void
446 elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
447 const Elf32_Sym *sym, const struct r_found_version *version,
448 void *const reloc_addr_arg)
450 Elf32_Addr *const reloc_addr = reloc_addr_arg;
451 const unsigned int r_type = ELF32_R_TYPE (reloc->r_info);
452 Elf32_Addr value;
454 #define COPY_UNALIGNED_WORD(swp, twp, align) \
456 void *__s = (swp), *__t = (twp); \
457 unsigned char *__s1 = __s, *__t1 = __t; \
458 unsigned short *__s2 = __s, *__t2 = __t; \
459 unsigned long *__s4 = __s, *__t4 = __t; \
460 switch ((align)) \
462 case 0: \
463 *__t4 = *__s4; \
464 break; \
465 case 2: \
466 *__t2++ = *__s2++; \
467 *__t2 = *__s2; \
468 break; \
469 default: \
470 *__t1++ = *__s1++; \
471 *__t1++ = *__s1++; \
472 *__t1++ = *__s1++; \
473 *__t1 = *__s1; \
474 break; \
478 if (__builtin_expect (r_type == R_SH_RELATIVE, 0))
480 #ifndef RTLD_BOOTSTRAP
481 if (map != &GL(dl_rtld_map)) /* Already done in rtld itself. */
482 #endif
484 if (reloc->r_addend)
485 value = map->l_addr + reloc->r_addend;
486 else
488 COPY_UNALIGNED_WORD (reloc_addr_arg, &value,
489 (int) reloc_addr_arg & 3);
490 value += map->l_addr;
492 COPY_UNALIGNED_WORD (&value, reloc_addr_arg,
493 (int) reloc_addr_arg & 3);
496 #ifndef RTLD_BOOTSTRAP
497 else if (__builtin_expect (r_type == R_SH_NONE, 0))
498 return;
499 #endif
500 else
502 const Elf32_Sym *const refsym = sym;
503 #if defined USE_TLS && !defined RTLD_BOOTSTRAP
504 struct link_map *sym_map = RESOLVE_MAP (&sym, version, r_type);
506 value = sym == NULL ? 0 : sym_map->l_addr + sym->st_value;
507 #else
509 value = RESOLVE (&sym, version, r_type);
510 # ifndef RTLD_BOOTSTRAP
511 if (sym != NULL)
512 # endif
513 value += sym->st_value;
514 #endif
515 value += reloc->r_addend;
517 switch (r_type)
519 case R_SH_COPY:
520 if (sym == NULL)
521 /* This can happen in trace mode if an object could not be
522 found. */
523 break;
524 if (sym->st_size > refsym->st_size
525 || (sym->st_size < refsym->st_size && GLRO(dl_verbose)))
527 const char *strtab;
529 strtab = (const char *) D_PTR (map, l_info[DT_STRTAB]);
530 _dl_error_printf ("\
531 %s: Symbol `%s' has different size in shared object, consider re-linking\n",
532 rtld_progname ?: "<program name unknown>",
533 strtab + refsym->st_name);
535 memcpy (reloc_addr_arg, (void *) value,
536 MIN (sym->st_size, refsym->st_size));
537 break;
538 case R_SH_GLOB_DAT:
539 case R_SH_JMP_SLOT:
540 /* These addresses are always aligned. */
541 *reloc_addr = value;
542 break;
543 #if defined USE_TLS && (!defined RTLD_BOOTSTRAP || USE___THREAD)
544 /* XXX Remove TLS relocations which are not needed. */
545 case R_SH_TLS_DTPMOD32:
546 # ifdef RTLD_BOOTSTRAP
547 /* During startup the dynamic linker is always the module
548 with index 1.
549 XXX If this relocation is necessary move before RESOLVE
550 call. */
551 *reloc_addr = 1;
552 # else
553 /* Get the information from the link map returned by the
554 resolv function. */
555 if (sym_map != NULL)
556 *reloc_addr = sym_map->l_tls_modid;
557 # endif
558 break;
559 case R_SH_TLS_DTPOFF32:
560 # ifndef RTLD_BOOTSTRAP
561 /* During relocation all TLS symbols are defined and used.
562 Therefore the offset is already correct. */
563 if (sym != NULL)
564 *reloc_addr = sym->st_value;
565 # endif
566 break;
567 case R_SH_TLS_TPOFF32:
568 /* The offset is positive, afterward from the thread pointer. */
569 # ifdef RTLD_BOOTSTRAP
570 *reloc_addr = map->l_tls_offset + sym->st_value + reloc->r_addend;
571 # else
572 /* We know the offset of object the symbol is contained in.
573 It is a positive value which will be added to the thread
574 pointer. To get the variable position in the TLS block
575 we add the offset from that of the TLS block. */
576 if (sym != NULL)
578 CHECK_STATIC_TLS (map, sym_map);
579 *reloc_addr = sym_map->l_tls_offset + sym->st_value
580 + reloc->r_addend;
582 # endif
583 break;
584 #endif /* use TLS */
585 case R_SH_DIR32:
587 #ifndef RTLD_BOOTSTRAP
588 /* This is defined in rtld.c, but nowhere in the static
589 libc.a; make the reference weak so static programs can
590 still link. This declaration cannot be done when
591 compiling rtld.c (i.e. #ifdef RTLD_BOOTSTRAP) because
592 rtld.c contains the common defn for _dl_rtld_map, which
593 is incompatible with a weak decl in the same file. */
594 # ifndef SHARED
595 weak_extern (_dl_rtld_map);
596 # endif
597 if (map == &GL(dl_rtld_map))
598 /* Undo the relocation done here during bootstrapping.
599 Now we will relocate it anew, possibly using a
600 binding found in the user program or a loaded library
601 rather than the dynamic linker's built-in definitions
602 used while loading those libraries. */
603 value -= map->l_addr + refsym->st_value + reloc->r_addend;
604 #endif
605 COPY_UNALIGNED_WORD (&value, reloc_addr_arg,
606 (int) reloc_addr_arg & 3);
607 break;
609 case R_SH_REL32:
610 value = (value - (Elf32_Addr) reloc_addr);
611 COPY_UNALIGNED_WORD (&value, reloc_addr_arg,
612 (int) reloc_addr_arg & 3);
613 break;
614 default:
615 _dl_reloc_bad_type (map, r_type, 0);
616 break;
621 static inline void
622 elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc,
623 void *const reloc_addr_arg)
625 Elf32_Addr value;
627 if (reloc->r_addend)
628 value = l_addr + reloc->r_addend;
629 else
631 COPY_UNALIGNED_WORD (reloc_addr_arg, &value, (int) reloc_addr_arg & 3);
632 value += l_addr;
634 COPY_UNALIGNED_WORD (&value, reloc_addr_arg, (int) reloc_addr_arg & 3);
636 #undef COPY_UNALIGNED_WORD
639 static inline void
640 elf_machine_lazy_rel (struct link_map *map,
641 Elf32_Addr l_addr, const Elf32_Rela *reloc)
643 Elf32_Addr *const reloc_addr = (void *) (l_addr + reloc->r_offset);
644 /* Check for unexpected PLT reloc type. */
645 if (ELF32_R_TYPE (reloc->r_info) == R_SH_JMP_SLOT)
647 if (__builtin_expect (map->l_mach.plt, 0) == 0)
648 *reloc_addr += l_addr;
649 else
650 *reloc_addr =
651 map->l_mach.plt
652 + (((Elf32_Addr) reloc_addr) - map->l_mach.gotplt) * 7;
654 else
655 _dl_reloc_bad_type (map, ELF32_R_TYPE (reloc->r_info), 1);
658 #endif /* RESOLVE */