blob: cb16c6c26b99201c2a064ff7fa8e467826debe53 [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//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// 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>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000021#include <cstring>
Chris Lattner7ddde322004-11-20 23:54:33 +000022using namespace llvm;
23
Chris Lattner38f73732006-01-26 19:55:20 +000024#ifdef _MSC_VER
25 extern "C" void *_AddressOfReturnAddress(void);
26 #pragma intrinsic(_AddressOfReturnAddress)
27#endif
28
Chris Lattner7ddde322004-11-20 23:54:33 +000029void 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
Chris Lattner7ddde322004-11-20 23:54:33 +000039/// JITCompilerFunction - This contains the address of the JIT function used to
40/// compile a function lazily.
41static TargetJITInfo::JITCompilerFn JITCompilerFunction;
42
Chris Lattner40f4ba52006-09-08 17:03:56 +000043// 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 Korobeynikov7eb58772007-12-10 23:10:20 +000051// Provide a convenient way for disabling usage of CFI directives.
Anton Korobeynikov2fb9dee2007-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 Korobeynikov5f682872007-12-10 23:04:38 +000054#if defined(__APPLE__)
55# define CFI(x)
56#else
Anton Korobeynikov144a45e2007-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 Korobeynikovd07310a2007-12-22 20:46:24 +000060# define CFI(x)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000061#endif
62
Chris Lattner1030f722005-05-19 06:49:17 +000063// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
64// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000065extern "C" {
Evan Cheng25ab6902006-09-08 06:48:29 +000066#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"
Chris Lattner40f4ba52006-09-08 17:03:56 +000072 ".globl " ASMPREFIX "X86CompilationCallback\n"
73 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000074 CFI(".cfi_startproc\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000075 // Save RBP
76 "pushq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000077 CFI(".cfi_def_cfa_offset 16\n")
78 CFI(".cfi_offset %rbp, -16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000079 // Save RSP
80 "movq %rsp, %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000081 CFI(".cfi_def_cfa_register %rbp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000082 // Save all int arg registers
83 "pushq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000084 CFI(".cfi_rel_offset %rdi, 0\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000085 "pushq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000086 CFI(".cfi_rel_offset %rsi, 8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000087 "pushq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000088 CFI(".cfi_rel_offset %rdx, 16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000089 "pushq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000090 CFI(".cfi_rel_offset %rcx, 24\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000091 "pushq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000092 CFI(".cfi_rel_offset %r8, 32\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000093 "pushq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000094 CFI(".cfi_rel_offset %r9, 40\n")
Evan Cheng25ab6902006-09-08 06:48:29 +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"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000111 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000112 // 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 Michela28c6bf2007-12-12 02:38:28 +0000123 CFI(".cfi_def_cfa_register %rsp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000124 // Restore all int arg registers
125 "subq $48, %rsp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000126 CFI(".cfi_adjust_cfa_offset 48\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000127 "popq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000128 CFI(".cfi_adjust_cfa_offset -8\n")
129 CFI(".cfi_restore %r9\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000130 "popq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000131 CFI(".cfi_adjust_cfa_offset -8\n")
132 CFI(".cfi_restore %r8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000133 "popq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000134 CFI(".cfi_adjust_cfa_offset -8\n")
135 CFI(".cfi_restore %rcx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000136 "popq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000137 CFI(".cfi_adjust_cfa_offset -8\n")
138 CFI(".cfi_restore %rdx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000139 "popq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000140 CFI(".cfi_adjust_cfa_offset -8\n")
141 CFI(".cfi_restore %rsi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000142 "popq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000143 CFI(".cfi_adjust_cfa_offset -8\n")
144 CFI(".cfi_restore %rdi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000145 // Restore RBP
146 "popq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000147 CFI(".cfi_adjust_cfa_offset -8\n")
148 CFI(".cfi_restore %rbp\n")
Anton Korobeynikov3a7bcc42007-12-10 15:27:07 +0000149 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000150 CFI(".cfi_endproc\n")
151 );
Evan Cheng25ab6902006-09-08 06:48:29 +0000152#elif defined(__i386__) || defined(i386) || defined(_M_IX86)
Chris Lattner1030f722005-05-19 06:49:17 +0000153#ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000154 void X86CompilationCallback(void);
155 asm(
156 ".text\n"
157 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000158 ".globl " ASMPREFIX "X86CompilationCallback\n"
159 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000160 CFI(".cfi_startproc\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000161 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000162 CFI(".cfi_def_cfa_offset 8\n")
163 CFI(".cfi_offset %ebp, -8\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000164 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000165 CFI(".cfi_def_cfa_register %ebp\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000166 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000167 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000168 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000169 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000170 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000171 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Chengda08d2c2006-06-24 08:36:10 +0000172#if defined(__APPLE__)
173 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
174#endif
Evan Chengbe33dd92006-06-29 01:48:36 +0000175 "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"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000179 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000180 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000181 CFI(".cfi_def_cfa_register %esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000182 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000183 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000184 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000185 CFI(".cfi_adjust_cfa_offset -4\n")
186 CFI(".cfi_restore %ecx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000187 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000188 CFI(".cfi_adjust_cfa_offset -4\n")
189 CFI(".cfi_restore %edx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000190 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000191 CFI(".cfi_adjust_cfa_offset -4\n")
192 CFI(".cfi_restore %eax\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000193 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000194 CFI(".cfi_adjust_cfa_offset -4\n")
195 CFI(".cfi_restore %ebp\n")
Anton Korobeynikova14b6692007-12-10 14:54:42 +0000196 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000197 CFI(".cfi_endproc\n")
198 );
Evan Cheng93b11f82006-10-16 21:01:55 +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 Korobeynikov5f682872007-12-10 23:04:38 +0000207 CFI(".cfi_startproc\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000208 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000209 CFI(".cfi_def_cfa_offset 8\n")
210 CFI(".cfi_offset %ebp, -8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000211 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000212 CFI(".cfi_def_cfa_register %ebp\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000213 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000214 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000215 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000216 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000217 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000218 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000219 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
220 // Save all XMM arg registers
221 "subl $64, %esp\n"
Anton Korobeynikovdf7814c2007-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.
Evan Cheng93b11f82006-10-16 21:01:55 +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 Korobeynikov5f682872007-12-10 23:04:38 +0000236 CFI(".cfi_restore %xmm3\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000237 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000238 CFI(".cfi_restore %xmm2\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000239 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000240 CFI(".cfi_restore %xmm1\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000241 "movaps (%esp), %xmm0\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000242 CFI(".cfi_restore %xmm0\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000243 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000244 CFI(".cfi_def_cfa_register esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000245 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000246 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000247 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000248 CFI(".cfi_adjust_cfa_offset -4\n")
249 CFI(".cfi_restore %ecx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000250 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000251 CFI(".cfi_adjust_cfa_offset -4\n")
252 CFI(".cfi_restore %edx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000253 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000254 CFI(".cfi_adjust_cfa_offset -4\n")
255 CFI(".cfi_restore %eax\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000256 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000257 CFI(".cfi_adjust_cfa_offset -4\n")
258 CFI(".cfi_restore %ebp\n")
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000259 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000260 CFI(".cfi_endproc\n")
261 );
Chris Lattner1030f722005-05-19 06:49:17 +0000262#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000263 void X86CompilationCallback2(void);
264
265 _declspec(naked) void X86CompilationCallback(void) {
266 __asm {
267 push eax
268 push edx
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000269 push ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000270 call X86CompilationCallback2
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000271 pop ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000272 pop edx
273 pop eax
274 ret
275 }
276 }
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000277#endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +0000278
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000279#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000280 void X86CompilationCallback() {
Bill Wendling6345d752006-11-17 07:52:03 +0000281 assert(0 && "Cannot call X86CompilationCallback() on a non-x86 arch!\n");
Chris Lattner170fbcb2005-05-20 17:00:21 +0000282 abort();
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000283 }
Chris Lattner1030f722005-05-19 06:49:17 +0000284#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000285}
Chris Lattner1030f722005-05-19 06:49:17 +0000286
287/// X86CompilationCallback - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000288/// function stub when we did not know the real target of a call. This function
289/// must locate the start of the stub or call site and pass it into the JIT
290/// compiler function.
Chris Lattner7ddde322004-11-20 23:54:33 +0000291#ifdef _MSC_VER
Evan Chengbe33dd92006-06-29 01:48:36 +0000292extern "C" void X86CompilationCallback2() {
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000293 assert(sizeof(size_t) == 4); // FIXME: handle Win64
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000294 intptr_t *RetAddrLoc = (intptr_t *)_AddressOfReturnAddress();
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000295 RetAddrLoc += 4; // skip over ret addr, edx, eax, ecx
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000296 intptr_t RetAddr = *RetAddrLoc;
Chris Lattner7ddde322004-11-20 23:54:33 +0000297#else
Evan Chengbe33dd92006-06-29 01:48:36 +0000298extern "C" void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
299 intptr_t *RetAddrLoc = &StackPtr[1];
Chris Lattner7ddde322004-11-20 23:54:33 +0000300#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000301 assert(*RetAddrLoc == RetAddr &&
Chris Lattner7ddde322004-11-20 23:54:33 +0000302 "Could not find return address on the stack!");
303
304 // It's a stub if there is an interrupt marker after the call.
Evan Cheng25ab6902006-09-08 06:48:29 +0000305 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
Chris Lattner7ddde322004-11-20 23:54:33 +0000306
307 // The call instruction should have pushed the return value onto the stack...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000308#ifdef __x86_64__
309 RetAddr--; // Backtrack to the reference itself...
310#else
Chris Lattner7ddde322004-11-20 23:54:33 +0000311 RetAddr -= 4; // Backtrack to the reference itself...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000312#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000313
314#if 0
Bill Wendling6345d752006-11-17 07:52:03 +0000315 DOUT << "In callback! Addr=" << (void*)RetAddr
316 << " ESP=" << (void*)StackPtr
317 << ": Resolving call to function: "
318 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n";
Chris Lattner7ddde322004-11-20 23:54:33 +0000319#endif
320
321 // Sanity check to make sure this really is a call instruction.
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000322#ifdef __x86_64__
323 assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
324 assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
325#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000326 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000327#endif
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000328
Evan Cheng25ab6902006-09-08 06:48:29 +0000329 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
Chris Lattner7ddde322004-11-20 23:54:33 +0000330
331 // Rewrite the call target... so that we don't end up here every time we
332 // execute the call.
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000333#ifdef __x86_64__
334 *(intptr_t *)(RetAddr - 0xa) = NewVal;
335#else
336 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
337#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000338
339 if (isStub) {
340 // If this is a stub, rewrite the call into an unconditional branch
341 // instruction so that two return addresses are not pushed onto the stack
342 // when the requested function finally gets called. This also makes the
343 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000344#ifdef __x86_64__
345 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
346#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000347 ((unsigned char*)RetAddr)[-1] = 0xE9;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000348#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000349 }
350
351 // Change the return address to reexecute the call instruction...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000352#ifdef __x86_64__
353 *RetAddrLoc -= 0xd;
354#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000355 *RetAddrLoc -= 5;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000356#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000357}
358
Chris Lattner7ddde322004-11-20 23:54:33 +0000359TargetJITInfo::LazyResolverFn
360X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
361 JITCompilerFunction = F;
Evan Cheng93b11f82006-10-16 21:01:55 +0000362
Evan Chengcf922302006-10-16 23:44:08 +0000363#if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
364 !defined(_MSC_VER) && !defined(__x86_64__)
Evan Cheng93b11f82006-10-16 21:01:55 +0000365 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
366 union {
367 unsigned u[3];
368 char c[12];
369 } text;
370
371 if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
372 // FIXME: support for AMD family of processors.
373 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
374 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
375 if ((EDX >> 25) & 0x1)
376 return X86CompilationCallback_SSE;
377 }
378 }
Evan Cheng348b00d2006-10-16 22:53:28 +0000379#endif
Evan Cheng93b11f82006-10-16 21:01:55 +0000380
Chris Lattner1030f722005-05-19 06:49:17 +0000381 return X86CompilationCallback;
Chris Lattner7ddde322004-11-20 23:54:33 +0000382}
383
Evan Chengbe8c03f2008-01-04 10:46:51 +0000384void *X86JITInfo::emitGlobalValueLazyPtr(void *GV, MachineCodeEmitter &MCE) {
385#ifdef __x86_64__
386 MCE.startFunctionStub(8, 8);
387 MCE.emitWordLE(((unsigned *)&GV)[0]);
388 MCE.emitWordLE(((unsigned *)&GV)[1]);
389#else
390 MCE.startFunctionStub(4, 4);
Bill Wendling750ec002008-01-08 00:52:29 +0000391 MCE.emitWordLE((intptr_t)GV);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000392#endif
393 return MCE.finishFunctionStub(0);
394}
395
Chris Lattner90b1b452004-11-22 22:25:30 +0000396void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000397 // Note, we cast to intptr_t here to silence a -pedantic warning that
398 // complains about casting a function pointer to a normal pointer.
Evan Chengcf922302006-10-16 23:44:08 +0000399#if (defined(__i386__) || defined(i386) || defined(_M_IX86)) && \
400 !defined(_MSC_VER) && !defined(__x86_64__)
Evan Cheng348b00d2006-10-16 22:53:28 +0000401 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
402 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
Evan Chengcf922302006-10-16 23:44:08 +0000403#else
404 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
Evan Cheng348b00d2006-10-16 22:53:28 +0000405#endif
406 if (NotCC) {
Evan Cheng8510dc02007-03-14 10:48:08 +0000407#ifdef __x86_64__
408 MCE.startFunctionStub(13, 4);
409 MCE.emitByte(0x49); // REX prefix
410 MCE.emitByte(0xB8+2); // movabsq r10
411 MCE.emitWordLE(((unsigned *)&Fn)[0]);
412 MCE.emitWordLE(((unsigned *)&Fn)[1]);
413 MCE.emitByte(0x41); // REX prefix
414 MCE.emitByte(0xFF); // jmpq *r10
415 MCE.emitByte(2 | (4 << 3) | (3 << 6));
416#else
Evan Cheng73b00942006-11-16 20:13:34 +0000417 MCE.startFunctionStub(5, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000418 MCE.emitByte(0xE9);
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000419 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000420#endif
Evan Cheng774be292007-03-14 19:44:58 +0000421 return MCE.finishFunctionStub(0);
Chris Lattner90b1b452004-11-22 22:25:30 +0000422 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000423
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000424#ifdef __x86_64__
425 MCE.startFunctionStub(14, 4);
426 MCE.emitByte(0x49); // REX prefix
427 MCE.emitByte(0xB8+2); // movabsq r10
428 MCE.emitWordLE(((unsigned *)&Fn)[0]);
429 MCE.emitWordLE(((unsigned *)&Fn)[1]);
430 MCE.emitByte(0x41); // REX prefix
431 MCE.emitByte(0xFF); // callq *r10
432 MCE.emitByte(2 | (2 << 3) | (3 << 6));
433#else
Evan Cheng73b00942006-11-16 20:13:34 +0000434 MCE.startFunctionStub(6, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000435 MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
436
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000437 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000438#endif
Chris Lattner90b1b452004-11-22 22:25:30 +0000439
440 MCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
441 return MCE.finishFunctionStub(0);
442}
Chris Lattner7ddde322004-11-20 23:54:33 +0000443
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000444/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
445/// specific basic block.
446intptr_t X86JITInfo::getPICJumpTableEntry(intptr_t BB, intptr_t Entry) {
447 return BB - PICBase;
448}
449
Chris Lattner7ddde322004-11-20 23:54:33 +0000450/// relocate - Before the JIT can run a block of code that has been emitted,
451/// it must rewrite the code to contain the actual addresses of any
452/// referenced global symbols.
453void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000454 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000455 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
456 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
457 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
458 switch ((X86::RelocationType)MR->getRelocationType()) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000459 case X86::reloc_pcrel_word: {
Chris Lattner7ddde322004-11-20 23:54:33 +0000460 // PC relative relocation, add the relocated value to the value already in
461 // memory, after we adjust it for where the PC is.
Evan Chengaabe38b2007-12-22 09:40:20 +0000462 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
463 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
464 break;
465 }
466 case X86::reloc_picrel_word: {
467 // PIC base relative relocation, add the relocated value to the value
468 // already in memory, after we adjust it for where the PIC base is.
469 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
Evan Cheng25ab6902006-09-08 06:48:29 +0000470 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000471 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000472 }
Chris Lattner7ddde322004-11-20 23:54:33 +0000473 case X86::reloc_absolute_word:
474 // Absolute relocation, just add the relocated value to the value already
475 // in memory.
Evan Cheng25ab6902006-09-08 06:48:29 +0000476 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000477 break;
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000478 case X86::reloc_absolute_dword:
479 *((intptr_t*)RelocPos) += ResultPtr;
480 break;
Chris Lattner7ddde322004-11-20 23:54:33 +0000481 }
482 }
483}