blob: f8761dc87e2c8721b1d815f94f510939af7a34a5 [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"
Devang Patel0d885d12008-07-16 17:54:34 +000021#include "llvm/Support/Compiler.h"
Nate Begemanbe136342005-05-20 21:29:24 +000022#include <cstdlib>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000023#include <cstring>
Chris Lattner7ddde322004-11-20 23:54:33 +000024using namespace llvm;
25
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000026// Determine the platform we're running on
27#if defined (__x86_64__) || defined (_M_AMD64)
28# define X86_64_JIT
29#elif defined(__i386__) || defined(i386) || defined(_M_IX86)
30# define X86_32_JIT
Chris Lattner38f73732006-01-26 19:55:20 +000031#endif
32
Chris Lattner7ddde322004-11-20 23:54:33 +000033void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
34 unsigned char *OldByte = (unsigned char *)Old;
35 *OldByte++ = 0xE9; // Emit JMP opcode.
36 unsigned *OldWord = (unsigned *)OldByte;
37 unsigned NewAddr = (intptr_t)New;
38 unsigned OldAddr = (intptr_t)OldWord;
39 *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
40}
41
42
Chris Lattner7ddde322004-11-20 23:54:33 +000043/// JITCompilerFunction - This contains the address of the JIT function used to
44/// compile a function lazily.
45static TargetJITInfo::JITCompilerFn JITCompilerFunction;
46
Chris Lattner40f4ba52006-09-08 17:03:56 +000047// Get the ASMPREFIX for the current host. This is often '_'.
48#ifndef __USER_LABEL_PREFIX__
49#define __USER_LABEL_PREFIX__
50#endif
51#define GETASMPREFIX2(X) #X
52#define GETASMPREFIX(X) GETASMPREFIX2(X)
53#define ASMPREFIX GETASMPREFIX(__USER_LABEL_PREFIX__)
54
Dan Gohmandb7991d2008-06-24 00:50:01 +000055// Check if building with -fPIC
56#if defined(__PIC__) && __PIC__ && defined(__linux__)
57#define ASMCALLSUFFIX "@PLT"
58#else
59#define ASMCALLSUFFIX
60#endif
61
Anton Korobeynikov7eb58772007-12-10 23:10:20 +000062// Provide a convenient way for disabling usage of CFI directives.
Anton Korobeynikov2fb9dee2007-12-10 23:08:35 +000063// This is needed for old/broken assemblers (for example, gas on
64// Darwin is pretty old and doesn't support these directives)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000065#if defined(__APPLE__)
66# define CFI(x)
67#else
Anton Korobeynikov144a45e2007-12-22 20:41:12 +000068// FIXME: Disable this until we really want to use it. Also, we will
69// need to add some workarounds for compilers, which support
70// only subset of these directives.
Anton Korobeynikovd07310a2007-12-22 20:46:24 +000071# define CFI(x)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000072#endif
73
Chris Lattner1030f722005-05-19 06:49:17 +000074// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
75// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000076extern "C" {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000077#if defined(X86_64_JIT)
78# ifndef _MSC_VER
Evan Cheng25ab6902006-09-08 06:48:29 +000079 // No need to save EAX/EDX for X86-64.
80 void X86CompilationCallback(void);
81 asm(
82 ".text\n"
83 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +000084 ".globl " ASMPREFIX "X86CompilationCallback\n"
85 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000086 CFI(".cfi_startproc\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000087 // Save RBP
88 "pushq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000089 CFI(".cfi_def_cfa_offset 16\n")
90 CFI(".cfi_offset %rbp, -16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000091 // Save RSP
92 "movq %rsp, %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000093 CFI(".cfi_def_cfa_register %rbp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000094 // Save all int arg registers
95 "pushq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000096 CFI(".cfi_rel_offset %rdi, 0\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000097 "pushq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000098 CFI(".cfi_rel_offset %rsi, 8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000099 "pushq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000100 CFI(".cfi_rel_offset %rdx, 16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000101 "pushq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000102 CFI(".cfi_rel_offset %rcx, 24\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000103 "pushq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000104 CFI(".cfi_rel_offset %r8, 32\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000105 "pushq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000106 CFI(".cfi_rel_offset %r9, 40\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000107 // Align stack on 16-byte boundary. ESP might not be properly aligned
108 // (8 byte) if this is called from an indirect stub.
109 "andq $-16, %rsp\n"
110 // Save all XMM arg registers
111 "subq $128, %rsp\n"
112 "movaps %xmm0, (%rsp)\n"
113 "movaps %xmm1, 16(%rsp)\n"
114 "movaps %xmm2, 32(%rsp)\n"
115 "movaps %xmm3, 48(%rsp)\n"
116 "movaps %xmm4, 64(%rsp)\n"
117 "movaps %xmm5, 80(%rsp)\n"
118 "movaps %xmm6, 96(%rsp)\n"
119 "movaps %xmm7, 112(%rsp)\n"
120 // JIT callee
121 "movq %rbp, %rdi\n" // Pass prev frame and return address
122 "movq 8(%rbp), %rsi\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000123 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000124 // Restore all XMM arg registers
125 "movaps 112(%rsp), %xmm7\n"
126 "movaps 96(%rsp), %xmm6\n"
127 "movaps 80(%rsp), %xmm5\n"
128 "movaps 64(%rsp), %xmm4\n"
129 "movaps 48(%rsp), %xmm3\n"
130 "movaps 32(%rsp), %xmm2\n"
131 "movaps 16(%rsp), %xmm1\n"
132 "movaps (%rsp), %xmm0\n"
133 // Restore RSP
134 "movq %rbp, %rsp\n"
Scott Michela28c6bf2007-12-12 02:38:28 +0000135 CFI(".cfi_def_cfa_register %rsp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000136 // Restore all int arg registers
137 "subq $48, %rsp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000138 CFI(".cfi_adjust_cfa_offset 48\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000139 "popq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000140 CFI(".cfi_adjust_cfa_offset -8\n")
141 CFI(".cfi_restore %r9\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000142 "popq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000143 CFI(".cfi_adjust_cfa_offset -8\n")
144 CFI(".cfi_restore %r8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000145 "popq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000146 CFI(".cfi_adjust_cfa_offset -8\n")
147 CFI(".cfi_restore %rcx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000148 "popq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000149 CFI(".cfi_adjust_cfa_offset -8\n")
150 CFI(".cfi_restore %rdx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000151 "popq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000152 CFI(".cfi_adjust_cfa_offset -8\n")
153 CFI(".cfi_restore %rsi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000154 "popq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000155 CFI(".cfi_adjust_cfa_offset -8\n")
156 CFI(".cfi_restore %rdi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000157 // Restore RBP
158 "popq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000159 CFI(".cfi_adjust_cfa_offset -8\n")
160 CFI(".cfi_restore %rbp\n")
Anton Korobeynikov3a7bcc42007-12-10 15:27:07 +0000161 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000162 CFI(".cfi_endproc\n")
163 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000164# else
Anton Korobeynikov231e9642008-03-23 14:44:32 +0000165 // No inline assembler support on this platform. The routine is in external
166 // file.
167 void X86CompilationCallback();
168
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000169# endif
170#elif defined (X86_32_JIT)
171# ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000172 void X86CompilationCallback(void);
173 asm(
174 ".text\n"
175 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000176 ".globl " ASMPREFIX "X86CompilationCallback\n"
177 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000178 CFI(".cfi_startproc\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000179 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000180 CFI(".cfi_def_cfa_offset 8\n")
181 CFI(".cfi_offset %ebp, -8\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000182 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000183 CFI(".cfi_def_cfa_register %ebp\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000184 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000185 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000186 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000187 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000188 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000189 CFI(".cfi_rel_offset %ecx, 8\n")
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000190# if defined(__APPLE__)
Evan Chengda08d2c2006-06-24 08:36:10 +0000191 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000192# endif
Evan Chengbe33dd92006-06-29 01:48:36 +0000193 "subl $16, %esp\n"
194 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
195 "movl %eax, 4(%esp)\n"
196 "movl %ebp, (%esp)\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000197 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000198 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000199 CFI(".cfi_def_cfa_register %esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000200 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000201 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000202 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000203 CFI(".cfi_adjust_cfa_offset -4\n")
204 CFI(".cfi_restore %ecx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000205 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000206 CFI(".cfi_adjust_cfa_offset -4\n")
207 CFI(".cfi_restore %edx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000208 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000209 CFI(".cfi_adjust_cfa_offset -4\n")
210 CFI(".cfi_restore %eax\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000211 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000212 CFI(".cfi_adjust_cfa_offset -4\n")
213 CFI(".cfi_restore %ebp\n")
Anton Korobeynikova14b6692007-12-10 14:54:42 +0000214 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000215 CFI(".cfi_endproc\n")
216 );
Evan Cheng93b11f82006-10-16 21:01:55 +0000217
218 // Same as X86CompilationCallback but also saves XMM argument registers.
219 void X86CompilationCallback_SSE(void);
220 asm(
221 ".text\n"
222 ".align 8\n"
223 ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
224 ASMPREFIX "X86CompilationCallback_SSE:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000225 CFI(".cfi_startproc\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000226 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000227 CFI(".cfi_def_cfa_offset 8\n")
228 CFI(".cfi_offset %ebp, -8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000229 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000230 CFI(".cfi_def_cfa_register %ebp\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000231 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000232 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000233 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000234 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000235 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000236 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000237 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
238 // Save all XMM arg registers
239 "subl $64, %esp\n"
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000240 // FIXME: provide frame move information for xmm registers.
241 // This can be tricky, because CFA register is ebp (unaligned)
242 // and we need to produce offsets relative to it.
Evan Cheng93b11f82006-10-16 21:01:55 +0000243 "movaps %xmm0, (%esp)\n"
244 "movaps %xmm1, 16(%esp)\n"
245 "movaps %xmm2, 32(%esp)\n"
246 "movaps %xmm3, 48(%esp)\n"
247 "subl $16, %esp\n"
248 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
249 "movl %eax, 4(%esp)\n"
250 "movl %ebp, (%esp)\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000251 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000252 "addl $16, %esp\n"
253 "movaps 48(%esp), %xmm3\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000254 CFI(".cfi_restore %xmm3\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000255 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000256 CFI(".cfi_restore %xmm2\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000257 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000258 CFI(".cfi_restore %xmm1\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000259 "movaps (%esp), %xmm0\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000260 CFI(".cfi_restore %xmm0\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000261 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000262 CFI(".cfi_def_cfa_register esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000263 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000264 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000265 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000266 CFI(".cfi_adjust_cfa_offset -4\n")
267 CFI(".cfi_restore %ecx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000268 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000269 CFI(".cfi_adjust_cfa_offset -4\n")
270 CFI(".cfi_restore %edx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000271 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000272 CFI(".cfi_adjust_cfa_offset -4\n")
273 CFI(".cfi_restore %eax\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000274 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000275 CFI(".cfi_adjust_cfa_offset -4\n")
276 CFI(".cfi_restore %ebp\n")
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000277 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000278 CFI(".cfi_endproc\n")
279 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000280# else
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000281 void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000282
283 _declspec(naked) void X86CompilationCallback(void) {
284 __asm {
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000285 push ebp
286 mov ebp, esp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000287 push eax
288 push edx
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000289 push ecx
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000290 and esp, -16
291 mov eax, dword ptr [ebp+4]
292 mov dword ptr [esp+4], eax
293 mov dword ptr [esp], ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000294 call X86CompilationCallback2
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000295 mov esp, ebp
296 sub esp, 12
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000297 pop ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000298 pop edx
299 pop eax
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000300 pop ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000301 ret
302 }
303 }
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000304
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000305# endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +0000306
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000307#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000308 void X86CompilationCallback() {
Bill Wendling6345d752006-11-17 07:52:03 +0000309 assert(0 && "Cannot call X86CompilationCallback() on a non-x86 arch!\n");
Chris Lattner170fbcb2005-05-20 17:00:21 +0000310 abort();
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000311 }
Chris Lattner1030f722005-05-19 06:49:17 +0000312#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000313}
Chris Lattner1030f722005-05-19 06:49:17 +0000314
315/// X86CompilationCallback - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000316/// function stub when we did not know the real target of a call. This function
317/// must locate the start of the stub or call site and pass it into the JIT
318/// compiler function.
Devang Patel0d885d12008-07-16 17:54:34 +0000319extern "C" void ATTRIBUTE_USED
320X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
Evan Chengbe33dd92006-06-29 01:48:36 +0000321 intptr_t *RetAddrLoc = &StackPtr[1];
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000322 assert(*RetAddrLoc == RetAddr &&
Chris Lattner7ddde322004-11-20 23:54:33 +0000323 "Could not find return address on the stack!");
324
325 // It's a stub if there is an interrupt marker after the call.
Evan Cheng25ab6902006-09-08 06:48:29 +0000326 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
Chris Lattner7ddde322004-11-20 23:54:33 +0000327
328 // The call instruction should have pushed the return value onto the stack...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000329#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000330 RetAddr--; // Backtrack to the reference itself...
331#else
Chris Lattner7ddde322004-11-20 23:54:33 +0000332 RetAddr -= 4; // Backtrack to the reference itself...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000333#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000334
335#if 0
Bill Wendling6345d752006-11-17 07:52:03 +0000336 DOUT << "In callback! Addr=" << (void*)RetAddr
337 << " ESP=" << (void*)StackPtr
338 << ": Resolving call to function: "
339 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n";
Chris Lattner7ddde322004-11-20 23:54:33 +0000340#endif
341
342 // Sanity check to make sure this really is a call instruction.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000343#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000344 assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
345 assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
346#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000347 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000348#endif
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000349
Evan Cheng25ab6902006-09-08 06:48:29 +0000350 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
Chris Lattner7ddde322004-11-20 23:54:33 +0000351
352 // Rewrite the call target... so that we don't end up here every time we
353 // execute the call.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000354#if defined (X86_64_JIT)
Dale Johannesen6f83be02008-08-12 23:20:24 +0000355 if (!isStub)
356 *(intptr_t *)(RetAddr - 0xa) = NewVal;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000357#else
358 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
359#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000360
361 if (isStub) {
362 // If this is a stub, rewrite the call into an unconditional branch
363 // instruction so that two return addresses are not pushed onto the stack
364 // when the requested function finally gets called. This also makes the
365 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000366#if defined (X86_64_JIT)
Dale Johannesen6f83be02008-08-12 23:20:24 +0000367 // If the target address is within 32-bit range of the stub, use a
368 // PC-relative branch instead of loading the actual address. (This is
369 // considerably shorter than the 64-bit immediate load already there.)
370 // We assume here intptr_t is 64 bits.
371 intptr_t diff = NewVal-RetAddr+7;
372 if (diff >= -2147483648LL && diff <= 2147483647LL) {
373 *(unsigned char*)(RetAddr-0xc) = 0xE9;
374 *(intptr_t *)(RetAddr-0xb) = diff & 0xffffffff;
375 } else {
376 *(intptr_t *)(RetAddr - 0xa) = NewVal;
377 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
378 }
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000379#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000380 ((unsigned char*)RetAddr)[-1] = 0xE9;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000381#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000382 }
383
384 // Change the return address to reexecute the call instruction...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000385#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000386 *RetAddrLoc -= 0xd;
387#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000388 *RetAddrLoc -= 5;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000389#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000390}
391
Chris Lattner7ddde322004-11-20 23:54:33 +0000392TargetJITInfo::LazyResolverFn
393X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
394 JITCompilerFunction = F;
Evan Cheng93b11f82006-10-16 21:01:55 +0000395
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000396#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng93b11f82006-10-16 21:01:55 +0000397 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
398 union {
399 unsigned u[3];
400 char c[12];
401 } text;
402
403 if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
404 // FIXME: support for AMD family of processors.
405 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
406 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
407 if ((EDX >> 25) & 0x1)
408 return X86CompilationCallback_SSE;
409 }
410 }
Evan Cheng348b00d2006-10-16 22:53:28 +0000411#endif
Evan Cheng93b11f82006-10-16 21:01:55 +0000412
Chris Lattner1030f722005-05-19 06:49:17 +0000413 return X86CompilationCallback;
Chris Lattner7ddde322004-11-20 23:54:33 +0000414}
415
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000416void *X86JITInfo::emitGlobalValueLazyPtr(const GlobalValue* GV, void *ptr,
417 MachineCodeEmitter &MCE) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000418#if defined (X86_64_JIT)
Dale Johannesen5e8fb812008-04-16 22:24:33 +0000419 MCE.startFunctionStub(GV, 8, 8);
Evan Cheng1b022cf2008-06-05 22:59:21 +0000420 MCE.emitWordLE((unsigned)(intptr_t)ptr);
421 MCE.emitWordLE((unsigned)(((intptr_t)ptr) >> 32));
Evan Chengbe8c03f2008-01-04 10:46:51 +0000422#else
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000423 MCE.startFunctionStub(GV, 4, 4);
424 MCE.emitWordLE((intptr_t)ptr);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000425#endif
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000426 return MCE.finishFunctionStub(GV);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000427}
428
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000429void *X86JITInfo::emitFunctionStub(const Function* F, void *Fn,
430 MachineCodeEmitter &MCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000431 // Note, we cast to intptr_t here to silence a -pedantic warning that
432 // complains about casting a function pointer to a normal pointer.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000433#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng348b00d2006-10-16 22:53:28 +0000434 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
435 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
Evan Chengcf922302006-10-16 23:44:08 +0000436#else
437 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
Evan Cheng348b00d2006-10-16 22:53:28 +0000438#endif
439 if (NotCC) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000440#if defined (X86_64_JIT)
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000441 MCE.startFunctionStub(F, 13, 4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000442 MCE.emitByte(0x49); // REX prefix
443 MCE.emitByte(0xB8+2); // movabsq r10
Evan Cheng1b022cf2008-06-05 22:59:21 +0000444 MCE.emitWordLE((unsigned)(intptr_t)Fn);
445 MCE.emitWordLE((unsigned)(((intptr_t)Fn) >> 32));
Evan Cheng8510dc02007-03-14 10:48:08 +0000446 MCE.emitByte(0x41); // REX prefix
447 MCE.emitByte(0xFF); // jmpq *r10
448 MCE.emitByte(2 | (4 << 3) | (3 << 6));
449#else
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000450 MCE.startFunctionStub(F, 5, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000451 MCE.emitByte(0xE9);
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000452 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000453#endif
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000454 return MCE.finishFunctionStub(F);
Chris Lattner90b1b452004-11-22 22:25:30 +0000455 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000456
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000457#if defined (X86_64_JIT)
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000458 MCE.startFunctionStub(F, 14, 4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000459 MCE.emitByte(0x49); // REX prefix
460 MCE.emitByte(0xB8+2); // movabsq r10
Evan Cheng1b022cf2008-06-05 22:59:21 +0000461 MCE.emitWordLE((unsigned)(intptr_t)Fn);
462 MCE.emitWordLE((unsigned)(((intptr_t)Fn) >> 32));
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000463 MCE.emitByte(0x41); // REX prefix
464 MCE.emitByte(0xFF); // callq *r10
465 MCE.emitByte(2 | (2 << 3) | (3 << 6));
466#else
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000467 MCE.startFunctionStub(F, 6, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000468 MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
469
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000470 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000471#endif
Chris Lattner90b1b452004-11-22 22:25:30 +0000472
473 MCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000474 return MCE.finishFunctionStub(F);
Chris Lattner90b1b452004-11-22 22:25:30 +0000475}
Chris Lattner7ddde322004-11-20 23:54:33 +0000476
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000477/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
478/// specific basic block.
479intptr_t X86JITInfo::getPICJumpTableEntry(intptr_t BB, intptr_t Entry) {
Evan Cheng81fb5fe2008-07-16 01:33:08 +0000480#if defined(X86_64_JIT)
481 return BB - Entry;
482#else
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000483 return BB - PICBase;
Evan Cheng81fb5fe2008-07-16 01:33:08 +0000484#endif
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000485}
486
Chris Lattner7ddde322004-11-20 23:54:33 +0000487/// relocate - Before the JIT can run a block of code that has been emitted,
488/// it must rewrite the code to contain the actual addresses of any
489/// referenced global symbols.
490void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000491 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000492 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
493 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
494 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
495 switch ((X86::RelocationType)MR->getRelocationType()) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000496 case X86::reloc_pcrel_word: {
Chris Lattner7ddde322004-11-20 23:54:33 +0000497 // PC relative relocation, add the relocated value to the value already in
498 // memory, after we adjust it for where the PC is.
Evan Chengaabe38b2007-12-22 09:40:20 +0000499 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
500 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
501 break;
502 }
503 case X86::reloc_picrel_word: {
504 // PIC base relative relocation, add the relocated value to the value
505 // already in memory, after we adjust it for where the PIC base is.
506 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
Evan Cheng25ab6902006-09-08 06:48:29 +0000507 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000508 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000509 }
Chris Lattner7ddde322004-11-20 23:54:33 +0000510 case X86::reloc_absolute_word:
511 // Absolute relocation, just add the relocated value to the value already
512 // in memory.
Evan Cheng25ab6902006-09-08 06:48:29 +0000513 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000514 break;
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000515 case X86::reloc_absolute_dword:
516 *((intptr_t*)RelocPos) += ResultPtr;
517 break;
Chris Lattner7ddde322004-11-20 23:54:33 +0000518 }
519 }
520}
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000521
522char* X86JITInfo::allocateThreadLocalMemory(size_t size) {
523#if defined(X86_32_JIT) && !defined(__APPLE__) && !defined(_MSC_VER)
524 TLSOffset -= size;
525 return TLSOffset;
526#else
527 assert(0 && "Cannot allocate thread local storage on this arch!\n");
528 return 0;
529#endif
530}