Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 1 | //===-- PPCJITInfo.cpp - Implement the JIT interfaces for the PowerPC -----===// |
Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 3 | // 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 Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the JIT interfaces for the 32-bit PowerPC target. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #define DEBUG_TYPE "jit" |
Chris Lattner | b9459b7 | 2005-10-14 23:53:41 +0000 | [diff] [blame] | 15 | #include "PPCJITInfo.h" |
Chris Lattner | 16e71f2 | 2005-10-14 23:59:06 +0000 | [diff] [blame] | 16 | #include "PPCRelocations.h" |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineCodeEmitter.h" |
| 18 | #include "llvm/Config/alloca.h" |
Evan Cheng | 55fc280 | 2006-07-25 20:40:54 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Debug.h" |
Chris Lattner | 15ee8ad | 2004-11-26 20:25:17 +0000 | [diff] [blame] | 20 | #include <set> |
Evan Cheng | 55fc280 | 2006-07-25 20:40:54 +0000 | [diff] [blame] | 21 | #include <iostream> |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 22 | using namespace llvm; |
| 23 | |
| 24 | static TargetJITInfo::JITCompilerFn JITCompilerFunction; |
| 25 | |
| 26 | #define BUILD_ADDIS(RD,RS,IMM16) \ |
| 27 | ((15 << 26) | ((RD) << 21) | ((RS) << 16) | ((IMM16) & 65535)) |
| 28 | #define BUILD_ORI(RD,RS,UIMM16) \ |
| 29 | ((24 << 26) | ((RS) << 21) | ((RD) << 16) | ((UIMM16) & 65535)) |
| 30 | #define BUILD_MTSPR(RS,SPR) \ |
| 31 | ((31 << 26) | ((RS) << 21) | ((SPR) << 16) | (467 << 1)) |
| 32 | #define BUILD_BCCTRx(BO,BI,LINK) \ |
| 33 | ((19 << 26) | ((BO) << 21) | ((BI) << 16) | (528 << 1) | ((LINK) & 1)) |
| 34 | |
| 35 | // Pseudo-ops |
| 36 | #define BUILD_LIS(RD,IMM16) BUILD_ADDIS(RD,0,IMM16) |
| 37 | #define BUILD_MTCTR(RS) BUILD_MTSPR(RS,9) |
| 38 | #define BUILD_BCTR(LINK) BUILD_BCCTRx(20,0,LINK) |
| 39 | |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 40 | |
Chris Lattner | 7c83dc2 | 2004-11-23 06:27:02 +0000 | [diff] [blame] | 41 | static void EmitBranchToAt(void *At, void *To, bool isCall) { |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 42 | intptr_t Addr = (intptr_t)To; |
| 43 | |
| 44 | // FIXME: should special case the short branch case. |
| 45 | unsigned *AtI = (unsigned*)At; |
| 46 | |
| 47 | AtI[0] = BUILD_LIS(12, Addr >> 16); // lis r12, hi16(address) |
| 48 | AtI[1] = BUILD_ORI(12, 12, Addr); // ori r12, r12, low16(address) |
| 49 | AtI[2] = BUILD_MTCTR(12); // mtctr r12 |
Chris Lattner | 7c83dc2 | 2004-11-23 06:27:02 +0000 | [diff] [blame] | 50 | AtI[3] = BUILD_BCTR(isCall); // bctr/bctrl |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 53 | extern "C" void PPC32CompilationCallback(); |
| 54 | |
Nate Begeman | ca6d0f5 | 2004-11-23 21:34:18 +0000 | [diff] [blame] | 55 | #if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER) |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 56 | // CompilationCallback stub - We can't use a C function with inline assembly in |
| 57 | // it, because we the prolog/epilog inserted by GCC won't work for us. Instead, |
| 58 | // write our own wrapper, which does things our way, so we have complete control |
| 59 | // over register saving and restoring. |
| 60 | asm( |
| 61 | ".text\n" |
| 62 | ".align 2\n" |
| 63 | ".globl _PPC32CompilationCallback\n" |
| 64 | "_PPC32CompilationCallback:\n" |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 65 | // Make space for 8 ints r[3-10] and 13 doubles f[1-13] and the |
| 66 | // FIXME: need to save v[0-19] for altivec? |
| 67 | // Set up a proper stack frame |
| 68 | "stwu r1, -208(r1)\n" |
| 69 | "mflr r0\n" |
| 70 | "stw r0, 216(r1)\n" |
| 71 | // Save all int arg registers |
| 72 | "stw r10, 204(r1)\n" "stw r9, 200(r1)\n" |
| 73 | "stw r8, 196(r1)\n" "stw r7, 192(r1)\n" |
| 74 | "stw r6, 188(r1)\n" "stw r5, 184(r1)\n" |
| 75 | "stw r4, 180(r1)\n" "stw r3, 176(r1)\n" |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 76 | // Save all call-clobbered FP regs. |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 77 | "stfd f13, 168(r1)\n" "stfd f12, 160(r1)\n" |
| 78 | "stfd f11, 152(r1)\n" "stfd f10, 144(r1)\n" |
| 79 | "stfd f9, 136(r1)\n" "stfd f8, 128(r1)\n" |
| 80 | "stfd f7, 120(r1)\n" "stfd f6, 112(r1)\n" |
| 81 | "stfd f5, 104(r1)\n" "stfd f4, 96(r1)\n" |
| 82 | "stfd f3, 88(r1)\n" "stfd f2, 80(r1)\n" |
| 83 | "stfd f1, 72(r1)\n" |
| 84 | // Arguments to Compilation Callback: |
| 85 | // r3 - our lr (address of the call instruction in stub plus 4) |
| 86 | // r4 - stub's lr (address of instruction that called the stub plus 4) |
| 87 | "mr r3, r0\n" |
| 88 | "lwz r2, 208(r1)\n" // stub's frame |
| 89 | "lwz r4, 8(r2)\n" // stub's lr |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 90 | "bl _PPC32CompilationCallbackC\n" |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 91 | "mtctr r3\n" |
| 92 | // Restore all int arg registers |
| 93 | "lwz r10, 204(r1)\n" "lwz r9, 200(r1)\n" |
| 94 | "lwz r8, 196(r1)\n" "lwz r7, 192(r1)\n" |
| 95 | "lwz r6, 188(r1)\n" "lwz r5, 184(r1)\n" |
| 96 | "lwz r4, 180(r1)\n" "lwz r3, 176(r1)\n" |
| 97 | // Restore all FP arg registers |
| 98 | "lfd f13, 168(r1)\n" "lfd f12, 160(r1)\n" |
| 99 | "lfd f11, 152(r1)\n" "lfd f10, 144(r1)\n" |
| 100 | "lfd f9, 136(r1)\n" "lfd f8, 128(r1)\n" |
| 101 | "lfd f7, 120(r1)\n" "lfd f6, 112(r1)\n" |
| 102 | "lfd f5, 104(r1)\n" "lfd f4, 96(r1)\n" |
| 103 | "lfd f3, 88(r1)\n" "lfd f2, 80(r1)\n" |
| 104 | "lfd f1, 72(r1)\n" |
| 105 | // Pop 3 frames off the stack and branch to target |
| 106 | "lwz r1, 208(r1)\n" |
| 107 | "lwz r2, 8(r1)\n" |
| 108 | "mtlr r2\n" |
| 109 | "bctr\n" |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 110 | ); |
Chris Lattner | fde839b | 2004-11-25 06:14:45 +0000 | [diff] [blame] | 111 | #else |
| 112 | void PPC32CompilationCallback() { |
| 113 | assert(0 && "This is not a power pc, you can't execute this!"); |
| 114 | abort(); |
| 115 | } |
Nate Begeman | ca6d0f5 | 2004-11-23 21:34:18 +0000 | [diff] [blame] | 116 | #endif |
| 117 | |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 118 | extern "C" unsigned *PPC32CompilationCallbackC(unsigned *StubCallAddrPlus4, |
| 119 | unsigned *OrigCallAddrPlus4) { |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 120 | // Adjust the pointer to the address of the call instruction in the stub |
| 121 | // emitted by emitFunctionStub, rather than the instruction after it. |
| 122 | unsigned *StubCallAddr = StubCallAddrPlus4 - 1; |
| 123 | unsigned *OrigCallAddr = OrigCallAddrPlus4 - 1; |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 124 | |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 125 | void *Target = JITCompilerFunction(StubCallAddr); |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 126 | |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 127 | // Check to see if *OrigCallAddr is a 'bl' instruction, and if we can rewrite |
| 128 | // it to branch directly to the destination. If so, rewrite it so it does not |
| 129 | // need to go through the stub anymore. |
| 130 | unsigned OrigCallInst = *OrigCallAddr; |
| 131 | if ((OrigCallInst >> 26) == 18) { // Direct call. |
| 132 | intptr_t Offset = ((intptr_t)Target - (intptr_t)OrigCallAddr) >> 2; |
| 133 | |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 134 | if (Offset >= -(1 << 23) && Offset < (1 << 23)) { // In range? |
Chris Lattner | 892afa9 | 2004-11-24 18:00:02 +0000 | [diff] [blame] | 135 | // Clear the original target out. |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 136 | OrigCallInst &= (63 << 26) | 3; |
Chris Lattner | 892afa9 | 2004-11-24 18:00:02 +0000 | [diff] [blame] | 137 | // Fill in the new target. |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 138 | OrigCallInst |= (Offset & ((1 << 24)-1)) << 2; |
Chris Lattner | 892afa9 | 2004-11-24 18:00:02 +0000 | [diff] [blame] | 139 | // Replace the call. |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 140 | *OrigCallAddr = OrigCallInst; |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 141 | } |
| 142 | } |
Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 143 | |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 144 | // Assert that we are coming from a stub that was created with our |
| 145 | // emitFunctionStub. |
| 146 | assert((*StubCallAddr >> 26) == 19 && "Call in stub is not indirect!"); |
| 147 | StubCallAddr -= 6; |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 148 | |
| 149 | // Rewrite the stub with an unconditional branch to the target, for any users |
| 150 | // who took the address of the stub. |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 151 | EmitBranchToAt(StubCallAddr, Target, false); |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 152 | |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 153 | // Put the address of the target function to call and the address to return to |
| 154 | // after calling the target function in a place that is easy to get on the |
| 155 | // stack after we restore all regs. |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 156 | return (unsigned *)Target; |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | |
| 160 | |
Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 161 | TargetJITInfo::LazyResolverFn |
Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 162 | PPCJITInfo::getLazyResolverFunction(JITCompilerFn Fn) { |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 163 | JITCompilerFunction = Fn; |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 164 | return PPC32CompilationCallback; |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 165 | } |
| 166 | |
Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 167 | void *PPCJITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) { |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 168 | // If this is just a call to an external function, emit a branch instead of a |
| 169 | // call. The code is the same except for one bit of the last instruction. |
Chris Lattner | 08a9a98 | 2006-06-01 17:17:06 +0000 | [diff] [blame] | 170 | if (Fn != (void*)(intptr_t)PPC32CompilationCallback) { |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 171 | MCE.startFunctionStub(4*4); |
| 172 | void *Addr = (void*)(intptr_t)MCE.getCurrentPCValue(); |
Chris Lattner | d3f0aef | 2006-05-02 19:14:47 +0000 | [diff] [blame] | 173 | MCE.emitWordBE(0); |
| 174 | MCE.emitWordBE(0); |
| 175 | MCE.emitWordBE(0); |
| 176 | MCE.emitWordBE(0); |
Chris Lattner | 7c83dc2 | 2004-11-23 06:27:02 +0000 | [diff] [blame] | 177 | EmitBranchToAt(Addr, Fn, false); |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 178 | return MCE.finishFunctionStub(0); |
| 179 | } |
| 180 | |
Chris Lattner | 7c83dc2 | 2004-11-23 06:27:02 +0000 | [diff] [blame] | 181 | MCE.startFunctionStub(4*7); |
Chris Lattner | d3f0aef | 2006-05-02 19:14:47 +0000 | [diff] [blame] | 182 | MCE.emitWordBE(0x9421ffe0); // stwu r1,-32(r1) |
| 183 | MCE.emitWordBE(0x7d6802a6); // mflr r11 |
| 184 | MCE.emitWordBE(0x91610028); // stw r11, 40(r1) |
Chris Lattner | 7c83dc2 | 2004-11-23 06:27:02 +0000 | [diff] [blame] | 185 | void *Addr = (void*)(intptr_t)MCE.getCurrentPCValue(); |
Chris Lattner | d3f0aef | 2006-05-02 19:14:47 +0000 | [diff] [blame] | 186 | MCE.emitWordBE(0); |
| 187 | MCE.emitWordBE(0); |
| 188 | MCE.emitWordBE(0); |
| 189 | MCE.emitWordBE(0); |
Chris Lattner | 7c83dc2 | 2004-11-23 06:27:02 +0000 | [diff] [blame] | 190 | EmitBranchToAt(Addr, Fn, true/*is call*/); |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 191 | return MCE.finishFunctionStub(0); |
| 192 | } |
| 193 | |
| 194 | |
Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 195 | void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, |
| 196 | unsigned NumRelocs, unsigned char* GOTBase) { |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 197 | for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { |
| 198 | unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4; |
| 199 | intptr_t ResultPtr = (intptr_t)MR->getResultPointer(); |
| 200 | switch ((PPC::RelocationType)MR->getRelocationType()) { |
| 201 | default: assert(0 && "Unknown relocation type!"); |
| 202 | case PPC::reloc_pcrel_bx: |
| 203 | // PC-relative relocation for b and bl instructions. |
| 204 | ResultPtr = (ResultPtr-(intptr_t)RelocPos) >> 2; |
| 205 | assert(ResultPtr >= -(1 << 23) && ResultPtr < (1 << 23) && |
| 206 | "Relocation out of range!"); |
| 207 | *RelocPos |= (ResultPtr & ((1 << 24)-1)) << 2; |
| 208 | break; |
Evan Cheng | f141cc4 | 2006-07-27 18:21:10 +0000 | [diff] [blame^] | 209 | case PPC::reloc_pcrel_bcx: |
| 210 | // PC-relative relocation for BLT,BLE,BEQ,BGE,BGT,BNE, or other |
| 211 | // bcx instructions. |
| 212 | ResultPtr = (ResultPtr-(intptr_t)RelocPos) >> 2; |
| 213 | assert(ResultPtr >= -(1 << 13) && ResultPtr < (1 << 13) && |
| 214 | "Relocation out of range!"); |
| 215 | *RelocPos |= (ResultPtr & ((1 << 14)-1)) << 2; |
| 216 | break; |
Chris Lattner | 5efb75d | 2004-11-24 22:30:08 +0000 | [diff] [blame] | 217 | case PPC::reloc_absolute_ptr_high: // Pointer relocations. |
Nate Begeman | 6fcbd69 | 2006-04-21 22:04:15 +0000 | [diff] [blame] | 218 | case PPC::reloc_absolute_ptr_low: |
Chris Lattner | 5efb75d | 2004-11-24 22:30:08 +0000 | [diff] [blame] | 219 | case PPC::reloc_absolute_high: // high bits of ref -> low 16 of instr |
Chris Lattner | 3bc8a76 | 2006-07-12 21:23:20 +0000 | [diff] [blame] | 220 | case PPC::reloc_absolute_low: { // low bits of ref -> low 16 of instr |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 221 | ResultPtr += MR->getConstantVal(); |
| 222 | |
Chris Lattner | 5efb75d | 2004-11-24 22:30:08 +0000 | [diff] [blame] | 223 | // If this is a high-part access, get the high-part. |
| 224 | if (MR->getRelocationType() == PPC::reloc_absolute_high || |
| 225 | MR->getRelocationType() == PPC::reloc_absolute_ptr_high) { |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 226 | // If the low part will have a carry (really a borrow) from the low |
| 227 | // 16-bits into the high 16, add a bit to borrow from. |
| 228 | if (((int)ResultPtr << 16) < 0) |
| 229 | ResultPtr += 1 << 16; |
| 230 | ResultPtr >>= 16; |
| 231 | } |
| 232 | |
| 233 | // Do the addition then mask, so the addition does not overflow the 16-bit |
| 234 | // immediate section of the instruction. |
| 235 | unsigned LowBits = (*RelocPos + ResultPtr) & 65535; |
| 236 | unsigned HighBits = *RelocPos & ~65535; |
| 237 | *RelocPos = LowBits | HighBits; // Slam into low 16-bits |
| 238 | break; |
| 239 | } |
Chris Lattner | 3bc8a76 | 2006-07-12 21:23:20 +0000 | [diff] [blame] | 240 | case PPC::reloc_absolute_low_ix: { // low bits of ref -> low 14 of instr |
| 241 | ResultPtr += MR->getConstantVal(); |
| 242 | // Do the addition then mask, so the addition does not overflow the 16-bit |
| 243 | // immediate section of the instruction. |
| 244 | unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC; |
| 245 | unsigned HighBits = *RelocPos & 0xFFFF0003; |
| 246 | *RelocPos = LowBits | HighBits; // Slam into low 14-bits. |
| 247 | break; |
| 248 | } |
| 249 | } |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 250 | } |
| 251 | } |
| 252 | |
Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 253 | void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { |
Chris Lattner | 7c83dc2 | 2004-11-23 06:27:02 +0000 | [diff] [blame] | 254 | EmitBranchToAt(Old, New, false); |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 255 | } |