blob: f24c8726d5448f56faabb793ab4b7a8d0f28a3cf [file] [log] [blame]
Nate Begeman6cca84e2005-10-16 05:39:50 +00001//===-- PPCJITInfo.cpp - Implement the JIT interfaces for the PowerPC -----===//
Misha Brukmanb4402432005-04-21 23:30:14 +00002//
Chris Lattner8296c4c2004-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 Brukmanb4402432005-04-21 23:30:14 +00007//
Chris Lattner8296c4c2004-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 Lattner0aa794b2005-10-14 23:53:41 +000015#include "PPCJITInfo.h"
Chris Lattner6f3b9542005-10-14 23:59:06 +000016#include "PPCRelocations.h"
Chris Lattner8296c4c2004-11-23 06:02:06 +000017#include "llvm/CodeGen/MachineCodeEmitter.h"
18#include "llvm/Config/alloca.h"
Evan Chengf6acb342006-07-25 20:40:54 +000019#include "llvm/Support/Debug.h"
Chris Lattnerb50fd922004-11-26 20:25:17 +000020#include <set>
Chris Lattner8296c4c2004-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 Begeman18f03292006-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 Lattner13535c22006-12-07 23:44:07 +000033 (((ME) & 63) << 6) | (1 << 2) | ((((SH) >> 5) & 1) << 1))
Chris Lattner8296c4c2004-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 Begeman18f03292006-08-29 02:30:59 +000038#define BUILD_B(TARGET, LINK) \
39 ((18 << 26) | (((TARGET) & 0x00FFFFFF) << 2) | ((LINK) & 1))
Chris Lattner8296c4c2004-11-23 06:02:06 +000040
41// Pseudo-ops
42#define BUILD_LIS(RD,IMM16) BUILD_ADDIS(RD,0,IMM16)
Nate Begeman18f03292006-08-29 02:30:59 +000043#define BUILD_SLDI(RD,RS,IMM6) BUILD_RLDICR(RD,RS,IMM6,63-IMM6)
Chris Lattner8296c4c2004-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 Begeman18f03292006-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 Lattner8296c4c2004-11-23 06:02:06 +000050
Nate Begeman18f03292006-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 Lattner8296c4c2004-11-23 06:02:06 +000067}
68
Chris Lattner078b6f22004-11-24 21:01:46 +000069extern "C" void PPC32CompilationCallback();
Nate Begeman18f03292006-08-29 02:30:59 +000070extern "C" void PPC64CompilationCallback();
Chris Lattner078b6f22004-11-24 21:01:46 +000071
Chris Lattnerd32cb5e2006-09-28 23:32:43 +000072#if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \
73 !defined(__ppc64__)
Chris Lattner078b6f22004-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 Begeman01364fb2006-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 Begeman18f03292006-08-29 02:30:59 +000085 // FIXME: could shrink frame
Nate Begeman01364fb2006-05-02 04:50:05 +000086 // Set up a proper stack frame
Nate Begeman01364fb2006-05-02 04:50:05 +000087 "mflr r0\n"
Jim Laskey04c832d2006-12-10 12:13:31 +000088 "stw r0, 8(r1)\n"
89 "stwu r1, -208(r1)\n"
Nate Begeman01364fb2006-05-02 04:50:05 +000090 // Save all int arg registers
91 "stw r10, 204(r1)\n" "stw r9, 200(r1)\n"
92 "stw r8, 196(r1)\n" "stw r7, 192(r1)\n"
93 "stw r6, 188(r1)\n" "stw r5, 184(r1)\n"
94 "stw r4, 180(r1)\n" "stw r3, 176(r1)\n"
Chris Lattner078b6f22004-11-24 21:01:46 +000095 // Save all call-clobbered FP regs.
Nate Begeman01364fb2006-05-02 04:50:05 +000096 "stfd f13, 168(r1)\n" "stfd f12, 160(r1)\n"
97 "stfd f11, 152(r1)\n" "stfd f10, 144(r1)\n"
98 "stfd f9, 136(r1)\n" "stfd f8, 128(r1)\n"
99 "stfd f7, 120(r1)\n" "stfd f6, 112(r1)\n"
100 "stfd f5, 104(r1)\n" "stfd f4, 96(r1)\n"
101 "stfd f3, 88(r1)\n" "stfd f2, 80(r1)\n"
102 "stfd f1, 72(r1)\n"
103 // Arguments to Compilation Callback:
104 // r3 - our lr (address of the call instruction in stub plus 4)
105 // r4 - stub's lr (address of instruction that called the stub plus 4)
Chris Lattner09fecf92006-12-08 04:54:03 +0000106 // r5 - is64Bit - always 0.
Nate Begeman01364fb2006-05-02 04:50:05 +0000107 "mr r3, r0\n"
108 "lwz r2, 208(r1)\n" // stub's frame
109 "lwz r4, 8(r2)\n" // stub's lr
Nate Begeman18f03292006-08-29 02:30:59 +0000110 "li r5, 0\n" // 0 == 32 bit
111 "bl _PPCCompilationCallbackC\n"
Nate Begeman01364fb2006-05-02 04:50:05 +0000112 "mtctr r3\n"
113 // Restore all int arg registers
114 "lwz r10, 204(r1)\n" "lwz r9, 200(r1)\n"
115 "lwz r8, 196(r1)\n" "lwz r7, 192(r1)\n"
116 "lwz r6, 188(r1)\n" "lwz r5, 184(r1)\n"
117 "lwz r4, 180(r1)\n" "lwz r3, 176(r1)\n"
118 // Restore all FP arg registers
119 "lfd f13, 168(r1)\n" "lfd f12, 160(r1)\n"
120 "lfd f11, 152(r1)\n" "lfd f10, 144(r1)\n"
121 "lfd f9, 136(r1)\n" "lfd f8, 128(r1)\n"
122 "lfd f7, 120(r1)\n" "lfd f6, 112(r1)\n"
123 "lfd f5, 104(r1)\n" "lfd f4, 96(r1)\n"
124 "lfd f3, 88(r1)\n" "lfd f2, 80(r1)\n"
125 "lfd f1, 72(r1)\n"
126 // Pop 3 frames off the stack and branch to target
127 "lwz r1, 208(r1)\n"
128 "lwz r2, 8(r1)\n"
129 "mtlr r2\n"
130 "bctr\n"
Chris Lattner078b6f22004-11-24 21:01:46 +0000131 );
Chris Lattner8cbad8e2004-11-25 06:14:45 +0000132#else
133void PPC32CompilationCallback() {
134 assert(0 && "This is not a power pc, you can't execute this!");
135 abort();
136}
Nate Begeman61776062004-11-23 21:34:18 +0000137#endif
138
Chris Lattnerd32cb5e2006-09-28 23:32:43 +0000139#if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \
140 defined(__ppc64__)
Nate Begeman18f03292006-08-29 02:30:59 +0000141asm(
142 ".text\n"
143 ".align 2\n"
144 ".globl _PPC64CompilationCallback\n"
145"_PPC64CompilationCallback:\n"
146 // Make space for 8 ints r[3-10] and 13 doubles f[1-13] and the
147 // FIXME: need to save v[0-19] for altivec?
148 // Set up a proper stack frame
Jim Laskey04c832d2006-12-10 12:13:31 +0000149 // Layout
150 // PowerPC64 ABI linkage - 48 bytes
151 // parameters - 64 bytes
152 // 13 double registers - 104 bytes
153 // 8 int registers - 64 bytes
Nate Begeman18f03292006-08-29 02:30:59 +0000154 "mflr r0\n"
Jim Laskey04c832d2006-12-10 12:13:31 +0000155 "std r0, 16(r1)\n"
156 "stdu r1, -280(r1)\n"
Nate Begeman18f03292006-08-29 02:30:59 +0000157 // Save all int arg registers
Jim Laskey04c832d2006-12-10 12:13:31 +0000158 "std r10, 272(r1)\n" "std r9, 264(r1)\n"
159 "std r8, 256(r1)\n" "std r7, 248(r1)\n"
160 "std r6, 240(r1)\n" "std r5, 232(r1)\n"
161 "std r4, 224(r1)\n" "std r3, 216(r1)\n"
Nate Begeman18f03292006-08-29 02:30:59 +0000162 // Save all call-clobbered FP regs.
Jim Laskey04c832d2006-12-10 12:13:31 +0000163 "stfd f13, 208(r1)\n" "stfd f12, 200(r1)\n"
164 "stfd f11, 192(r1)\n" "stfd f10, 184(r1)\n"
165 "stfd f9, 176(r1)\n" "stfd f8, 168(r1)\n"
166 "stfd f7, 160(r1)\n" "stfd f6, 152(r1)\n"
167 "stfd f5, 144(r1)\n" "stfd f4, 136(r1)\n"
168 "stfd f3, 128(r1)\n" "stfd f2, 120(r1)\n"
169 "stfd f1, 112(r1)\n"
Nate Begeman18f03292006-08-29 02:30:59 +0000170 // Arguments to Compilation Callback:
171 // r3 - our lr (address of the call instruction in stub plus 4)
172 // r4 - stub's lr (address of instruction that called the stub plus 4)
Chris Lattner09fecf92006-12-08 04:54:03 +0000173 // r5 - is64Bit - always 1.
Nate Begeman18f03292006-08-29 02:30:59 +0000174 "mr r3, r0\n"
Jim Laskey04c832d2006-12-10 12:13:31 +0000175 "ld r2, 280(r1)\n" // stub's frame
Nate Begeman18f03292006-08-29 02:30:59 +0000176 "ld r4, 16(r2)\n" // stub's lr
177 "li r5, 1\n" // 1 == 64 bit
178 "bl _PPCCompilationCallbackC\n"
179 "mtctr r3\n"
180 // Restore all int arg registers
Jim Laskey04c832d2006-12-10 12:13:31 +0000181 "ld r10, 272(r1)\n" "ld r9, 264(r1)\n"
182 "ld r8, 256(r1)\n" "ld r7, 248(r1)\n"
183 "ld r6, 240(r1)\n" "ld r5, 232(r1)\n"
184 "ld r4, 224(r1)\n" "ld r3, 216(r1)\n"
Nate Begeman18f03292006-08-29 02:30:59 +0000185 // Restore all FP arg registers
Jim Laskey04c832d2006-12-10 12:13:31 +0000186 "lfd f13, 208(r1)\n" "lfd f12, 200(r1)\n"
187 "lfd f11, 192(r1)\n" "lfd f10, 184(r1)\n"
188 "lfd f9, 176(r1)\n" "lfd f8, 168(r1)\n"
189 "lfd f7, 160(r1)\n" "lfd f6, 152(r1)\n"
190 "lfd f5, 144(r1)\n" "lfd f4, 136(r1)\n"
191 "lfd f3, 128(r1)\n" "lfd f2, 120(r1)\n"
192 "lfd f1, 112(r1)\n"
Nate Begeman18f03292006-08-29 02:30:59 +0000193 // Pop 3 frames off the stack and branch to target
Jim Laskey04c832d2006-12-10 12:13:31 +0000194 "ld r1, 280(r1)\n"
Nate Begeman18f03292006-08-29 02:30:59 +0000195 "ld r2, 16(r1)\n"
196 "mtlr r2\n"
197 "bctr\n"
198 );
199#else
200void PPC64CompilationCallback() {
201 assert(0 && "This is not a power pc, you can't execute this!");
202 abort();
203}
204#endif
205
206extern "C" void *PPCCompilationCallbackC(unsigned *StubCallAddrPlus4,
207 unsigned *OrigCallAddrPlus4,
208 bool is64Bit) {
Nate Begeman318bb962006-04-25 04:45:59 +0000209 // Adjust the pointer to the address of the call instruction in the stub
210 // emitted by emitFunctionStub, rather than the instruction after it.
211 unsigned *StubCallAddr = StubCallAddrPlus4 - 1;
212 unsigned *OrigCallAddr = OrigCallAddrPlus4 - 1;
Chris Lattner4ff11752004-11-23 06:55:05 +0000213
Nate Begeman318bb962006-04-25 04:45:59 +0000214 void *Target = JITCompilerFunction(StubCallAddr);
Chris Lattner4ff11752004-11-23 06:55:05 +0000215
Nate Begeman318bb962006-04-25 04:45:59 +0000216 // Check to see if *OrigCallAddr is a 'bl' instruction, and if we can rewrite
217 // it to branch directly to the destination. If so, rewrite it so it does not
218 // need to go through the stub anymore.
219 unsigned OrigCallInst = *OrigCallAddr;
220 if ((OrigCallInst >> 26) == 18) { // Direct call.
221 intptr_t Offset = ((intptr_t)Target - (intptr_t)OrigCallAddr) >> 2;
222
Chris Lattner4ff11752004-11-23 06:55:05 +0000223 if (Offset >= -(1 << 23) && Offset < (1 << 23)) { // In range?
Chris Lattner659d72e2004-11-24 18:00:02 +0000224 // Clear the original target out.
Nate Begeman318bb962006-04-25 04:45:59 +0000225 OrigCallInst &= (63 << 26) | 3;
Chris Lattner659d72e2004-11-24 18:00:02 +0000226 // Fill in the new target.
Nate Begeman318bb962006-04-25 04:45:59 +0000227 OrigCallInst |= (Offset & ((1 << 24)-1)) << 2;
Chris Lattner659d72e2004-11-24 18:00:02 +0000228 // Replace the call.
Nate Begeman318bb962006-04-25 04:45:59 +0000229 *OrigCallAddr = OrigCallInst;
Chris Lattner4ff11752004-11-23 06:55:05 +0000230 }
231 }
Misha Brukmanb4402432005-04-21 23:30:14 +0000232
Nate Begeman318bb962006-04-25 04:45:59 +0000233 // Assert that we are coming from a stub that was created with our
234 // emitFunctionStub.
Nate Begeman18f03292006-08-29 02:30:59 +0000235 if ((*StubCallAddr >> 26) == 18)
236 StubCallAddr -= 3;
237 else {
Nate Begeman318bb962006-04-25 04:45:59 +0000238 assert((*StubCallAddr >> 26) == 19 && "Call in stub is not indirect!");
Nate Begeman18f03292006-08-29 02:30:59 +0000239 StubCallAddr -= is64Bit ? 9 : 6;
240 }
Chris Lattner4ff11752004-11-23 06:55:05 +0000241
242 // Rewrite the stub with an unconditional branch to the target, for any users
243 // who took the address of the stub.
Nate Begeman18f03292006-08-29 02:30:59 +0000244 EmitBranchToAt((intptr_t)StubCallAddr, (intptr_t)Target, false, is64Bit);
Chris Lattner4ff11752004-11-23 06:55:05 +0000245
Nate Begeman318bb962006-04-25 04:45:59 +0000246 // Put the address of the target function to call and the address to return to
247 // after calling the target function in a place that is easy to get on the
248 // stack after we restore all regs.
Nate Begeman18f03292006-08-29 02:30:59 +0000249 return Target;
Chris Lattner4ff11752004-11-23 06:55:05 +0000250}
251
252
253
Misha Brukmanb4402432005-04-21 23:30:14 +0000254TargetJITInfo::LazyResolverFn
Nate Begeman6cca84e2005-10-16 05:39:50 +0000255PPCJITInfo::getLazyResolverFunction(JITCompilerFn Fn) {
Chris Lattner4ff11752004-11-23 06:55:05 +0000256 JITCompilerFunction = Fn;
Nate Begeman18f03292006-08-29 02:30:59 +0000257 return is64Bit ? PPC64CompilationCallback : PPC32CompilationCallback;
Chris Lattner4ff11752004-11-23 06:55:05 +0000258}
259
Nate Begeman6cca84e2005-10-16 05:39:50 +0000260void *PPCJITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
Chris Lattner8296c4c2004-11-23 06:02:06 +0000261 // If this is just a call to an external function, emit a branch instead of a
262 // call. The code is the same except for one bit of the last instruction.
Nate Begeman18f03292006-08-29 02:30:59 +0000263 if (Fn != (void*)(intptr_t)PPC32CompilationCallback &&
264 Fn != (void*)(intptr_t)PPC64CompilationCallback) {
265 MCE.startFunctionStub(7*4);
266 intptr_t Addr = (intptr_t)MCE.getCurrentPCValue();
Chris Lattnere1c96362006-05-02 19:14:47 +0000267 MCE.emitWordBE(0);
268 MCE.emitWordBE(0);
269 MCE.emitWordBE(0);
270 MCE.emitWordBE(0);
Nate Begeman18f03292006-08-29 02:30:59 +0000271 MCE.emitWordBE(0);
272 MCE.emitWordBE(0);
273 MCE.emitWordBE(0);
274 EmitBranchToAt(Addr, (intptr_t)Fn, false, is64Bit);
Chris Lattner8296c4c2004-11-23 06:02:06 +0000275 return MCE.finishFunctionStub(0);
276 }
277
Nate Begeman18f03292006-08-29 02:30:59 +0000278 MCE.startFunctionStub(10*4);
279 if (is64Bit) {
280 MCE.emitWordBE(0xf821ffb1); // stdu r1,-80(r1)
281 MCE.emitWordBE(0x7d6802a6); // mflr r11
282 MCE.emitWordBE(0xf9610060); // std r11, 96(r1)
283 } else {
284 MCE.emitWordBE(0x9421ffe0); // stwu r1,-32(r1)
285 MCE.emitWordBE(0x7d6802a6); // mflr r11
286 MCE.emitWordBE(0x91610028); // stw r11, 40(r1)
287 }
288 intptr_t Addr = (intptr_t)MCE.getCurrentPCValue();
Chris Lattnere1c96362006-05-02 19:14:47 +0000289 MCE.emitWordBE(0);
290 MCE.emitWordBE(0);
291 MCE.emitWordBE(0);
292 MCE.emitWordBE(0);
Nate Begeman18f03292006-08-29 02:30:59 +0000293 MCE.emitWordBE(0);
294 MCE.emitWordBE(0);
295 MCE.emitWordBE(0);
296 EmitBranchToAt(Addr, (intptr_t)Fn, true, is64Bit);
Chris Lattner8296c4c2004-11-23 06:02:06 +0000297 return MCE.finishFunctionStub(0);
298}
299
300
Nate Begeman6cca84e2005-10-16 05:39:50 +0000301void PPCJITInfo::relocate(void *Function, MachineRelocation *MR,
302 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner8296c4c2004-11-23 06:02:06 +0000303 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
304 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
305 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
306 switch ((PPC::RelocationType)MR->getRelocationType()) {
307 default: assert(0 && "Unknown relocation type!");
308 case PPC::reloc_pcrel_bx:
309 // PC-relative relocation for b and bl instructions.
310 ResultPtr = (ResultPtr-(intptr_t)RelocPos) >> 2;
311 assert(ResultPtr >= -(1 << 23) && ResultPtr < (1 << 23) &&
312 "Relocation out of range!");
313 *RelocPos |= (ResultPtr & ((1 << 24)-1)) << 2;
314 break;
Evan Cheng78bf1072006-07-27 18:21:10 +0000315 case PPC::reloc_pcrel_bcx:
316 // PC-relative relocation for BLT,BLE,BEQ,BGE,BGT,BNE, or other
317 // bcx instructions.
318 ResultPtr = (ResultPtr-(intptr_t)RelocPos) >> 2;
319 assert(ResultPtr >= -(1 << 13) && ResultPtr < (1 << 13) &&
320 "Relocation out of range!");
321 *RelocPos |= (ResultPtr & ((1 << 14)-1)) << 2;
322 break;
Chris Lattnerdd516792004-11-24 22:30:08 +0000323 case PPC::reloc_absolute_high: // high bits of ref -> low 16 of instr
Chris Lattner5b17dee2006-07-12 21:23:20 +0000324 case PPC::reloc_absolute_low: { // low bits of ref -> low 16 of instr
Chris Lattner8296c4c2004-11-23 06:02:06 +0000325 ResultPtr += MR->getConstantVal();
326
Chris Lattnerdd516792004-11-24 22:30:08 +0000327 // If this is a high-part access, get the high-part.
Nate Begeman69df6132006-09-08 22:42:09 +0000328 if (MR->getRelocationType() == PPC::reloc_absolute_high) {
Chris Lattner8296c4c2004-11-23 06:02:06 +0000329 // If the low part will have a carry (really a borrow) from the low
330 // 16-bits into the high 16, add a bit to borrow from.
331 if (((int)ResultPtr << 16) < 0)
332 ResultPtr += 1 << 16;
333 ResultPtr >>= 16;
334 }
335
336 // Do the addition then mask, so the addition does not overflow the 16-bit
337 // immediate section of the instruction.
338 unsigned LowBits = (*RelocPos + ResultPtr) & 65535;
339 unsigned HighBits = *RelocPos & ~65535;
340 *RelocPos = LowBits | HighBits; // Slam into low 16-bits
341 break;
342 }
Chris Lattner5b17dee2006-07-12 21:23:20 +0000343 case PPC::reloc_absolute_low_ix: { // low bits of ref -> low 14 of instr
344 ResultPtr += MR->getConstantVal();
345 // Do the addition then mask, so the addition does not overflow the 16-bit
346 // immediate section of the instruction.
347 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC;
348 unsigned HighBits = *RelocPos & 0xFFFF0003;
349 *RelocPos = LowBits | HighBits; // Slam into low 14-bits.
350 break;
351 }
352 }
Chris Lattner8296c4c2004-11-23 06:02:06 +0000353 }
354}
355
Nate Begeman6cca84e2005-10-16 05:39:50 +0000356void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
Nate Begeman18f03292006-08-29 02:30:59 +0000357 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit);
Chris Lattner8296c4c2004-11-23 06:02:06 +0000358}