blob: 5f88da5f89b6104aa425f7b421a1ec64ca554d4e [file] [log] [blame]
Chris Lattner7ddde322004-11-20 23:54:33 +00001//===-- X86JITInfo.cpp - Implement the JIT interfaces for the X86 target --===//
Misha Brukman0e0a7a452005-04-21 23:38:14 +00002//
Chris Lattner7ddde322004-11-20 23:54:33 +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 Brukman0e0a7a452005-04-21 23:38:14 +00007//
Chris Lattner7ddde322004-11-20 23:54:33 +00008//===----------------------------------------------------------------------===//
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"
Evan Cheng93b11f82006-10-16 21:01:55 +000017#include "X86Subtarget.h"
Chris Lattner7ddde322004-11-20 23:54:33 +000018#include "llvm/CodeGen/MachineCodeEmitter.h"
19#include "llvm/Config/alloca.h"
Nate Begemanbe136342005-05-20 21:29:24 +000020#include <cstdlib>
Chris Lattner7ddde322004-11-20 23:54:33 +000021using namespace llvm;
22
Chris Lattner38f73732006-01-26 19:55:20 +000023#ifdef _MSC_VER
24 extern "C" void *_AddressOfReturnAddress(void);
25 #pragma intrinsic(_AddressOfReturnAddress)
26#endif
27
Chris Lattner7ddde322004-11-20 23:54:33 +000028void 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
Chris Lattner7ddde322004-11-20 23:54:33 +000038/// JITCompilerFunction - This contains the address of the JIT function used to
39/// compile a function lazily.
40static TargetJITInfo::JITCompilerFn JITCompilerFunction;
41
Chris Lattner40f4ba52006-09-08 17:03:56 +000042// 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
Anton Korobeynikov5f682872007-12-10 23:04:38 +000050#if defined(__APPLE__)
51# define CFI(x)
52#else
53# define CFI(x) x
54#endif
55
Chris Lattner1030f722005-05-19 06:49:17 +000056// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
57// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000058extern "C" {
Evan Cheng25ab6902006-09-08 06:48:29 +000059#if defined(__x86_64__)
60 // No need to save EAX/EDX for X86-64.
61 void X86CompilationCallback(void);
62 asm(
63 ".text\n"
64 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +000065 ".globl " ASMPREFIX "X86CompilationCallback\n"
66 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000067 CFI(".cfi_startproc\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000068 // Save RBP
69 "pushq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000070 CFI(".cfi_def_cfa_offset 16\n")
71 CFI(".cfi_offset %rbp, -16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000072 // Save RSP
73 "movq %rsp, %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000074 CFI(".cfi_def_cfa_register %rbp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000075 // Save all int arg registers
76 "pushq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000077 CFI(".cfi_rel_offset %rdi, 0\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000078 "pushq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000079 CFI(".cfi_rel_offset %rsi, 8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000080 "pushq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000081 CFI(".cfi_rel_offset %rdx, 16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000082 "pushq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000083 CFI(".cfi_rel_offset %rcx, 24\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000084 "pushq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000085 CFI(".cfi_rel_offset %r8, 32\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000086 "pushq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000087 CFI(".cfi_rel_offset %r9, 40\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000088 // Align stack on 16-byte boundary. ESP might not be properly aligned
89 // (8 byte) if this is called from an indirect stub.
90 "andq $-16, %rsp\n"
91 // Save all XMM arg registers
92 "subq $128, %rsp\n"
93 "movaps %xmm0, (%rsp)\n"
94 "movaps %xmm1, 16(%rsp)\n"
95 "movaps %xmm2, 32(%rsp)\n"
96 "movaps %xmm3, 48(%rsp)\n"
97 "movaps %xmm4, 64(%rsp)\n"
98 "movaps %xmm5, 80(%rsp)\n"
99 "movaps %xmm6, 96(%rsp)\n"
100 "movaps %xmm7, 112(%rsp)\n"
101 // JIT callee
102 "movq %rbp, %rdi\n" // Pass prev frame and return address
103 "movq 8(%rbp), %rsi\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000104 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000105 // Restore all XMM arg registers
106 "movaps 112(%rsp), %xmm7\n"
107 "movaps 96(%rsp), %xmm6\n"
108 "movaps 80(%rsp), %xmm5\n"
109 "movaps 64(%rsp), %xmm4\n"
110 "movaps 48(%rsp), %xmm3\n"
111 "movaps 32(%rsp), %xmm2\n"
112 "movaps 16(%rsp), %xmm1\n"
113 "movaps (%rsp), %xmm0\n"
114 // Restore RSP
115 "movq %rbp, %rsp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000116 CFI(".cfi_def_cfa_register esp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000117 // Restore all int arg registers
118 "subq $48, %rsp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000119 CFI(".cfi_adjust_cfa_offset 48\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000120 "popq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000121 CFI(".cfi_adjust_cfa_offset -8\n")
122 CFI(".cfi_restore %r9\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000123 "popq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000124 CFI(".cfi_adjust_cfa_offset -8\n")
125 CFI(".cfi_restore %r8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000126 "popq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000127 CFI(".cfi_adjust_cfa_offset -8\n")
128 CFI(".cfi_restore %rcx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000129 "popq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000130 CFI(".cfi_adjust_cfa_offset -8\n")
131 CFI(".cfi_restore %rdx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000132 "popq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000133 CFI(".cfi_adjust_cfa_offset -8\n")
134 CFI(".cfi_restore %rsi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000135 "popq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000136 CFI(".cfi_adjust_cfa_offset -8\n")
137 CFI(".cfi_restore %rdi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000138 // Restore RBP
139 "popq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000140 CFI(".cfi_adjust_cfa_offset -8\n")
141 CFI(".cfi_restore %rbp\n")
Anton Korobeynikov3a7bcc42007-12-10 15:27:07 +0000142 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000143 CFI(".cfi_endproc\n")
144 );
Evan Cheng25ab6902006-09-08 06:48:29 +0000145#elif defined(__i386__) || defined(i386) || defined(_M_IX86)
Chris Lattner1030f722005-05-19 06:49:17 +0000146#ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000147 void X86CompilationCallback(void);
148 asm(
149 ".text\n"
150 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000151 ".globl " ASMPREFIX "X86CompilationCallback\n"
152 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000153 CFI(".cfi_startproc\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000154 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000155 CFI(".cfi_def_cfa_offset 8\n")
156 CFI(".cfi_offset %ebp, -8\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000157 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000158 CFI(".cfi_def_cfa_register %ebp\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000159 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000160 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000161 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000162 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000163 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000164 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Chengda08d2c2006-06-24 08:36:10 +0000165#if defined(__APPLE__)
166 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
167#endif
Evan Chengbe33dd92006-06-29 01:48:36 +0000168 "subl $16, %esp\n"
169 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
170 "movl %eax, 4(%esp)\n"
171 "movl %ebp, (%esp)\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000172 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000173 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000174 CFI(".cfi_def_cfa_register %esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000175 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000176 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000177 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000178 CFI(".cfi_adjust_cfa_offset -4\n")
179 CFI(".cfi_restore %ecx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000180 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000181 CFI(".cfi_adjust_cfa_offset -4\n")
182 CFI(".cfi_restore %edx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000183 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000184 CFI(".cfi_adjust_cfa_offset -4\n")
185 CFI(".cfi_restore %eax\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000186 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000187 CFI(".cfi_adjust_cfa_offset -4\n")
188 CFI(".cfi_restore %ebp\n")
Anton Korobeynikova14b6692007-12-10 14:54:42 +0000189 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000190 CFI(".cfi_endproc\n")
191 );
Evan Cheng93b11f82006-10-16 21:01:55 +0000192
193 // Same as X86CompilationCallback but also saves XMM argument registers.
194 void X86CompilationCallback_SSE(void);
195 asm(
196 ".text\n"
197 ".align 8\n"
198 ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
199 ASMPREFIX "X86CompilationCallback_SSE:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000200 CFI(".cfi_startproc\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000201 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000202 CFI(".cfi_def_cfa_offset 8\n")
203 CFI(".cfi_offset %ebp, -8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000204 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000205 CFI(".cfi_def_cfa_register %ebp\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000206 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000207 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000208 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000209 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000210 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000211 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000212 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
213 // Save all XMM arg registers
214 "subl $64, %esp\n"
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000215 // FIXME: provide frame move information for xmm registers.
216 // This can be tricky, because CFA register is ebp (unaligned)
217 // and we need to produce offsets relative to it.
Evan Cheng93b11f82006-10-16 21:01:55 +0000218 "movaps %xmm0, (%esp)\n"
219 "movaps %xmm1, 16(%esp)\n"
220 "movaps %xmm2, 32(%esp)\n"
221 "movaps %xmm3, 48(%esp)\n"
222 "subl $16, %esp\n"
223 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
224 "movl %eax, 4(%esp)\n"
225 "movl %ebp, (%esp)\n"
226 "call " ASMPREFIX "X86CompilationCallback2\n"
227 "addl $16, %esp\n"
228 "movaps 48(%esp), %xmm3\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000229 CFI(".cfi_restore %xmm3\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000230 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000231 CFI(".cfi_restore %xmm2\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000232 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000233 CFI(".cfi_restore %xmm1\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000234 "movaps (%esp), %xmm0\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000235 CFI(".cfi_restore %xmm0\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000236 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000237 CFI(".cfi_def_cfa_register esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000238 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000239 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000240 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000241 CFI(".cfi_adjust_cfa_offset -4\n")
242 CFI(".cfi_restore %ecx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000243 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000244 CFI(".cfi_adjust_cfa_offset -4\n")
245 CFI(".cfi_restore %edx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000246 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000247 CFI(".cfi_adjust_cfa_offset -4\n")
248 CFI(".cfi_restore %eax\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000249 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000250 CFI(".cfi_adjust_cfa_offset -4\n")
251 CFI(".cfi_restore %ebp\n")
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000252 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000253 CFI(".cfi_endproc\n")
254 );
Chris Lattner1030f722005-05-19 06:49:17 +0000255#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000256 void X86CompilationCallback2(void);
257
258 _declspec(naked) void X86CompilationCallback(void) {
259 __asm {
260 push eax
261 push edx
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000262 push ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000263 call X86CompilationCallback2
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000264 pop ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000265 pop edx
266 pop eax
267 ret
268 }
269 }
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000270#endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +0000271
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000272#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000273 void X86CompilationCallback() {
Bill Wendling6345d752006-11-17 07:52:03 +0000274 assert(0 && "Cannot call X86CompilationCallback() on a non-x86 arch!\n");
Chris Lattner170fbcb2005-05-20 17:00:21 +0000275 abort();
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000276 }
Chris Lattner1030f722005-05-19 06:49:17 +0000277#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000278}
Chris Lattner1030f722005-05-19 06:49:17 +0000279
280/// X86CompilationCallback - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000281/// function stub when we did not know the real target of a call. This function
282/// must locate the start of the stub or call site and pass it into the JIT
283/// compiler function.
Chris Lattner7ddde322004-11-20 23:54:33 +0000284#ifdef _MSC_VER
Evan Chengbe33dd92006-06-29 01:48:36 +0000285extern "C" void X86CompilationCallback2() {
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000286 assert(sizeof(size_t) == 4); // FIXME: handle Win64
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000287 intptr_t *RetAddrLoc = (intptr_t *)_AddressOfReturnAddress();
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000288 RetAddrLoc += 4; // skip over ret addr, edx, eax, ecx
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000289 intptr_t RetAddr = *RetAddrLoc;
Chris Lattner7ddde322004-11-20 23:54:33 +0000290#else
Evan Chengbe33dd92006-06-29 01:48:36 +0000291extern "C" void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
292 intptr_t *RetAddrLoc = &StackPtr[1];
Chris Lattner7ddde322004-11-20 23:54:33 +0000293#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000294 assert(*RetAddrLoc == RetAddr &&
Chris Lattner7ddde322004-11-20 23:54:33 +0000295 "Could not find return address on the stack!");
296
297 // It's a stub if there is an interrupt marker after the call.
Evan Cheng25ab6902006-09-08 06:48:29 +0000298 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
Chris Lattner7ddde322004-11-20 23:54:33 +0000299
300 // The call instruction should have pushed the return value onto the stack...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000301#ifdef __x86_64__
302 RetAddr--; // Backtrack to the reference itself...
303#else
Chris Lattner7ddde322004-11-20 23:54:33 +0000304 RetAddr -= 4; // Backtrack to the reference itself...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000305#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000306
307#if 0
Bill Wendling6345d752006-11-17 07:52:03 +0000308 DOUT << "In callback! Addr=" << (void*)RetAddr
309 << " ESP=" << (void*)StackPtr
310 << ": Resolving call to function: "
311 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n";
Chris Lattner7ddde322004-11-20 23:54:33 +0000312#endif
313
314 // Sanity check to make sure this really is a call instruction.
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000315#ifdef __x86_64__
316 assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
317 assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
318#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000319 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000320#endif
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000321
Evan Cheng25ab6902006-09-08 06:48:29 +0000322 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
Chris Lattner7ddde322004-11-20 23:54:33 +0000323
324 // Rewrite the call target... so that we don't end up here every time we
325 // execute the call.
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000326#ifdef __x86_64__
327 *(intptr_t *)(RetAddr - 0xa) = NewVal;
328#else
329 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
330#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000331
332 if (isStub) {
333 // If this is a stub, rewrite the call into an unconditional branch
334 // instruction so that two return addresses are not pushed onto the stack
335 // when the requested function finally gets called. This also makes the
336 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000337#ifdef __x86_64__
338 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
339#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000340 ((unsigned char*)RetAddr)[-1] = 0xE9;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000341#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000342 }
343
344 // Change the return address to reexecute the call instruction...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000345#ifdef __x86_64__
346 *RetAddrLoc -= 0xd;
347#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000348 *RetAddrLoc -= 5;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000349#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000350}
351
Chris Lattner7ddde322004-11-20 23:54:33 +0000352TargetJITInfo::LazyResolverFn
353X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
354 JITCompilerFunction = F;
Evan Cheng93b11f82006-10-16 21:01:55 +0000355
Evan Chengcf922302006-10-16 23:44:08 +0000356#if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
357 !defined(_MSC_VER) && !defined(__x86_64__)
Evan Cheng93b11f82006-10-16 21:01:55 +0000358 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
359 union {
360 unsigned u[3];
361 char c[12];
362 } text;
363
364 if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
365 // FIXME: support for AMD family of processors.
366 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
367 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
368 if ((EDX >> 25) & 0x1)
369 return X86CompilationCallback_SSE;
370 }
371 }
Evan Cheng348b00d2006-10-16 22:53:28 +0000372#endif
Evan Cheng93b11f82006-10-16 21:01:55 +0000373
Chris Lattner1030f722005-05-19 06:49:17 +0000374 return X86CompilationCallback;
Chris Lattner7ddde322004-11-20 23:54:33 +0000375}
376
Chris Lattner90b1b452004-11-22 22:25:30 +0000377void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000378 // Note, we cast to intptr_t here to silence a -pedantic warning that
379 // complains about casting a function pointer to a normal pointer.
Evan Chengcf922302006-10-16 23:44:08 +0000380#if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
381 !defined(_MSC_VER) && !defined(__x86_64__)
Evan Cheng348b00d2006-10-16 22:53:28 +0000382 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
383 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
Evan Chengcf922302006-10-16 23:44:08 +0000384#else
385 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
Evan Cheng348b00d2006-10-16 22:53:28 +0000386#endif
387 if (NotCC) {
Evan Cheng8510dc02007-03-14 10:48:08 +0000388#ifdef __x86_64__
389 MCE.startFunctionStub(13, 4);
390 MCE.emitByte(0x49); // REX prefix
391 MCE.emitByte(0xB8+2); // movabsq r10
392 MCE.emitWordLE(((unsigned *)&Fn)[0]);
393 MCE.emitWordLE(((unsigned *)&Fn)[1]);
394 MCE.emitByte(0x41); // REX prefix
395 MCE.emitByte(0xFF); // jmpq *r10
396 MCE.emitByte(2 | (4 << 3) | (3 << 6));
397#else
Evan Cheng73b00942006-11-16 20:13:34 +0000398 MCE.startFunctionStub(5, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000399 MCE.emitByte(0xE9);
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000400 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000401#endif
Evan Cheng774be292007-03-14 19:44:58 +0000402 return MCE.finishFunctionStub(0);
Chris Lattner90b1b452004-11-22 22:25:30 +0000403 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000404
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000405#ifdef __x86_64__
406 MCE.startFunctionStub(14, 4);
407 MCE.emitByte(0x49); // REX prefix
408 MCE.emitByte(0xB8+2); // movabsq r10
409 MCE.emitWordLE(((unsigned *)&Fn)[0]);
410 MCE.emitWordLE(((unsigned *)&Fn)[1]);
411 MCE.emitByte(0x41); // REX prefix
412 MCE.emitByte(0xFF); // callq *r10
413 MCE.emitByte(2 | (2 << 3) | (3 << 6));
414#else
Evan Cheng73b00942006-11-16 20:13:34 +0000415 MCE.startFunctionStub(6, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000416 MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
417
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000418 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000419#endif
Chris Lattner90b1b452004-11-22 22:25:30 +0000420
421 MCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
422 return MCE.finishFunctionStub(0);
423}
Chris Lattner7ddde322004-11-20 23:54:33 +0000424
425/// relocate - Before the JIT can run a block of code that has been emitted,
426/// it must rewrite the code to contain the actual addresses of any
427/// referenced global symbols.
428void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000429 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000430 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
431 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
432 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
433 switch ((X86::RelocationType)MR->getRelocationType()) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000434 case X86::reloc_pcrel_word: {
Chris Lattner7ddde322004-11-20 23:54:33 +0000435 // PC relative relocation, add the relocated value to the value already in
436 // memory, after we adjust it for where the PC is.
Evan Cheng25ab6902006-09-08 06:48:29 +0000437 ResultPtr = ResultPtr-(intptr_t)RelocPos-4-MR->getConstantVal();
438 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000439 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000440 }
Chris Lattner7ddde322004-11-20 23:54:33 +0000441 case X86::reloc_absolute_word:
442 // Absolute relocation, just add the relocated value to the value already
443 // in memory.
Evan Cheng25ab6902006-09-08 06:48:29 +0000444 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000445 break;
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000446 case X86::reloc_absolute_dword:
447 *((intptr_t*)RelocPos) += ResultPtr;
448 break;
Chris Lattner7ddde322004-11-20 23:54:33 +0000449 }
450 }
451}