blob: 2c0302ffee6cb633f9f8e0e96392fb6b49184c90 [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 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
Dan Gohman9036d802009-02-06 21:15:52 +000062// For ELF targets, use a .size and .type directive, to let tools
63// know the extent of functions defined in assembler.
64#if defined(__ELF__)
65# define SIZE(sym) ".size " #sym ", . - " #sym "\n"
66# define TYPE_FUNCTION(sym) ".type " #sym ", @function\n"
67#else
68# define SIZE(sym)
69# define TYPE_FUNCTION(sym)
70#endif
71
Anton Korobeynikov7eb58772007-12-10 23:10:20 +000072// Provide a convenient way for disabling usage of CFI directives.
Anton Korobeynikov2fb9dee2007-12-10 23:08:35 +000073// This is needed for old/broken assemblers (for example, gas on
74// Darwin is pretty old and doesn't support these directives)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000075#if defined(__APPLE__)
76# define CFI(x)
77#else
Anton Korobeynikov144a45e2007-12-22 20:41:12 +000078// FIXME: Disable this until we really want to use it. Also, we will
79// need to add some workarounds for compilers, which support
80// only subset of these directives.
Anton Korobeynikovd07310a2007-12-22 20:46:24 +000081# define CFI(x)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000082#endif
83
Chris Lattner1030f722005-05-19 06:49:17 +000084// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
85// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000086extern "C" {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000087#if defined(X86_64_JIT)
88# ifndef _MSC_VER
Evan Cheng25ab6902006-09-08 06:48:29 +000089 // No need to save EAX/EDX for X86-64.
90 void X86CompilationCallback(void);
91 asm(
92 ".text\n"
93 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +000094 ".globl " ASMPREFIX "X86CompilationCallback\n"
Dan Gohman9036d802009-02-06 21:15:52 +000095 TYPE_FUNCTION(X86CompilationCallback)
Chris Lattner40f4ba52006-09-08 17:03:56 +000096 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000097 CFI(".cfi_startproc\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000098 // Save RBP
99 "pushq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000100 CFI(".cfi_def_cfa_offset 16\n")
101 CFI(".cfi_offset %rbp, -16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000102 // Save RSP
103 "movq %rsp, %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000104 CFI(".cfi_def_cfa_register %rbp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000105 // Save all int arg registers
106 "pushq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000107 CFI(".cfi_rel_offset %rdi, 0\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000108 "pushq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000109 CFI(".cfi_rel_offset %rsi, 8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000110 "pushq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000111 CFI(".cfi_rel_offset %rdx, 16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000112 "pushq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000113 CFI(".cfi_rel_offset %rcx, 24\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000114 "pushq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000115 CFI(".cfi_rel_offset %r8, 32\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000116 "pushq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000117 CFI(".cfi_rel_offset %r9, 40\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000118 // Align stack on 16-byte boundary. ESP might not be properly aligned
119 // (8 byte) if this is called from an indirect stub.
120 "andq $-16, %rsp\n"
121 // Save all XMM arg registers
122 "subq $128, %rsp\n"
123 "movaps %xmm0, (%rsp)\n"
124 "movaps %xmm1, 16(%rsp)\n"
125 "movaps %xmm2, 32(%rsp)\n"
126 "movaps %xmm3, 48(%rsp)\n"
127 "movaps %xmm4, 64(%rsp)\n"
128 "movaps %xmm5, 80(%rsp)\n"
129 "movaps %xmm6, 96(%rsp)\n"
130 "movaps %xmm7, 112(%rsp)\n"
131 // JIT callee
132 "movq %rbp, %rdi\n" // Pass prev frame and return address
133 "movq 8(%rbp), %rsi\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000134 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000135 // Restore all XMM arg registers
136 "movaps 112(%rsp), %xmm7\n"
137 "movaps 96(%rsp), %xmm6\n"
138 "movaps 80(%rsp), %xmm5\n"
139 "movaps 64(%rsp), %xmm4\n"
140 "movaps 48(%rsp), %xmm3\n"
141 "movaps 32(%rsp), %xmm2\n"
142 "movaps 16(%rsp), %xmm1\n"
143 "movaps (%rsp), %xmm0\n"
144 // Restore RSP
145 "movq %rbp, %rsp\n"
Scott Michela28c6bf2007-12-12 02:38:28 +0000146 CFI(".cfi_def_cfa_register %rsp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000147 // Restore all int arg registers
148 "subq $48, %rsp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000149 CFI(".cfi_adjust_cfa_offset 48\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000150 "popq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000151 CFI(".cfi_adjust_cfa_offset -8\n")
152 CFI(".cfi_restore %r9\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000153 "popq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000154 CFI(".cfi_adjust_cfa_offset -8\n")
155 CFI(".cfi_restore %r8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000156 "popq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000157 CFI(".cfi_adjust_cfa_offset -8\n")
158 CFI(".cfi_restore %rcx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000159 "popq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000160 CFI(".cfi_adjust_cfa_offset -8\n")
161 CFI(".cfi_restore %rdx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000162 "popq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000163 CFI(".cfi_adjust_cfa_offset -8\n")
164 CFI(".cfi_restore %rsi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000165 "popq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000166 CFI(".cfi_adjust_cfa_offset -8\n")
167 CFI(".cfi_restore %rdi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000168 // Restore RBP
169 "popq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000170 CFI(".cfi_adjust_cfa_offset -8\n")
171 CFI(".cfi_restore %rbp\n")
Anton Korobeynikov3a7bcc42007-12-10 15:27:07 +0000172 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000173 CFI(".cfi_endproc\n")
Dan Gohman9036d802009-02-06 21:15:52 +0000174 SIZE(X86CompilationCallback)
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000175 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000176# else
Anton Korobeynikov231e9642008-03-23 14:44:32 +0000177 // No inline assembler support on this platform. The routine is in external
178 // file.
179 void X86CompilationCallback();
180
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000181# endif
182#elif defined (X86_32_JIT)
183# ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000184 void X86CompilationCallback(void);
185 asm(
186 ".text\n"
187 ".align 8\n"
Dan Gohman9036d802009-02-06 21:15:52 +0000188 ".globl " ASMPREFIX "X86CompilationCallback\n"
189 TYPE_FUNCTION(X86CompilationCallback)
Chris Lattner40f4ba52006-09-08 17:03:56 +0000190 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000191 CFI(".cfi_startproc\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000192 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000193 CFI(".cfi_def_cfa_offset 8\n")
194 CFI(".cfi_offset %ebp, -8\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000195 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000196 CFI(".cfi_def_cfa_register %ebp\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000197 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000198 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000199 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000200 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000201 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000202 CFI(".cfi_rel_offset %ecx, 8\n")
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000203# if defined(__APPLE__)
Evan Chengda08d2c2006-06-24 08:36:10 +0000204 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000205# endif
Evan Chengbe33dd92006-06-29 01:48:36 +0000206 "subl $16, %esp\n"
207 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
208 "movl %eax, 4(%esp)\n"
209 "movl %ebp, (%esp)\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000210 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000211 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000212 CFI(".cfi_def_cfa_register %esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000213 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000214 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000215 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000216 CFI(".cfi_adjust_cfa_offset -4\n")
217 CFI(".cfi_restore %ecx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000218 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000219 CFI(".cfi_adjust_cfa_offset -4\n")
220 CFI(".cfi_restore %edx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000221 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000222 CFI(".cfi_adjust_cfa_offset -4\n")
223 CFI(".cfi_restore %eax\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000224 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000225 CFI(".cfi_adjust_cfa_offset -4\n")
226 CFI(".cfi_restore %ebp\n")
Anton Korobeynikova14b6692007-12-10 14:54:42 +0000227 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000228 CFI(".cfi_endproc\n")
Dan Gohman9036d802009-02-06 21:15:52 +0000229 SIZE(X86CompilationCallback)
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000230 );
Evan Cheng93b11f82006-10-16 21:01:55 +0000231
232 // Same as X86CompilationCallback but also saves XMM argument registers.
233 void X86CompilationCallback_SSE(void);
234 asm(
235 ".text\n"
236 ".align 8\n"
Dan Gohman9036d802009-02-06 21:15:52 +0000237 ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
238 TYPE_FUNCTION(X86CompilationCallback_SSE)
Evan Cheng93b11f82006-10-16 21:01:55 +0000239 ASMPREFIX "X86CompilationCallback_SSE:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000240 CFI(".cfi_startproc\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000241 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000242 CFI(".cfi_def_cfa_offset 8\n")
243 CFI(".cfi_offset %ebp, -8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000244 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000245 CFI(".cfi_def_cfa_register %ebp\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000246 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000247 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000248 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000249 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000250 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000251 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000252 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
253 // Save all XMM arg registers
254 "subl $64, %esp\n"
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000255 // FIXME: provide frame move information for xmm registers.
256 // This can be tricky, because CFA register is ebp (unaligned)
257 // and we need to produce offsets relative to it.
Evan Cheng93b11f82006-10-16 21:01:55 +0000258 "movaps %xmm0, (%esp)\n"
259 "movaps %xmm1, 16(%esp)\n"
260 "movaps %xmm2, 32(%esp)\n"
261 "movaps %xmm3, 48(%esp)\n"
262 "subl $16, %esp\n"
263 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
264 "movl %eax, 4(%esp)\n"
265 "movl %ebp, (%esp)\n"
Dan Gohmandb7991d2008-06-24 00:50:01 +0000266 "call " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
Evan Cheng93b11f82006-10-16 21:01:55 +0000267 "addl $16, %esp\n"
268 "movaps 48(%esp), %xmm3\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000269 CFI(".cfi_restore %xmm3\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000270 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000271 CFI(".cfi_restore %xmm2\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000272 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000273 CFI(".cfi_restore %xmm1\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000274 "movaps (%esp), %xmm0\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000275 CFI(".cfi_restore %xmm0\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000276 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000277 CFI(".cfi_def_cfa_register esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000278 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000279 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000280 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000281 CFI(".cfi_adjust_cfa_offset -4\n")
282 CFI(".cfi_restore %ecx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000283 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000284 CFI(".cfi_adjust_cfa_offset -4\n")
285 CFI(".cfi_restore %edx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000286 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000287 CFI(".cfi_adjust_cfa_offset -4\n")
288 CFI(".cfi_restore %eax\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000289 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000290 CFI(".cfi_adjust_cfa_offset -4\n")
291 CFI(".cfi_restore %ebp\n")
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000292 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000293 CFI(".cfi_endproc\n")
Dan Gohman9036d802009-02-06 21:15:52 +0000294 SIZE(X86CompilationCallback_SSE)
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000295 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000296# else
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000297 void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000298
299 _declspec(naked) void X86CompilationCallback(void) {
300 __asm {
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000301 push ebp
302 mov ebp, esp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000303 push eax
304 push edx
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000305 push ecx
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000306 and esp, -16
307 mov eax, dword ptr [ebp+4]
308 mov dword ptr [esp+4], eax
309 mov dword ptr [esp], ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000310 call X86CompilationCallback2
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000311 mov esp, ebp
312 sub esp, 12
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000313 pop ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000314 pop edx
315 pop eax
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000316 pop ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000317 ret
318 }
319 }
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000320
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000321# endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +0000322
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000323#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000324 void X86CompilationCallback() {
Torok Edwinc23197a2009-07-14 16:55:14 +0000325 llvm_unreachable("Cannot call X86CompilationCallback() on a non-x86 arch!");
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000326 }
Chris Lattner1030f722005-05-19 06:49:17 +0000327#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000328}
Chris Lattner1030f722005-05-19 06:49:17 +0000329
Dan Gohman9036d802009-02-06 21:15:52 +0000330/// X86CompilationCallback2 - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000331/// function stub when we did not know the real target of a call. This function
332/// must locate the start of the stub or call site and pass it into the JIT
333/// compiler function.
Devang Patel0d885d12008-07-16 17:54:34 +0000334extern "C" void ATTRIBUTE_USED
335X86CompilationCallback2(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.
Evan Cheng25ab6902006-09-08 06:48:29 +0000341 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
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
Bill Wendling0ea8bf32009-08-03 00:11:34 +0000351 DEBUG(errs() << "In callback! Addr=" << (void*)RetAddr
352 << " 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)
Dale Johannesen6f83be02008-08-12 23:20:24 +0000370 if (!isStub)
371 *(intptr_t *)(RetAddr - 0xa) = NewVal;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000372#else
373 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
374#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000375
376 if (isStub) {
377 // If this is a stub, rewrite the call into an unconditional branch
378 // instruction so that two return addresses are not pushed onto the stack
379 // when the requested function finally gets called. This also makes the
380 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000381#if defined (X86_64_JIT)
Dale Johannesen6f83be02008-08-12 23:20:24 +0000382 // If the target address is within 32-bit range of the stub, use a
383 // PC-relative branch instead of loading the actual address. (This is
384 // considerably shorter than the 64-bit immediate load already there.)
385 // We assume here intptr_t is 64 bits.
386 intptr_t diff = NewVal-RetAddr+7;
387 if (diff >= -2147483648LL && diff <= 2147483647LL) {
388 *(unsigned char*)(RetAddr-0xc) = 0xE9;
389 *(intptr_t *)(RetAddr-0xb) = diff & 0xffffffff;
390 } else {
391 *(intptr_t *)(RetAddr - 0xa) = NewVal;
392 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
393 }
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000394#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000395 ((unsigned char*)RetAddr)[-1] = 0xE9;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000396#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000397 }
398
399 // Change the return address to reexecute the call instruction...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000400#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000401 *RetAddrLoc -= 0xd;
402#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000403 *RetAddrLoc -= 5;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000404#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000405}
406
Chris Lattner7ddde322004-11-20 23:54:33 +0000407TargetJITInfo::LazyResolverFn
408X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
409 JITCompilerFunction = F;
Evan Cheng93b11f82006-10-16 21:01:55 +0000410
Evan Chengd0da6ff2009-09-03 04:37:05 +0000411 return Subtarget->hasSSE1()
412 ? X86CompilationCallback_SSE : X86CompilationCallback;
413}
Evan Cheng93b11f82006-10-16 21:01:55 +0000414
Evan Chengd0da6ff2009-09-03 04:37:05 +0000415X86JITInfo::X86JITInfo(X86TargetMachine &tm) : TM(tm) {
416 Subtarget = &TM.getSubtarget<X86Subtarget>();
417 useGOT = 0;
418 TLSOffset = 0;
Chris Lattner7ddde322004-11-20 23:54:33 +0000419}
420
Evan Cheng9ed2f802008-11-10 01:08:07 +0000421void *X86JITInfo::emitGlobalValueIndirectSym(const GlobalValue* GV, void *ptr,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000422 JITCodeEmitter &JCE) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000423#if defined (X86_64_JIT)
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000424 JCE.startGVStub(GV, 8, 8);
425 JCE.emitWordLE((unsigned)(intptr_t)ptr);
426 JCE.emitWordLE((unsigned)(((intptr_t)ptr) >> 32));
Evan Chengbe8c03f2008-01-04 10:46:51 +0000427#else
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000428 JCE.startGVStub(GV, 4, 4);
429 JCE.emitWordLE((intptr_t)ptr);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000430#endif
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000431 return JCE.finishGVStub(GV);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000432}
433
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000434void *X86JITInfo::emitFunctionStub(const Function* F, void *Fn,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000435 JITCodeEmitter &JCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000436 // Note, we cast to intptr_t here to silence a -pedantic warning that
437 // complains about casting a function pointer to a normal pointer.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000438#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng348b00d2006-10-16 22:53:28 +0000439 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
440 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
Evan Chengcf922302006-10-16 23:44:08 +0000441#else
442 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
Evan Cheng348b00d2006-10-16 22:53:28 +0000443#endif
444 if (NotCC) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000445#if defined (X86_64_JIT)
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000446 JCE.startGVStub(F, 13, 4);
447 JCE.emitByte(0x49); // REX prefix
448 JCE.emitByte(0xB8+2); // movabsq r10
449 JCE.emitWordLE((unsigned)(intptr_t)Fn);
450 JCE.emitWordLE((unsigned)(((intptr_t)Fn) >> 32));
451 JCE.emitByte(0x41); // REX prefix
452 JCE.emitByte(0xFF); // jmpq *r10
453 JCE.emitByte(2 | (4 << 3) | (3 << 6));
Evan Cheng8510dc02007-03-14 10:48:08 +0000454#else
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000455 JCE.startGVStub(F, 5, 4);
456 JCE.emitByte(0xE9);
457 JCE.emitWordLE((intptr_t)Fn-JCE.getCurrentPCValue()-4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000458#endif
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000459 return JCE.finishGVStub(F);
Chris Lattner90b1b452004-11-22 22:25:30 +0000460 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000461
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000462#if defined (X86_64_JIT)
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000463 JCE.startGVStub(F, 14, 4);
464 JCE.emitByte(0x49); // REX prefix
465 JCE.emitByte(0xB8+2); // movabsq r10
466 JCE.emitWordLE((unsigned)(intptr_t)Fn);
467 JCE.emitWordLE((unsigned)(((intptr_t)Fn) >> 32));
468 JCE.emitByte(0x41); // REX prefix
469 JCE.emitByte(0xFF); // callq *r10
470 JCE.emitByte(2 | (2 << 3) | (3 << 6));
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000471#else
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000472 JCE.startGVStub(F, 6, 4);
473 JCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
Chris Lattner90b1b452004-11-22 22:25:30 +0000474
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000475 JCE.emitWordLE((intptr_t)Fn-JCE.getCurrentPCValue()-4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000476#endif
Chris Lattner90b1b452004-11-22 22:25:30 +0000477
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000478 JCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
479 return JCE.finishGVStub(F);
Chris Lattner90b1b452004-11-22 22:25:30 +0000480}
Chris Lattner7ddde322004-11-20 23:54:33 +0000481
Nate Begemand6b7a242009-02-18 08:31:02 +0000482void X86JITInfo::emitFunctionStubAtAddr(const Function* F, void *Fn, void *Stub,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000483 JITCodeEmitter &JCE) {
Nate Begemand6b7a242009-02-18 08:31:02 +0000484 // Note, we cast to intptr_t here to silence a -pedantic warning that
485 // complains about casting a function pointer to a normal pointer.
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000486 JCE.startGVStub(F, Stub, 5);
487 JCE.emitByte(0xE9);
Reid Klecknerce4eb392009-08-19 23:39:59 +0000488#if defined (X86_64_JIT) && !defined (NDEBUG)
489 // Yes, we need both of these casts, or some broken versions of GCC (4.2.4)
490 // get the signed-ness of the expression wrong. Go figure.
491 intptr_t Displacement = (intptr_t)Fn - (intptr_t)JCE.getCurrentPCValue() - 5;
492 assert(((Displacement << 32) >> 32) == Displacement
Nate Begemand6b7a242009-02-18 08:31:02 +0000493 && "PIC displacement does not fit in displacement field!");
494#endif
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000495 JCE.emitWordLE((intptr_t)Fn-JCE.getCurrentPCValue()-4);
496 JCE.finishGVStub(F);
Nate Begemand6b7a242009-02-18 08:31:02 +0000497}
498
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000499/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
500/// specific basic block.
Evan Cheng5788d1a2008-12-10 02:32:19 +0000501uintptr_t X86JITInfo::getPICJumpTableEntry(uintptr_t BB, uintptr_t Entry) {
Evan Cheng81fb5fe2008-07-16 01:33:08 +0000502#if defined(X86_64_JIT)
503 return BB - Entry;
504#else
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000505 return BB - PICBase;
Evan Cheng81fb5fe2008-07-16 01:33:08 +0000506#endif
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000507}
508
Chris Lattner7ddde322004-11-20 23:54:33 +0000509/// relocate - Before the JIT can run a block of code that has been emitted,
510/// it must rewrite the code to contain the actual addresses of any
511/// referenced global symbols.
512void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000513 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000514 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
515 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
516 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
517 switch ((X86::RelocationType)MR->getRelocationType()) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000518 case X86::reloc_pcrel_word: {
Chris Lattner7ddde322004-11-20 23:54:33 +0000519 // PC relative relocation, add the relocated value to the value already in
520 // memory, after we adjust it for where the PC is.
Evan Chengaabe38b2007-12-22 09:40:20 +0000521 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
522 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
523 break;
524 }
525 case X86::reloc_picrel_word: {
526 // PIC base relative relocation, add the relocated value to the value
527 // already in memory, after we adjust it for where the PIC base is.
528 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
Evan Cheng25ab6902006-09-08 06:48:29 +0000529 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000530 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000531 }
Chris Lattner7ddde322004-11-20 23:54:33 +0000532 case X86::reloc_absolute_word:
Bruno Cardoso Lopese55fef32009-08-05 00:11:21 +0000533 case X86::reloc_absolute_word_sext:
Chris Lattner7ddde322004-11-20 23:54:33 +0000534 // Absolute relocation, just add the relocated value to the value already
535 // in memory.
Evan Cheng25ab6902006-09-08 06:48:29 +0000536 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000537 break;
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000538 case X86::reloc_absolute_dword:
539 *((intptr_t*)RelocPos) += ResultPtr;
540 break;
Chris Lattner7ddde322004-11-20 23:54:33 +0000541 }
542 }
543}
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000544
545char* X86JITInfo::allocateThreadLocalMemory(size_t size) {
546#if defined(X86_32_JIT) && !defined(__APPLE__) && !defined(_MSC_VER)
547 TLSOffset -= size;
548 return TLSOffset;
549#else
Torok Edwinc23197a2009-07-14 16:55:14 +0000550 llvm_unreachable("Cannot allocate thread local storage on this arch!");
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000551 return 0;
552#endif
553}