blob: a8497fe1c8f59d267ffc8a69beea0e2c0eafb25c [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//===-- PPCJITInfo.cpp - Implement the JIT interfaces for the PowerPC -----===//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Chris Lattner9b3d9892004-11-23 06:02:06 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Chris Lattner9b3d9892004-11-23 06:02:06 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the JIT interfaces for the 32-bit PowerPC target.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "jit"
Chris Lattnerb9459b72005-10-14 23:53:41 +000015#include "PPCJITInfo.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000016#include "PPCRelocations.h"
Chris Lattner9b3d9892004-11-23 06:02:06 +000017#include "llvm/CodeGen/MachineCodeEmitter.h"
18#include "llvm/Config/alloca.h"
Evan Cheng55fc2802006-07-25 20:40:54 +000019#include "llvm/Support/Debug.h"
Chris Lattner15ee8ad2004-11-26 20:25:17 +000020#include <set>
Chris Lattner9b3d9892004-11-23 06:02:06 +000021using namespace llvm;
22
23static TargetJITInfo::JITCompilerFn JITCompilerFunction;
24
25#define BUILD_ADDIS(RD,RS,IMM16) \
26 ((15 << 26) | ((RD) << 21) | ((RS) << 16) | ((IMM16) & 65535))
27#define BUILD_ORI(RD,RS,UIMM16) \
28 ((24 << 26) | ((RS) << 21) | ((RD) << 16) | ((UIMM16) & 65535))
Nate Begeman06abd222006-08-29 02:30:59 +000029#define BUILD_ORIS(RD,RS,UIMM16) \
30 ((25 << 26) | ((RS) << 21) | ((RD) << 16) | ((UIMM16) & 65535))
31#define BUILD_RLDICR(RD,RS,SH,ME) \
32 ((30 << 26) | ((RS) << 21) | ((RD) << 16) | (((SH) & 31) << 11) | \
Chris Lattnereb63b0a2006-12-07 23:44:07 +000033 (((ME) & 63) << 6) | (1 << 2) | ((((SH) >> 5) & 1) << 1))
Chris Lattner9b3d9892004-11-23 06:02:06 +000034#define BUILD_MTSPR(RS,SPR) \
35 ((31 << 26) | ((RS) << 21) | ((SPR) << 16) | (467 << 1))
36#define BUILD_BCCTRx(BO,BI,LINK) \
37 ((19 << 26) | ((BO) << 21) | ((BI) << 16) | (528 << 1) | ((LINK) & 1))
Nate Begeman06abd222006-08-29 02:30:59 +000038#define BUILD_B(TARGET, LINK) \
39 ((18 << 26) | (((TARGET) & 0x00FFFFFF) << 2) | ((LINK) & 1))
Chris Lattner9b3d9892004-11-23 06:02:06 +000040
41// Pseudo-ops
42#define BUILD_LIS(RD,IMM16) BUILD_ADDIS(RD,0,IMM16)
Nate Begeman06abd222006-08-29 02:30:59 +000043#define BUILD_SLDI(RD,RS,IMM6) BUILD_RLDICR(RD,RS,IMM6,63-IMM6)
Chris Lattner9b3d9892004-11-23 06:02:06 +000044#define BUILD_MTCTR(RS) BUILD_MTSPR(RS,9)
45#define BUILD_BCTR(LINK) BUILD_BCCTRx(20,0,LINK)
46
Nate Begeman06abd222006-08-29 02:30:59 +000047static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){
48 intptr_t Offset = ((intptr_t)To - (intptr_t)At) >> 2;
49 unsigned *AtI = (unsigned*)(intptr_t)At;
Chris Lattner9b3d9892004-11-23 06:02:06 +000050
Nate Begeman06abd222006-08-29 02:30:59 +000051 if (Offset >= -(1 << 23) && Offset < (1 << 23)) { // In range?
52 AtI[0] = BUILD_B(Offset, isCall); // b/bl target
53 } else if (!is64Bit) {
54 AtI[0] = BUILD_LIS(12, To >> 16); // lis r12, hi16(address)
55 AtI[1] = BUILD_ORI(12, 12, To); // ori r12, r12, lo16(address)
56 AtI[2] = BUILD_MTCTR(12); // mtctr r12
57 AtI[3] = BUILD_BCTR(isCall); // bctr/bctrl
58 } else {
59 AtI[0] = BUILD_LIS(12, To >> 48); // lis r12, hi16(address)
60 AtI[1] = BUILD_ORI(12, 12, To >> 32); // ori r12, r12, lo16(address)
61 AtI[2] = BUILD_SLDI(12, 12, 32); // sldi r12, r12, 32
62 AtI[3] = BUILD_ORIS(12, 12, To >> 16); // oris r12, r12, hi16(address)
63 AtI[4] = BUILD_ORI(12, 12, To); // ori r12, r12, lo16(address)
64 AtI[5] = BUILD_MTCTR(12); // mtctr r12
65 AtI[6] = BUILD_BCTR(isCall); // bctr/bctrl
66 }
Chris Lattner9b3d9892004-11-23 06:02:06 +000067}
68
Chris Lattner73278082004-11-24 21:01:46 +000069extern "C" void PPC32CompilationCallback();
Nate Begeman06abd222006-08-29 02:30:59 +000070extern "C" void PPC64CompilationCallback();
Chris Lattner73278082004-11-24 21:01:46 +000071
Chris Lattner7be164c2006-09-28 23:32:43 +000072#if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \
73 !defined(__ppc64__)
Chris Lattner73278082004-11-24 21:01:46 +000074// CompilationCallback stub - We can't use a C function with inline assembly in
75// it, because we the prolog/epilog inserted by GCC won't work for us. Instead,
76// write our own wrapper, which does things our way, so we have complete control
77// over register saving and restoring.
78asm(
79 ".text\n"
80 ".align 2\n"
81 ".globl _PPC32CompilationCallback\n"
82"_PPC32CompilationCallback:\n"
Nate Begeman54252672006-05-02 04:50:05 +000083 // Make space for 8 ints r[3-10] and 13 doubles f[1-13] and the
84 // FIXME: need to save v[0-19] for altivec?
Nate Begeman06abd222006-08-29 02:30:59 +000085 // FIXME: could shrink frame
Nate Begeman54252672006-05-02 04:50:05 +000086 // Set up a proper stack frame
Jim Laskey18e2f442006-12-11 18:10:54 +000087 // FIXME Layout
88 // PowerPC64 ABI linkage - 24 bytes
89 // parameters - 32 bytes
90 // 13 double registers - 104 bytes
91 // 8 int registers - 32 bytes
Jim Laskey0eadd732006-12-10 13:09:42 +000092 "mflr r0\n"
Jim Laskey18e2f442006-12-11 18:10:54 +000093 "stw r0, 8(r1)\n"
94 "stwu r1, -208(r1)\n"
Nate Begeman54252672006-05-02 04:50:05 +000095 // Save all int arg registers
96 "stw r10, 204(r1)\n" "stw r9, 200(r1)\n"
97 "stw r8, 196(r1)\n" "stw r7, 192(r1)\n"
98 "stw r6, 188(r1)\n" "stw r5, 184(r1)\n"
99 "stw r4, 180(r1)\n" "stw r3, 176(r1)\n"
Chris Lattner73278082004-11-24 21:01:46 +0000100 // Save all call-clobbered FP regs.
Nate Begeman54252672006-05-02 04:50:05 +0000101 "stfd f13, 168(r1)\n" "stfd f12, 160(r1)\n"
102 "stfd f11, 152(r1)\n" "stfd f10, 144(r1)\n"
103 "stfd f9, 136(r1)\n" "stfd f8, 128(r1)\n"
104 "stfd f7, 120(r1)\n" "stfd f6, 112(r1)\n"
105 "stfd f5, 104(r1)\n" "stfd f4, 96(r1)\n"
106 "stfd f3, 88(r1)\n" "stfd f2, 80(r1)\n"
107 "stfd f1, 72(r1)\n"
108 // Arguments to Compilation Callback:
109 // r3 - our lr (address of the call instruction in stub plus 4)
110 // r4 - stub's lr (address of instruction that called the stub plus 4)
Chris Lattnere150b8e2006-12-08 04:54:03 +0000111 // r5 - is64Bit - always 0.
Nate Begeman54252672006-05-02 04:50:05 +0000112 "mr r3, r0\n"
113 "lwz r2, 208(r1)\n" // stub's frame
114 "lwz r4, 8(r2)\n" // stub's lr
Nate Begeman06abd222006-08-29 02:30:59 +0000115 "li r5, 0\n" // 0 == 32 bit
116 "bl _PPCCompilationCallbackC\n"
Nate Begeman54252672006-05-02 04:50:05 +0000117 "mtctr r3\n"
118 // Restore all int arg registers
119 "lwz r10, 204(r1)\n" "lwz r9, 200(r1)\n"
120 "lwz r8, 196(r1)\n" "lwz r7, 192(r1)\n"
121 "lwz r6, 188(r1)\n" "lwz r5, 184(r1)\n"
122 "lwz r4, 180(r1)\n" "lwz r3, 176(r1)\n"
123 // Restore all FP arg registers
124 "lfd f13, 168(r1)\n" "lfd f12, 160(r1)\n"
125 "lfd f11, 152(r1)\n" "lfd f10, 144(r1)\n"
126 "lfd f9, 136(r1)\n" "lfd f8, 128(r1)\n"
127 "lfd f7, 120(r1)\n" "lfd f6, 112(r1)\n"
128 "lfd f5, 104(r1)\n" "lfd f4, 96(r1)\n"
129 "lfd f3, 88(r1)\n" "lfd f2, 80(r1)\n"
130 "lfd f1, 72(r1)\n"
131 // Pop 3 frames off the stack and branch to target
132 "lwz r1, 208(r1)\n"
133 "lwz r2, 8(r1)\n"
134 "mtlr r2\n"
135 "bctr\n"
Chris Lattner73278082004-11-24 21:01:46 +0000136 );
Chris Lattner456bc872007-02-25 05:04:13 +0000137
138#elif defined(__PPC__) && !defined(__ppc64__)
139// Linux/PPC support
140
141// CompilationCallback stub - We can't use a C function with inline assembly in
142// it, because we the prolog/epilog inserted by GCC won't work for us. Instead,
143// write our own wrapper, which does things our way, so we have complete control
144// over register saving and restoring.
145asm(
146 ".text\n"
147 ".align 2\n"
148 ".globl PPC32CompilationCallback\n"
149"PPC32CompilationCallback:\n"
150 // Make space for 8 ints r[3-10] and 13 doubles f[1-13] and the
151 // FIXME: need to save v[0-19] for altivec?
152 // FIXME: could shrink frame
153 // Set up a proper stack frame
154 // FIXME Layout
155 // PowerPC64 ABI linkage - 24 bytes
156 // parameters - 32 bytes
157 // 13 double registers - 104 bytes
158 // 8 int registers - 32 bytes
159 "mflr 0\n"
160 "stw 0, 4(1)\n"
161 "stwu 1, -180(1)\n"
162 // Save all int arg registers
163 "stw 10, 176(1)\n" "stw 9, 172(1)\n"
164 "stw 8, 168(1)\n" "stw 7, 164(1)\n"
165 "stw 6, 160(1)\n" "stw 5, 156(1)\n"
166 "stw 4, 152(1)\n" "stw 3, 148(1)\n"
167 // Save all call-clobbered FP regs.
168 "stfd 10, 144(1)\n"
169 "stfd 9, 136(1)\n" "stfd 8, 128(1)\n"
170 "stfd 7, 120(1)\n" "stfd 6, 112(1)\n"
171 "stfd 5, 104(1)\n" "stfd 4, 96(1)\n"
172 "stfd 3, 88(1)\n" "stfd 2, 80(1)\n"
173 "stfd 1, 72(1)\n"
174 // Arguments to Compilation Callback:
175 // r3 - our lr (address of the call instruction in stub plus 4)
176 // r4 - stub's lr (address of instruction that called the stub plus 4)
177 // r5 - is64Bit - always 0.
178 "mr 3, 0\n"
179 "lwz 11, 180(1)\n" // stub's frame
180 "lwz 4, 4(11)\n" // stub's lr
181 "li 5, 0\n" // 0 == 32 bit
182 "bl PPCCompilationCallbackC\n"
183 "mtctr 3\n"
184 // Restore all int arg registers
185 "lwz 10, 176(1)\n" "lwz 9, 172(1)\n"
186 "lwz 8, 168(1)\n" "lwz 7, 164(1)\n"
187 "lwz 6, 160(1)\n" "lwz 5, 156(1)\n"
188 "lwz 4, 152(1)\n" "lwz 3, 148(1)\n"
189 // Restore all FP arg registers
190 "lfd 10, 144(1)\n"
191 "lfd 9, 136(1)\n" "lfd 8, 128(1)\n"
192 "lfd 7, 120(1)\n" "lfd 6, 112(1)\n"
193 "lfd 5, 104(1)\n" "lfd 4, 96(1)\n"
194 "lfd 3, 88(1)\n" "lfd 2, 80(1)\n"
195 "lfd 1, 72(1)\n"
196 // Pop 3 frames off the stack and branch to target
197 "lwz 1, 184(1)\n"
198 "lwz 11, 4(1)\n"
199 "mtlr 11\n"
200 "bctr\n"
201 );
Chris Lattnerfde839b2004-11-25 06:14:45 +0000202#else
203void PPC32CompilationCallback() {
204 assert(0 && "This is not a power pc, you can't execute this!");
205 abort();
206}
Nate Begemanca6d0f52004-11-23 21:34:18 +0000207#endif
208
Chris Lattner7be164c2006-09-28 23:32:43 +0000209#if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \
210 defined(__ppc64__)
Nate Begeman06abd222006-08-29 02:30:59 +0000211asm(
212 ".text\n"
213 ".align 2\n"
214 ".globl _PPC64CompilationCallback\n"
215"_PPC64CompilationCallback:\n"
216 // Make space for 8 ints r[3-10] and 13 doubles f[1-13] and the
217 // FIXME: need to save v[0-19] for altivec?
218 // Set up a proper stack frame
Jim Laskey18e2f442006-12-11 18:10:54 +0000219 // Layout
220 // PowerPC64 ABI linkage - 48 bytes
221 // parameters - 64 bytes
222 // 13 double registers - 104 bytes
223 // 8 int registers - 64 bytes
Nate Begeman06abd222006-08-29 02:30:59 +0000224 "mflr r0\n"
Jim Laskey18e2f442006-12-11 18:10:54 +0000225 "std r0, 16(r1)\n"
226 "stdu r1, -280(r1)\n"
Nate Begeman06abd222006-08-29 02:30:59 +0000227 // Save all int arg registers
Jim Laskey18e2f442006-12-11 18:10:54 +0000228 "std r10, 272(r1)\n" "std r9, 264(r1)\n"
229 "std r8, 256(r1)\n" "std r7, 248(r1)\n"
230 "std r6, 240(r1)\n" "std r5, 232(r1)\n"
231 "std r4, 224(r1)\n" "std r3, 216(r1)\n"
Nate Begeman06abd222006-08-29 02:30:59 +0000232 // Save all call-clobbered FP regs.
Jim Laskey18e2f442006-12-11 18:10:54 +0000233 "stfd f13, 208(r1)\n" "stfd f12, 200(r1)\n"
234 "stfd f11, 192(r1)\n" "stfd f10, 184(r1)\n"
235 "stfd f9, 176(r1)\n" "stfd f8, 168(r1)\n"
236 "stfd f7, 160(r1)\n" "stfd f6, 152(r1)\n"
237 "stfd f5, 144(r1)\n" "stfd f4, 136(r1)\n"
238 "stfd f3, 128(r1)\n" "stfd f2, 120(r1)\n"
239 "stfd f1, 112(r1)\n"
Nate Begeman06abd222006-08-29 02:30:59 +0000240 // Arguments to Compilation Callback:
241 // r3 - our lr (address of the call instruction in stub plus 4)
242 // r4 - stub's lr (address of instruction that called the stub plus 4)
Chris Lattnere150b8e2006-12-08 04:54:03 +0000243 // r5 - is64Bit - always 1.
Nate Begeman06abd222006-08-29 02:30:59 +0000244 "mr r3, r0\n"
Jim Laskey18e2f442006-12-11 18:10:54 +0000245 "ld r2, 280(r1)\n" // stub's frame
Nate Begeman06abd222006-08-29 02:30:59 +0000246 "ld r4, 16(r2)\n" // stub's lr
247 "li r5, 1\n" // 1 == 64 bit
248 "bl _PPCCompilationCallbackC\n"
249 "mtctr r3\n"
250 // Restore all int arg registers
Jim Laskey18e2f442006-12-11 18:10:54 +0000251 "ld r10, 272(r1)\n" "ld r9, 264(r1)\n"
252 "ld r8, 256(r1)\n" "ld r7, 248(r1)\n"
253 "ld r6, 240(r1)\n" "ld r5, 232(r1)\n"
254 "ld r4, 224(r1)\n" "ld r3, 216(r1)\n"
Nate Begeman06abd222006-08-29 02:30:59 +0000255 // Restore all FP arg registers
Jim Laskey18e2f442006-12-11 18:10:54 +0000256 "lfd f13, 208(r1)\n" "lfd f12, 200(r1)\n"
257 "lfd f11, 192(r1)\n" "lfd f10, 184(r1)\n"
258 "lfd f9, 176(r1)\n" "lfd f8, 168(r1)\n"
259 "lfd f7, 160(r1)\n" "lfd f6, 152(r1)\n"
260 "lfd f5, 144(r1)\n" "lfd f4, 136(r1)\n"
261 "lfd f3, 128(r1)\n" "lfd f2, 120(r1)\n"
262 "lfd f1, 112(r1)\n"
Nate Begeman06abd222006-08-29 02:30:59 +0000263 // Pop 3 frames off the stack and branch to target
Jim Laskey18e2f442006-12-11 18:10:54 +0000264 "ld r1, 280(r1)\n"
Nate Begeman06abd222006-08-29 02:30:59 +0000265 "ld r2, 16(r1)\n"
266 "mtlr r2\n"
267 "bctr\n"
268 );
269#else
270void PPC64CompilationCallback() {
271 assert(0 && "This is not a power pc, you can't execute this!");
272 abort();
273}
274#endif
275
276extern "C" void *PPCCompilationCallbackC(unsigned *StubCallAddrPlus4,
277 unsigned *OrigCallAddrPlus4,
278 bool is64Bit) {
Nate Begemanb3f70d72006-04-25 04:45:59 +0000279 // Adjust the pointer to the address of the call instruction in the stub
280 // emitted by emitFunctionStub, rather than the instruction after it.
281 unsigned *StubCallAddr = StubCallAddrPlus4 - 1;
282 unsigned *OrigCallAddr = OrigCallAddrPlus4 - 1;
Chris Lattnere61198b2004-11-23 06:55:05 +0000283
Nate Begemanb3f70d72006-04-25 04:45:59 +0000284 void *Target = JITCompilerFunction(StubCallAddr);
Chris Lattnere61198b2004-11-23 06:55:05 +0000285
Nate Begemanb3f70d72006-04-25 04:45:59 +0000286 // Check to see if *OrigCallAddr is a 'bl' instruction, and if we can rewrite
287 // it to branch directly to the destination. If so, rewrite it so it does not
288 // need to go through the stub anymore.
289 unsigned OrigCallInst = *OrigCallAddr;
290 if ((OrigCallInst >> 26) == 18) { // Direct call.
291 intptr_t Offset = ((intptr_t)Target - (intptr_t)OrigCallAddr) >> 2;
292
Chris Lattnere61198b2004-11-23 06:55:05 +0000293 if (Offset >= -(1 << 23) && Offset < (1 << 23)) { // In range?
Chris Lattner892afa92004-11-24 18:00:02 +0000294 // Clear the original target out.
Nate Begemanb3f70d72006-04-25 04:45:59 +0000295 OrigCallInst &= (63 << 26) | 3;
Chris Lattner892afa92004-11-24 18:00:02 +0000296 // Fill in the new target.
Nate Begemanb3f70d72006-04-25 04:45:59 +0000297 OrigCallInst |= (Offset & ((1 << 24)-1)) << 2;
Chris Lattner892afa92004-11-24 18:00:02 +0000298 // Replace the call.
Nate Begemanb3f70d72006-04-25 04:45:59 +0000299 *OrigCallAddr = OrigCallInst;
Chris Lattnere61198b2004-11-23 06:55:05 +0000300 }
301 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000302
Nate Begemanb3f70d72006-04-25 04:45:59 +0000303 // Assert that we are coming from a stub that was created with our
304 // emitFunctionStub.
Nate Begeman06abd222006-08-29 02:30:59 +0000305 if ((*StubCallAddr >> 26) == 18)
306 StubCallAddr -= 3;
307 else {
Nate Begemanb3f70d72006-04-25 04:45:59 +0000308 assert((*StubCallAddr >> 26) == 19 && "Call in stub is not indirect!");
Nate Begeman06abd222006-08-29 02:30:59 +0000309 StubCallAddr -= is64Bit ? 9 : 6;
310 }
Chris Lattnere61198b2004-11-23 06:55:05 +0000311
312 // Rewrite the stub with an unconditional branch to the target, for any users
313 // who took the address of the stub.
Nate Begeman06abd222006-08-29 02:30:59 +0000314 EmitBranchToAt((intptr_t)StubCallAddr, (intptr_t)Target, false, is64Bit);
Chris Lattnere61198b2004-11-23 06:55:05 +0000315
Nate Begemanb3f70d72006-04-25 04:45:59 +0000316 // Put the address of the target function to call and the address to return to
317 // after calling the target function in a place that is easy to get on the
318 // stack after we restore all regs.
Nate Begeman06abd222006-08-29 02:30:59 +0000319 return Target;
Chris Lattnere61198b2004-11-23 06:55:05 +0000320}
321
322
323
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000324TargetJITInfo::LazyResolverFn
Nate Begeman21e463b2005-10-16 05:39:50 +0000325PPCJITInfo::getLazyResolverFunction(JITCompilerFn Fn) {
Chris Lattnere61198b2004-11-23 06:55:05 +0000326 JITCompilerFunction = Fn;
Nate Begeman06abd222006-08-29 02:30:59 +0000327 return is64Bit ? PPC64CompilationCallback : PPC32CompilationCallback;
Chris Lattnere61198b2004-11-23 06:55:05 +0000328}
329
Nate Begeman21e463b2005-10-16 05:39:50 +0000330void *PPCJITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
Chris Lattner9b3d9892004-11-23 06:02:06 +0000331 // If this is just a call to an external function, emit a branch instead of a
332 // call. The code is the same except for one bit of the last instruction.
Nate Begeman06abd222006-08-29 02:30:59 +0000333 if (Fn != (void*)(intptr_t)PPC32CompilationCallback &&
334 Fn != (void*)(intptr_t)PPC64CompilationCallback) {
335 MCE.startFunctionStub(7*4);
336 intptr_t Addr = (intptr_t)MCE.getCurrentPCValue();
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000337 MCE.emitWordBE(0);
338 MCE.emitWordBE(0);
339 MCE.emitWordBE(0);
340 MCE.emitWordBE(0);
Nate Begeman06abd222006-08-29 02:30:59 +0000341 MCE.emitWordBE(0);
342 MCE.emitWordBE(0);
343 MCE.emitWordBE(0);
344 EmitBranchToAt(Addr, (intptr_t)Fn, false, is64Bit);
Chris Lattner9b3d9892004-11-23 06:02:06 +0000345 return MCE.finishFunctionStub(0);
346 }
347
Nate Begeman06abd222006-08-29 02:30:59 +0000348 MCE.startFunctionStub(10*4);
349 if (is64Bit) {
350 MCE.emitWordBE(0xf821ffb1); // stdu r1,-80(r1)
351 MCE.emitWordBE(0x7d6802a6); // mflr r11
352 MCE.emitWordBE(0xf9610060); // std r11, 96(r1)
353 } else {
354 MCE.emitWordBE(0x9421ffe0); // stwu r1,-32(r1)
355 MCE.emitWordBE(0x7d6802a6); // mflr r11
356 MCE.emitWordBE(0x91610028); // stw r11, 40(r1)
357 }
358 intptr_t Addr = (intptr_t)MCE.getCurrentPCValue();
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000359 MCE.emitWordBE(0);
360 MCE.emitWordBE(0);
361 MCE.emitWordBE(0);
362 MCE.emitWordBE(0);
Nate Begeman06abd222006-08-29 02:30:59 +0000363 MCE.emitWordBE(0);
364 MCE.emitWordBE(0);
365 MCE.emitWordBE(0);
366 EmitBranchToAt(Addr, (intptr_t)Fn, true, is64Bit);
Chris Lattner9b3d9892004-11-23 06:02:06 +0000367 return MCE.finishFunctionStub(0);
368}
369
370
Nate Begeman21e463b2005-10-16 05:39:50 +0000371void PPCJITInfo::relocate(void *Function, MachineRelocation *MR,
372 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner9b3d9892004-11-23 06:02:06 +0000373 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
374 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
375 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
376 switch ((PPC::RelocationType)MR->getRelocationType()) {
377 default: assert(0 && "Unknown relocation type!");
378 case PPC::reloc_pcrel_bx:
379 // PC-relative relocation for b and bl instructions.
380 ResultPtr = (ResultPtr-(intptr_t)RelocPos) >> 2;
381 assert(ResultPtr >= -(1 << 23) && ResultPtr < (1 << 23) &&
382 "Relocation out of range!");
383 *RelocPos |= (ResultPtr & ((1 << 24)-1)) << 2;
384 break;
Evan Chengf141cc42006-07-27 18:21:10 +0000385 case PPC::reloc_pcrel_bcx:
386 // PC-relative relocation for BLT,BLE,BEQ,BGE,BGT,BNE, or other
387 // bcx instructions.
388 ResultPtr = (ResultPtr-(intptr_t)RelocPos) >> 2;
389 assert(ResultPtr >= -(1 << 13) && ResultPtr < (1 << 13) &&
390 "Relocation out of range!");
391 *RelocPos |= (ResultPtr & ((1 << 14)-1)) << 2;
392 break;
Chris Lattner5efb75d2004-11-24 22:30:08 +0000393 case PPC::reloc_absolute_high: // high bits of ref -> low 16 of instr
Chris Lattner3bc8a762006-07-12 21:23:20 +0000394 case PPC::reloc_absolute_low: { // low bits of ref -> low 16 of instr
Chris Lattner9b3d9892004-11-23 06:02:06 +0000395 ResultPtr += MR->getConstantVal();
396
Chris Lattner5efb75d2004-11-24 22:30:08 +0000397 // If this is a high-part access, get the high-part.
Nate Begeman94be2482006-09-08 22:42:09 +0000398 if (MR->getRelocationType() == PPC::reloc_absolute_high) {
Chris Lattner9b3d9892004-11-23 06:02:06 +0000399 // If the low part will have a carry (really a borrow) from the low
400 // 16-bits into the high 16, add a bit to borrow from.
401 if (((int)ResultPtr << 16) < 0)
402 ResultPtr += 1 << 16;
403 ResultPtr >>= 16;
404 }
405
406 // Do the addition then mask, so the addition does not overflow the 16-bit
407 // immediate section of the instruction.
408 unsigned LowBits = (*RelocPos + ResultPtr) & 65535;
409 unsigned HighBits = *RelocPos & ~65535;
410 *RelocPos = LowBits | HighBits; // Slam into low 16-bits
411 break;
412 }
Chris Lattner3bc8a762006-07-12 21:23:20 +0000413 case PPC::reloc_absolute_low_ix: { // low bits of ref -> low 14 of instr
414 ResultPtr += MR->getConstantVal();
415 // Do the addition then mask, so the addition does not overflow the 16-bit
416 // immediate section of the instruction.
417 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC;
418 unsigned HighBits = *RelocPos & 0xFFFF0003;
419 *RelocPos = LowBits | HighBits; // Slam into low 14-bits.
420 break;
421 }
422 }
Chris Lattner9b3d9892004-11-23 06:02:06 +0000423 }
424}
425
Nate Begeman21e463b2005-10-16 05:39:50 +0000426void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
Nate Begeman06abd222006-08-29 02:30:59 +0000427 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit);
Chris Lattner9b3d9892004-11-23 06:02:06 +0000428}