blob: 9aa10d58483e43d36d840fc528f9ed5116346eaf [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
Chris Lattner1030f722005-05-19 06:49:17 +000050// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
51// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000052extern "C" {
Evan Cheng25ab6902006-09-08 06:48:29 +000053#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"
Chris Lattner40f4ba52006-09-08 17:03:56 +000059 ".globl " ASMPREFIX "X86CompilationCallback\n"
60 ASMPREFIX "X86CompilationCallback:\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +000061// ".cfi_startproc\n"
Evan Cheng25ab6902006-09-08 06:48:29 +000062 // Save RBP
63 "pushq %rbp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +000064// ".cfi_def_cfa_offset 16\n"
65// ".cfi_offset %rbp, -16\n"
Evan Cheng25ab6902006-09-08 06:48:29 +000066 // Save RSP
67 "movq %rsp, %rbp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +000068// ".cfi_def_cfa_register %rbp\n"
Evan Cheng25ab6902006-09-08 06:48:29 +000069 // Save all int arg registers
70 "pushq %rdi\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +000071// ".cfi_rel_offset %rdi, 0\n"
Evan Cheng25ab6902006-09-08 06:48:29 +000072 "pushq %rsi\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +000073// ".cfi_rel_offset %rsi, 8\n"
Evan Cheng25ab6902006-09-08 06:48:29 +000074 "pushq %rdx\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +000075// ".cfi_rel_offset %rdx, 16\n"
Evan Cheng25ab6902006-09-08 06:48:29 +000076 "pushq %rcx\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +000077// ".cfi_rel_offset %rcx, 24\n"
Evan Cheng25ab6902006-09-08 06:48:29 +000078 "pushq %r8\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +000079// ".cfi_rel_offset %r8, 32\n"
Evan Cheng25ab6902006-09-08 06:48:29 +000080 "pushq %r9\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +000081// ".cfi_rel_offset %r9, 40\n"
Evan Cheng25ab6902006-09-08 06:48:29 +000082 // Align stack on 16-byte boundary. ESP might not be properly aligned
83 // (8 byte) if this is called from an indirect stub.
84 "andq $-16, %rsp\n"
85 // Save all XMM arg registers
86 "subq $128, %rsp\n"
87 "movaps %xmm0, (%rsp)\n"
88 "movaps %xmm1, 16(%rsp)\n"
89 "movaps %xmm2, 32(%rsp)\n"
90 "movaps %xmm3, 48(%rsp)\n"
91 "movaps %xmm4, 64(%rsp)\n"
92 "movaps %xmm5, 80(%rsp)\n"
93 "movaps %xmm6, 96(%rsp)\n"
94 "movaps %xmm7, 112(%rsp)\n"
95 // JIT callee
96 "movq %rbp, %rdi\n" // Pass prev frame and return address
97 "movq 8(%rbp), %rsi\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +000098 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Cheng25ab6902006-09-08 06:48:29 +000099 // Restore all XMM arg registers
100 "movaps 112(%rsp), %xmm7\n"
101 "movaps 96(%rsp), %xmm6\n"
102 "movaps 80(%rsp), %xmm5\n"
103 "movaps 64(%rsp), %xmm4\n"
104 "movaps 48(%rsp), %xmm3\n"
105 "movaps 32(%rsp), %xmm2\n"
106 "movaps 16(%rsp), %xmm1\n"
107 "movaps (%rsp), %xmm0\n"
108 // Restore RSP
109 "movq %rbp, %rsp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000110// ".cfi_def_cfa_register esp\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000111 // Restore all int arg registers
112 "subq $48, %rsp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000113// ".cfi_adjust_cfa_offset 48\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000114 "popq %r9\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000115// ".cfi_adjust_cfa_offset -8\n"
116// ".cfi_restore %r9\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000117 "popq %r8\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000118// ".cfi_adjust_cfa_offset -8\n"
119// ".cfi_restore %r8\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000120 "popq %rcx\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000121// ".cfi_adjust_cfa_offset -8\n"
122// ".cfi_restore %rcx\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000123 "popq %rdx\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000124// ".cfi_adjust_cfa_offset -8\n"
125// ".cfi_restore %rdx\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000126 "popq %rsi\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000127// ".cfi_adjust_cfa_offset -8\n"
128// ".cfi_restore %rsi\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000129 "popq %rdi\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000130// ".cfi_adjust_cfa_offset -8\n"
131// ".cfi_restore %rdi\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000132 // Restore RBP
133 "popq %rbp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000134// ".cfi_adjust_cfa_offset -8\n"
135// ".cfi_restore %rbp\n"
Anton Korobeynikov3a7bcc42007-12-10 15:27:07 +0000136 "ret\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000137// ".cfi_endproc\n"
138 );
Evan Cheng25ab6902006-09-08 06:48:29 +0000139#elif defined(__i386__) || defined(i386) || defined(_M_IX86)
Chris Lattner1030f722005-05-19 06:49:17 +0000140#ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000141 void X86CompilationCallback(void);
142 asm(
143 ".text\n"
144 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000145 ".globl " ASMPREFIX "X86CompilationCallback\n"
146 ASMPREFIX "X86CompilationCallback:\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000147// ".cfi_startproc\n"
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000148 "pushl %ebp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000149// ".cfi_def_cfa_offset 8\n"
150// ".cfi_offset %ebp, -8\n"
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000151 "movl %esp, %ebp\n" // Standard prologue
Chris Lattnerec90cd12007-12-10 19:10:18 +0000152// ".cfi_def_cfa_register %ebp\n"
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000153 "pushl %eax\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000154// ".cfi_rel_offset %eax, 0\n"
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000155 "pushl %edx\n" // Save EAX/EDX/ECX
Chris Lattnerec90cd12007-12-10 19:10:18 +0000156// ".cfi_rel_offset %edx, 4\n"
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000157 "pushl %ecx\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000158// ".cfi_rel_offset %ecx, 8\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000159#if defined(__APPLE__)
160 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
161#endif
Evan Chengbe33dd92006-06-29 01:48:36 +0000162 "subl $16, %esp\n"
163 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
164 "movl %eax, 4(%esp)\n"
165 "movl %ebp, (%esp)\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000166 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000167 "movl %ebp, %esp\n" // Restore ESP
Chris Lattnerec90cd12007-12-10 19:10:18 +0000168// ".cfi_def_cfa_register %esp\n"
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000169 "subl $12, %esp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000170// ".cfi_adjust_cfa_offset 12\n"
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000171 "popl %ecx\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000172// ".cfi_adjust_cfa_offset -4\n"
173// ".cfi_restore %ecx\n"
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000174 "popl %edx\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000175// ".cfi_adjust_cfa_offset -4\n"
176// ".cfi_restore %edx\n"
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000177 "popl %eax\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000178// ".cfi_adjust_cfa_offset -4\n"
179// ".cfi_restore %eax\n"
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000180 "popl %ebp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000181// ".cfi_adjust_cfa_offset -4\n"
182// ".cfi_restore %ebp\n"
Anton Korobeynikova14b6692007-12-10 14:54:42 +0000183 "ret\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000184// ".cfi_endproc\n"
185 );
Evan Cheng93b11f82006-10-16 21:01:55 +0000186
187 // Same as X86CompilationCallback but also saves XMM argument registers.
188 void X86CompilationCallback_SSE(void);
189 asm(
190 ".text\n"
191 ".align 8\n"
192 ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
193 ASMPREFIX "X86CompilationCallback_SSE:\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000194// ".cfi_startproc\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000195 "pushl %ebp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000196// ".cfi_def_cfa_offset 8\n"
197// ".cfi_offset %ebp, -8\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000198 "movl %esp, %ebp\n" // Standard prologue
Chris Lattnerec90cd12007-12-10 19:10:18 +0000199// ".cfi_def_cfa_register %ebp\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000200 "pushl %eax\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000201// ".cfi_rel_offset %eax, 0\n"
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000202 "pushl %edx\n" // Save EAX/EDX/ECX
Chris Lattnerec90cd12007-12-10 19:10:18 +0000203// ".cfi_rel_offset %edx, 4\n"
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000204 "pushl %ecx\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000205// ".cfi_rel_offset %ecx, 8\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000206 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
207 // Save all XMM arg registers
208 "subl $64, %esp\n"
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000209 // FIXME: provide frame move information for xmm registers.
210 // This can be tricky, because CFA register is ebp (unaligned)
211 // and we need to produce offsets relative to it.
Evan Cheng93b11f82006-10-16 21:01:55 +0000212 "movaps %xmm0, (%esp)\n"
213 "movaps %xmm1, 16(%esp)\n"
214 "movaps %xmm2, 32(%esp)\n"
215 "movaps %xmm3, 48(%esp)\n"
216 "subl $16, %esp\n"
217 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
218 "movl %eax, 4(%esp)\n"
219 "movl %ebp, (%esp)\n"
220 "call " ASMPREFIX "X86CompilationCallback2\n"
221 "addl $16, %esp\n"
222 "movaps 48(%esp), %xmm3\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000223// ".cfi_restore %xmm3\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000224 "movaps 32(%esp), %xmm2\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000225// ".cfi_restore %xmm2\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000226 "movaps 16(%esp), %xmm1\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000227// ".cfi_restore %xmm1\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000228 "movaps (%esp), %xmm0\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000229// ".cfi_restore %xmm0\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000230 "movl %ebp, %esp\n" // Restore ESP
Chris Lattnerec90cd12007-12-10 19:10:18 +0000231// ".cfi_def_cfa_register esp\n"
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000232 "subl $12, %esp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000233// ".cfi_adjust_cfa_offset 12\n"
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000234 "popl %ecx\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000235// ".cfi_adjust_cfa_offset -4\n"
236// ".cfi_restore %ecx\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000237 "popl %edx\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000238// ".cfi_adjust_cfa_offset -4\n"
239// ".cfi_restore %edx\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000240 "popl %eax\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000241// ".cfi_adjust_cfa_offset -4\n"
242// ".cfi_restore %eax\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000243 "popl %ebp\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000244// ".cfi_adjust_cfa_offset -4\n"
245// ".cfi_restore %ebp\n"
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000246 "ret\n"
Chris Lattnerec90cd12007-12-10 19:10:18 +0000247// ".cfi_endproc\n"
248 );
Chris Lattner1030f722005-05-19 06:49:17 +0000249#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000250 void X86CompilationCallback2(void);
251
252 _declspec(naked) void X86CompilationCallback(void) {
253 __asm {
254 push eax
255 push edx
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000256 push ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000257 call X86CompilationCallback2
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000258 pop ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000259 pop edx
260 pop eax
261 ret
262 }
263 }
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000264#endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +0000265
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000266#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000267 void X86CompilationCallback() {
Bill Wendling6345d752006-11-17 07:52:03 +0000268 assert(0 && "Cannot call X86CompilationCallback() on a non-x86 arch!\n");
Chris Lattner170fbcb2005-05-20 17:00:21 +0000269 abort();
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000270 }
Chris Lattner1030f722005-05-19 06:49:17 +0000271#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000272}
Chris Lattner1030f722005-05-19 06:49:17 +0000273
274/// X86CompilationCallback - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000275/// function stub when we did not know the real target of a call. This function
276/// must locate the start of the stub or call site and pass it into the JIT
277/// compiler function.
Chris Lattner7ddde322004-11-20 23:54:33 +0000278#ifdef _MSC_VER
Evan Chengbe33dd92006-06-29 01:48:36 +0000279extern "C" void X86CompilationCallback2() {
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000280 assert(sizeof(size_t) == 4); // FIXME: handle Win64
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000281 intptr_t *RetAddrLoc = (intptr_t *)_AddressOfReturnAddress();
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000282 RetAddrLoc += 4; // skip over ret addr, edx, eax, ecx
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000283 intptr_t RetAddr = *RetAddrLoc;
Chris Lattner7ddde322004-11-20 23:54:33 +0000284#else
Evan Chengbe33dd92006-06-29 01:48:36 +0000285extern "C" void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
286 intptr_t *RetAddrLoc = &StackPtr[1];
Chris Lattner7ddde322004-11-20 23:54:33 +0000287#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000288 assert(*RetAddrLoc == RetAddr &&
Chris Lattner7ddde322004-11-20 23:54:33 +0000289 "Could not find return address on the stack!");
290
291 // It's a stub if there is an interrupt marker after the call.
Evan Cheng25ab6902006-09-08 06:48:29 +0000292 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
Chris Lattner7ddde322004-11-20 23:54:33 +0000293
294 // The call instruction should have pushed the return value onto the stack...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000295#ifdef __x86_64__
296 RetAddr--; // Backtrack to the reference itself...
297#else
Chris Lattner7ddde322004-11-20 23:54:33 +0000298 RetAddr -= 4; // Backtrack to the reference itself...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000299#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000300
301#if 0
Bill Wendling6345d752006-11-17 07:52:03 +0000302 DOUT << "In callback! Addr=" << (void*)RetAddr
303 << " ESP=" << (void*)StackPtr
304 << ": Resolving call to function: "
305 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n";
Chris Lattner7ddde322004-11-20 23:54:33 +0000306#endif
307
308 // Sanity check to make sure this really is a call instruction.
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000309#ifdef __x86_64__
310 assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
311 assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
312#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000313 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000314#endif
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000315
Evan Cheng25ab6902006-09-08 06:48:29 +0000316 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
Chris Lattner7ddde322004-11-20 23:54:33 +0000317
318 // Rewrite the call target... so that we don't end up here every time we
319 // execute the call.
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000320#ifdef __x86_64__
321 *(intptr_t *)(RetAddr - 0xa) = NewVal;
322#else
323 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
324#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000325
326 if (isStub) {
327 // If this is a stub, rewrite the call into an unconditional branch
328 // instruction so that two return addresses are not pushed onto the stack
329 // when the requested function finally gets called. This also makes the
330 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000331#ifdef __x86_64__
332 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
333#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000334 ((unsigned char*)RetAddr)[-1] = 0xE9;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000335#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000336 }
337
338 // Change the return address to reexecute the call instruction...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000339#ifdef __x86_64__
340 *RetAddrLoc -= 0xd;
341#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000342 *RetAddrLoc -= 5;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000343#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000344}
345
Chris Lattner7ddde322004-11-20 23:54:33 +0000346TargetJITInfo::LazyResolverFn
347X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
348 JITCompilerFunction = F;
Evan Cheng93b11f82006-10-16 21:01:55 +0000349
Evan Chengcf922302006-10-16 23:44:08 +0000350#if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
351 !defined(_MSC_VER) && !defined(__x86_64__)
Evan Cheng93b11f82006-10-16 21:01:55 +0000352 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
353 union {
354 unsigned u[3];
355 char c[12];
356 } text;
357
358 if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
359 // FIXME: support for AMD family of processors.
360 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
361 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
362 if ((EDX >> 25) & 0x1)
363 return X86CompilationCallback_SSE;
364 }
365 }
Evan Cheng348b00d2006-10-16 22:53:28 +0000366#endif
Evan Cheng93b11f82006-10-16 21:01:55 +0000367
Chris Lattner1030f722005-05-19 06:49:17 +0000368 return X86CompilationCallback;
Chris Lattner7ddde322004-11-20 23:54:33 +0000369}
370
Chris Lattner90b1b452004-11-22 22:25:30 +0000371void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000372 // Note, we cast to intptr_t here to silence a -pedantic warning that
373 // complains about casting a function pointer to a normal pointer.
Evan Chengcf922302006-10-16 23:44:08 +0000374#if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
375 !defined(_MSC_VER) && !defined(__x86_64__)
Evan Cheng348b00d2006-10-16 22:53:28 +0000376 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
377 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
Evan Chengcf922302006-10-16 23:44:08 +0000378#else
379 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
Evan Cheng348b00d2006-10-16 22:53:28 +0000380#endif
381 if (NotCC) {
Evan Cheng8510dc02007-03-14 10:48:08 +0000382#ifdef __x86_64__
383 MCE.startFunctionStub(13, 4);
384 MCE.emitByte(0x49); // REX prefix
385 MCE.emitByte(0xB8+2); // movabsq r10
386 MCE.emitWordLE(((unsigned *)&Fn)[0]);
387 MCE.emitWordLE(((unsigned *)&Fn)[1]);
388 MCE.emitByte(0x41); // REX prefix
389 MCE.emitByte(0xFF); // jmpq *r10
390 MCE.emitByte(2 | (4 << 3) | (3 << 6));
391#else
Evan Cheng73b00942006-11-16 20:13:34 +0000392 MCE.startFunctionStub(5, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000393 MCE.emitByte(0xE9);
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000394 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000395#endif
Evan Cheng774be292007-03-14 19:44:58 +0000396 return MCE.finishFunctionStub(0);
Chris Lattner90b1b452004-11-22 22:25:30 +0000397 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000398
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000399#ifdef __x86_64__
400 MCE.startFunctionStub(14, 4);
401 MCE.emitByte(0x49); // REX prefix
402 MCE.emitByte(0xB8+2); // movabsq r10
403 MCE.emitWordLE(((unsigned *)&Fn)[0]);
404 MCE.emitWordLE(((unsigned *)&Fn)[1]);
405 MCE.emitByte(0x41); // REX prefix
406 MCE.emitByte(0xFF); // callq *r10
407 MCE.emitByte(2 | (2 << 3) | (3 << 6));
408#else
Evan Cheng73b00942006-11-16 20:13:34 +0000409 MCE.startFunctionStub(6, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000410 MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
411
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000412 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000413#endif
Chris Lattner90b1b452004-11-22 22:25:30 +0000414
415 MCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
416 return MCE.finishFunctionStub(0);
417}
Chris Lattner7ddde322004-11-20 23:54:33 +0000418
419/// relocate - Before the JIT can run a block of code that has been emitted,
420/// it must rewrite the code to contain the actual addresses of any
421/// referenced global symbols.
422void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000423 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000424 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
425 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
426 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
427 switch ((X86::RelocationType)MR->getRelocationType()) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000428 case X86::reloc_pcrel_word: {
Chris Lattner7ddde322004-11-20 23:54:33 +0000429 // PC relative relocation, add the relocated value to the value already in
430 // memory, after we adjust it for where the PC is.
Evan Cheng25ab6902006-09-08 06:48:29 +0000431 ResultPtr = ResultPtr-(intptr_t)RelocPos-4-MR->getConstantVal();
432 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000433 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000434 }
Chris Lattner7ddde322004-11-20 23:54:33 +0000435 case X86::reloc_absolute_word:
436 // Absolute relocation, just add the relocated value to the value already
437 // in memory.
Evan Cheng25ab6902006-09-08 06:48:29 +0000438 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000439 break;
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000440 case X86::reloc_absolute_dword:
441 *((intptr_t*)RelocPos) += ResultPtr;
442 break;
Chris Lattner7ddde322004-11-20 23:54:33 +0000443 }
444 }
445}