blob: f363903d9316a204c8ccbb02b9f0ec45cfc6aa41 [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"
Evan Chengd0da6ff2009-09-03 04:37:05 +000018#include "X86TargetMachine.h"
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +000019#include "llvm/Function.h"
Devang Patel0d885d12008-07-16 17:54:34 +000020#include "llvm/Support/Compiler.h"
Torok Edwinab7c09b2009-07-08 18:01:40 +000021#include "llvm/Support/ErrorHandling.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
Anton Korobeynikov6f9bb6f2009-08-28 16:06:41 +000027#if defined (__x86_64__) || defined (_M_AMD64) || defined (_M_X64)
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000028# 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 Gohman9036d802009-02-06 21:15:52 +000055// For ELF targets, use a .size and .type directive, to let tools
56// know the extent of functions defined in assembler.
57#if defined(__ELF__)
58# define SIZE(sym) ".size " #sym ", . - " #sym "\n"
59# define TYPE_FUNCTION(sym) ".type " #sym ", @function\n"
60#else
61# define SIZE(sym)
62# define TYPE_FUNCTION(sym)
63#endif
64
Anton Korobeynikov7eb58772007-12-10 23:10:20 +000065// Provide a convenient way for disabling usage of CFI directives.
Anton Korobeynikov2fb9dee2007-12-10 23:08:35 +000066// This is needed for old/broken assemblers (for example, gas on
67// Darwin is pretty old and doesn't support these directives)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000068#if defined(__APPLE__)
69# define CFI(x)
70#else
Anton Korobeynikov144a45e2007-12-22 20:41:12 +000071// FIXME: Disable this until we really want to use it. Also, we will
72// need to add some workarounds for compilers, which support
73// only subset of these directives.
Anton Korobeynikovd07310a2007-12-22 20:46:24 +000074# define CFI(x)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000075#endif
76
Chris Lattner1030f722005-05-19 06:49:17 +000077// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
78// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000079extern "C" {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000080#if defined(X86_64_JIT)
81# ifndef _MSC_VER
Evan Cheng25ab6902006-09-08 06:48:29 +000082 // No need to save EAX/EDX for X86-64.
83 void X86CompilationCallback(void);
84 asm(
85 ".text\n"
86 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +000087 ".globl " ASMPREFIX "X86CompilationCallback\n"
Dan Gohman9036d802009-02-06 21:15:52 +000088 TYPE_FUNCTION(X86CompilationCallback)
Chris Lattner40f4ba52006-09-08 17:03:56 +000089 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000090 CFI(".cfi_startproc\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000091 // Save RBP
92 "pushq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000093 CFI(".cfi_def_cfa_offset 16\n")
94 CFI(".cfi_offset %rbp, -16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000095 // Save RSP
96 "movq %rsp, %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000097 CFI(".cfi_def_cfa_register %rbp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000098 // Save all int arg registers
99 "pushq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000100 CFI(".cfi_rel_offset %rdi, 0\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000101 "pushq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000102 CFI(".cfi_rel_offset %rsi, 8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000103 "pushq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000104 CFI(".cfi_rel_offset %rdx, 16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000105 "pushq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000106 CFI(".cfi_rel_offset %rcx, 24\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000107 "pushq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000108 CFI(".cfi_rel_offset %r8, 32\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000109 "pushq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000110 CFI(".cfi_rel_offset %r9, 40\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000111 // Align stack on 16-byte boundary. ESP might not be properly aligned
112 // (8 byte) if this is called from an indirect stub.
113 "andq $-16, %rsp\n"
114 // Save all XMM arg registers
115 "subq $128, %rsp\n"
116 "movaps %xmm0, (%rsp)\n"
117 "movaps %xmm1, 16(%rsp)\n"
118 "movaps %xmm2, 32(%rsp)\n"
119 "movaps %xmm3, 48(%rsp)\n"
120 "movaps %xmm4, 64(%rsp)\n"
121 "movaps %xmm5, 80(%rsp)\n"
122 "movaps %xmm6, 96(%rsp)\n"
123 "movaps %xmm7, 112(%rsp)\n"
124 // JIT callee
125 "movq %rbp, %rdi\n" // Pass prev frame and return address
126 "movq 8(%rbp), %rsi\n"
Anton Korobeynikov6c402572009-09-06 20:21:48 +0000127 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000128 // Restore all XMM arg registers
129 "movaps 112(%rsp), %xmm7\n"
130 "movaps 96(%rsp), %xmm6\n"
131 "movaps 80(%rsp), %xmm5\n"
132 "movaps 64(%rsp), %xmm4\n"
133 "movaps 48(%rsp), %xmm3\n"
134 "movaps 32(%rsp), %xmm2\n"
135 "movaps 16(%rsp), %xmm1\n"
136 "movaps (%rsp), %xmm0\n"
137 // Restore RSP
138 "movq %rbp, %rsp\n"
Scott Michela28c6bf2007-12-12 02:38:28 +0000139 CFI(".cfi_def_cfa_register %rsp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000140 // Restore all int arg registers
141 "subq $48, %rsp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000142 CFI(".cfi_adjust_cfa_offset 48\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000143 "popq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000144 CFI(".cfi_adjust_cfa_offset -8\n")
145 CFI(".cfi_restore %r9\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000146 "popq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000147 CFI(".cfi_adjust_cfa_offset -8\n")
148 CFI(".cfi_restore %r8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000149 "popq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000150 CFI(".cfi_adjust_cfa_offset -8\n")
151 CFI(".cfi_restore %rcx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000152 "popq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000153 CFI(".cfi_adjust_cfa_offset -8\n")
154 CFI(".cfi_restore %rdx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000155 "popq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000156 CFI(".cfi_adjust_cfa_offset -8\n")
157 CFI(".cfi_restore %rsi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000158 "popq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000159 CFI(".cfi_adjust_cfa_offset -8\n")
160 CFI(".cfi_restore %rdi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000161 // Restore RBP
162 "popq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000163 CFI(".cfi_adjust_cfa_offset -8\n")
164 CFI(".cfi_restore %rbp\n")
Anton Korobeynikov3a7bcc42007-12-10 15:27:07 +0000165 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000166 CFI(".cfi_endproc\n")
Dan Gohman9036d802009-02-06 21:15:52 +0000167 SIZE(X86CompilationCallback)
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000168 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000169# else
Anton Korobeynikov231e9642008-03-23 14:44:32 +0000170 // No inline assembler support on this platform. The routine is in external
171 // file.
172 void X86CompilationCallback();
173
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000174# endif
175#elif defined (X86_32_JIT)
176# ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000177 void X86CompilationCallback(void);
178 asm(
179 ".text\n"
180 ".align 8\n"
Dan Gohman9036d802009-02-06 21:15:52 +0000181 ".globl " ASMPREFIX "X86CompilationCallback\n"
182 TYPE_FUNCTION(X86CompilationCallback)
Chris Lattner40f4ba52006-09-08 17:03:56 +0000183 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000184 CFI(".cfi_startproc\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000185 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000186 CFI(".cfi_def_cfa_offset 8\n")
187 CFI(".cfi_offset %ebp, -8\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000188 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000189 CFI(".cfi_def_cfa_register %ebp\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000190 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000191 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000192 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000193 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000194 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000195 CFI(".cfi_rel_offset %ecx, 8\n")
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000196# if defined(__APPLE__)
Evan Chengda08d2c2006-06-24 08:36:10 +0000197 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000198# endif
Evan Chengbe33dd92006-06-29 01:48:36 +0000199 "subl $16, %esp\n"
200 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
201 "movl %eax, 4(%esp)\n"
202 "movl %ebp, (%esp)\n"
Anton Korobeynikov6c402572009-09-06 20:21:48 +0000203 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000204 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000205 CFI(".cfi_def_cfa_register %esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000206 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000207 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000208 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000209 CFI(".cfi_adjust_cfa_offset -4\n")
210 CFI(".cfi_restore %ecx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000211 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000212 CFI(".cfi_adjust_cfa_offset -4\n")
213 CFI(".cfi_restore %edx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000214 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000215 CFI(".cfi_adjust_cfa_offset -4\n")
216 CFI(".cfi_restore %eax\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000217 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000218 CFI(".cfi_adjust_cfa_offset -4\n")
219 CFI(".cfi_restore %ebp\n")
Anton Korobeynikova14b6692007-12-10 14:54:42 +0000220 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000221 CFI(".cfi_endproc\n")
Dan Gohman9036d802009-02-06 21:15:52 +0000222 SIZE(X86CompilationCallback)
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000223 );
Evan Cheng93b11f82006-10-16 21:01:55 +0000224
225 // Same as X86CompilationCallback but also saves XMM argument registers.
226 void X86CompilationCallback_SSE(void);
227 asm(
228 ".text\n"
229 ".align 8\n"
Dan Gohman9036d802009-02-06 21:15:52 +0000230 ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
231 TYPE_FUNCTION(X86CompilationCallback_SSE)
Evan Cheng93b11f82006-10-16 21:01:55 +0000232 ASMPREFIX "X86CompilationCallback_SSE:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000233 CFI(".cfi_startproc\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000234 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000235 CFI(".cfi_def_cfa_offset 8\n")
236 CFI(".cfi_offset %ebp, -8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000237 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000238 CFI(".cfi_def_cfa_register %ebp\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000239 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000240 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000241 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000242 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000243 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000244 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000245 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
246 // Save all XMM arg registers
247 "subl $64, %esp\n"
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000248 // FIXME: provide frame move information for xmm registers.
249 // This can be tricky, because CFA register is ebp (unaligned)
250 // and we need to produce offsets relative to it.
Evan Cheng93b11f82006-10-16 21:01:55 +0000251 "movaps %xmm0, (%esp)\n"
252 "movaps %xmm1, 16(%esp)\n"
253 "movaps %xmm2, 32(%esp)\n"
254 "movaps %xmm3, 48(%esp)\n"
255 "subl $16, %esp\n"
256 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
257 "movl %eax, 4(%esp)\n"
258 "movl %ebp, (%esp)\n"
Anton Korobeynikov6c402572009-09-06 20:21:48 +0000259 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000260 "addl $16, %esp\n"
261 "movaps 48(%esp), %xmm3\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000262 CFI(".cfi_restore %xmm3\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000263 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000264 CFI(".cfi_restore %xmm2\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000265 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000266 CFI(".cfi_restore %xmm1\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000267 "movaps (%esp), %xmm0\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000268 CFI(".cfi_restore %xmm0\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000269 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000270 CFI(".cfi_def_cfa_register esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000271 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000272 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000273 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000274 CFI(".cfi_adjust_cfa_offset -4\n")
275 CFI(".cfi_restore %ecx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000276 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000277 CFI(".cfi_adjust_cfa_offset -4\n")
278 CFI(".cfi_restore %edx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000279 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000280 CFI(".cfi_adjust_cfa_offset -4\n")
281 CFI(".cfi_restore %eax\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000282 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000283 CFI(".cfi_adjust_cfa_offset -4\n")
284 CFI(".cfi_restore %ebp\n")
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000285 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000286 CFI(".cfi_endproc\n")
Dan Gohman9036d802009-02-06 21:15:52 +0000287 SIZE(X86CompilationCallback_SSE)
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000288 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000289# else
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000290 void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000291
292 _declspec(naked) void X86CompilationCallback(void) {
293 __asm {
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000294 push ebp
295 mov ebp, esp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000296 push eax
297 push edx
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000298 push ecx
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000299 and esp, -16
300 mov eax, dword ptr [ebp+4]
301 mov dword ptr [esp+4], eax
302 mov dword ptr [esp], ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000303 call X86CompilationCallback2
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000304 mov esp, ebp
305 sub esp, 12
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000306 pop ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000307 pop edx
308 pop eax
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000309 pop ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000310 ret
311 }
312 }
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000313
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000314# endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +0000315
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000316#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000317 void X86CompilationCallback() {
Torok Edwinc23197a2009-07-14 16:55:14 +0000318 llvm_unreachable("Cannot call X86CompilationCallback() on a non-x86 arch!");
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000319 }
Chris Lattner1030f722005-05-19 06:49:17 +0000320#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000321}
Chris Lattner1030f722005-05-19 06:49:17 +0000322
Dan Gohman9036d802009-02-06 21:15:52 +0000323/// X86CompilationCallback2 - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000324/// function stub when we did not know the real target of a call. This function
325/// must locate the start of the stub or call site and pass it into the JIT
326/// compiler function.
Anton Korobeynikov6c402572009-09-06 20:21:48 +0000327extern "C" {
328#if !(defined (X86_64_JIT) && defined(_MSC_VER))
329 // the following function is called only from this translation unit,
330 // unless we are under 64bit Windows with MSC, where there is
331 // no support for inline assembly
332static
333#endif
334void ATTRIBUTE_USED
Devang Patel0d885d12008-07-16 17:54:34 +0000335X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
Evan Chengbe33dd92006-06-29 01:48:36 +0000336 intptr_t *RetAddrLoc = &StackPtr[1];
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000337 assert(*RetAddrLoc == RetAddr &&
Chris Lattner7ddde322004-11-20 23:54:33 +0000338 "Could not find return address on the stack!");
339
340 // It's a stub if there is an interrupt marker after the call.
Dale Johannesen7d1a7c02009-09-15 18:32:14 +0000341 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCE;
Chris Lattner7ddde322004-11-20 23:54:33 +0000342
343 // The call instruction should have pushed the return value onto the stack...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000344#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000345 RetAddr--; // Backtrack to the reference itself...
346#else
Chris Lattner7ddde322004-11-20 23:54:33 +0000347 RetAddr -= 4; // Backtrack to the reference itself...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000348#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000349
350#if 0
David Greene92f16442010-01-05 01:29:23 +0000351 DEBUG(dbgs() << "In callback! Addr=" << (void*)RetAddr
Bill Wendling0ea8bf32009-08-03 00:11:34 +0000352 << " ESP=" << (void*)StackPtr
353 << ": Resolving call to function: "
354 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n");
Chris Lattner7ddde322004-11-20 23:54:33 +0000355#endif
356
357 // Sanity check to make sure this really is a call instruction.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000358#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000359 assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
360 assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
361#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000362 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000363#endif
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000364
Evan Cheng25ab6902006-09-08 06:48:29 +0000365 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
Chris Lattner7ddde322004-11-20 23:54:33 +0000366
367 // Rewrite the call target... so that we don't end up here every time we
368 // execute the call.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000369#if defined (X86_64_JIT)
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +0000370 assert(isStub &&
371 "X86-64 doesn't support rewriting non-stub lazy compilation calls:"
372 " the call instruction varies too much.");
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000373#else
374 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
375#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000376
377 if (isStub) {
378 // If this is a stub, rewrite the call into an unconditional branch
379 // instruction so that two return addresses are not pushed onto the stack
380 // when the requested function finally gets called. This also makes the
Dale Johannesen7d1a7c02009-09-15 18:32:14 +0000381 // 0xCE byte (interrupt) dead, so the marker doesn't effect anything.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000382#if defined (X86_64_JIT)
Dale Johannesen6f83be02008-08-12 23:20:24 +0000383 // If the target address is within 32-bit range of the stub, use a
384 // PC-relative branch instead of loading the actual address. (This is
385 // considerably shorter than the 64-bit immediate load already there.)
386 // We assume here intptr_t is 64 bits.
387 intptr_t diff = NewVal-RetAddr+7;
388 if (diff >= -2147483648LL && diff <= 2147483647LL) {
389 *(unsigned char*)(RetAddr-0xc) = 0xE9;
390 *(intptr_t *)(RetAddr-0xb) = diff & 0xffffffff;
391 } else {
392 *(intptr_t *)(RetAddr - 0xa) = NewVal;
393 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
394 }
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000395#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000396 ((unsigned char*)RetAddr)[-1] = 0xE9;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000397#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000398 }
399
400 // Change the return address to reexecute the call instruction...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000401#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000402 *RetAddrLoc -= 0xd;
403#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000404 *RetAddrLoc -= 5;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000405#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000406}
Anton Korobeynikov6c402572009-09-06 20:21:48 +0000407}
Chris Lattner7ddde322004-11-20 23:54:33 +0000408
Chris Lattner7ddde322004-11-20 23:54:33 +0000409TargetJITInfo::LazyResolverFn
410X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
411 JITCompilerFunction = F;
Evan Cheng93b11f82006-10-16 21:01:55 +0000412
Evan Cheng22f91442009-09-03 05:01:00 +0000413#if defined (X86_32_JIT) && !defined (_MSC_VER)
414 if (Subtarget->hasSSE1())
415 return X86CompilationCallback_SSE;
416#endif
417
418 return X86CompilationCallback;
Evan Chengd0da6ff2009-09-03 04:37:05 +0000419}
Evan Cheng93b11f82006-10-16 21:01:55 +0000420
Evan Chengd0da6ff2009-09-03 04:37:05 +0000421X86JITInfo::X86JITInfo(X86TargetMachine &tm) : TM(tm) {
422 Subtarget = &TM.getSubtarget<X86Subtarget>();
423 useGOT = 0;
424 TLSOffset = 0;
Chris Lattner7ddde322004-11-20 23:54:33 +0000425}
426
Evan Cheng9ed2f802008-11-10 01:08:07 +0000427void *X86JITInfo::emitGlobalValueIndirectSym(const GlobalValue* GV, void *ptr,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000428 JITCodeEmitter &JCE) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000429#if defined (X86_64_JIT)
Jeffrey Yasskin32d7e6e2009-12-15 22:42:46 +0000430 const unsigned Alignment = 8;
431 uint8_t Buffer[8];
432 uint8_t *Cur = Buffer;
433 MachineCodeEmitter::emitWordLEInto(Cur, (unsigned)(intptr_t)ptr);
434 MachineCodeEmitter::emitWordLEInto(Cur, (unsigned)(((intptr_t)ptr) >> 32));
Evan Chengbe8c03f2008-01-04 10:46:51 +0000435#else
Jeffrey Yasskin32d7e6e2009-12-15 22:42:46 +0000436 const unsigned Alignment = 4;
437 uint8_t Buffer[4];
438 uint8_t *Cur = Buffer;
439 MachineCodeEmitter::emitWordLEInto(Cur, (intptr_t)ptr);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000440#endif
Jeffrey Yasskin32d7e6e2009-12-15 22:42:46 +0000441 return JCE.allocIndirectGV(GV, Buffer, sizeof(Buffer), Alignment);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000442}
443
Jeffrey Yasskin108c8382009-11-23 23:35:19 +0000444TargetJITInfo::StubLayout X86JITInfo::getStubLayout() {
445 // The 64-bit stub contains:
446 // movabs r10 <- 8-byte-target-address # 10 bytes
447 // call|jmp *r10 # 3 bytes
448 // The 32-bit stub contains a 5-byte call|jmp.
449 // If the stub is a call to the compilation callback, an extra byte is added
450 // to mark it as a stub.
451 StubLayout Result = {14, 4};
452 return Result;
453}
454
455void *X86JITInfo::emitFunctionStub(const Function* F, void *Target,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000456 JITCodeEmitter &JCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000457 // Note, we cast to intptr_t here to silence a -pedantic warning that
458 // complains about casting a function pointer to a normal pointer.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000459#if defined (X86_32_JIT) && !defined (_MSC_VER)
Jeffrey Yasskin108c8382009-11-23 23:35:19 +0000460 bool NotCC = (Target != (void*)(intptr_t)X86CompilationCallback &&
461 Target != (void*)(intptr_t)X86CompilationCallback_SSE);
Evan Chengcf922302006-10-16 23:44:08 +0000462#else
Jeffrey Yasskin108c8382009-11-23 23:35:19 +0000463 bool NotCC = Target != (void*)(intptr_t)X86CompilationCallback;
Evan Cheng348b00d2006-10-16 22:53:28 +0000464#endif
Jeffrey Yasskin108c8382009-11-23 23:35:19 +0000465 JCE.emitAlignment(4);
466 void *Result = (void*)JCE.getCurrentPCValue();
Evan Cheng348b00d2006-10-16 22:53:28 +0000467 if (NotCC) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000468#if defined (X86_64_JIT)
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000469 JCE.emitByte(0x49); // REX prefix
470 JCE.emitByte(0xB8+2); // movabsq r10
Jeffrey Yasskin108c8382009-11-23 23:35:19 +0000471 JCE.emitWordLE((unsigned)(intptr_t)Target);
472 JCE.emitWordLE((unsigned)(((intptr_t)Target) >> 32));
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000473 JCE.emitByte(0x41); // REX prefix
474 JCE.emitByte(0xFF); // jmpq *r10
475 JCE.emitByte(2 | (4 << 3) | (3 << 6));
Evan Cheng8510dc02007-03-14 10:48:08 +0000476#else
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000477 JCE.emitByte(0xE9);
Jeffrey Yasskin108c8382009-11-23 23:35:19 +0000478 JCE.emitWordLE((intptr_t)Target-JCE.getCurrentPCValue()-4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000479#endif
Jeffrey Yasskin108c8382009-11-23 23:35:19 +0000480 return Result;
Chris Lattner90b1b452004-11-22 22:25:30 +0000481 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000482
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000483#if defined (X86_64_JIT)
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000484 JCE.emitByte(0x49); // REX prefix
485 JCE.emitByte(0xB8+2); // movabsq r10
Jeffrey Yasskin108c8382009-11-23 23:35:19 +0000486 JCE.emitWordLE((unsigned)(intptr_t)Target);
487 JCE.emitWordLE((unsigned)(((intptr_t)Target) >> 32));
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000488 JCE.emitByte(0x41); // REX prefix
489 JCE.emitByte(0xFF); // callq *r10
490 JCE.emitByte(2 | (2 << 3) | (3 << 6));
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000491#else
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000492 JCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
Chris Lattner90b1b452004-11-22 22:25:30 +0000493
Jeffrey Yasskin108c8382009-11-23 23:35:19 +0000494 JCE.emitWordLE((intptr_t)Target-JCE.getCurrentPCValue()-4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000495#endif
Chris Lattner90b1b452004-11-22 22:25:30 +0000496
Dale Johannesen7d1a7c02009-09-15 18:32:14 +0000497 // This used to use 0xCD, but that value is used by JITMemoryManager to
498 // initialize the buffer with garbage, which means it may follow a
499 // noreturn function call, confusing X86CompilationCallback2. PR 4929.
500 JCE.emitByte(0xCE); // Interrupt - Just a marker identifying the stub!
Jeffrey Yasskin108c8382009-11-23 23:35:19 +0000501 return Result;
Nate Begemand6b7a242009-02-18 08:31:02 +0000502}
503
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000504/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
505/// specific basic block.
Evan Cheng5788d1a2008-12-10 02:32:19 +0000506uintptr_t X86JITInfo::getPICJumpTableEntry(uintptr_t BB, uintptr_t Entry) {
Evan Cheng81fb5fe2008-07-16 01:33:08 +0000507#if defined(X86_64_JIT)
508 return BB - Entry;
509#else
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000510 return BB - PICBase;
Evan Cheng81fb5fe2008-07-16 01:33:08 +0000511#endif
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000512}
513
Chris Lattner7ddde322004-11-20 23:54:33 +0000514/// relocate - Before the JIT can run a block of code that has been emitted,
515/// it must rewrite the code to contain the actual addresses of any
516/// referenced global symbols.
517void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000518 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000519 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
520 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
521 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
522 switch ((X86::RelocationType)MR->getRelocationType()) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000523 case X86::reloc_pcrel_word: {
Chris Lattner7ddde322004-11-20 23:54:33 +0000524 // PC relative relocation, add the relocated value to the value already in
525 // memory, after we adjust it for where the PC is.
Evan Chengaabe38b2007-12-22 09:40:20 +0000526 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
527 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
528 break;
529 }
530 case X86::reloc_picrel_word: {
531 // PIC base relative relocation, add the relocated value to the value
532 // already in memory, after we adjust it for where the PIC base is.
533 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
Evan Cheng25ab6902006-09-08 06:48:29 +0000534 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000535 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000536 }
Chris Lattner7ddde322004-11-20 23:54:33 +0000537 case X86::reloc_absolute_word:
Bruno Cardoso Lopese55fef32009-08-05 00:11:21 +0000538 case X86::reloc_absolute_word_sext:
Chris Lattner7ddde322004-11-20 23:54:33 +0000539 // Absolute relocation, just add the relocated value to the value already
540 // in memory.
Evan Cheng25ab6902006-09-08 06:48:29 +0000541 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000542 break;
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000543 case X86::reloc_absolute_dword:
544 *((intptr_t*)RelocPos) += ResultPtr;
545 break;
Chris Lattner7ddde322004-11-20 23:54:33 +0000546 }
547 }
548}
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000549
550char* X86JITInfo::allocateThreadLocalMemory(size_t size) {
551#if defined(X86_32_JIT) && !defined(__APPLE__) && !defined(_MSC_VER)
552 TLSOffset -= size;
553 return TLSOffset;
554#else
Torok Edwinc23197a2009-07-14 16:55:14 +0000555 llvm_unreachable("Cannot allocate thread local storage on this arch!");
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000556 return 0;
557#endif
558}