1 /* PLT trampolines. hppa version.
2 Copyright (C) 2005-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
21 /* This code gets called via the .plt stub, and is used in
22 dl-runtime.c to call the `_dl_fixup' function and then redirect
23 to the address it returns. `_dl_fixup' takes two arguments, however
24 `_dl_profile_fixup' takes a number of parameters for use with
25 library auditing (LA).
27 WARNING: This template is also used by gcc's __cffc, and expects
28 that the "bl" for _dl_runtime_resolve exist at a particular offset.
29 Do not change this template without changing gcc, while the prefix
30 "bl" should fix everything so gcc finds the right spot, it will
31 slow down __cffc when it attempts to call fixup to resolve function
32 descriptor references. Please refer to gcc/gcc/config/pa/fptr.c
34 Enter with r19 = reloc offset, r20 = got-8, r21 = fixup ltp. */
36 /* RELOCATION MARKER: bl to provide gcc's __cffc with fixup loc. */
38 /* THIS CODE DOES NOT EXECUTE */
41 .global _dl_runtime_resolve
42 .type _dl_runtime_resolve,@function
47 .CALLINFO FRAME=128,CALLS,SAVE_RP,ENTRY_GR=3
49 /* SAVE_RP says we do */
52 /* Save static link register */
54 /* Save argument registers */
60 /* Build a call frame, and save structure pointer. */
61 copy %sp, %r1 /* Copy previous sp */
62 /* Save function result address (on entry) */
64 /* Fillin some frame info to follow ABI */
65 stw %r1,-4(%sp) /* Previous sp */
66 stw %r21,-32(%sp) /* PIC register value */
68 /* Save input floating point registers. This must be done
69 in the new frame since the previous frame doesn't have
77 /* Set up args to fixup func, needs only two arguments */
78 ldw 8+4(%r20),%r26 /* (1) got[1] == struct link_map */
79 copy %r19,%r25 /* (2) reloc offset */
81 /* Call the real address resolver. */
83 copy %r21,%r19 /* set fixup func ltp */
85 /* While the linker will set a function pointer to NULL when it
86 encounters an undefined weak function, we need to dynamically
87 detect removed weak functions. The issue arises because a weak
88 __gmon_start__ function was added to shared executables to work
89 around issues in _init that are now resolved. The presence of
90 __gmon_start__ in every shared library breaks the linker
91 `--as-needed' option. This __gmon_start__ function does nothing
92 but removal is tricky. Depending on the binding, removal can
93 cause an application using it to fault. The call to _dl_fixup
94 returns NULL when a function isn't resolved. In order to help
95 with __gmon_start__ removal, we return directly to the caller
96 when _dl_fixup returns NULL. This check could be removed when
100 /* Load up the returned func descriptor */
104 /* Reload arguments fp args */
111 /* Adjust sp, and restore function result address*/
114 /* Reload static link register */
116 /* Reload general args */
122 /* Jump to new function, but return to previous function */
127 /* Return to previous function */
135 .size _dl_runtime_resolve, . - _dl_runtime_resolve
138 .global _dl_runtime_profile
139 .type _dl_runtime_profile,@function
144 .CALLINFO FRAME=192,CALLS,SAVE_RP,ENTRY_GR=3
147 /* SAVE_RP says we do */
149 /* Save static link register */
152 /* Build a call frame, and save structure pointer. */
153 copy %sp, %r1 /* Copy previous sp */
154 /* Save function result address (on entry) */
156 /* Fillin some frame info to follow ABI */
157 stw %r1,-4(%sp) /* Previous sp */
158 stw %r21,-32(%sp) /* PIC register value */
160 /* Create La_hppa_retval */
164 -128, lr_fr4 (8 bytes) */
166 /* Create save space for _dl_profile_fixup arguments
167 -120, Saved reloc offset
168 -116, Saved struct link_map
171 /* Create La_hppa_regs */
172 /* 32-bit registers */
177 /* -92, 4 byte pad */
178 /* 64-bit floating point registers */
184 /* 32-bit stack pointer and return register */
189 /* Set up args to fixup func, needs five arguments */
190 ldw 8+4(%r20),%r26 /* (1) got[1] == struct link_map */
191 stw %r26,-116(%sp) /* Save struct link_map */
192 copy %r19,%r25 /* (2) reloc offset */
193 stw %r25,-120(%sp) /* Save reloc offset */
194 copy %rp,%r24 /* (3) profile_fixup needs rp */
195 ldo -56(%sp),%r23 /* (4) La_hppa_regs */
197 stw %r1, -52(%sp) /* (5) long int *framesizep */
199 /* Call the real address resolver. */
200 bl _dl_profile_fixup,%rp
201 copy %r21,%r19 /* set fixup func ltp */
203 /* Load up the returned function descriptor */
207 /* Restore gr/fr/sp/rp */
212 /* -92, 4 byte pad, skip */
220 /* Reload static link register -(192+16) without adjusting stack */
223 /* *framesizep is >= 0 if we have to run pltexit */
225 cmpb,>>=,N %r0,%r28,L(cpe)
227 /* Adjust sp, and restore function result address*/
229 /* Jump to new function, but return to previous function */
235 /* Call the returned function descriptor */
241 /* We are going to call the resolved function, but we have a
242 stack frame in the middle. We use the value of framesize to
243 guess how much extra frame we need, and how much frame to
246 /* Round to nearest multiple of 64 */
250 /* Calcualte start of stack copy */
253 /* Increate the stack by *framesizep */
256 /* Save stack pointer */
259 /* Single byte copy of prevous stack onto newly allocated stack */
260 1: ldb %r28(%r2), %r1
266 /* Retore r28 and r27 and r2 already points at -192(%sp) */
270 /* Calculate address of L(cont) */
274 /* Undo fake stack */
278 /* Arguments to _dl_call_pltexit */
279 ldw -116(%sp), %r26 /* (1) got[1] == struct link_map */
280 ldw -120(%sp), %r25 /* (2) reloc offsets */
281 ldo -56(%sp), %r24 /* (3) *La_hppa_regs */
282 ldo -124(%sp), %r23 /* (4) *La_hppa_retval */
284 /* Fill *La_hppa_retval */
290 /* Call _dl_call_pltexit */
291 bl _dl_call_pltexit,%rp
294 /* Restore *La_hppa_retval */
300 /* Unwind the stack */
302 /* Retore callers rp */
309 .size _dl_runtime_profile, . - _dl_runtime_profile