Annotate JIT callback function with call frame infromation.
[oota-llvm.git] / lib / Target / X86 / X86JITInfo.cpp
1 //===-- X86JITInfo.cpp - Implement the JIT interfaces for the X86 target --===//
2 //
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.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the JIT interfaces for the X86 target.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "jit"
15 #include "X86JITInfo.h"
16 #include "X86Relocations.h"
17 #include "X86Subtarget.h"
18 #include "llvm/CodeGen/MachineCodeEmitter.h"
19 #include "llvm/Config/alloca.h"
20 #include <cstdlib>
21 using namespace llvm;
22
23 #ifdef _MSC_VER
24   extern "C" void *_AddressOfReturnAddress(void);
25   #pragma intrinsic(_AddressOfReturnAddress)
26 #endif
27
28 void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
29   unsigned char *OldByte = (unsigned char *)Old;
30   *OldByte++ = 0xE9;                // Emit JMP opcode.
31   unsigned *OldWord = (unsigned *)OldByte;
32   unsigned NewAddr = (intptr_t)New;
33   unsigned OldAddr = (intptr_t)OldWord;
34   *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
35 }
36
37
38 /// JITCompilerFunction - This contains the address of the JIT function used to
39 /// compile a function lazily.
40 static TargetJITInfo::JITCompilerFn JITCompilerFunction;
41
42 // Get the ASMPREFIX for the current host.  This is often '_'.
43 #ifndef __USER_LABEL_PREFIX__
44 #define __USER_LABEL_PREFIX__
45 #endif
46 #define GETASMPREFIX2(X) #X
47 #define GETASMPREFIX(X) GETASMPREFIX2(X)
48 #define ASMPREFIX GETASMPREFIX(__USER_LABEL_PREFIX__)
49
50 // Provide a wrapper for X86CompilationCallback2 that saves non-traditional
51 // callee saved registers, for the fastcc calling convention.
52 extern "C" {
53 #if defined(__x86_64__)
54   // No need to save EAX/EDX for X86-64.
55   void X86CompilationCallback(void);
56   asm(
57     ".text\n"
58     ".align 8\n"
59     ".globl " ASMPREFIX "X86CompilationCallback\n"
60   ASMPREFIX "X86CompilationCallback:\n"
61     // Save RBP
62     "pushq   %rbp\n"
63     // Save RSP
64     "movq    %rsp, %rbp\n"
65     // Save all int arg registers
66     "pushq   %rdi\n"
67     "pushq   %rsi\n"
68     "pushq   %rdx\n"
69     "pushq   %rcx\n"
70     "pushq   %r8\n"
71     "pushq   %r9\n"
72     // Align stack on 16-byte boundary. ESP might not be properly aligned
73     // (8 byte) if this is called from an indirect stub.
74     "andq    $-16, %rsp\n"
75     // Save all XMM arg registers
76     "subq    $128, %rsp\n"
77     "movaps  %xmm0, (%rsp)\n"
78     "movaps  %xmm1, 16(%rsp)\n"
79     "movaps  %xmm2, 32(%rsp)\n"
80     "movaps  %xmm3, 48(%rsp)\n"
81     "movaps  %xmm4, 64(%rsp)\n"
82     "movaps  %xmm5, 80(%rsp)\n"
83     "movaps  %xmm6, 96(%rsp)\n"
84     "movaps  %xmm7, 112(%rsp)\n"
85     // JIT callee
86     "movq    %rbp, %rdi\n"    // Pass prev frame and return address
87     "movq    8(%rbp), %rsi\n"
88     "call    " ASMPREFIX "X86CompilationCallback2\n"
89     // Restore all XMM arg registers
90     "movaps  112(%rsp), %xmm7\n"
91     "movaps  96(%rsp), %xmm6\n"
92     "movaps  80(%rsp), %xmm5\n"
93     "movaps  64(%rsp), %xmm4\n"
94     "movaps  48(%rsp), %xmm3\n"
95     "movaps  32(%rsp), %xmm2\n"
96     "movaps  16(%rsp), %xmm1\n"
97     "movaps  (%rsp), %xmm0\n"
98     // Restore RSP
99     "movq    %rbp, %rsp\n"
100     // Restore all int arg registers
101     "subq    $48, %rsp\n"
102     "popq    %r9\n"
103     "popq    %r8\n"
104     "popq    %rcx\n"
105     "popq    %rdx\n"
106     "popq    %rsi\n"
107     "popq    %rdi\n"
108     // Restore RBP
109     "popq    %rbp\n"
110     "ret\n");
111 #elif defined(__i386__) || defined(i386) || defined(_M_IX86)
112 #ifndef _MSC_VER
113   void X86CompilationCallback(void);
114   asm(
115     ".text\n"
116     ".align 8\n"
117     ".globl " ASMPREFIX  "X86CompilationCallback\n"
118   ASMPREFIX "X86CompilationCallback:\n"
119     ".cfi_startproc\n"
120     "pushl   %ebp\n"
121     ".cfi_def_cfa_offset 8\n"
122     ".cfi_offset ebp, -8\n"
123     "movl    %esp, %ebp\n"    // Standard prologue
124     ".cfi_def_cfa_register ebp\n"
125     "pushl   %eax\n"
126     ".cfi_rel_offset eax, 0\n"
127     "pushl   %edx\n"          // Save EAX/EDX/ECX
128     ".cfi_rel_offset edx, 4\n"
129     "pushl   %ecx\n"
130     ".cfi_rel_offset ecx, 8\n"
131 #if defined(__APPLE__)
132     "andl    $-16, %esp\n"    // Align ESP on 16-byte boundary
133 #endif
134     "subl    $16, %esp\n"
135     "movl    4(%ebp), %eax\n" // Pass prev frame and return address
136     "movl    %eax, 4(%esp)\n"
137     "movl    %ebp, (%esp)\n"
138     "call    " ASMPREFIX "X86CompilationCallback2\n"
139     "movl    %ebp, %esp\n"    // Restore ESP
140     ".cfi_def_cfa_register esp\n"
141     "subl    $12, %esp\n"
142     ".cfi_adjust_cfa_offset 12\n"
143     "popl    %ecx\n"
144     ".cfi_adjust_cfa_offset -4\n"
145     ".cfi_restore ecx\n"
146     "popl    %edx\n"
147     ".cfi_adjust_cfa_offset -4\n"
148     ".cfi_restore edx\n"
149     "popl    %eax\n"
150     ".cfi_adjust_cfa_offset -4\n"
151     ".cfi_restore eax\n"
152     "popl    %ebp\n"
153     ".cfi_adjust_cfa_offset -4\n"
154     ".cfi_restore ebp\n"
155     "ret\n"
156     ".cfi_endproc\n");
157
158   // Same as X86CompilationCallback but also saves XMM argument registers.
159   void X86CompilationCallback_SSE(void);
160   asm(
161     ".text\n"
162     ".align 8\n"
163     ".globl " ASMPREFIX  "X86CompilationCallback_SSE\n"
164   ASMPREFIX "X86CompilationCallback_SSE:\n"
165     "pushl   %ebp\n"
166     "movl    %esp, %ebp\n"    // Standard prologue
167     "pushl   %eax\n"
168     "pushl   %edx\n"          // Save EAX/EDX/ECX
169     "pushl   %ecx\n"
170     "andl    $-16, %esp\n"    // Align ESP on 16-byte boundary
171     // Save all XMM arg registers
172     "subl    $64, %esp\n"
173     "movaps  %xmm0, (%esp)\n"
174     "movaps  %xmm1, 16(%esp)\n"
175     "movaps  %xmm2, 32(%esp)\n"
176     "movaps  %xmm3, 48(%esp)\n"
177     "subl    $16, %esp\n"
178     "movl    4(%ebp), %eax\n" // Pass prev frame and return address
179     "movl    %eax, 4(%esp)\n"
180     "movl    %ebp, (%esp)\n"
181     "call    " ASMPREFIX "X86CompilationCallback2\n"
182     "addl    $16, %esp\n"
183     "movaps  48(%esp), %xmm3\n"
184     "movaps  32(%esp), %xmm2\n"
185     "movaps  16(%esp), %xmm1\n"
186     "movaps  (%esp), %xmm0\n"
187     "movl    %ebp, %esp\n"    // Restore ESP
188     "subl    $12, %esp\n"
189     "popl    %ecx\n"
190     "popl    %edx\n"
191     "popl    %eax\n"
192     "popl    %ebp\n"
193     "ret\n");
194 #else
195   void X86CompilationCallback2(void);
196
197   _declspec(naked) void X86CompilationCallback(void) {
198     __asm {
199       push  eax
200       push  edx
201       push  ecx
202       call  X86CompilationCallback2
203       pop   ecx
204       pop   edx
205       pop   eax
206       ret
207     }
208   }
209 #endif // _MSC_VER
210
211 #else // Not an i386 host
212   void X86CompilationCallback() {
213     assert(0 && "Cannot call X86CompilationCallback() on a non-x86 arch!\n");
214     abort();
215   }
216 #endif
217 }
218
219 /// X86CompilationCallback - This is the target-specific function invoked by the
220 /// function stub when we did not know the real target of a call.  This function
221 /// must locate the start of the stub or call site and pass it into the JIT
222 /// compiler function.
223 #ifdef _MSC_VER
224 extern "C" void X86CompilationCallback2() {
225   assert(sizeof(size_t) == 4); // FIXME: handle Win64
226   intptr_t *RetAddrLoc = (intptr_t *)_AddressOfReturnAddress();
227   RetAddrLoc += 4;  // skip over ret addr, edx, eax, ecx
228   intptr_t RetAddr = *RetAddrLoc;
229 #else
230 extern "C" void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
231   intptr_t *RetAddrLoc = &StackPtr[1];
232 #endif
233   assert(*RetAddrLoc == RetAddr &&
234          "Could not find return address on the stack!");
235
236   // It's a stub if there is an interrupt marker after the call.
237   bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
238
239   // The call instruction should have pushed the return value onto the stack...
240 #ifdef __x86_64__
241   RetAddr--;     // Backtrack to the reference itself...
242 #else
243   RetAddr -= 4;  // Backtrack to the reference itself...
244 #endif
245
246 #if 0
247   DOUT << "In callback! Addr=" << (void*)RetAddr
248        << " ESP=" << (void*)StackPtr
249        << ": Resolving call to function: "
250        << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n";
251 #endif
252
253   // Sanity check to make sure this really is a call instruction.
254 #ifdef __x86_64__
255   assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
256   assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
257 #else
258   assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
259 #endif
260
261   intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
262
263   // Rewrite the call target... so that we don't end up here every time we
264   // execute the call.
265 #ifdef __x86_64__
266   *(intptr_t *)(RetAddr - 0xa) = NewVal;
267 #else
268   *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
269 #endif
270
271   if (isStub) {
272     // If this is a stub, rewrite the call into an unconditional branch
273     // instruction so that two return addresses are not pushed onto the stack
274     // when the requested function finally gets called.  This also makes the
275     // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
276 #ifdef __x86_64__
277     ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
278 #else
279     ((unsigned char*)RetAddr)[-1] = 0xE9;
280 #endif
281   }
282
283   // Change the return address to reexecute the call instruction...
284 #ifdef __x86_64__
285   *RetAddrLoc -= 0xd;
286 #else
287   *RetAddrLoc -= 5;
288 #endif
289 }
290
291 TargetJITInfo::LazyResolverFn
292 X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
293   JITCompilerFunction = F;
294
295 #if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
296   !defined(_MSC_VER) && !defined(__x86_64__)
297   unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
298   union {
299     unsigned u[3];
300     char     c[12];
301   } text;
302
303   if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
304     // FIXME: support for AMD family of processors.
305     if (memcmp(text.c, "GenuineIntel", 12) == 0) {
306       X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
307       if ((EDX >> 25) & 0x1)
308         return X86CompilationCallback_SSE;
309     }
310   }
311 #endif
312
313   return X86CompilationCallback;
314 }
315
316 void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
317   // Note, we cast to intptr_t here to silence a -pedantic warning that 
318   // complains about casting a function pointer to a normal pointer.
319 #if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
320   !defined(_MSC_VER) && !defined(__x86_64__)
321   bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
322                 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
323 #else
324   bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
325 #endif
326   if (NotCC) {
327 #ifdef __x86_64__
328     MCE.startFunctionStub(13, 4);
329     MCE.emitByte(0x49);          // REX prefix
330     MCE.emitByte(0xB8+2);        // movabsq r10
331     MCE.emitWordLE(((unsigned *)&Fn)[0]);
332     MCE.emitWordLE(((unsigned *)&Fn)[1]);
333     MCE.emitByte(0x41);          // REX prefix
334     MCE.emitByte(0xFF);          // jmpq *r10
335     MCE.emitByte(2 | (4 << 3) | (3 << 6));
336 #else
337     MCE.startFunctionStub(5, 4);
338     MCE.emitByte(0xE9);
339     MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
340 #endif
341     return MCE.finishFunctionStub(0);
342   }
343
344 #ifdef __x86_64__
345   MCE.startFunctionStub(14, 4);
346   MCE.emitByte(0x49);          // REX prefix
347   MCE.emitByte(0xB8+2);        // movabsq r10
348   MCE.emitWordLE(((unsigned *)&Fn)[0]);
349   MCE.emitWordLE(((unsigned *)&Fn)[1]);
350   MCE.emitByte(0x41);          // REX prefix
351   MCE.emitByte(0xFF);          // callq *r10
352   MCE.emitByte(2 | (2 << 3) | (3 << 6));
353 #else
354   MCE.startFunctionStub(6, 4);
355   MCE.emitByte(0xE8);   // Call with 32 bit pc-rel destination...
356
357   MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
358 #endif
359
360   MCE.emitByte(0xCD);   // Interrupt - Just a marker identifying the stub!
361   return MCE.finishFunctionStub(0);
362 }
363
364 /// relocate - Before the JIT can run a block of code that has been emitted,
365 /// it must rewrite the code to contain the actual addresses of any
366 /// referenced global symbols.
367 void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
368                           unsigned NumRelocs, unsigned char* GOTBase) {
369   for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
370     void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
371     intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
372     switch ((X86::RelocationType)MR->getRelocationType()) {
373     case X86::reloc_pcrel_word: {
374       // PC relative relocation, add the relocated value to the value already in
375       // memory, after we adjust it for where the PC is.
376       ResultPtr = ResultPtr-(intptr_t)RelocPos-4-MR->getConstantVal();
377       *((unsigned*)RelocPos) += (unsigned)ResultPtr;
378       break;
379     }
380     case X86::reloc_absolute_word:
381       // Absolute relocation, just add the relocated value to the value already
382       // in memory.
383       *((unsigned*)RelocPos) += (unsigned)ResultPtr;
384       break;
385     case X86::reloc_absolute_dword:
386       *((intptr_t*)RelocPos) += ResultPtr;
387       break;
388     }
389   }
390 }