blob: 1c8d214ddbf73f48416a297300e943bd1f6b771c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86JITInfo.cpp - Implement the JIT interfaces for the X86 target --===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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>
Anton Korobeynikov357a27d2008-02-20 11:08:44 +000021#include <cstring>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022using namespace llvm;
23
24#ifdef _MSC_VER
25 extern "C" void *_AddressOfReturnAddress(void);
26 #pragma intrinsic(_AddressOfReturnAddress)
27#endif
28
29void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
30 unsigned char *OldByte = (unsigned char *)Old;
31 *OldByte++ = 0xE9; // Emit JMP opcode.
32 unsigned *OldWord = (unsigned *)OldByte;
33 unsigned NewAddr = (intptr_t)New;
34 unsigned OldAddr = (intptr_t)OldWord;
35 *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
36}
37
38
39/// JITCompilerFunction - This contains the address of the JIT function used to
40/// compile a function lazily.
41static TargetJITInfo::JITCompilerFn JITCompilerFunction;
42
43// Get the ASMPREFIX for the current host. This is often '_'.
44#ifndef __USER_LABEL_PREFIX__
45#define __USER_LABEL_PREFIX__
46#endif
47#define GETASMPREFIX2(X) #X
48#define GETASMPREFIX(X) GETASMPREFIX2(X)
49#define ASMPREFIX GETASMPREFIX(__USER_LABEL_PREFIX__)
50
Anton Korobeynikova1429f22007-12-10 23:10:20 +000051// Provide a convenient way for disabling usage of CFI directives.
Anton Korobeynikov80992512007-12-10 23:08:35 +000052// This is needed for old/broken assemblers (for example, gas on
53// Darwin is pretty old and doesn't support these directives)
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000054#if defined(__APPLE__)
55# define CFI(x)
56#else
Anton Korobeynikovbfa45f32007-12-22 20:41:12 +000057// FIXME: Disable this until we really want to use it. Also, we will
58// need to add some workarounds for compilers, which support
59// only subset of these directives.
Anton Korobeynikov5c675fa2007-12-22 20:46:24 +000060# define CFI(x)
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000061#endif
62
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
64// callee saved registers, for the fastcc calling convention.
65extern "C" {
66#if defined(__x86_64__)
67 // No need to save EAX/EDX for X86-64.
68 void X86CompilationCallback(void);
69 asm(
70 ".text\n"
71 ".align 8\n"
72 ".globl " ASMPREFIX "X86CompilationCallback\n"
73 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000074 CFI(".cfi_startproc\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000075 // Save RBP
76 "pushq %rbp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000077 CFI(".cfi_def_cfa_offset 16\n")
78 CFI(".cfi_offset %rbp, -16\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079 // Save RSP
80 "movq %rsp, %rbp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000081 CFI(".cfi_def_cfa_register %rbp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082 // Save all int arg registers
83 "pushq %rdi\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000084 CFI(".cfi_rel_offset %rdi, 0\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000085 "pushq %rsi\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000086 CFI(".cfi_rel_offset %rsi, 8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087 "pushq %rdx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000088 CFI(".cfi_rel_offset %rdx, 16\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089 "pushq %rcx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000090 CFI(".cfi_rel_offset %rcx, 24\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000091 "pushq %r8\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000092 CFI(".cfi_rel_offset %r8, 32\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093 "pushq %r9\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000094 CFI(".cfi_rel_offset %r9, 40\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 // Align stack on 16-byte boundary. ESP might not be properly aligned
96 // (8 byte) if this is called from an indirect stub.
97 "andq $-16, %rsp\n"
98 // Save all XMM arg registers
99 "subq $128, %rsp\n"
100 "movaps %xmm0, (%rsp)\n"
101 "movaps %xmm1, 16(%rsp)\n"
102 "movaps %xmm2, 32(%rsp)\n"
103 "movaps %xmm3, 48(%rsp)\n"
104 "movaps %xmm4, 64(%rsp)\n"
105 "movaps %xmm5, 80(%rsp)\n"
106 "movaps %xmm6, 96(%rsp)\n"
107 "movaps %xmm7, 112(%rsp)\n"
108 // JIT callee
109 "movq %rbp, %rdi\n" // Pass prev frame and return address
110 "movq 8(%rbp), %rsi\n"
111 "call " ASMPREFIX "X86CompilationCallback2\n"
112 // Restore all XMM arg registers
113 "movaps 112(%rsp), %xmm7\n"
114 "movaps 96(%rsp), %xmm6\n"
115 "movaps 80(%rsp), %xmm5\n"
116 "movaps 64(%rsp), %xmm4\n"
117 "movaps 48(%rsp), %xmm3\n"
118 "movaps 32(%rsp), %xmm2\n"
119 "movaps 16(%rsp), %xmm1\n"
120 "movaps (%rsp), %xmm0\n"
121 // Restore RSP
122 "movq %rbp, %rsp\n"
Scott Michel01b27de2007-12-12 02:38:28 +0000123 CFI(".cfi_def_cfa_register %rsp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 // Restore all int arg registers
125 "subq $48, %rsp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000126 CFI(".cfi_adjust_cfa_offset 48\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 "popq %r9\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000128 CFI(".cfi_adjust_cfa_offset -8\n")
129 CFI(".cfi_restore %r9\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130 "popq %r8\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000131 CFI(".cfi_adjust_cfa_offset -8\n")
132 CFI(".cfi_restore %r8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 "popq %rcx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000134 CFI(".cfi_adjust_cfa_offset -8\n")
135 CFI(".cfi_restore %rcx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 "popq %rdx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000137 CFI(".cfi_adjust_cfa_offset -8\n")
138 CFI(".cfi_restore %rdx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 "popq %rsi\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000140 CFI(".cfi_adjust_cfa_offset -8\n")
141 CFI(".cfi_restore %rsi\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 "popq %rdi\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000143 CFI(".cfi_adjust_cfa_offset -8\n")
144 CFI(".cfi_restore %rdi\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 // Restore RBP
146 "popq %rbp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000147 CFI(".cfi_adjust_cfa_offset -8\n")
148 CFI(".cfi_restore %rbp\n")
Anton Korobeynikova264a912007-12-10 15:27:07 +0000149 "ret\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000150 CFI(".cfi_endproc\n")
151 );
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152#elif defined(__i386__) || defined(i386) || defined(_M_IX86)
153#ifndef _MSC_VER
154 void X86CompilationCallback(void);
155 asm(
156 ".text\n"
157 ".align 8\n"
158 ".globl " ASMPREFIX "X86CompilationCallback\n"
159 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000160 CFI(".cfi_startproc\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 "pushl %ebp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000162 CFI(".cfi_def_cfa_offset 8\n")
163 CFI(".cfi_offset %ebp, -8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000165 CFI(".cfi_def_cfa_register %ebp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166 "pushl %eax\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000167 CFI(".cfi_rel_offset %eax, 0\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000169 CFI(".cfi_rel_offset %edx, 4\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 "pushl %ecx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000171 CFI(".cfi_rel_offset %ecx, 8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172#if defined(__APPLE__)
173 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
174#endif
175 "subl $16, %esp\n"
176 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
177 "movl %eax, 4(%esp)\n"
178 "movl %ebp, (%esp)\n"
179 "call " ASMPREFIX "X86CompilationCallback2\n"
180 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000181 CFI(".cfi_def_cfa_register %esp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 "subl $12, %esp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000183 CFI(".cfi_adjust_cfa_offset 12\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 "popl %ecx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000185 CFI(".cfi_adjust_cfa_offset -4\n")
186 CFI(".cfi_restore %ecx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000187 "popl %edx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000188 CFI(".cfi_adjust_cfa_offset -4\n")
189 CFI(".cfi_restore %edx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 "popl %eax\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000191 CFI(".cfi_adjust_cfa_offset -4\n")
192 CFI(".cfi_restore %eax\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 "popl %ebp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000194 CFI(".cfi_adjust_cfa_offset -4\n")
195 CFI(".cfi_restore %ebp\n")
Anton Korobeynikov67fc5112007-12-10 14:54:42 +0000196 "ret\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000197 CFI(".cfi_endproc\n")
198 );
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000199
200 // Same as X86CompilationCallback but also saves XMM argument registers.
201 void X86CompilationCallback_SSE(void);
202 asm(
203 ".text\n"
204 ".align 8\n"
205 ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
206 ASMPREFIX "X86CompilationCallback_SSE:\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000207 CFI(".cfi_startproc\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 "pushl %ebp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000209 CFI(".cfi_def_cfa_offset 8\n")
210 CFI(".cfi_offset %ebp, -8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000212 CFI(".cfi_def_cfa_register %ebp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000213 "pushl %eax\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000214 CFI(".cfi_rel_offset %eax, 0\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000216 CFI(".cfi_rel_offset %edx, 4\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217 "pushl %ecx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000218 CFI(".cfi_rel_offset %ecx, 8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
220 // Save all XMM arg registers
221 "subl $64, %esp\n"
Anton Korobeynikov4d1e0732007-12-10 15:13:55 +0000222 // FIXME: provide frame move information for xmm registers.
223 // This can be tricky, because CFA register is ebp (unaligned)
224 // and we need to produce offsets relative to it.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000225 "movaps %xmm0, (%esp)\n"
226 "movaps %xmm1, 16(%esp)\n"
227 "movaps %xmm2, 32(%esp)\n"
228 "movaps %xmm3, 48(%esp)\n"
229 "subl $16, %esp\n"
230 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
231 "movl %eax, 4(%esp)\n"
232 "movl %ebp, (%esp)\n"
233 "call " ASMPREFIX "X86CompilationCallback2\n"
234 "addl $16, %esp\n"
235 "movaps 48(%esp), %xmm3\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000236 CFI(".cfi_restore %xmm3\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000238 CFI(".cfi_restore %xmm2\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000240 CFI(".cfi_restore %xmm1\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241 "movaps (%esp), %xmm0\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000242 CFI(".cfi_restore %xmm0\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000243 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000244 CFI(".cfi_def_cfa_register esp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 "subl $12, %esp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000246 CFI(".cfi_adjust_cfa_offset 12\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 "popl %ecx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000248 CFI(".cfi_adjust_cfa_offset -4\n")
249 CFI(".cfi_restore %ecx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000250 "popl %edx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000251 CFI(".cfi_adjust_cfa_offset -4\n")
252 CFI(".cfi_restore %edx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253 "popl %eax\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000254 CFI(".cfi_adjust_cfa_offset -4\n")
255 CFI(".cfi_restore %eax\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256 "popl %ebp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000257 CFI(".cfi_adjust_cfa_offset -4\n")
258 CFI(".cfi_restore %ebp\n")
Anton Korobeynikov4d1e0732007-12-10 15:13:55 +0000259 "ret\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000260 CFI(".cfi_endproc\n")
261 );
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262#else
Anton Korobeynikov111bf802008-03-23 12:32:54 +0000263 void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264
265 _declspec(naked) void X86CompilationCallback(void) {
266 __asm {
Anton Korobeynikov111bf802008-03-23 12:32:54 +0000267 push ebp
268 mov ebp, esp
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269 push eax
270 push edx
271 push ecx
Anton Korobeynikov111bf802008-03-23 12:32:54 +0000272 and esp, -16
273 mov eax, dword ptr [ebp+4]
274 mov dword ptr [esp+4], eax
275 mov dword ptr [esp], ebp
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000276 call X86CompilationCallback2
Anton Korobeynikov111bf802008-03-23 12:32:54 +0000277 mov esp, ebp
278 sub esp, 12
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279 pop ecx
280 pop edx
281 pop eax
Anton Korobeynikov111bf802008-03-23 12:32:54 +0000282 pop ebp
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283 ret
284 }
285 }
Anton Korobeynikov111bf802008-03-23 12:32:54 +0000286
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287#endif // _MSC_VER
288
289#else // Not an i386 host
290 void X86CompilationCallback() {
291 assert(0 && "Cannot call X86CompilationCallback() on a non-x86 arch!\n");
292 abort();
293 }
294#endif
295}
296
297/// X86CompilationCallback - This is the target-specific function invoked by the
298/// function stub when we did not know the real target of a call. This function
299/// must locate the start of the stub or call site and pass it into the JIT
300/// compiler function.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301extern "C" void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
302 intptr_t *RetAddrLoc = &StackPtr[1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000303 assert(*RetAddrLoc == RetAddr &&
304 "Could not find return address on the stack!");
305
306 // It's a stub if there is an interrupt marker after the call.
307 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
308
309 // The call instruction should have pushed the return value onto the stack...
310#ifdef __x86_64__
311 RetAddr--; // Backtrack to the reference itself...
312#else
313 RetAddr -= 4; // Backtrack to the reference itself...
314#endif
315
316#if 0
317 DOUT << "In callback! Addr=" << (void*)RetAddr
318 << " ESP=" << (void*)StackPtr
319 << ": Resolving call to function: "
320 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n";
321#endif
322
323 // Sanity check to make sure this really is a call instruction.
324#ifdef __x86_64__
325 assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
326 assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
327#else
328 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
329#endif
330
331 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
332
333 // Rewrite the call target... so that we don't end up here every time we
334 // execute the call.
335#ifdef __x86_64__
336 *(intptr_t *)(RetAddr - 0xa) = NewVal;
337#else
338 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
339#endif
340
341 if (isStub) {
342 // If this is a stub, rewrite the call into an unconditional branch
343 // instruction so that two return addresses are not pushed onto the stack
344 // when the requested function finally gets called. This also makes the
345 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
346#ifdef __x86_64__
347 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
348#else
349 ((unsigned char*)RetAddr)[-1] = 0xE9;
350#endif
351 }
352
353 // Change the return address to reexecute the call instruction...
354#ifdef __x86_64__
355 *RetAddrLoc -= 0xd;
356#else
357 *RetAddrLoc -= 5;
358#endif
359}
360
361TargetJITInfo::LazyResolverFn
362X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
363 JITCompilerFunction = F;
364
365#if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
366 !defined(_MSC_VER) && !defined(__x86_64__)
367 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
368 union {
369 unsigned u[3];
370 char c[12];
371 } text;
372
373 if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
374 // FIXME: support for AMD family of processors.
375 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
376 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
377 if ((EDX >> 25) & 0x1)
378 return X86CompilationCallback_SSE;
379 }
380 }
381#endif
382
383 return X86CompilationCallback;
384}
385
Evan Cheng28e7e162008-01-04 10:46:51 +0000386void *X86JITInfo::emitGlobalValueLazyPtr(void *GV, MachineCodeEmitter &MCE) {
387#ifdef __x86_64__
388 MCE.startFunctionStub(8, 8);
389 MCE.emitWordLE(((unsigned *)&GV)[0]);
390 MCE.emitWordLE(((unsigned *)&GV)[1]);
391#else
392 MCE.startFunctionStub(4, 4);
Bill Wendling865b7ff2008-01-08 00:52:29 +0000393 MCE.emitWordLE((intptr_t)GV);
Evan Cheng28e7e162008-01-04 10:46:51 +0000394#endif
395 return MCE.finishFunctionStub(0);
396}
397
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
399 // Note, we cast to intptr_t here to silence a -pedantic warning that
400 // complains about casting a function pointer to a normal pointer.
401#if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
402 !defined(_MSC_VER) && !defined(__x86_64__)
403 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
404 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
405#else
406 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
407#endif
408 if (NotCC) {
409#ifdef __x86_64__
410 MCE.startFunctionStub(13, 4);
411 MCE.emitByte(0x49); // REX prefix
412 MCE.emitByte(0xB8+2); // movabsq r10
413 MCE.emitWordLE(((unsigned *)&Fn)[0]);
414 MCE.emitWordLE(((unsigned *)&Fn)[1]);
415 MCE.emitByte(0x41); // REX prefix
416 MCE.emitByte(0xFF); // jmpq *r10
417 MCE.emitByte(2 | (4 << 3) | (3 << 6));
418#else
419 MCE.startFunctionStub(5, 4);
420 MCE.emitByte(0xE9);
421 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
422#endif
423 return MCE.finishFunctionStub(0);
424 }
425
426#ifdef __x86_64__
427 MCE.startFunctionStub(14, 4);
428 MCE.emitByte(0x49); // REX prefix
429 MCE.emitByte(0xB8+2); // movabsq r10
430 MCE.emitWordLE(((unsigned *)&Fn)[0]);
431 MCE.emitWordLE(((unsigned *)&Fn)[1]);
432 MCE.emitByte(0x41); // REX prefix
433 MCE.emitByte(0xFF); // callq *r10
434 MCE.emitByte(2 | (2 << 3) | (3 << 6));
435#else
436 MCE.startFunctionStub(6, 4);
437 MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
438
439 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
440#endif
441
442 MCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
443 return MCE.finishFunctionStub(0);
444}
445
Evan Chengaf743252008-01-05 02:26:58 +0000446/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
447/// specific basic block.
448intptr_t X86JITInfo::getPICJumpTableEntry(intptr_t BB, intptr_t Entry) {
449 return BB - PICBase;
450}
451
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452/// relocate - Before the JIT can run a block of code that has been emitted,
453/// it must rewrite the code to contain the actual addresses of any
454/// referenced global symbols.
455void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
456 unsigned NumRelocs, unsigned char* GOTBase) {
457 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
458 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
459 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
460 switch ((X86::RelocationType)MR->getRelocationType()) {
461 case X86::reloc_pcrel_word: {
462 // PC relative relocation, add the relocated value to the value already in
463 // memory, after we adjust it for where the PC is.
Evan Cheng8ee6bab2007-12-22 09:40:20 +0000464 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
465 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
466 break;
467 }
468 case X86::reloc_picrel_word: {
469 // PIC base relative relocation, add the relocated value to the value
470 // already in memory, after we adjust it for where the PIC base is.
471 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
473 break;
474 }
475 case X86::reloc_absolute_word:
476 // Absolute relocation, just add the relocated value to the value already
477 // in memory.
478 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
479 break;
480 case X86::reloc_absolute_dword:
481 *((intptr_t*)RelocPos) += ResultPtr;
482 break;
483 }
484 }
485}