blob: 5f88da5f89b6104aa425f7b421a1ec64ca554d4e [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//
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>
21using namespace llvm;
22
23#ifdef _MSC_VER
24 extern "C" void *_AddressOfReturnAddress(void);
25 #pragma intrinsic(_AddressOfReturnAddress)
26#endif
27
28void 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.
40static 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
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000050#if defined(__APPLE__)
51# define CFI(x)
52#else
53# define CFI(x) x
54#endif
55
Dan Gohmanf17a25c2007-07-18 16:29:46 +000056// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
57// callee saved registers, for the fastcc calling convention.
58extern "C" {
59#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"
65 ".globl " ASMPREFIX "X86CompilationCallback\n"
66 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000067 CFI(".cfi_startproc\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068 // Save RBP
69 "pushq %rbp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000070 CFI(".cfi_def_cfa_offset 16\n")
71 CFI(".cfi_offset %rbp, -16\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072 // Save RSP
73 "movq %rsp, %rbp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000074 CFI(".cfi_def_cfa_register %rbp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000075 // Save all int arg registers
76 "pushq %rdi\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000077 CFI(".cfi_rel_offset %rdi, 0\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 "pushq %rsi\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000079 CFI(".cfi_rel_offset %rsi, 8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080 "pushq %rdx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000081 CFI(".cfi_rel_offset %rdx, 16\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082 "pushq %rcx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000083 CFI(".cfi_rel_offset %rcx, 24\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 "pushq %r8\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000085 CFI(".cfi_rel_offset %r8, 32\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086 "pushq %r9\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +000087 CFI(".cfi_rel_offset %r9, 40\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +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"
104 "call " ASMPREFIX "X86CompilationCallback2\n"
105 // 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 Korobeynikov0fe7c452007-12-10 23:04:38 +0000116 CFI(".cfi_def_cfa_register esp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117 // Restore all int arg registers
118 "subq $48, %rsp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000119 CFI(".cfi_adjust_cfa_offset 48\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 "popq %r9\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000121 CFI(".cfi_adjust_cfa_offset -8\n")
122 CFI(".cfi_restore %r9\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 "popq %r8\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000124 CFI(".cfi_adjust_cfa_offset -8\n")
125 CFI(".cfi_restore %r8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 "popq %rcx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000127 CFI(".cfi_adjust_cfa_offset -8\n")
128 CFI(".cfi_restore %rcx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 "popq %rdx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000130 CFI(".cfi_adjust_cfa_offset -8\n")
131 CFI(".cfi_restore %rdx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 "popq %rsi\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000133 CFI(".cfi_adjust_cfa_offset -8\n")
134 CFI(".cfi_restore %rsi\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 "popq %rdi\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000136 CFI(".cfi_adjust_cfa_offset -8\n")
137 CFI(".cfi_restore %rdi\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 // Restore RBP
139 "popq %rbp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000140 CFI(".cfi_adjust_cfa_offset -8\n")
141 CFI(".cfi_restore %rbp\n")
Anton Korobeynikova264a912007-12-10 15:27:07 +0000142 "ret\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000143 CFI(".cfi_endproc\n")
144 );
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145#elif defined(__i386__) || defined(i386) || defined(_M_IX86)
146#ifndef _MSC_VER
147 void X86CompilationCallback(void);
148 asm(
149 ".text\n"
150 ".align 8\n"
151 ".globl " ASMPREFIX "X86CompilationCallback\n"
152 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000153 CFI(".cfi_startproc\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 "pushl %ebp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000155 CFI(".cfi_def_cfa_offset 8\n")
156 CFI(".cfi_offset %ebp, -8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000158 CFI(".cfi_def_cfa_register %ebp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159 "pushl %eax\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000160 CFI(".cfi_rel_offset %eax, 0\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000162 CFI(".cfi_rel_offset %edx, 4\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 "pushl %ecx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000164 CFI(".cfi_rel_offset %ecx, 8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165#if defined(__APPLE__)
166 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
167#endif
168 "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"
172 "call " ASMPREFIX "X86CompilationCallback2\n"
173 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000174 CFI(".cfi_def_cfa_register %esp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 "subl $12, %esp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000176 CFI(".cfi_adjust_cfa_offset 12\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000177 "popl %ecx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000178 CFI(".cfi_adjust_cfa_offset -4\n")
179 CFI(".cfi_restore %ecx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 "popl %edx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000181 CFI(".cfi_adjust_cfa_offset -4\n")
182 CFI(".cfi_restore %edx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183 "popl %eax\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000184 CFI(".cfi_adjust_cfa_offset -4\n")
185 CFI(".cfi_restore %eax\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 "popl %ebp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000187 CFI(".cfi_adjust_cfa_offset -4\n")
188 CFI(".cfi_restore %ebp\n")
Anton Korobeynikov67fc5112007-12-10 14:54:42 +0000189 "ret\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000190 CFI(".cfi_endproc\n")
191 );
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Korobeynikov0fe7c452007-12-10 23:04:38 +0000200 CFI(".cfi_startproc\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201 "pushl %ebp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000202 CFI(".cfi_def_cfa_offset 8\n")
203 CFI(".cfi_offset %ebp, -8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000205 CFI(".cfi_def_cfa_register %ebp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 "pushl %eax\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000207 CFI(".cfi_rel_offset %eax, 0\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000209 CFI(".cfi_rel_offset %edx, 4\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210 "pushl %ecx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000211 CFI(".cfi_rel_offset %ecx, 8\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
213 // Save all XMM arg registers
214 "subl $64, %esp\n"
Anton Korobeynikov4d1e0732007-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Korobeynikov0fe7c452007-12-10 23:04:38 +0000229 CFI(".cfi_restore %xmm3\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000231 CFI(".cfi_restore %xmm2\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000233 CFI(".cfi_restore %xmm1\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 "movaps (%esp), %xmm0\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000235 CFI(".cfi_restore %xmm0\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000237 CFI(".cfi_def_cfa_register esp\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 "subl $12, %esp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000239 CFI(".cfi_adjust_cfa_offset 12\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240 "popl %ecx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000241 CFI(".cfi_adjust_cfa_offset -4\n")
242 CFI(".cfi_restore %ecx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000243 "popl %edx\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000244 CFI(".cfi_adjust_cfa_offset -4\n")
245 CFI(".cfi_restore %edx\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 "popl %eax\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000247 CFI(".cfi_adjust_cfa_offset -4\n")
248 CFI(".cfi_restore %eax\n")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249 "popl %ebp\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000250 CFI(".cfi_adjust_cfa_offset -4\n")
251 CFI(".cfi_restore %ebp\n")
Anton Korobeynikov4d1e0732007-12-10 15:13:55 +0000252 "ret\n"
Anton Korobeynikov0fe7c452007-12-10 23:04:38 +0000253 CFI(".cfi_endproc\n")
254 );
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255#else
256 void X86CompilationCallback2(void);
257
258 _declspec(naked) void X86CompilationCallback(void) {
259 __asm {
260 push eax
261 push edx
262 push ecx
263 call X86CompilationCallback2
264 pop ecx
265 pop edx
266 pop eax
267 ret
268 }
269 }
270#endif // _MSC_VER
271
272#else // Not an i386 host
273 void X86CompilationCallback() {
274 assert(0 && "Cannot call X86CompilationCallback() on a non-x86 arch!\n");
275 abort();
276 }
277#endif
278}
279
280/// X86CompilationCallback - This is the target-specific function invoked by the
281/// 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.
284#ifdef _MSC_VER
285extern "C" void X86CompilationCallback2() {
286 assert(sizeof(size_t) == 4); // FIXME: handle Win64
287 intptr_t *RetAddrLoc = (intptr_t *)_AddressOfReturnAddress();
288 RetAddrLoc += 4; // skip over ret addr, edx, eax, ecx
289 intptr_t RetAddr = *RetAddrLoc;
290#else
291extern "C" void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
292 intptr_t *RetAddrLoc = &StackPtr[1];
293#endif
294 assert(*RetAddrLoc == RetAddr &&
295 "Could not find return address on the stack!");
296
297 // It's a stub if there is an interrupt marker after the call.
298 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
299
300 // The call instruction should have pushed the return value onto the stack...
301#ifdef __x86_64__
302 RetAddr--; // Backtrack to the reference itself...
303#else
304 RetAddr -= 4; // Backtrack to the reference itself...
305#endif
306
307#if 0
308 DOUT << "In callback! Addr=" << (void*)RetAddr
309 << " ESP=" << (void*)StackPtr
310 << ": Resolving call to function: "
311 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n";
312#endif
313
314 // Sanity check to make sure this really is a call instruction.
315#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
319 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
320#endif
321
322 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
323
324 // Rewrite the call target... so that we don't end up here every time we
325 // execute the call.
326#ifdef __x86_64__
327 *(intptr_t *)(RetAddr - 0xa) = NewVal;
328#else
329 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
330#endif
331
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.
337#ifdef __x86_64__
338 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
339#else
340 ((unsigned char*)RetAddr)[-1] = 0xE9;
341#endif
342 }
343
344 // Change the return address to reexecute the call instruction...
345#ifdef __x86_64__
346 *RetAddrLoc -= 0xd;
347#else
348 *RetAddrLoc -= 5;
349#endif
350}
351
352TargetJITInfo::LazyResolverFn
353X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
354 JITCompilerFunction = F;
355
356#if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
357 !defined(_MSC_VER) && !defined(__x86_64__)
358 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 }
372#endif
373
374 return X86CompilationCallback;
375}
376
377void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
378 // Note, we cast to intptr_t here to silence a -pedantic warning that
379 // complains about casting a function pointer to a normal pointer.
380#if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
381 !defined(_MSC_VER) && !defined(__x86_64__)
382 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
383 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
384#else
385 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
386#endif
387 if (NotCC) {
388#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
398 MCE.startFunctionStub(5, 4);
399 MCE.emitByte(0xE9);
400 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
401#endif
402 return MCE.finishFunctionStub(0);
403 }
404
405#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
415 MCE.startFunctionStub(6, 4);
416 MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
417
418 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
419#endif
420
421 MCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
422 return MCE.finishFunctionStub(0);
423}
424
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,
429 unsigned NumRelocs, unsigned char* GOTBase) {
430 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()) {
434 case X86::reloc_pcrel_word: {
435 // PC relative relocation, add the relocated value to the value already in
436 // memory, after we adjust it for where the PC is.
437 ResultPtr = ResultPtr-(intptr_t)RelocPos-4-MR->getConstantVal();
438 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
439 break;
440 }
441 case X86::reloc_absolute_word:
442 // Absolute relocation, just add the relocated value to the value already
443 // in memory.
444 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
445 break;
446 case X86::reloc_absolute_dword:
447 *((intptr_t*)RelocPos) += ResultPtr;
448 break;
449 }
450 }
451}