blob: d36f87a0801dea32f68073d517e3906c51042c68 [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"
Devang Patel0d885d12008-07-16 17:54:34 +000019#include "llvm/Support/Compiler.h"
Torok Edwinab7c09b2009-07-08 18:01:40 +000020#include "llvm/Support/ErrorHandling.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
Anton Korobeynikov6f9bb6f2009-08-28 16:06:41 +000026#if defined (__x86_64__) || defined (_M_AMD64) || defined (_M_X64)
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000027# 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
Dan Gohman9036d802009-02-06 21:15:52 +000061// For ELF targets, use a .size and .type directive, to let tools
62// know the extent of functions defined in assembler.
63#if defined(__ELF__)
64# define SIZE(sym) ".size " #sym ", . - " #sym "\n"
65# define TYPE_FUNCTION(sym) ".type " #sym ", @function\n"
66#else
67# define SIZE(sym)
68# define TYPE_FUNCTION(sym)
69#endif
70
Anton Korobeynikov7eb58772007-12-10 23:10:20 +000071// Provide a convenient way for disabling usage of CFI directives.
Anton Korobeynikov2fb9dee2007-12-10 23:08:35 +000072// This is needed for old/broken assemblers (for example, gas on
73// Darwin is pretty old and doesn't support these directives)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000074#if defined(__APPLE__)
75# define CFI(x)
76#else
Anton Korobeynikov144a45e2007-12-22 20:41:12 +000077// FIXME: Disable this until we really want to use it. Also, we will
78// need to add some workarounds for compilers, which support
79// only subset of these directives.
Anton Korobeynikovd07310a2007-12-22 20:46:24 +000080# define CFI(x)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000081#endif
82
Chris Lattner1030f722005-05-19 06:49:17 +000083// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
84// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000085extern "C" {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000086#if defined(X86_64_JIT)
87# ifndef _MSC_VER
Evan Cheng25ab6902006-09-08 06:48:29 +000088 // No need to save EAX/EDX for X86-64.
89 void X86CompilationCallback(void);
90 asm(
91 ".text\n"
92 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +000093 ".globl " ASMPREFIX "X86CompilationCallback\n"
Dan Gohman9036d802009-02-06 21:15:52 +000094 TYPE_FUNCTION(X86CompilationCallback)
Chris Lattner40f4ba52006-09-08 17:03:56 +000095 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000096 CFI(".cfi_startproc\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000097 // Save RBP
98 "pushq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000099 CFI(".cfi_def_cfa_offset 16\n")
100 CFI(".cfi_offset %rbp, -16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000101 // Save RSP
102 "movq %rsp, %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000103 CFI(".cfi_def_cfa_register %rbp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000104 // Save all int arg registers
105 "pushq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000106 CFI(".cfi_rel_offset %rdi, 0\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000107 "pushq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000108 CFI(".cfi_rel_offset %rsi, 8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000109 "pushq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000110 CFI(".cfi_rel_offset %rdx, 16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000111 "pushq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000112 CFI(".cfi_rel_offset %rcx, 24\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000113 "pushq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000114 CFI(".cfi_rel_offset %r8, 32\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000115 "pushq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000116 CFI(".cfi_rel_offset %r9, 40\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000117 // Align stack on 16-byte boundary. ESP might not be properly aligned
118 // (8 byte) if this is called from an indirect stub.
119 "andq $-16, %rsp\n"
120 // Save all XMM arg registers
121 "subq $128, %rsp\n"
122 "movaps %xmm0, (%rsp)\n"
123 "movaps %xmm1, 16(%rsp)\n"
124 "movaps %xmm2, 32(%rsp)\n"
125 "movaps %xmm3, 48(%rsp)\n"
126 "movaps %xmm4, 64(%rsp)\n"
127 "movaps %xmm5, 80(%rsp)\n"
128 "movaps %xmm6, 96(%rsp)\n"
129 "movaps %xmm7, 112(%rsp)\n"
130 // JIT callee
131 "movq %rbp, %rdi\n" // Pass prev frame and return address
132 "movq 8(%rbp), %rsi\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000133 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000134 // Restore all XMM arg registers
135 "movaps 112(%rsp), %xmm7\n"
136 "movaps 96(%rsp), %xmm6\n"
137 "movaps 80(%rsp), %xmm5\n"
138 "movaps 64(%rsp), %xmm4\n"
139 "movaps 48(%rsp), %xmm3\n"
140 "movaps 32(%rsp), %xmm2\n"
141 "movaps 16(%rsp), %xmm1\n"
142 "movaps (%rsp), %xmm0\n"
143 // Restore RSP
144 "movq %rbp, %rsp\n"
Scott Michela28c6bf2007-12-12 02:38:28 +0000145 CFI(".cfi_def_cfa_register %rsp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000146 // Restore all int arg registers
147 "subq $48, %rsp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000148 CFI(".cfi_adjust_cfa_offset 48\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000149 "popq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000150 CFI(".cfi_adjust_cfa_offset -8\n")
151 CFI(".cfi_restore %r9\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000152 "popq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000153 CFI(".cfi_adjust_cfa_offset -8\n")
154 CFI(".cfi_restore %r8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000155 "popq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000156 CFI(".cfi_adjust_cfa_offset -8\n")
157 CFI(".cfi_restore %rcx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000158 "popq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000159 CFI(".cfi_adjust_cfa_offset -8\n")
160 CFI(".cfi_restore %rdx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000161 "popq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000162 CFI(".cfi_adjust_cfa_offset -8\n")
163 CFI(".cfi_restore %rsi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000164 "popq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000165 CFI(".cfi_adjust_cfa_offset -8\n")
166 CFI(".cfi_restore %rdi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000167 // Restore RBP
168 "popq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000169 CFI(".cfi_adjust_cfa_offset -8\n")
170 CFI(".cfi_restore %rbp\n")
Anton Korobeynikov3a7bcc42007-12-10 15:27:07 +0000171 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000172 CFI(".cfi_endproc\n")
Dan Gohman9036d802009-02-06 21:15:52 +0000173 SIZE(X86CompilationCallback)
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000174 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000175# else
Anton Korobeynikov231e9642008-03-23 14:44:32 +0000176 // No inline assembler support on this platform. The routine is in external
177 // file.
178 void X86CompilationCallback();
179
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000180# endif
181#elif defined (X86_32_JIT)
182# ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000183 void X86CompilationCallback(void);
184 asm(
185 ".text\n"
186 ".align 8\n"
Dan Gohman9036d802009-02-06 21:15:52 +0000187 ".globl " ASMPREFIX "X86CompilationCallback\n"
188 TYPE_FUNCTION(X86CompilationCallback)
Chris Lattner40f4ba52006-09-08 17:03:56 +0000189 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000190 CFI(".cfi_startproc\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000191 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000192 CFI(".cfi_def_cfa_offset 8\n")
193 CFI(".cfi_offset %ebp, -8\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000194 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000195 CFI(".cfi_def_cfa_register %ebp\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000196 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000197 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000198 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000199 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000200 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000201 CFI(".cfi_rel_offset %ecx, 8\n")
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000202# if defined(__APPLE__)
Evan Chengda08d2c2006-06-24 08:36:10 +0000203 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000204# endif
Evan Chengbe33dd92006-06-29 01:48:36 +0000205 "subl $16, %esp\n"
206 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
207 "movl %eax, 4(%esp)\n"
208 "movl %ebp, (%esp)\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000209 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000210 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000211 CFI(".cfi_def_cfa_register %esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000212 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000213 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000214 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000215 CFI(".cfi_adjust_cfa_offset -4\n")
216 CFI(".cfi_restore %ecx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000217 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000218 CFI(".cfi_adjust_cfa_offset -4\n")
219 CFI(".cfi_restore %edx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000220 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000221 CFI(".cfi_adjust_cfa_offset -4\n")
222 CFI(".cfi_restore %eax\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000223 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000224 CFI(".cfi_adjust_cfa_offset -4\n")
225 CFI(".cfi_restore %ebp\n")
Anton Korobeynikova14b6692007-12-10 14:54:42 +0000226 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000227 CFI(".cfi_endproc\n")
Dan Gohman9036d802009-02-06 21:15:52 +0000228 SIZE(X86CompilationCallback)
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000229 );
Evan Cheng93b11f82006-10-16 21:01:55 +0000230
231 // Same as X86CompilationCallback but also saves XMM argument registers.
232 void X86CompilationCallback_SSE(void);
233 asm(
234 ".text\n"
235 ".align 8\n"
Dan Gohman9036d802009-02-06 21:15:52 +0000236 ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
237 TYPE_FUNCTION(X86CompilationCallback_SSE)
Evan Cheng93b11f82006-10-16 21:01:55 +0000238 ASMPREFIX "X86CompilationCallback_SSE:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000239 CFI(".cfi_startproc\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000240 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000241 CFI(".cfi_def_cfa_offset 8\n")
242 CFI(".cfi_offset %ebp, -8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000243 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000244 CFI(".cfi_def_cfa_register %ebp\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000245 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000246 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000247 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000248 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000249 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000250 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000251 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
252 // Save all XMM arg registers
253 "subl $64, %esp\n"
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000254 // FIXME: provide frame move information for xmm registers.
255 // This can be tricky, because CFA register is ebp (unaligned)
256 // and we need to produce offsets relative to it.
Evan Cheng93b11f82006-10-16 21:01:55 +0000257 "movaps %xmm0, (%esp)\n"
258 "movaps %xmm1, 16(%esp)\n"
259 "movaps %xmm2, 32(%esp)\n"
260 "movaps %xmm3, 48(%esp)\n"
261 "subl $16, %esp\n"
262 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
263 "movl %eax, 4(%esp)\n"
264 "movl %ebp, (%esp)\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000265 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000266 "addl $16, %esp\n"
267 "movaps 48(%esp), %xmm3\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000268 CFI(".cfi_restore %xmm3\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000269 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000270 CFI(".cfi_restore %xmm2\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000271 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000272 CFI(".cfi_restore %xmm1\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000273 "movaps (%esp), %xmm0\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000274 CFI(".cfi_restore %xmm0\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000275 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000276 CFI(".cfi_def_cfa_register esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000277 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000278 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000279 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000280 CFI(".cfi_adjust_cfa_offset -4\n")
281 CFI(".cfi_restore %ecx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000282 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000283 CFI(".cfi_adjust_cfa_offset -4\n")
284 CFI(".cfi_restore %edx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000285 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000286 CFI(".cfi_adjust_cfa_offset -4\n")
287 CFI(".cfi_restore %eax\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000288 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000289 CFI(".cfi_adjust_cfa_offset -4\n")
290 CFI(".cfi_restore %ebp\n")
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000291 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000292 CFI(".cfi_endproc\n")
Dan Gohman9036d802009-02-06 21:15:52 +0000293 SIZE(X86CompilationCallback_SSE)
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000294 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000295# else
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000296 void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000297
298 _declspec(naked) void X86CompilationCallback(void) {
299 __asm {
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000300 push ebp
301 mov ebp, esp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000302 push eax
303 push edx
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000304 push ecx
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000305 and esp, -16
306 mov eax, dword ptr [ebp+4]
307 mov dword ptr [esp+4], eax
308 mov dword ptr [esp], ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000309 call X86CompilationCallback2
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000310 mov esp, ebp
311 sub esp, 12
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000312 pop ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000313 pop edx
314 pop eax
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000315 pop ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000316 ret
317 }
318 }
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000319
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000320# endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +0000321
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000322#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000323 void X86CompilationCallback() {
Torok Edwinc23197a2009-07-14 16:55:14 +0000324 llvm_unreachable("Cannot call X86CompilationCallback() on a non-x86 arch!");
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000325 }
Chris Lattner1030f722005-05-19 06:49:17 +0000326#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000327}
Chris Lattner1030f722005-05-19 06:49:17 +0000328
Dan Gohman9036d802009-02-06 21:15:52 +0000329/// X86CompilationCallback2 - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000330/// function stub when we did not know the real target of a call. This function
331/// must locate the start of the stub or call site and pass it into the JIT
332/// compiler function.
Devang Patel0d885d12008-07-16 17:54:34 +0000333extern "C" void ATTRIBUTE_USED
334X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
Evan Chengbe33dd92006-06-29 01:48:36 +0000335 intptr_t *RetAddrLoc = &StackPtr[1];
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000336 assert(*RetAddrLoc == RetAddr &&
Chris Lattner7ddde322004-11-20 23:54:33 +0000337 "Could not find return address on the stack!");
338
339 // It's a stub if there is an interrupt marker after the call.
Evan Cheng25ab6902006-09-08 06:48:29 +0000340 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
Chris Lattner7ddde322004-11-20 23:54:33 +0000341
342 // The call instruction should have pushed the return value onto the stack...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000343#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000344 RetAddr--; // Backtrack to the reference itself...
345#else
Chris Lattner7ddde322004-11-20 23:54:33 +0000346 RetAddr -= 4; // Backtrack to the reference itself...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000347#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000348
349#if 0
Bill Wendling0ea8bf32009-08-03 00:11:34 +0000350 DEBUG(errs() << "In callback! Addr=" << (void*)RetAddr
351 << " ESP=" << (void*)StackPtr
352 << ": Resolving call to function: "
353 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n");
Chris Lattner7ddde322004-11-20 23:54:33 +0000354#endif
355
356 // Sanity check to make sure this really is a call instruction.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000357#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000358 assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
359 assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
360#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000361 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000362#endif
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000363
Evan Cheng25ab6902006-09-08 06:48:29 +0000364 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
Chris Lattner7ddde322004-11-20 23:54:33 +0000365
366 // Rewrite the call target... so that we don't end up here every time we
367 // execute the call.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000368#if defined (X86_64_JIT)
Dale Johannesen6f83be02008-08-12 23:20:24 +0000369 if (!isStub)
370 *(intptr_t *)(RetAddr - 0xa) = NewVal;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000371#else
372 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
373#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000374
375 if (isStub) {
376 // If this is a stub, rewrite the call into an unconditional branch
377 // instruction so that two return addresses are not pushed onto the stack
378 // when the requested function finally gets called. This also makes the
379 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000380#if defined (X86_64_JIT)
Dale Johannesen6f83be02008-08-12 23:20:24 +0000381 // If the target address is within 32-bit range of the stub, use a
382 // PC-relative branch instead of loading the actual address. (This is
383 // considerably shorter than the 64-bit immediate load already there.)
384 // We assume here intptr_t is 64 bits.
385 intptr_t diff = NewVal-RetAddr+7;
386 if (diff >= -2147483648LL && diff <= 2147483647LL) {
387 *(unsigned char*)(RetAddr-0xc) = 0xE9;
388 *(intptr_t *)(RetAddr-0xb) = diff & 0xffffffff;
389 } else {
390 *(intptr_t *)(RetAddr - 0xa) = NewVal;
391 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
392 }
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000393#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000394 ((unsigned char*)RetAddr)[-1] = 0xE9;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000395#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000396 }
397
398 // Change the return address to reexecute the call instruction...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000399#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000400 *RetAddrLoc -= 0xd;
401#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000402 *RetAddrLoc -= 5;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000403#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000404}
405
Chris Lattner7ddde322004-11-20 23:54:33 +0000406TargetJITInfo::LazyResolverFn
407X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
408 JITCompilerFunction = F;
Evan Cheng93b11f82006-10-16 21:01:55 +0000409
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000410#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng93b11f82006-10-16 21:01:55 +0000411 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
412 union {
413 unsigned u[3];
414 char c[12];
415 } text;
416
417 if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
418 // FIXME: support for AMD family of processors.
419 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
420 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
421 if ((EDX >> 25) & 0x1)
422 return X86CompilationCallback_SSE;
423 }
424 }
Evan Cheng348b00d2006-10-16 22:53:28 +0000425#endif
Evan Cheng93b11f82006-10-16 21:01:55 +0000426
Chris Lattner1030f722005-05-19 06:49:17 +0000427 return X86CompilationCallback;
Chris Lattner7ddde322004-11-20 23:54:33 +0000428}
429
Evan Cheng9ed2f802008-11-10 01:08:07 +0000430void *X86JITInfo::emitGlobalValueIndirectSym(const GlobalValue* GV, void *ptr,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000431 JITCodeEmitter &JCE) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000432#if defined (X86_64_JIT)
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000433 JCE.startGVStub(GV, 8, 8);
434 JCE.emitWordLE((unsigned)(intptr_t)ptr);
435 JCE.emitWordLE((unsigned)(((intptr_t)ptr) >> 32));
Evan Chengbe8c03f2008-01-04 10:46:51 +0000436#else
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000437 JCE.startGVStub(GV, 4, 4);
438 JCE.emitWordLE((intptr_t)ptr);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000439#endif
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000440 return JCE.finishGVStub(GV);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000441}
442
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000443void *X86JITInfo::emitFunctionStub(const Function* F, void *Fn,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000444 JITCodeEmitter &JCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000445 // Note, we cast to intptr_t here to silence a -pedantic warning that
446 // complains about casting a function pointer to a normal pointer.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000447#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng348b00d2006-10-16 22:53:28 +0000448 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
449 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
Evan Chengcf922302006-10-16 23:44:08 +0000450#else
451 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
Evan Cheng348b00d2006-10-16 22:53:28 +0000452#endif
453 if (NotCC) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000454#if defined (X86_64_JIT)
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000455 JCE.startGVStub(F, 13, 4);
456 JCE.emitByte(0x49); // REX prefix
457 JCE.emitByte(0xB8+2); // movabsq r10
458 JCE.emitWordLE((unsigned)(intptr_t)Fn);
459 JCE.emitWordLE((unsigned)(((intptr_t)Fn) >> 32));
460 JCE.emitByte(0x41); // REX prefix
461 JCE.emitByte(0xFF); // jmpq *r10
462 JCE.emitByte(2 | (4 << 3) | (3 << 6));
Evan Cheng8510dc02007-03-14 10:48:08 +0000463#else
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000464 JCE.startGVStub(F, 5, 4);
465 JCE.emitByte(0xE9);
466 JCE.emitWordLE((intptr_t)Fn-JCE.getCurrentPCValue()-4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000467#endif
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000468 return JCE.finishGVStub(F);
Chris Lattner90b1b452004-11-22 22:25:30 +0000469 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000470
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000471#if defined (X86_64_JIT)
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000472 JCE.startGVStub(F, 14, 4);
473 JCE.emitByte(0x49); // REX prefix
474 JCE.emitByte(0xB8+2); // movabsq r10
475 JCE.emitWordLE((unsigned)(intptr_t)Fn);
476 JCE.emitWordLE((unsigned)(((intptr_t)Fn) >> 32));
477 JCE.emitByte(0x41); // REX prefix
478 JCE.emitByte(0xFF); // callq *r10
479 JCE.emitByte(2 | (2 << 3) | (3 << 6));
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000480#else
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000481 JCE.startGVStub(F, 6, 4);
482 JCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
Chris Lattner90b1b452004-11-22 22:25:30 +0000483
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000484 JCE.emitWordLE((intptr_t)Fn-JCE.getCurrentPCValue()-4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000485#endif
Chris Lattner90b1b452004-11-22 22:25:30 +0000486
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000487 JCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
488 return JCE.finishGVStub(F);
Chris Lattner90b1b452004-11-22 22:25:30 +0000489}
Chris Lattner7ddde322004-11-20 23:54:33 +0000490
Nate Begemand6b7a242009-02-18 08:31:02 +0000491void X86JITInfo::emitFunctionStubAtAddr(const Function* F, void *Fn, void *Stub,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000492 JITCodeEmitter &JCE) {
Nate Begemand6b7a242009-02-18 08:31:02 +0000493 // Note, we cast to intptr_t here to silence a -pedantic warning that
494 // complains about casting a function pointer to a normal pointer.
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000495 JCE.startGVStub(F, Stub, 5);
496 JCE.emitByte(0xE9);
Reid Klecknerce4eb392009-08-19 23:39:59 +0000497#if defined (X86_64_JIT) && !defined (NDEBUG)
498 // Yes, we need both of these casts, or some broken versions of GCC (4.2.4)
499 // get the signed-ness of the expression wrong. Go figure.
500 intptr_t Displacement = (intptr_t)Fn - (intptr_t)JCE.getCurrentPCValue() - 5;
501 assert(((Displacement << 32) >> 32) == Displacement
Nate Begemand6b7a242009-02-18 08:31:02 +0000502 && "PIC displacement does not fit in displacement field!");
503#endif
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000504 JCE.emitWordLE((intptr_t)Fn-JCE.getCurrentPCValue()-4);
505 JCE.finishGVStub(F);
Nate Begemand6b7a242009-02-18 08:31:02 +0000506}
507
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000508/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
509/// specific basic block.
Evan Cheng5788d1a2008-12-10 02:32:19 +0000510uintptr_t X86JITInfo::getPICJumpTableEntry(uintptr_t BB, uintptr_t Entry) {
Evan Cheng81fb5fe2008-07-16 01:33:08 +0000511#if defined(X86_64_JIT)
512 return BB - Entry;
513#else
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000514 return BB - PICBase;
Evan Cheng81fb5fe2008-07-16 01:33:08 +0000515#endif
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000516}
517
Chris Lattner7ddde322004-11-20 23:54:33 +0000518/// relocate - Before the JIT can run a block of code that has been emitted,
519/// it must rewrite the code to contain the actual addresses of any
520/// referenced global symbols.
521void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000522 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000523 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
524 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
525 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
526 switch ((X86::RelocationType)MR->getRelocationType()) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000527 case X86::reloc_pcrel_word: {
Chris Lattner7ddde322004-11-20 23:54:33 +0000528 // PC relative relocation, add the relocated value to the value already in
529 // memory, after we adjust it for where the PC is.
Evan Chengaabe38b2007-12-22 09:40:20 +0000530 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
531 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
532 break;
533 }
534 case X86::reloc_picrel_word: {
535 // PIC base relative relocation, add the relocated value to the value
536 // already in memory, after we adjust it for where the PIC base is.
537 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
Evan Cheng25ab6902006-09-08 06:48:29 +0000538 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000539 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000540 }
Chris Lattner7ddde322004-11-20 23:54:33 +0000541 case X86::reloc_absolute_word:
Bruno Cardoso Lopese55fef32009-08-05 00:11:21 +0000542 case X86::reloc_absolute_word_sext:
Chris Lattner7ddde322004-11-20 23:54:33 +0000543 // Absolute relocation, just add the relocated value to the value already
544 // in memory.
Evan Cheng25ab6902006-09-08 06:48:29 +0000545 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000546 break;
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000547 case X86::reloc_absolute_dword:
548 *((intptr_t*)RelocPos) += ResultPtr;
549 break;
Chris Lattner7ddde322004-11-20 23:54:33 +0000550 }
551 }
552}
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000553
554char* X86JITInfo::allocateThreadLocalMemory(size_t size) {
555#if defined(X86_32_JIT) && !defined(__APPLE__) && !defined(_MSC_VER)
556 TLSOffset -= size;
557 return TLSOffset;
558#else
Torok Edwinc23197a2009-07-14 16:55:14 +0000559 llvm_unreachable("Cannot allocate thread local storage on this arch!");
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000560 return 0;
561#endif
562}