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 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // 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" |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 17 | #include "PPCTargetMachine.h" |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 18 | #include "llvm/Function.h" |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineCodeEmitter.h" |
Chris Lattner | bc52cad | 2008-06-25 17:18:44 +0000 | [diff] [blame^] | 20 | #include "llvm/System/Memory.h" |
Evan Cheng | 55fc280 | 2006-07-25 20:40:54 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Debug.h" |
Chris Lattner | 15ee8ad | 2004-11-26 20:25:17 +0000 | [diff] [blame] | 22 | #include <set> |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 23 | using namespace llvm; |
| 24 | |
| 25 | static TargetJITInfo::JITCompilerFn JITCompilerFunction; |
| 26 | |
| 27 | #define BUILD_ADDIS(RD,RS,IMM16) \ |
| 28 | ((15 << 26) | ((RD) << 21) | ((RS) << 16) | ((IMM16) & 65535)) |
| 29 | #define BUILD_ORI(RD,RS,UIMM16) \ |
| 30 | ((24 << 26) | ((RS) << 21) | ((RD) << 16) | ((UIMM16) & 65535)) |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 31 | #define BUILD_ORIS(RD,RS,UIMM16) \ |
| 32 | ((25 << 26) | ((RS) << 21) | ((RD) << 16) | ((UIMM16) & 65535)) |
| 33 | #define BUILD_RLDICR(RD,RS,SH,ME) \ |
| 34 | ((30 << 26) | ((RS) << 21) | ((RD) << 16) | (((SH) & 31) << 11) | \ |
Chris Lattner | eb63b0a | 2006-12-07 23:44:07 +0000 | [diff] [blame] | 35 | (((ME) & 63) << 6) | (1 << 2) | ((((SH) >> 5) & 1) << 1)) |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 36 | #define BUILD_MTSPR(RS,SPR) \ |
| 37 | ((31 << 26) | ((RS) << 21) | ((SPR) << 16) | (467 << 1)) |
| 38 | #define BUILD_BCCTRx(BO,BI,LINK) \ |
| 39 | ((19 << 26) | ((BO) << 21) | ((BI) << 16) | (528 << 1) | ((LINK) & 1)) |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 40 | #define BUILD_B(TARGET, LINK) \ |
| 41 | ((18 << 26) | (((TARGET) & 0x00FFFFFF) << 2) | ((LINK) & 1)) |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 42 | |
| 43 | // Pseudo-ops |
| 44 | #define BUILD_LIS(RD,IMM16) BUILD_ADDIS(RD,0,IMM16) |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 45 | #define BUILD_SLDI(RD,RS,IMM6) BUILD_RLDICR(RD,RS,IMM6,63-IMM6) |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 46 | #define BUILD_MTCTR(RS) BUILD_MTSPR(RS,9) |
| 47 | #define BUILD_BCTR(LINK) BUILD_BCCTRx(20,0,LINK) |
| 48 | |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 49 | static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){ |
| 50 | intptr_t Offset = ((intptr_t)To - (intptr_t)At) >> 2; |
| 51 | unsigned *AtI = (unsigned*)(intptr_t)At; |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 52 | |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 53 | if (Offset >= -(1 << 23) && Offset < (1 << 23)) { // In range? |
| 54 | AtI[0] = BUILD_B(Offset, isCall); // b/bl target |
| 55 | } else if (!is64Bit) { |
| 56 | AtI[0] = BUILD_LIS(12, To >> 16); // lis r12, hi16(address) |
| 57 | AtI[1] = BUILD_ORI(12, 12, To); // ori r12, r12, lo16(address) |
| 58 | AtI[2] = BUILD_MTCTR(12); // mtctr r12 |
| 59 | AtI[3] = BUILD_BCTR(isCall); // bctr/bctrl |
| 60 | } else { |
| 61 | AtI[0] = BUILD_LIS(12, To >> 48); // lis r12, hi16(address) |
| 62 | AtI[1] = BUILD_ORI(12, 12, To >> 32); // ori r12, r12, lo16(address) |
| 63 | AtI[2] = BUILD_SLDI(12, 12, 32); // sldi r12, r12, 32 |
| 64 | AtI[3] = BUILD_ORIS(12, 12, To >> 16); // oris r12, r12, hi16(address) |
| 65 | AtI[4] = BUILD_ORI(12, 12, To); // ori r12, r12, lo16(address) |
| 66 | AtI[5] = BUILD_MTCTR(12); // mtctr r12 |
| 67 | AtI[6] = BUILD_BCTR(isCall); // bctr/bctrl |
| 68 | } |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 71 | extern "C" void PPC32CompilationCallback(); |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 72 | extern "C" void PPC64CompilationCallback(); |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 73 | |
Chris Lattner | 7be164c | 2006-09-28 23:32:43 +0000 | [diff] [blame] | 74 | #if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \ |
Chris Lattner | e7a83df | 2008-05-24 04:58:48 +0000 | [diff] [blame] | 75 | !(defined(__ppc64__) || defined(__FreeBSD__)) |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 76 | // CompilationCallback stub - We can't use a C function with inline assembly in |
| 77 | // it, because we the prolog/epilog inserted by GCC won't work for us. Instead, |
| 78 | // write our own wrapper, which does things our way, so we have complete control |
| 79 | // over register saving and restoring. |
| 80 | asm( |
| 81 | ".text\n" |
| 82 | ".align 2\n" |
| 83 | ".globl _PPC32CompilationCallback\n" |
| 84 | "_PPC32CompilationCallback:\n" |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 85 | // Make space for 8 ints r[3-10] and 13 doubles f[1-13] and the |
| 86 | // FIXME: need to save v[0-19] for altivec? |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 87 | // FIXME: could shrink frame |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 88 | // Set up a proper stack frame |
Jim Laskey | 18e2f44 | 2006-12-11 18:10:54 +0000 | [diff] [blame] | 89 | // FIXME Layout |
| 90 | // PowerPC64 ABI linkage - 24 bytes |
| 91 | // parameters - 32 bytes |
| 92 | // 13 double registers - 104 bytes |
| 93 | // 8 int registers - 32 bytes |
Jim Laskey | 0eadd73 | 2006-12-10 13:09:42 +0000 | [diff] [blame] | 94 | "mflr r0\n" |
Jim Laskey | 18e2f44 | 2006-12-11 18:10:54 +0000 | [diff] [blame] | 95 | "stw r0, 8(r1)\n" |
| 96 | "stwu r1, -208(r1)\n" |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 97 | // Save all int arg registers |
| 98 | "stw r10, 204(r1)\n" "stw r9, 200(r1)\n" |
| 99 | "stw r8, 196(r1)\n" "stw r7, 192(r1)\n" |
| 100 | "stw r6, 188(r1)\n" "stw r5, 184(r1)\n" |
| 101 | "stw r4, 180(r1)\n" "stw r3, 176(r1)\n" |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 102 | // Save all call-clobbered FP regs. |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 103 | "stfd f13, 168(r1)\n" "stfd f12, 160(r1)\n" |
| 104 | "stfd f11, 152(r1)\n" "stfd f10, 144(r1)\n" |
| 105 | "stfd f9, 136(r1)\n" "stfd f8, 128(r1)\n" |
| 106 | "stfd f7, 120(r1)\n" "stfd f6, 112(r1)\n" |
| 107 | "stfd f5, 104(r1)\n" "stfd f4, 96(r1)\n" |
| 108 | "stfd f3, 88(r1)\n" "stfd f2, 80(r1)\n" |
| 109 | "stfd f1, 72(r1)\n" |
| 110 | // Arguments to Compilation Callback: |
| 111 | // r3 - our lr (address of the call instruction in stub plus 4) |
| 112 | // r4 - stub's lr (address of instruction that called the stub plus 4) |
Chris Lattner | e150b8e | 2006-12-08 04:54:03 +0000 | [diff] [blame] | 113 | // r5 - is64Bit - always 0. |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 114 | "mr r3, r0\n" |
| 115 | "lwz r2, 208(r1)\n" // stub's frame |
| 116 | "lwz r4, 8(r2)\n" // stub's lr |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 117 | "li r5, 0\n" // 0 == 32 bit |
| 118 | "bl _PPCCompilationCallbackC\n" |
Nate Begeman | 5425267 | 2006-05-02 04:50:05 +0000 | [diff] [blame] | 119 | "mtctr r3\n" |
| 120 | // Restore all int arg registers |
| 121 | "lwz r10, 204(r1)\n" "lwz r9, 200(r1)\n" |
| 122 | "lwz r8, 196(r1)\n" "lwz r7, 192(r1)\n" |
| 123 | "lwz r6, 188(r1)\n" "lwz r5, 184(r1)\n" |
| 124 | "lwz r4, 180(r1)\n" "lwz r3, 176(r1)\n" |
| 125 | // Restore all FP arg registers |
| 126 | "lfd f13, 168(r1)\n" "lfd f12, 160(r1)\n" |
| 127 | "lfd f11, 152(r1)\n" "lfd f10, 144(r1)\n" |
| 128 | "lfd f9, 136(r1)\n" "lfd f8, 128(r1)\n" |
| 129 | "lfd f7, 120(r1)\n" "lfd f6, 112(r1)\n" |
| 130 | "lfd f5, 104(r1)\n" "lfd f4, 96(r1)\n" |
| 131 | "lfd f3, 88(r1)\n" "lfd f2, 80(r1)\n" |
| 132 | "lfd f1, 72(r1)\n" |
| 133 | // Pop 3 frames off the stack and branch to target |
| 134 | "lwz r1, 208(r1)\n" |
| 135 | "lwz r2, 8(r1)\n" |
| 136 | "mtlr r2\n" |
| 137 | "bctr\n" |
Chris Lattner | 7327808 | 2004-11-24 21:01:46 +0000 | [diff] [blame] | 138 | ); |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 139 | |
| 140 | #elif defined(__PPC__) && !defined(__ppc64__) |
Chris Lattner | e7a83df | 2008-05-24 04:58:48 +0000 | [diff] [blame] | 141 | // Linux & FreeBSD / PPC 32 support |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 142 | |
| 143 | // CompilationCallback stub - We can't use a C function with inline assembly in |
| 144 | // it, because we the prolog/epilog inserted by GCC won't work for us. Instead, |
| 145 | // write our own wrapper, which does things our way, so we have complete control |
| 146 | // over register saving and restoring. |
| 147 | asm( |
| 148 | ".text\n" |
| 149 | ".align 2\n" |
| 150 | ".globl PPC32CompilationCallback\n" |
| 151 | "PPC32CompilationCallback:\n" |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 152 | // Make space for 8 ints r[3-10] and 8 doubles f[1-8] and the |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 153 | // FIXME: need to save v[0-19] for altivec? |
| 154 | // FIXME: could shrink frame |
| 155 | // Set up a proper stack frame |
| 156 | // FIXME Layout |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 157 | // 8 double registers - 64 bytes |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 158 | // 8 int registers - 32 bytes |
| 159 | "mflr 0\n" |
| 160 | "stw 0, 4(1)\n" |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 161 | "stwu 1, -104(1)\n" |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 162 | // Save all int arg registers |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 163 | "stw 10, 100(1)\n" "stw 9, 96(1)\n" |
| 164 | "stw 8, 92(1)\n" "stw 7, 88(1)\n" |
| 165 | "stw 6, 84(1)\n" "stw 5, 80(1)\n" |
| 166 | "stw 4, 76(1)\n" "stw 3, 72(1)\n" |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 167 | // Save all call-clobbered FP regs. |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 168 | "stfd 8, 64(1)\n" |
| 169 | "stfd 7, 56(1)\n" "stfd 6, 48(1)\n" |
| 170 | "stfd 5, 40(1)\n" "stfd 4, 32(1)\n" |
| 171 | "stfd 3, 24(1)\n" "stfd 2, 16(1)\n" |
| 172 | "stfd 1, 8(1)\n" |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 173 | // Arguments to Compilation Callback: |
| 174 | // r3 - our lr (address of the call instruction in stub plus 4) |
| 175 | // r4 - stub's lr (address of instruction that called the stub plus 4) |
| 176 | // r5 - is64Bit - always 0. |
| 177 | "mr 3, 0\n" |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 178 | "lwz 5, 104(1)\n" // stub's frame |
| 179 | "lwz 4, 4(5)\n" // stub's lr |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 180 | "li 5, 0\n" // 0 == 32 bit |
| 181 | "bl PPCCompilationCallbackC\n" |
| 182 | "mtctr 3\n" |
| 183 | // Restore all int arg registers |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 184 | "lwz 10, 100(1)\n" "lwz 9, 96(1)\n" |
| 185 | "lwz 8, 92(1)\n" "lwz 7, 88(1)\n" |
| 186 | "lwz 6, 84(1)\n" "lwz 5, 80(1)\n" |
| 187 | "lwz 4, 76(1)\n" "lwz 3, 72(1)\n" |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 188 | // Restore all FP arg registers |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 189 | "lfd 8, 64(1)\n" |
| 190 | "lfd 7, 56(1)\n" "lfd 6, 48(1)\n" |
| 191 | "lfd 5, 40(1)\n" "lfd 4, 32(1)\n" |
| 192 | "lfd 3, 24(1)\n" "lfd 2, 16(1)\n" |
| 193 | "lfd 1, 8(1)\n" |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 194 | // Pop 3 frames off the stack and branch to target |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 195 | "lwz 1, 104(1)\n" |
| 196 | "lwz 0, 4(1)\n" |
| 197 | "mtlr 0\n" |
Chris Lattner | 456bc87 | 2007-02-25 05:04:13 +0000 | [diff] [blame] | 198 | "bctr\n" |
| 199 | ); |
Chris Lattner | fde839b | 2004-11-25 06:14:45 +0000 | [diff] [blame] | 200 | #else |
| 201 | void PPC32CompilationCallback() { |
| 202 | assert(0 && "This is not a power pc, you can't execute this!"); |
| 203 | abort(); |
| 204 | } |
Nate Begeman | ca6d0f5 | 2004-11-23 21:34:18 +0000 | [diff] [blame] | 205 | #endif |
| 206 | |
Chris Lattner | 7be164c | 2006-09-28 23:32:43 +0000 | [diff] [blame] | 207 | #if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \ |
| 208 | defined(__ppc64__) |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 209 | asm( |
| 210 | ".text\n" |
| 211 | ".align 2\n" |
| 212 | ".globl _PPC64CompilationCallback\n" |
| 213 | "_PPC64CompilationCallback:\n" |
| 214 | // Make space for 8 ints r[3-10] and 13 doubles f[1-13] and the |
| 215 | // FIXME: need to save v[0-19] for altivec? |
| 216 | // Set up a proper stack frame |
Jim Laskey | 18e2f44 | 2006-12-11 18:10:54 +0000 | [diff] [blame] | 217 | // Layout |
| 218 | // PowerPC64 ABI linkage - 48 bytes |
| 219 | // parameters - 64 bytes |
| 220 | // 13 double registers - 104 bytes |
| 221 | // 8 int registers - 64 bytes |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 222 | "mflr r0\n" |
Jim Laskey | 18e2f44 | 2006-12-11 18:10:54 +0000 | [diff] [blame] | 223 | "std r0, 16(r1)\n" |
| 224 | "stdu r1, -280(r1)\n" |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 225 | // Save all int arg registers |
Jim Laskey | 18e2f44 | 2006-12-11 18:10:54 +0000 | [diff] [blame] | 226 | "std r10, 272(r1)\n" "std r9, 264(r1)\n" |
| 227 | "std r8, 256(r1)\n" "std r7, 248(r1)\n" |
| 228 | "std r6, 240(r1)\n" "std r5, 232(r1)\n" |
| 229 | "std r4, 224(r1)\n" "std r3, 216(r1)\n" |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 230 | // Save all call-clobbered FP regs. |
Jim Laskey | 18e2f44 | 2006-12-11 18:10:54 +0000 | [diff] [blame] | 231 | "stfd f13, 208(r1)\n" "stfd f12, 200(r1)\n" |
| 232 | "stfd f11, 192(r1)\n" "stfd f10, 184(r1)\n" |
| 233 | "stfd f9, 176(r1)\n" "stfd f8, 168(r1)\n" |
| 234 | "stfd f7, 160(r1)\n" "stfd f6, 152(r1)\n" |
| 235 | "stfd f5, 144(r1)\n" "stfd f4, 136(r1)\n" |
| 236 | "stfd f3, 128(r1)\n" "stfd f2, 120(r1)\n" |
| 237 | "stfd f1, 112(r1)\n" |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 238 | // Arguments to Compilation Callback: |
| 239 | // r3 - our lr (address of the call instruction in stub plus 4) |
| 240 | // r4 - stub's lr (address of instruction that called the stub plus 4) |
Chris Lattner | e150b8e | 2006-12-08 04:54:03 +0000 | [diff] [blame] | 241 | // r5 - is64Bit - always 1. |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 242 | "mr r3, r0\n" |
Jim Laskey | 18e2f44 | 2006-12-11 18:10:54 +0000 | [diff] [blame] | 243 | "ld r2, 280(r1)\n" // stub's frame |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 244 | "ld r4, 16(r2)\n" // stub's lr |
| 245 | "li r5, 1\n" // 1 == 64 bit |
| 246 | "bl _PPCCompilationCallbackC\n" |
| 247 | "mtctr r3\n" |
| 248 | // Restore all int arg registers |
Jim Laskey | 18e2f44 | 2006-12-11 18:10:54 +0000 | [diff] [blame] | 249 | "ld r10, 272(r1)\n" "ld r9, 264(r1)\n" |
| 250 | "ld r8, 256(r1)\n" "ld r7, 248(r1)\n" |
| 251 | "ld r6, 240(r1)\n" "ld r5, 232(r1)\n" |
| 252 | "ld r4, 224(r1)\n" "ld r3, 216(r1)\n" |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 253 | // Restore all FP arg registers |
Jim Laskey | 18e2f44 | 2006-12-11 18:10:54 +0000 | [diff] [blame] | 254 | "lfd f13, 208(r1)\n" "lfd f12, 200(r1)\n" |
| 255 | "lfd f11, 192(r1)\n" "lfd f10, 184(r1)\n" |
| 256 | "lfd f9, 176(r1)\n" "lfd f8, 168(r1)\n" |
| 257 | "lfd f7, 160(r1)\n" "lfd f6, 152(r1)\n" |
| 258 | "lfd f5, 144(r1)\n" "lfd f4, 136(r1)\n" |
| 259 | "lfd f3, 128(r1)\n" "lfd f2, 120(r1)\n" |
| 260 | "lfd f1, 112(r1)\n" |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 261 | // Pop 3 frames off the stack and branch to target |
Jim Laskey | 18e2f44 | 2006-12-11 18:10:54 +0000 | [diff] [blame] | 262 | "ld r1, 280(r1)\n" |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 263 | "ld r2, 16(r1)\n" |
| 264 | "mtlr r2\n" |
| 265 | "bctr\n" |
| 266 | ); |
| 267 | #else |
| 268 | void PPC64CompilationCallback() { |
| 269 | assert(0 && "This is not a power pc, you can't execute this!"); |
| 270 | abort(); |
| 271 | } |
| 272 | #endif |
| 273 | |
| 274 | extern "C" void *PPCCompilationCallbackC(unsigned *StubCallAddrPlus4, |
| 275 | unsigned *OrigCallAddrPlus4, |
| 276 | bool is64Bit) { |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 277 | // Adjust the pointer to the address of the call instruction in the stub |
| 278 | // emitted by emitFunctionStub, rather than the instruction after it. |
| 279 | unsigned *StubCallAddr = StubCallAddrPlus4 - 1; |
| 280 | unsigned *OrigCallAddr = OrigCallAddrPlus4 - 1; |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 281 | |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 282 | void *Target = JITCompilerFunction(StubCallAddr); |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 283 | |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 284 | // Check to see if *OrigCallAddr is a 'bl' instruction, and if we can rewrite |
| 285 | // it to branch directly to the destination. If so, rewrite it so it does not |
| 286 | // need to go through the stub anymore. |
| 287 | unsigned OrigCallInst = *OrigCallAddr; |
| 288 | if ((OrigCallInst >> 26) == 18) { // Direct call. |
| 289 | intptr_t Offset = ((intptr_t)Target - (intptr_t)OrigCallAddr) >> 2; |
| 290 | |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 291 | if (Offset >= -(1 << 23) && Offset < (1 << 23)) { // In range? |
Chris Lattner | 892afa9 | 2004-11-24 18:00:02 +0000 | [diff] [blame] | 292 | // Clear the original target out. |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 293 | OrigCallInst &= (63 << 26) | 3; |
Chris Lattner | 892afa9 | 2004-11-24 18:00:02 +0000 | [diff] [blame] | 294 | // Fill in the new target. |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 295 | OrigCallInst |= (Offset & ((1 << 24)-1)) << 2; |
Chris Lattner | 892afa9 | 2004-11-24 18:00:02 +0000 | [diff] [blame] | 296 | // Replace the call. |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 297 | *OrigCallAddr = OrigCallInst; |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 298 | } |
| 299 | } |
Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 300 | |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 301 | // Assert that we are coming from a stub that was created with our |
| 302 | // emitFunctionStub. |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 303 | if ((*StubCallAddr >> 26) == 18) |
| 304 | StubCallAddr -= 3; |
| 305 | else { |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 306 | assert((*StubCallAddr >> 26) == 19 && "Call in stub is not indirect!"); |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 307 | StubCallAddr -= is64Bit ? 9 : 6; |
| 308 | } |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 309 | |
| 310 | // Rewrite the stub with an unconditional branch to the target, for any users |
| 311 | // who took the address of the stub. |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 312 | EmitBranchToAt((intptr_t)StubCallAddr, (intptr_t)Target, false, is64Bit); |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 313 | |
Nate Begeman | b3f70d7 | 2006-04-25 04:45:59 +0000 | [diff] [blame] | 314 | // Put the address of the target function to call and the address to return to |
| 315 | // after calling the target function in a place that is easy to get on the |
| 316 | // stack after we restore all regs. |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 317 | return Target; |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | |
| 321 | |
Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 322 | TargetJITInfo::LazyResolverFn |
Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 323 | PPCJITInfo::getLazyResolverFunction(JITCompilerFn Fn) { |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 324 | JITCompilerFunction = Fn; |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 325 | return is64Bit ? PPC64CompilationCallback : PPC32CompilationCallback; |
Chris Lattner | e61198b | 2004-11-23 06:55:05 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Chris Lattner | 1910e2f | 2008-01-25 16:41:09 +0000 | [diff] [blame] | 328 | #if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \ |
| 329 | defined(__APPLE__) |
| 330 | extern "C" void sys_icache_invalidate(const void *Addr, size_t len); |
| 331 | #endif |
| 332 | |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 333 | void *PPCJITInfo::emitFunctionStub(const Function* F, void *Fn, |
| 334 | MachineCodeEmitter &MCE) { |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 335 | // If this is just a call to an external function, emit a branch instead of a |
| 336 | // call. The code is the same except for one bit of the last instruction. |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 337 | if (Fn != (void*)(intptr_t)PPC32CompilationCallback && |
| 338 | Fn != (void*)(intptr_t)PPC64CompilationCallback) { |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 339 | MCE.startFunctionStub(F, 7*4); |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 340 | intptr_t Addr = (intptr_t)MCE.getCurrentPCValue(); |
Chris Lattner | d3f0aef | 2006-05-02 19:14:47 +0000 | [diff] [blame] | 341 | MCE.emitWordBE(0); |
| 342 | MCE.emitWordBE(0); |
| 343 | MCE.emitWordBE(0); |
| 344 | MCE.emitWordBE(0); |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 345 | MCE.emitWordBE(0); |
| 346 | MCE.emitWordBE(0); |
| 347 | MCE.emitWordBE(0); |
| 348 | EmitBranchToAt(Addr, (intptr_t)Fn, false, is64Bit); |
Chris Lattner | bc52cad | 2008-06-25 17:18:44 +0000 | [diff] [blame^] | 349 | sys::Memory::InvalidateInstructionCache((void*)Addr, 7*4); |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 350 | return MCE.finishFunctionStub(F); |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 351 | } |
| 352 | |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 353 | MCE.startFunctionStub(F, 10*4); |
Chris Lattner | 1910e2f | 2008-01-25 16:41:09 +0000 | [diff] [blame] | 354 | intptr_t Addr = (intptr_t)MCE.getCurrentPCValue(); |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 355 | if (is64Bit) { |
| 356 | MCE.emitWordBE(0xf821ffb1); // stdu r1,-80(r1) |
| 357 | MCE.emitWordBE(0x7d6802a6); // mflr r11 |
| 358 | MCE.emitWordBE(0xf9610060); // std r11, 96(r1) |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 359 | } else if (TM.getSubtargetImpl()->isMachoABI()){ |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 360 | MCE.emitWordBE(0x9421ffe0); // stwu r1,-32(r1) |
| 361 | MCE.emitWordBE(0x7d6802a6); // mflr r11 |
| 362 | MCE.emitWordBE(0x91610028); // stw r11, 40(r1) |
Nicolas Geoffray | 2fb813d | 2007-05-29 16:33:18 +0000 | [diff] [blame] | 363 | } else { |
| 364 | MCE.emitWordBE(0x9421ffe0); // stwu r1,-32(r1) |
| 365 | MCE.emitWordBE(0x7d6802a6); // mflr r11 |
| 366 | MCE.emitWordBE(0x91610024); // stw r11, 36(r1) |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 367 | } |
Chris Lattner | 1910e2f | 2008-01-25 16:41:09 +0000 | [diff] [blame] | 368 | intptr_t BranchAddr = (intptr_t)MCE.getCurrentPCValue(); |
Chris Lattner | d3f0aef | 2006-05-02 19:14:47 +0000 | [diff] [blame] | 369 | MCE.emitWordBE(0); |
| 370 | MCE.emitWordBE(0); |
| 371 | MCE.emitWordBE(0); |
| 372 | MCE.emitWordBE(0); |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 373 | MCE.emitWordBE(0); |
| 374 | MCE.emitWordBE(0); |
| 375 | MCE.emitWordBE(0); |
Chris Lattner | 1910e2f | 2008-01-25 16:41:09 +0000 | [diff] [blame] | 376 | EmitBranchToAt(BranchAddr, (intptr_t)Fn, true, is64Bit); |
Chris Lattner | bc52cad | 2008-06-25 17:18:44 +0000 | [diff] [blame^] | 377 | sys::Memory::InvalidateInstructionCache((void*)Addr, 10*4); |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 378 | return MCE.finishFunctionStub(F); |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | |
Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 382 | void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, |
| 383 | unsigned NumRelocs, unsigned char* GOTBase) { |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 384 | for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { |
| 385 | unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4; |
| 386 | intptr_t ResultPtr = (intptr_t)MR->getResultPointer(); |
| 387 | switch ((PPC::RelocationType)MR->getRelocationType()) { |
| 388 | default: assert(0 && "Unknown relocation type!"); |
| 389 | case PPC::reloc_pcrel_bx: |
| 390 | // PC-relative relocation for b and bl instructions. |
| 391 | ResultPtr = (ResultPtr-(intptr_t)RelocPos) >> 2; |
| 392 | assert(ResultPtr >= -(1 << 23) && ResultPtr < (1 << 23) && |
| 393 | "Relocation out of range!"); |
| 394 | *RelocPos |= (ResultPtr & ((1 << 24)-1)) << 2; |
| 395 | break; |
Evan Cheng | f141cc4 | 2006-07-27 18:21:10 +0000 | [diff] [blame] | 396 | case PPC::reloc_pcrel_bcx: |
| 397 | // PC-relative relocation for BLT,BLE,BEQ,BGE,BGT,BNE, or other |
| 398 | // bcx instructions. |
| 399 | ResultPtr = (ResultPtr-(intptr_t)RelocPos) >> 2; |
| 400 | assert(ResultPtr >= -(1 << 13) && ResultPtr < (1 << 13) && |
| 401 | "Relocation out of range!"); |
| 402 | *RelocPos |= (ResultPtr & ((1 << 14)-1)) << 2; |
| 403 | break; |
Chris Lattner | 5efb75d | 2004-11-24 22:30:08 +0000 | [diff] [blame] | 404 | 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] | 405 | 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] | 406 | ResultPtr += MR->getConstantVal(); |
| 407 | |
Chris Lattner | 5efb75d | 2004-11-24 22:30:08 +0000 | [diff] [blame] | 408 | // If this is a high-part access, get the high-part. |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 409 | if (MR->getRelocationType() == PPC::reloc_absolute_high) { |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 410 | // If the low part will have a carry (really a borrow) from the low |
| 411 | // 16-bits into the high 16, add a bit to borrow from. |
| 412 | if (((int)ResultPtr << 16) < 0) |
| 413 | ResultPtr += 1 << 16; |
| 414 | ResultPtr >>= 16; |
| 415 | } |
| 416 | |
| 417 | // Do the addition then mask, so the addition does not overflow the 16-bit |
| 418 | // immediate section of the instruction. |
| 419 | unsigned LowBits = (*RelocPos + ResultPtr) & 65535; |
| 420 | unsigned HighBits = *RelocPos & ~65535; |
| 421 | *RelocPos = LowBits | HighBits; // Slam into low 16-bits |
| 422 | break; |
| 423 | } |
Chris Lattner | 3bc8a76 | 2006-07-12 21:23:20 +0000 | [diff] [blame] | 424 | case PPC::reloc_absolute_low_ix: { // low bits of ref -> low 14 of instr |
| 425 | ResultPtr += MR->getConstantVal(); |
| 426 | // Do the addition then mask, so the addition does not overflow the 16-bit |
| 427 | // immediate section of the instruction. |
| 428 | unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC; |
| 429 | unsigned HighBits = *RelocPos & 0xFFFF0003; |
| 430 | *RelocPos = LowBits | HighBits; // Slam into low 14-bits. |
| 431 | break; |
| 432 | } |
| 433 | } |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 434 | } |
| 435 | } |
| 436 | |
Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 437 | void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { |
Nate Begeman | 06abd22 | 2006-08-29 02:30:59 +0000 | [diff] [blame] | 438 | EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit); |
Chris Lattner | 9b3d989 | 2004-11-23 06:02:06 +0000 | [diff] [blame] | 439 | } |