blob: 0cda7d3a43a576760a6e1fb07c9906de25cd3240 [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"
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +000018#include "llvm/Function.h"
Chris Lattner7ddde322004-11-20 23:54:33 +000019#include "llvm/CodeGen/MachineCodeEmitter.h"
20#include "llvm/Config/alloca.h"
Nate Begemanbe136342005-05-20 21:29:24 +000021#include <cstdlib>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000022#include <cstring>
Chris Lattner7ddde322004-11-20 23:54:33 +000023using namespace llvm;
24
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000025// Determine the platform we're running on
26#if defined (__x86_64__) || defined (_M_AMD64)
27# define X86_64_JIT
28#elif defined(__i386__) || defined(i386) || defined(_M_IX86)
29# define X86_32_JIT
Chris Lattner38f73732006-01-26 19:55:20 +000030#endif
31
Chris Lattner7ddde322004-11-20 23:54:33 +000032void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
33 unsigned char *OldByte = (unsigned char *)Old;
34 *OldByte++ = 0xE9; // Emit JMP opcode.
35 unsigned *OldWord = (unsigned *)OldByte;
36 unsigned NewAddr = (intptr_t)New;
37 unsigned OldAddr = (intptr_t)OldWord;
38 *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
39}
40
41
Chris Lattner7ddde322004-11-20 23:54:33 +000042/// JITCompilerFunction - This contains the address of the JIT function used to
43/// compile a function lazily.
44static TargetJITInfo::JITCompilerFn JITCompilerFunction;
45
Chris Lattner40f4ba52006-09-08 17:03:56 +000046// Get the ASMPREFIX for the current host. This is often '_'.
47#ifndef __USER_LABEL_PREFIX__
48#define __USER_LABEL_PREFIX__
49#endif
50#define GETASMPREFIX2(X) #X
51#define GETASMPREFIX(X) GETASMPREFIX2(X)
52#define ASMPREFIX GETASMPREFIX(__USER_LABEL_PREFIX__)
53
Dan Gohmandb7991d2008-06-24 00:50:01 +000054// Check if building with -fPIC
55#if defined(__PIC__) && __PIC__ && defined(__linux__)
56#define ASMCALLSUFFIX "@PLT"
57#else
58#define ASMCALLSUFFIX
59#endif
60
Anton Korobeynikov7eb58772007-12-10 23:10:20 +000061// Provide a convenient way for disabling usage of CFI directives.
Anton Korobeynikov2fb9dee2007-12-10 23:08:35 +000062// This is needed for old/broken assemblers (for example, gas on
63// Darwin is pretty old and doesn't support these directives)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000064#if defined(__APPLE__)
65# define CFI(x)
66#else
Anton Korobeynikov144a45e2007-12-22 20:41:12 +000067// FIXME: Disable this until we really want to use it. Also, we will
68// need to add some workarounds for compilers, which support
69// only subset of these directives.
Anton Korobeynikovd07310a2007-12-22 20:46:24 +000070# define CFI(x)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000071#endif
72
Chris Lattner1030f722005-05-19 06:49:17 +000073// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
74// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000075extern "C" {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000076#if defined(X86_64_JIT)
77# ifndef _MSC_VER
Evan Cheng25ab6902006-09-08 06:48:29 +000078 // No need to save EAX/EDX for X86-64.
79 void X86CompilationCallback(void);
80 asm(
81 ".text\n"
82 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +000083 ".globl " ASMPREFIX "X86CompilationCallback\n"
84 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000085 CFI(".cfi_startproc\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000086 // Save RBP
87 "pushq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000088 CFI(".cfi_def_cfa_offset 16\n")
89 CFI(".cfi_offset %rbp, -16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000090 // Save RSP
91 "movq %rsp, %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000092 CFI(".cfi_def_cfa_register %rbp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000093 // Save all int arg registers
94 "pushq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000095 CFI(".cfi_rel_offset %rdi, 0\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000096 "pushq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000097 CFI(".cfi_rel_offset %rsi, 8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000098 "pushq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000099 CFI(".cfi_rel_offset %rdx, 16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000100 "pushq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000101 CFI(".cfi_rel_offset %rcx, 24\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000102 "pushq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000103 CFI(".cfi_rel_offset %r8, 32\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000104 "pushq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000105 CFI(".cfi_rel_offset %r9, 40\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000106 // Align stack on 16-byte boundary. ESP might not be properly aligned
107 // (8 byte) if this is called from an indirect stub.
108 "andq $-16, %rsp\n"
109 // Save all XMM arg registers
110 "subq $128, %rsp\n"
111 "movaps %xmm0, (%rsp)\n"
112 "movaps %xmm1, 16(%rsp)\n"
113 "movaps %xmm2, 32(%rsp)\n"
114 "movaps %xmm3, 48(%rsp)\n"
115 "movaps %xmm4, 64(%rsp)\n"
116 "movaps %xmm5, 80(%rsp)\n"
117 "movaps %xmm6, 96(%rsp)\n"
118 "movaps %xmm7, 112(%rsp)\n"
119 // JIT callee
120 "movq %rbp, %rdi\n" // Pass prev frame and return address
121 "movq 8(%rbp), %rsi\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000122 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000123 // Restore all XMM arg registers
124 "movaps 112(%rsp), %xmm7\n"
125 "movaps 96(%rsp), %xmm6\n"
126 "movaps 80(%rsp), %xmm5\n"
127 "movaps 64(%rsp), %xmm4\n"
128 "movaps 48(%rsp), %xmm3\n"
129 "movaps 32(%rsp), %xmm2\n"
130 "movaps 16(%rsp), %xmm1\n"
131 "movaps (%rsp), %xmm0\n"
132 // Restore RSP
133 "movq %rbp, %rsp\n"
Scott Michela28c6bf2007-12-12 02:38:28 +0000134 CFI(".cfi_def_cfa_register %rsp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000135 // Restore all int arg registers
136 "subq $48, %rsp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000137 CFI(".cfi_adjust_cfa_offset 48\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000138 "popq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000139 CFI(".cfi_adjust_cfa_offset -8\n")
140 CFI(".cfi_restore %r9\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000141 "popq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000142 CFI(".cfi_adjust_cfa_offset -8\n")
143 CFI(".cfi_restore %r8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000144 "popq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000145 CFI(".cfi_adjust_cfa_offset -8\n")
146 CFI(".cfi_restore %rcx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000147 "popq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000148 CFI(".cfi_adjust_cfa_offset -8\n")
149 CFI(".cfi_restore %rdx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000150 "popq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000151 CFI(".cfi_adjust_cfa_offset -8\n")
152 CFI(".cfi_restore %rsi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000153 "popq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000154 CFI(".cfi_adjust_cfa_offset -8\n")
155 CFI(".cfi_restore %rdi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000156 // Restore RBP
157 "popq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000158 CFI(".cfi_adjust_cfa_offset -8\n")
159 CFI(".cfi_restore %rbp\n")
Anton Korobeynikov3a7bcc42007-12-10 15:27:07 +0000160 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000161 CFI(".cfi_endproc\n")
162 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000163# else
Anton Korobeynikov231e9642008-03-23 14:44:32 +0000164 // No inline assembler support on this platform. The routine is in external
165 // file.
166 void X86CompilationCallback();
167
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000168# endif
169#elif defined (X86_32_JIT)
170# ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000171 void X86CompilationCallback(void);
172 asm(
173 ".text\n"
174 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000175 ".globl " ASMPREFIX "X86CompilationCallback\n"
176 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000177 CFI(".cfi_startproc\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000178 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000179 CFI(".cfi_def_cfa_offset 8\n")
180 CFI(".cfi_offset %ebp, -8\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000181 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000182 CFI(".cfi_def_cfa_register %ebp\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000183 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000184 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000185 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000186 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000187 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000188 CFI(".cfi_rel_offset %ecx, 8\n")
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000189# if defined(__APPLE__)
Evan Chengda08d2c2006-06-24 08:36:10 +0000190 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000191# endif
Evan Chengbe33dd92006-06-29 01:48:36 +0000192 "subl $16, %esp\n"
193 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
194 "movl %eax, 4(%esp)\n"
195 "movl %ebp, (%esp)\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000196 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000197 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000198 CFI(".cfi_def_cfa_register %esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000199 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000200 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000201 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000202 CFI(".cfi_adjust_cfa_offset -4\n")
203 CFI(".cfi_restore %ecx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000204 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000205 CFI(".cfi_adjust_cfa_offset -4\n")
206 CFI(".cfi_restore %edx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000207 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000208 CFI(".cfi_adjust_cfa_offset -4\n")
209 CFI(".cfi_restore %eax\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000210 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000211 CFI(".cfi_adjust_cfa_offset -4\n")
212 CFI(".cfi_restore %ebp\n")
Anton Korobeynikova14b6692007-12-10 14:54:42 +0000213 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000214 CFI(".cfi_endproc\n")
215 );
Evan Cheng93b11f82006-10-16 21:01:55 +0000216
217 // Same as X86CompilationCallback but also saves XMM argument registers.
218 void X86CompilationCallback_SSE(void);
219 asm(
220 ".text\n"
221 ".align 8\n"
222 ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
223 ASMPREFIX "X86CompilationCallback_SSE:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000224 CFI(".cfi_startproc\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000225 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000226 CFI(".cfi_def_cfa_offset 8\n")
227 CFI(".cfi_offset %ebp, -8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000228 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000229 CFI(".cfi_def_cfa_register %ebp\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000230 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000231 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000232 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000233 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000234 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000235 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000236 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
237 // Save all XMM arg registers
238 "subl $64, %esp\n"
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000239 // FIXME: provide frame move information for xmm registers.
240 // This can be tricky, because CFA register is ebp (unaligned)
241 // and we need to produce offsets relative to it.
Evan Cheng93b11f82006-10-16 21:01:55 +0000242 "movaps %xmm0, (%esp)\n"
243 "movaps %xmm1, 16(%esp)\n"
244 "movaps %xmm2, 32(%esp)\n"
245 "movaps %xmm3, 48(%esp)\n"
246 "subl $16, %esp\n"
247 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
248 "movl %eax, 4(%esp)\n"
249 "movl %ebp, (%esp)\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000250 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000251 "addl $16, %esp\n"
252 "movaps 48(%esp), %xmm3\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000253 CFI(".cfi_restore %xmm3\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000254 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000255 CFI(".cfi_restore %xmm2\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000256 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000257 CFI(".cfi_restore %xmm1\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000258 "movaps (%esp), %xmm0\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000259 CFI(".cfi_restore %xmm0\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000260 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000261 CFI(".cfi_def_cfa_register esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000262 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000263 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000264 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000265 CFI(".cfi_adjust_cfa_offset -4\n")
266 CFI(".cfi_restore %ecx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000267 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000268 CFI(".cfi_adjust_cfa_offset -4\n")
269 CFI(".cfi_restore %edx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000270 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000271 CFI(".cfi_adjust_cfa_offset -4\n")
272 CFI(".cfi_restore %eax\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000273 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000274 CFI(".cfi_adjust_cfa_offset -4\n")
275 CFI(".cfi_restore %ebp\n")
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000276 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000277 CFI(".cfi_endproc\n")
278 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000279# else
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000280 void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000281
282 _declspec(naked) void X86CompilationCallback(void) {
283 __asm {
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000284 push ebp
285 mov ebp, esp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000286 push eax
287 push edx
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000288 push ecx
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000289 and esp, -16
290 mov eax, dword ptr [ebp+4]
291 mov dword ptr [esp+4], eax
292 mov dword ptr [esp], ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000293 call X86CompilationCallback2
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000294 mov esp, ebp
295 sub esp, 12
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000296 pop ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000297 pop edx
298 pop eax
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000299 pop ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000300 ret
301 }
302 }
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000303
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000304# endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +0000305
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000306#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000307 void X86CompilationCallback() {
Bill Wendling6345d752006-11-17 07:52:03 +0000308 assert(0 && "Cannot call X86CompilationCallback() on a non-x86 arch!\n");
Chris Lattner170fbcb2005-05-20 17:00:21 +0000309 abort();
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000310 }
Chris Lattner1030f722005-05-19 06:49:17 +0000311#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000312}
Chris Lattner1030f722005-05-19 06:49:17 +0000313
314/// X86CompilationCallback - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000315/// function stub when we did not know the real target of a call. This function
316/// must locate the start of the stub or call site and pass it into the JIT
317/// compiler function.
Evan Chengbe33dd92006-06-29 01:48:36 +0000318extern "C" void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
319 intptr_t *RetAddrLoc = &StackPtr[1];
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000320 assert(*RetAddrLoc == RetAddr &&
Chris Lattner7ddde322004-11-20 23:54:33 +0000321 "Could not find return address on the stack!");
322
323 // It's a stub if there is an interrupt marker after the call.
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
Chris Lattner7ddde322004-11-20 23:54:33 +0000325
326 // The call instruction should have pushed the return value onto the stack...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000327#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000328 RetAddr--; // Backtrack to the reference itself...
329#else
Chris Lattner7ddde322004-11-20 23:54:33 +0000330 RetAddr -= 4; // Backtrack to the reference itself...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000331#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000332
333#if 0
Bill Wendling6345d752006-11-17 07:52:03 +0000334 DOUT << "In callback! Addr=" << (void*)RetAddr
335 << " ESP=" << (void*)StackPtr
336 << ": Resolving call to function: "
337 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n";
Chris Lattner7ddde322004-11-20 23:54:33 +0000338#endif
339
340 // Sanity check to make sure this really is a call instruction.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000341#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000342 assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
343 assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
344#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000345 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000346#endif
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000347
Evan Cheng25ab6902006-09-08 06:48:29 +0000348 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
Chris Lattner7ddde322004-11-20 23:54:33 +0000349
350 // Rewrite the call target... so that we don't end up here every time we
351 // execute the call.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000352#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000353 *(intptr_t *)(RetAddr - 0xa) = NewVal;
354#else
355 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
356#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000357
358 if (isStub) {
359 // If this is a stub, rewrite the call into an unconditional branch
360 // instruction so that two return addresses are not pushed onto the stack
361 // when the requested function finally gets called. This also makes the
362 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000363#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000364 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
365#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000366 ((unsigned char*)RetAddr)[-1] = 0xE9;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000367#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000368 }
369
370 // Change the return address to reexecute the call instruction...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000371#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000372 *RetAddrLoc -= 0xd;
373#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000374 *RetAddrLoc -= 5;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000375#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000376}
377
Chris Lattner7ddde322004-11-20 23:54:33 +0000378TargetJITInfo::LazyResolverFn
379X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
380 JITCompilerFunction = F;
Evan Cheng93b11f82006-10-16 21:01:55 +0000381
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000382#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng93b11f82006-10-16 21:01:55 +0000383 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
384 union {
385 unsigned u[3];
386 char c[12];
387 } text;
388
389 if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
390 // FIXME: support for AMD family of processors.
391 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
392 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
393 if ((EDX >> 25) & 0x1)
394 return X86CompilationCallback_SSE;
395 }
396 }
Evan Cheng348b00d2006-10-16 22:53:28 +0000397#endif
Evan Cheng93b11f82006-10-16 21:01:55 +0000398
Chris Lattner1030f722005-05-19 06:49:17 +0000399 return X86CompilationCallback;
Chris Lattner7ddde322004-11-20 23:54:33 +0000400}
401
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000402void *X86JITInfo::emitGlobalValueLazyPtr(const GlobalValue* GV, void *ptr,
403 MachineCodeEmitter &MCE) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000404#if defined (X86_64_JIT)
Dale Johannesen5e8fb812008-04-16 22:24:33 +0000405 MCE.startFunctionStub(GV, 8, 8);
Evan Cheng1b022cf2008-06-05 22:59:21 +0000406 MCE.emitWordLE((unsigned)(intptr_t)ptr);
407 MCE.emitWordLE((unsigned)(((intptr_t)ptr) >> 32));
Evan Chengbe8c03f2008-01-04 10:46:51 +0000408#else
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000409 MCE.startFunctionStub(GV, 4, 4);
410 MCE.emitWordLE((intptr_t)ptr);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000411#endif
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000412 return MCE.finishFunctionStub(GV);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000413}
414
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000415void *X86JITInfo::emitFunctionStub(const Function* F, void *Fn,
416 MachineCodeEmitter &MCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000417 // Note, we cast to intptr_t here to silence a -pedantic warning that
418 // complains about casting a function pointer to a normal pointer.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000419#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng348b00d2006-10-16 22:53:28 +0000420 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
421 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
Evan Chengcf922302006-10-16 23:44:08 +0000422#else
423 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
Evan Cheng348b00d2006-10-16 22:53:28 +0000424#endif
425 if (NotCC) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000426#if defined (X86_64_JIT)
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000427 MCE.startFunctionStub(F, 13, 4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000428 MCE.emitByte(0x49); // REX prefix
429 MCE.emitByte(0xB8+2); // movabsq r10
Evan Cheng1b022cf2008-06-05 22:59:21 +0000430 MCE.emitWordLE((unsigned)(intptr_t)Fn);
431 MCE.emitWordLE((unsigned)(((intptr_t)Fn) >> 32));
Evan Cheng8510dc02007-03-14 10:48:08 +0000432 MCE.emitByte(0x41); // REX prefix
433 MCE.emitByte(0xFF); // jmpq *r10
434 MCE.emitByte(2 | (4 << 3) | (3 << 6));
435#else
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000436 MCE.startFunctionStub(F, 5, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000437 MCE.emitByte(0xE9);
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000438 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000439#endif
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000440 return MCE.finishFunctionStub(F);
Chris Lattner90b1b452004-11-22 22:25:30 +0000441 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000442
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000443#if defined (X86_64_JIT)
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000444 MCE.startFunctionStub(F, 14, 4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000445 MCE.emitByte(0x49); // REX prefix
446 MCE.emitByte(0xB8+2); // movabsq r10
Evan Cheng1b022cf2008-06-05 22:59:21 +0000447 MCE.emitWordLE((unsigned)(intptr_t)Fn);
448 MCE.emitWordLE((unsigned)(((intptr_t)Fn) >> 32));
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000449 MCE.emitByte(0x41); // REX prefix
450 MCE.emitByte(0xFF); // callq *r10
451 MCE.emitByte(2 | (2 << 3) | (3 << 6));
452#else
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000453 MCE.startFunctionStub(F, 6, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000454 MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
455
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000456 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000457#endif
Chris Lattner90b1b452004-11-22 22:25:30 +0000458
459 MCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000460 return MCE.finishFunctionStub(F);
Chris Lattner90b1b452004-11-22 22:25:30 +0000461}
Chris Lattner7ddde322004-11-20 23:54:33 +0000462
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000463/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
464/// specific basic block.
465intptr_t X86JITInfo::getPICJumpTableEntry(intptr_t BB, intptr_t Entry) {
Evan Cheng81fb5fe2008-07-16 01:33:08 +0000466#if defined(X86_64_JIT)
467 return BB - Entry;
468#else
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000469 return BB - PICBase;
Evan Cheng81fb5fe2008-07-16 01:33:08 +0000470#endif
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000471}
472
Chris Lattner7ddde322004-11-20 23:54:33 +0000473/// relocate - Before the JIT can run a block of code that has been emitted,
474/// it must rewrite the code to contain the actual addresses of any
475/// referenced global symbols.
476void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000477 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000478 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
479 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
480 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
481 switch ((X86::RelocationType)MR->getRelocationType()) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000482 case X86::reloc_pcrel_word: {
Chris Lattner7ddde322004-11-20 23:54:33 +0000483 // PC relative relocation, add the relocated value to the value already in
484 // memory, after we adjust it for where the PC is.
Evan Chengaabe38b2007-12-22 09:40:20 +0000485 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
486 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
487 break;
488 }
489 case X86::reloc_picrel_word: {
490 // PIC base relative relocation, add the relocated value to the value
491 // already in memory, after we adjust it for where the PIC base is.
492 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
Evan Cheng25ab6902006-09-08 06:48:29 +0000493 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000494 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000495 }
Chris Lattner7ddde322004-11-20 23:54:33 +0000496 case X86::reloc_absolute_word:
497 // Absolute relocation, just add the relocated value to the value already
498 // in memory.
Evan Cheng25ab6902006-09-08 06:48:29 +0000499 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000500 break;
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000501 case X86::reloc_absolute_dword:
502 *((intptr_t*)RelocPos) += ResultPtr;
503 break;
Chris Lattner7ddde322004-11-20 23:54:33 +0000504 }
505 }
506}