1 /* Special support for trampolines
3 * Copyright (C) 1996-2016 Free Software Foundation, Inc.
4 * Written By Michael Meissner
6 * This file is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 3, or (at your option) any
11 * This file is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * Under Section 7 of GPL version 3, you are granted additional
17 * permissions described in the GCC Runtime Library Exception, version
18 * 3.1, as published by the Free Software Foundation.
20 * You should have received a copy of the GNU General Public License and
21 * a copy of the GCC Runtime Library Exception along with this program;
22 * see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 * <http://www.gnu.org/licenses/>.
26 /* Set up trampolines. */
33 .type trampoline_initial,@object
38 .Lfunc = .-trampoline_initial
39 .long 0 /* will be replaced with function address */
40 .Lchain = .-trampoline_initial
41 .long 0 /* will be replaced with static chain */
44 lwz r0,0(r11) /* function address */
45 lwz r11,4(r11) /* static chain */
49 trampoline_size = .-trampoline_initial
50 .size trampoline_initial,trampoline_size
53 /* R3 = stack address to store trampoline */
54 /* R4 = length of trampoline area */
55 /* R5 = function address */
56 /* R6 = static chain */
58 FUNC_START(__trampoline_setup)
59 mflr r0 /* save return address */
60 bcl 20,31,.LCF0 /* load up __trampoline_initial into r7 */
63 addi r7,r11,trampoline_initial-4-.LCF0 /* trampoline address -4 */
65 li r8,trampoline_size /* verify that the trampoline is big enough */
67 srwi r4,r4,2 /* # words to move */
68 addi r9,r3,-4 /* adjust pointer for lwzu */
74 /* Copy the instructions to the stack */
80 /* Store correct function and static chain */
84 /* Now flush both caches */
92 /* Finally synchronize things & return */
98 /* Use a longcall sequence in the non PIC case on VxWorks, to prevent
99 possible relocation errors if this is module-loaded very far away from
100 the 'abort' entry point. */
101 #if defined (__VXWORKS__) && ! (defined __PIC__ || defined __pic__)
102 lis r11,JUMP_TARGET(abort)@ha
103 addic r11,r11,JUMP_TARGET(abort)@l
108 #if (defined __PIC__ || defined __pic__) && defined HAVE_AS_REL16
111 addis r30,r30,_GLOBAL_OFFSET_TABLE_-1b@ha
112 addi r30,r30,_GLOBAL_OFFSET_TABLE_-1b@l
114 bl JUMP_TARGET(abort)
115 FUNC_END(__trampoline_setup)
120 .type trampoline_initial,@object
127 .Lfunc = .-trampoline_initial
128 .quad 0 /* will be replaced with function address */
129 .Lchain = .-trampoline_initial
130 .quad 0 /* will be replaced with static chain */
132 trampoline_size = .-trampoline_initial
133 .size trampoline_initial,trampoline_size
136 /* R3 = stack address to store trampoline */
137 /* R4 = length of trampoline area */
138 /* R5 = function address */
139 /* R6 = static chain */
141 .pushsection ".toc","aw"
143 .quad trampoline_initial-8
146 FUNC_START(__trampoline_setup)
147 addis 7,2,.LC0@toc@ha
148 ld 7,.LC0@toc@l(7) /* trampoline address -8 */
150 li r8,trampoline_size /* verify that the trampoline is big enough */
152 srwi r4,r4,3 /* # doublewords to move */
153 addi r9,r3,-8 /* adjust pointer for stdu */
157 /* Copy the instructions to the stack */
163 /* Store correct function and static chain */
167 /* Now flush both caches */
175 /* Finally synchronize things & return */
181 bl JUMP_TARGET(abort)
183 FUNC_END(__trampoline_setup)