blob: 0ca93d9e92fff26e8f59fcaeb142b0b38a7ccba3 [file] [log] [blame]
Chris Lattner7ddde322004-11-20 23:54:33 +00001//===-- X86JITInfo.cpp - Implement the JIT interfaces for the X86 target --===//
Misha Brukman0e0a7a452005-04-21 23:38:14 +00002//
Chris Lattner7ddde322004-11-20 23:54:33 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman0e0a7a452005-04-21 23:38:14 +00007//
Chris Lattner7ddde322004-11-20 23:54:33 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the JIT interfaces for the X86 target.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "jit"
15#include "X86JITInfo.h"
16#include "X86Relocations.h"
Evan Cheng93b11f82006-10-16 21:01:55 +000017#include "X86Subtarget.h"
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +000018#include "llvm/Function.h"
Chris Lattner7ddde322004-11-20 23:54:33 +000019#include "llvm/CodeGen/MachineCodeEmitter.h"
20#include "llvm/Config/alloca.h"
Nate Begemanbe136342005-05-20 21:29:24 +000021#include <cstdlib>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000022#include <cstring>
Chris Lattner7ddde322004-11-20 23:54:33 +000023using namespace llvm;
24
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000025// Determine the platform we're running on
26#if defined (__x86_64__) || defined (_M_AMD64)
27# define X86_64_JIT
28#elif defined(__i386__) || defined(i386) || defined(_M_IX86)
29# define X86_32_JIT
Chris Lattner38f73732006-01-26 19:55:20 +000030#endif
31
Chris Lattner7ddde322004-11-20 23:54:33 +000032void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
33 unsigned char *OldByte = (unsigned char *)Old;
34 *OldByte++ = 0xE9; // Emit JMP opcode.
35 unsigned *OldWord = (unsigned *)OldByte;
36 unsigned NewAddr = (intptr_t)New;
37 unsigned OldAddr = (intptr_t)OldWord;
38 *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
39}
40
41
Chris Lattner7ddde322004-11-20 23:54:33 +000042/// JITCompilerFunction - This contains the address of the JIT function used to
43/// compile a function lazily.
44static TargetJITInfo::JITCompilerFn JITCompilerFunction;
45
Chris Lattner40f4ba52006-09-08 17:03:56 +000046// Get the ASMPREFIX for the current host. This is often '_'.
47#ifndef __USER_LABEL_PREFIX__
48#define __USER_LABEL_PREFIX__
49#endif
50#define GETASMPREFIX2(X) #X
51#define GETASMPREFIX(X) GETASMPREFIX2(X)
52#define ASMPREFIX GETASMPREFIX(__USER_LABEL_PREFIX__)
53
Anton Korobeynikov7eb58772007-12-10 23:10:20 +000054// Provide a convenient way for disabling usage of CFI directives.
Anton Korobeynikov2fb9dee2007-12-10 23:08:35 +000055// This is needed for old/broken assemblers (for example, gas on
56// Darwin is pretty old and doesn't support these directives)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000057#if defined(__APPLE__)
58# define CFI(x)
59#else
Anton Korobeynikov144a45e2007-12-22 20:41:12 +000060// FIXME: Disable this until we really want to use it. Also, we will
61// need to add some workarounds for compilers, which support
62// only subset of these directives.
Anton Korobeynikovd07310a2007-12-22 20:46:24 +000063# define CFI(x)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000064#endif
65
Chris Lattner1030f722005-05-19 06:49:17 +000066// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
67// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000068extern "C" {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000069#if defined(X86_64_JIT)
70# ifndef _MSC_VER
Evan Cheng25ab6902006-09-08 06:48:29 +000071 // No need to save EAX/EDX for X86-64.
72 void X86CompilationCallback(void);
73 asm(
74 ".text\n"
75 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +000076 ".globl " ASMPREFIX "X86CompilationCallback\n"
77 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000078 CFI(".cfi_startproc\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000079 // Save RBP
80 "pushq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000081 CFI(".cfi_def_cfa_offset 16\n")
82 CFI(".cfi_offset %rbp, -16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000083 // Save RSP
84 "movq %rsp, %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000085 CFI(".cfi_def_cfa_register %rbp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000086 // Save all int arg registers
87 "pushq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000088 CFI(".cfi_rel_offset %rdi, 0\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000089 "pushq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000090 CFI(".cfi_rel_offset %rsi, 8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000091 "pushq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000092 CFI(".cfi_rel_offset %rdx, 16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000093 "pushq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000094 CFI(".cfi_rel_offset %rcx, 24\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000095 "pushq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000096 CFI(".cfi_rel_offset %r8, 32\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000097 "pushq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000098 CFI(".cfi_rel_offset %r9, 40\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000099 // Align stack on 16-byte boundary. ESP might not be properly aligned
100 // (8 byte) if this is called from an indirect stub.
101 "andq $-16, %rsp\n"
102 // Save all XMM arg registers
103 "subq $128, %rsp\n"
104 "movaps %xmm0, (%rsp)\n"
105 "movaps %xmm1, 16(%rsp)\n"
106 "movaps %xmm2, 32(%rsp)\n"
107 "movaps %xmm3, 48(%rsp)\n"
108 "movaps %xmm4, 64(%rsp)\n"
109 "movaps %xmm5, 80(%rsp)\n"
110 "movaps %xmm6, 96(%rsp)\n"
111 "movaps %xmm7, 112(%rsp)\n"
112 // JIT callee
113 "movq %rbp, %rdi\n" // Pass prev frame and return address
114 "movq 8(%rbp), %rsi\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000115 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000116 // Restore all XMM arg registers
117 "movaps 112(%rsp), %xmm7\n"
118 "movaps 96(%rsp), %xmm6\n"
119 "movaps 80(%rsp), %xmm5\n"
120 "movaps 64(%rsp), %xmm4\n"
121 "movaps 48(%rsp), %xmm3\n"
122 "movaps 32(%rsp), %xmm2\n"
123 "movaps 16(%rsp), %xmm1\n"
124 "movaps (%rsp), %xmm0\n"
125 // Restore RSP
126 "movq %rbp, %rsp\n"
Scott Michela28c6bf2007-12-12 02:38:28 +0000127 CFI(".cfi_def_cfa_register %rsp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000128 // Restore all int arg registers
129 "subq $48, %rsp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000130 CFI(".cfi_adjust_cfa_offset 48\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000131 "popq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000132 CFI(".cfi_adjust_cfa_offset -8\n")
133 CFI(".cfi_restore %r9\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000134 "popq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000135 CFI(".cfi_adjust_cfa_offset -8\n")
136 CFI(".cfi_restore %r8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000137 "popq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000138 CFI(".cfi_adjust_cfa_offset -8\n")
139 CFI(".cfi_restore %rcx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000140 "popq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000141 CFI(".cfi_adjust_cfa_offset -8\n")
142 CFI(".cfi_restore %rdx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000143 "popq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000144 CFI(".cfi_adjust_cfa_offset -8\n")
145 CFI(".cfi_restore %rsi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000146 "popq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000147 CFI(".cfi_adjust_cfa_offset -8\n")
148 CFI(".cfi_restore %rdi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000149 // Restore RBP
150 "popq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000151 CFI(".cfi_adjust_cfa_offset -8\n")
152 CFI(".cfi_restore %rbp\n")
Anton Korobeynikov3a7bcc42007-12-10 15:27:07 +0000153 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000154 CFI(".cfi_endproc\n")
155 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000156# else
Anton Korobeynikov231e9642008-03-23 14:44:32 +0000157 // No inline assembler support on this platform. The routine is in external
158 // file.
159 void X86CompilationCallback();
160
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000161# endif
162#elif defined (X86_32_JIT)
163# ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000164 void X86CompilationCallback(void);
165 asm(
166 ".text\n"
167 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000168 ".globl " ASMPREFIX "X86CompilationCallback\n"
169 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000170 CFI(".cfi_startproc\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000171 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000172 CFI(".cfi_def_cfa_offset 8\n")
173 CFI(".cfi_offset %ebp, -8\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000174 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000175 CFI(".cfi_def_cfa_register %ebp\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000176 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000177 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000178 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000179 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000180 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000181 CFI(".cfi_rel_offset %ecx, 8\n")
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000182# if defined(__APPLE__)
Evan Chengda08d2c2006-06-24 08:36:10 +0000183 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000184# endif
Evan Chengbe33dd92006-06-29 01:48:36 +0000185 "subl $16, %esp\n"
186 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
187 "movl %eax, 4(%esp)\n"
188 "movl %ebp, (%esp)\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000189 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000190 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000191 CFI(".cfi_def_cfa_register %esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000192 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000193 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000194 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000195 CFI(".cfi_adjust_cfa_offset -4\n")
196 CFI(".cfi_restore %ecx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000197 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000198 CFI(".cfi_adjust_cfa_offset -4\n")
199 CFI(".cfi_restore %edx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000200 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000201 CFI(".cfi_adjust_cfa_offset -4\n")
202 CFI(".cfi_restore %eax\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000203 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000204 CFI(".cfi_adjust_cfa_offset -4\n")
205 CFI(".cfi_restore %ebp\n")
Anton Korobeynikova14b6692007-12-10 14:54:42 +0000206 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000207 CFI(".cfi_endproc\n")
208 );
Evan Cheng93b11f82006-10-16 21:01:55 +0000209
210 // Same as X86CompilationCallback but also saves XMM argument registers.
211 void X86CompilationCallback_SSE(void);
212 asm(
213 ".text\n"
214 ".align 8\n"
215 ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
216 ASMPREFIX "X86CompilationCallback_SSE:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000217 CFI(".cfi_startproc\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000218 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000219 CFI(".cfi_def_cfa_offset 8\n")
220 CFI(".cfi_offset %ebp, -8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000221 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000222 CFI(".cfi_def_cfa_register %ebp\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000223 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000224 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000225 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000226 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000227 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000228 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000229 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
230 // Save all XMM arg registers
231 "subl $64, %esp\n"
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000232 // FIXME: provide frame move information for xmm registers.
233 // This can be tricky, because CFA register is ebp (unaligned)
234 // and we need to produce offsets relative to it.
Evan Cheng93b11f82006-10-16 21:01:55 +0000235 "movaps %xmm0, (%esp)\n"
236 "movaps %xmm1, 16(%esp)\n"
237 "movaps %xmm2, 32(%esp)\n"
238 "movaps %xmm3, 48(%esp)\n"
239 "subl $16, %esp\n"
240 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
241 "movl %eax, 4(%esp)\n"
242 "movl %ebp, (%esp)\n"
243 "call " ASMPREFIX "X86CompilationCallback2\n"
244 "addl $16, %esp\n"
245 "movaps 48(%esp), %xmm3\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000246 CFI(".cfi_restore %xmm3\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000247 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000248 CFI(".cfi_restore %xmm2\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000249 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000250 CFI(".cfi_restore %xmm1\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000251 "movaps (%esp), %xmm0\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000252 CFI(".cfi_restore %xmm0\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000253 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000254 CFI(".cfi_def_cfa_register esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000255 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000256 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000257 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000258 CFI(".cfi_adjust_cfa_offset -4\n")
259 CFI(".cfi_restore %ecx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000260 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000261 CFI(".cfi_adjust_cfa_offset -4\n")
262 CFI(".cfi_restore %edx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000263 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000264 CFI(".cfi_adjust_cfa_offset -4\n")
265 CFI(".cfi_restore %eax\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000266 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000267 CFI(".cfi_adjust_cfa_offset -4\n")
268 CFI(".cfi_restore %ebp\n")
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000269 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000270 CFI(".cfi_endproc\n")
271 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000272# else
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000273 void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000274
275 _declspec(naked) void X86CompilationCallback(void) {
276 __asm {
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000277 push ebp
278 mov ebp, esp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000279 push eax
280 push edx
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000281 push ecx
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000282 and esp, -16
283 mov eax, dword ptr [ebp+4]
284 mov dword ptr [esp+4], eax
285 mov dword ptr [esp], ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000286 call X86CompilationCallback2
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000287 mov esp, ebp
288 sub esp, 12
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000289 pop ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000290 pop edx
291 pop eax
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000292 pop ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000293 ret
294 }
295 }
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000296
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000297# endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +0000298
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000299#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000300 void X86CompilationCallback() {
Bill Wendling6345d752006-11-17 07:52:03 +0000301 assert(0 && "Cannot call X86CompilationCallback() on a non-x86 arch!\n");
Chris Lattner170fbcb2005-05-20 17:00:21 +0000302 abort();
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000303 }
Chris Lattner1030f722005-05-19 06:49:17 +0000304#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000305}
Chris Lattner1030f722005-05-19 06:49:17 +0000306
307/// X86CompilationCallback - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000308/// function stub when we did not know the real target of a call. This function
309/// must locate the start of the stub or call site and pass it into the JIT
310/// compiler function.
Evan Chengbe33dd92006-06-29 01:48:36 +0000311extern "C" void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
312 intptr_t *RetAddrLoc = &StackPtr[1];
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000313 assert(*RetAddrLoc == RetAddr &&
Chris Lattner7ddde322004-11-20 23:54:33 +0000314 "Could not find return address on the stack!");
315
316 // It's a stub if there is an interrupt marker after the call.
Evan Cheng25ab6902006-09-08 06:48:29 +0000317 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
Chris Lattner7ddde322004-11-20 23:54:33 +0000318
319 // The call instruction should have pushed the return value onto the stack...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000320#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000321 RetAddr--; // Backtrack to the reference itself...
322#else
Chris Lattner7ddde322004-11-20 23:54:33 +0000323 RetAddr -= 4; // Backtrack to the reference itself...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000324#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000325
326#if 0
Bill Wendling6345d752006-11-17 07:52:03 +0000327 DOUT << "In callback! Addr=" << (void*)RetAddr
328 << " ESP=" << (void*)StackPtr
329 << ": Resolving call to function: "
330 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n";
Chris Lattner7ddde322004-11-20 23:54:33 +0000331#endif
332
333 // Sanity check to make sure this really is a call instruction.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000334#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000335 assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
336 assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
337#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000338 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000339#endif
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000340
Evan Cheng25ab6902006-09-08 06:48:29 +0000341 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
Chris Lattner7ddde322004-11-20 23:54:33 +0000342
343 // Rewrite the call target... so that we don't end up here every time we
344 // execute the call.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000345#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000346 *(intptr_t *)(RetAddr - 0xa) = NewVal;
347#else
348 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
349#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000350
351 if (isStub) {
352 // If this is a stub, rewrite the call into an unconditional branch
353 // instruction so that two return addresses are not pushed onto the stack
354 // when the requested function finally gets called. This also makes the
355 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000356#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000357 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
358#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000359 ((unsigned char*)RetAddr)[-1] = 0xE9;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000360#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000361 }
362
363 // Change the return address to reexecute the call instruction...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000364#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000365 *RetAddrLoc -= 0xd;
366#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000367 *RetAddrLoc -= 5;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000368#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000369}
370
Chris Lattner7ddde322004-11-20 23:54:33 +0000371TargetJITInfo::LazyResolverFn
372X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
373 JITCompilerFunction = F;
Evan Cheng93b11f82006-10-16 21:01:55 +0000374
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000375#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng93b11f82006-10-16 21:01:55 +0000376 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
377 union {
378 unsigned u[3];
379 char c[12];
380 } text;
381
382 if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
383 // FIXME: support for AMD family of processors.
384 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
385 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
386 if ((EDX >> 25) & 0x1)
387 return X86CompilationCallback_SSE;
388 }
389 }
Evan Cheng348b00d2006-10-16 22:53:28 +0000390#endif
Evan Cheng93b11f82006-10-16 21:01:55 +0000391
Chris Lattner1030f722005-05-19 06:49:17 +0000392 return X86CompilationCallback;
Chris Lattner7ddde322004-11-20 23:54:33 +0000393}
394
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000395void *X86JITInfo::emitGlobalValueLazyPtr(const GlobalValue* GV, void *ptr,
396 MachineCodeEmitter &MCE) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000397#if defined (X86_64_JIT)
Dale Johannesen5e8fb812008-04-16 22:24:33 +0000398 MCE.startFunctionStub(GV, 8, 8);
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000399 MCE.emitWordLE(((unsigned *)&ptr)[0]);
400 MCE.emitWordLE(((unsigned *)&ptr)[1]);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000401#else
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000402 MCE.startFunctionStub(GV, 4, 4);
403 MCE.emitWordLE((intptr_t)ptr);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000404#endif
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000405 return MCE.finishFunctionStub(GV);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000406}
407
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000408void *X86JITInfo::emitFunctionStub(const Function* F, void *Fn,
409 MachineCodeEmitter &MCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000410 // Note, we cast to intptr_t here to silence a -pedantic warning that
411 // complains about casting a function pointer to a normal pointer.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000412#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng348b00d2006-10-16 22:53:28 +0000413 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
414 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
Evan Chengcf922302006-10-16 23:44:08 +0000415#else
416 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
Evan Cheng348b00d2006-10-16 22:53:28 +0000417#endif
418 if (NotCC) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000419#if defined (X86_64_JIT)
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000420 MCE.startFunctionStub(F, 13, 4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000421 MCE.emitByte(0x49); // REX prefix
422 MCE.emitByte(0xB8+2); // movabsq r10
423 MCE.emitWordLE(((unsigned *)&Fn)[0]);
424 MCE.emitWordLE(((unsigned *)&Fn)[1]);
425 MCE.emitByte(0x41); // REX prefix
426 MCE.emitByte(0xFF); // jmpq *r10
427 MCE.emitByte(2 | (4 << 3) | (3 << 6));
428#else
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000429 MCE.startFunctionStub(F, 5, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000430 MCE.emitByte(0xE9);
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000431 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000432#endif
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000433 return MCE.finishFunctionStub(F);
Chris Lattner90b1b452004-11-22 22:25:30 +0000434 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000435
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000436#if defined (X86_64_JIT)
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000437 MCE.startFunctionStub(F, 14, 4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000438 MCE.emitByte(0x49); // REX prefix
439 MCE.emitByte(0xB8+2); // movabsq r10
440 MCE.emitWordLE(((unsigned *)&Fn)[0]);
441 MCE.emitWordLE(((unsigned *)&Fn)[1]);
442 MCE.emitByte(0x41); // REX prefix
443 MCE.emitByte(0xFF); // callq *r10
444 MCE.emitByte(2 | (2 << 3) | (3 << 6));
445#else
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000446 MCE.startFunctionStub(F, 6, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000447 MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
448
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000449 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000450#endif
Chris Lattner90b1b452004-11-22 22:25:30 +0000451
452 MCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000453 return MCE.finishFunctionStub(F);
Chris Lattner90b1b452004-11-22 22:25:30 +0000454}
Chris Lattner7ddde322004-11-20 23:54:33 +0000455
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000456/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
457/// specific basic block.
458intptr_t X86JITInfo::getPICJumpTableEntry(intptr_t BB, intptr_t Entry) {
459 return BB - PICBase;
460}
461
Chris Lattner7ddde322004-11-20 23:54:33 +0000462/// relocate - Before the JIT can run a block of code that has been emitted,
463/// it must rewrite the code to contain the actual addresses of any
464/// referenced global symbols.
465void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000466 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000467 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
468 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
469 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
470 switch ((X86::RelocationType)MR->getRelocationType()) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000471 case X86::reloc_pcrel_word: {
Chris Lattner7ddde322004-11-20 23:54:33 +0000472 // PC relative relocation, add the relocated value to the value already in
473 // memory, after we adjust it for where the PC is.
Evan Chengaabe38b2007-12-22 09:40:20 +0000474 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
475 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
476 break;
477 }
478 case X86::reloc_picrel_word: {
479 // PIC base relative relocation, add the relocated value to the value
480 // already in memory, after we adjust it for where the PIC base is.
481 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
Evan Cheng25ab6902006-09-08 06:48:29 +0000482 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000483 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000484 }
Chris Lattner7ddde322004-11-20 23:54:33 +0000485 case X86::reloc_absolute_word:
486 // Absolute relocation, just add the relocated value to the value already
487 // in memory.
Evan Cheng25ab6902006-09-08 06:48:29 +0000488 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000489 break;
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000490 case X86::reloc_absolute_dword:
491 *((intptr_t*)RelocPos) += ResultPtr;
492 break;
Chris Lattner7ddde322004-11-20 23:54:33 +0000493 }
494 }
495}