blob: 5d942a1768e45226e63de518ab8b625c626e7ebf [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"
Chris Lattner7ddde322004-11-20 23:54:33 +000018#include "llvm/CodeGen/MachineCodeEmitter.h"
19#include "llvm/Config/alloca.h"
Nate Begemanbe136342005-05-20 21:29:24 +000020#include <cstdlib>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000021#include <cstring>
Chris Lattner7ddde322004-11-20 23:54:33 +000022using namespace llvm;
23
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000024// Determine the platform we're running on
25#if defined (__x86_64__) || defined (_M_AMD64)
26# define X86_64_JIT
27#elif defined(__i386__) || defined(i386) || defined(_M_IX86)
28# define X86_32_JIT
Chris Lattner38f73732006-01-26 19:55:20 +000029#endif
30
Chris Lattner7ddde322004-11-20 23:54:33 +000031void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
32 unsigned char *OldByte = (unsigned char *)Old;
33 *OldByte++ = 0xE9; // Emit JMP opcode.
34 unsigned *OldWord = (unsigned *)OldByte;
35 unsigned NewAddr = (intptr_t)New;
36 unsigned OldAddr = (intptr_t)OldWord;
37 *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
38}
39
40
Chris Lattner7ddde322004-11-20 23:54:33 +000041/// JITCompilerFunction - This contains the address of the JIT function used to
42/// compile a function lazily.
43static TargetJITInfo::JITCompilerFn JITCompilerFunction;
44
Chris Lattner40f4ba52006-09-08 17:03:56 +000045// Get the ASMPREFIX for the current host. This is often '_'.
46#ifndef __USER_LABEL_PREFIX__
47#define __USER_LABEL_PREFIX__
48#endif
49#define GETASMPREFIX2(X) #X
50#define GETASMPREFIX(X) GETASMPREFIX2(X)
51#define ASMPREFIX GETASMPREFIX(__USER_LABEL_PREFIX__)
52
Anton Korobeynikov7eb58772007-12-10 23:10:20 +000053// Provide a convenient way for disabling usage of CFI directives.
Anton Korobeynikov2fb9dee2007-12-10 23:08:35 +000054// This is needed for old/broken assemblers (for example, gas on
55// Darwin is pretty old and doesn't support these directives)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000056#if defined(__APPLE__)
57# define CFI(x)
58#else
Anton Korobeynikov144a45e2007-12-22 20:41:12 +000059// FIXME: Disable this until we really want to use it. Also, we will
60// need to add some workarounds for compilers, which support
61// only subset of these directives.
Anton Korobeynikovd07310a2007-12-22 20:46:24 +000062# define CFI(x)
Anton Korobeynikov5f682872007-12-10 23:04:38 +000063#endif
64
Chris Lattner1030f722005-05-19 06:49:17 +000065// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
66// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000067extern "C" {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +000068#if defined(X86_64_JIT)
69# ifndef _MSC_VER
Evan Cheng25ab6902006-09-08 06:48:29 +000070 // No need to save EAX/EDX for X86-64.
71 void X86CompilationCallback(void);
72 asm(
73 ".text\n"
74 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +000075 ".globl " ASMPREFIX "X86CompilationCallback\n"
76 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000077 CFI(".cfi_startproc\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000078 // Save RBP
79 "pushq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000080 CFI(".cfi_def_cfa_offset 16\n")
81 CFI(".cfi_offset %rbp, -16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000082 // Save RSP
83 "movq %rsp, %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000084 CFI(".cfi_def_cfa_register %rbp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000085 // Save all int arg registers
86 "pushq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000087 CFI(".cfi_rel_offset %rdi, 0\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000088 "pushq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000089 CFI(".cfi_rel_offset %rsi, 8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000090 "pushq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000091 CFI(".cfi_rel_offset %rdx, 16\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000092 "pushq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000093 CFI(".cfi_rel_offset %rcx, 24\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000094 "pushq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000095 CFI(".cfi_rel_offset %r8, 32\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000096 "pushq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +000097 CFI(".cfi_rel_offset %r9, 40\n")
Evan Cheng25ab6902006-09-08 06:48:29 +000098 // Align stack on 16-byte boundary. ESP might not be properly aligned
99 // (8 byte) if this is called from an indirect stub.
100 "andq $-16, %rsp\n"
101 // Save all XMM arg registers
102 "subq $128, %rsp\n"
103 "movaps %xmm0, (%rsp)\n"
104 "movaps %xmm1, 16(%rsp)\n"
105 "movaps %xmm2, 32(%rsp)\n"
106 "movaps %xmm3, 48(%rsp)\n"
107 "movaps %xmm4, 64(%rsp)\n"
108 "movaps %xmm5, 80(%rsp)\n"
109 "movaps %xmm6, 96(%rsp)\n"
110 "movaps %xmm7, 112(%rsp)\n"
111 // JIT callee
112 "movq %rbp, %rdi\n" // Pass prev frame and return address
113 "movq 8(%rbp), %rsi\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000114 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Cheng25ab6902006-09-08 06:48:29 +0000115 // Restore all XMM arg registers
116 "movaps 112(%rsp), %xmm7\n"
117 "movaps 96(%rsp), %xmm6\n"
118 "movaps 80(%rsp), %xmm5\n"
119 "movaps 64(%rsp), %xmm4\n"
120 "movaps 48(%rsp), %xmm3\n"
121 "movaps 32(%rsp), %xmm2\n"
122 "movaps 16(%rsp), %xmm1\n"
123 "movaps (%rsp), %xmm0\n"
124 // Restore RSP
125 "movq %rbp, %rsp\n"
Scott Michela28c6bf2007-12-12 02:38:28 +0000126 CFI(".cfi_def_cfa_register %rsp\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000127 // Restore all int arg registers
128 "subq $48, %rsp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000129 CFI(".cfi_adjust_cfa_offset 48\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000130 "popq %r9\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000131 CFI(".cfi_adjust_cfa_offset -8\n")
132 CFI(".cfi_restore %r9\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000133 "popq %r8\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000134 CFI(".cfi_adjust_cfa_offset -8\n")
135 CFI(".cfi_restore %r8\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000136 "popq %rcx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000137 CFI(".cfi_adjust_cfa_offset -8\n")
138 CFI(".cfi_restore %rcx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000139 "popq %rdx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000140 CFI(".cfi_adjust_cfa_offset -8\n")
141 CFI(".cfi_restore %rdx\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000142 "popq %rsi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000143 CFI(".cfi_adjust_cfa_offset -8\n")
144 CFI(".cfi_restore %rsi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000145 "popq %rdi\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000146 CFI(".cfi_adjust_cfa_offset -8\n")
147 CFI(".cfi_restore %rdi\n")
Evan Cheng25ab6902006-09-08 06:48:29 +0000148 // Restore RBP
149 "popq %rbp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000150 CFI(".cfi_adjust_cfa_offset -8\n")
151 CFI(".cfi_restore %rbp\n")
Anton Korobeynikov3a7bcc42007-12-10 15:27:07 +0000152 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000153 CFI(".cfi_endproc\n")
154 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000155# else
Anton Korobeynikov231e9642008-03-23 14:44:32 +0000156 // No inline assembler support on this platform. The routine is in external
157 // file.
158 void X86CompilationCallback();
159
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000160# endif
161#elif defined (X86_32_JIT)
162# ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000163 void X86CompilationCallback(void);
164 asm(
165 ".text\n"
166 ".align 8\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000167 ".globl " ASMPREFIX "X86CompilationCallback\n"
168 ASMPREFIX "X86CompilationCallback:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000169 CFI(".cfi_startproc\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000170 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000171 CFI(".cfi_def_cfa_offset 8\n")
172 CFI(".cfi_offset %ebp, -8\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000173 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000174 CFI(".cfi_def_cfa_register %ebp\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000175 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000176 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000177 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000178 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000179 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000180 CFI(".cfi_rel_offset %ecx, 8\n")
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000181# if defined(__APPLE__)
Evan Chengda08d2c2006-06-24 08:36:10 +0000182 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000183# endif
Evan Chengbe33dd92006-06-29 01:48:36 +0000184 "subl $16, %esp\n"
185 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
186 "movl %eax, 4(%esp)\n"
187 "movl %ebp, (%esp)\n"
Chris Lattner40f4ba52006-09-08 17:03:56 +0000188 "call " ASMPREFIX "X86CompilationCallback2\n"
Evan Chengda08d2c2006-06-24 08:36:10 +0000189 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000190 CFI(".cfi_def_cfa_register %esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000191 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000192 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000193 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000194 CFI(".cfi_adjust_cfa_offset -4\n")
195 CFI(".cfi_restore %ecx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000196 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000197 CFI(".cfi_adjust_cfa_offset -4\n")
198 CFI(".cfi_restore %edx\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000199 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000200 CFI(".cfi_adjust_cfa_offset -4\n")
201 CFI(".cfi_restore %eax\n")
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000202 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000203 CFI(".cfi_adjust_cfa_offset -4\n")
204 CFI(".cfi_restore %ebp\n")
Anton Korobeynikova14b6692007-12-10 14:54:42 +0000205 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000206 CFI(".cfi_endproc\n")
207 );
Evan Cheng93b11f82006-10-16 21:01:55 +0000208
209 // Same as X86CompilationCallback but also saves XMM argument registers.
210 void X86CompilationCallback_SSE(void);
211 asm(
212 ".text\n"
213 ".align 8\n"
214 ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
215 ASMPREFIX "X86CompilationCallback_SSE:\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000216 CFI(".cfi_startproc\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000217 "pushl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000218 CFI(".cfi_def_cfa_offset 8\n")
219 CFI(".cfi_offset %ebp, -8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000220 "movl %esp, %ebp\n" // Standard prologue
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000221 CFI(".cfi_def_cfa_register %ebp\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000222 "pushl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000223 CFI(".cfi_rel_offset %eax, 0\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000224 "pushl %edx\n" // Save EAX/EDX/ECX
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000225 CFI(".cfi_rel_offset %edx, 4\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000226 "pushl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000227 CFI(".cfi_rel_offset %ecx, 8\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000228 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
229 // Save all XMM arg registers
230 "subl $64, %esp\n"
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000231 // FIXME: provide frame move information for xmm registers.
232 // This can be tricky, because CFA register is ebp (unaligned)
233 // and we need to produce offsets relative to it.
Evan Cheng93b11f82006-10-16 21:01:55 +0000234 "movaps %xmm0, (%esp)\n"
235 "movaps %xmm1, 16(%esp)\n"
236 "movaps %xmm2, 32(%esp)\n"
237 "movaps %xmm3, 48(%esp)\n"
238 "subl $16, %esp\n"
239 "movl 4(%ebp), %eax\n" // Pass prev frame and return address
240 "movl %eax, 4(%esp)\n"
241 "movl %ebp, (%esp)\n"
242 "call " ASMPREFIX "X86CompilationCallback2\n"
243 "addl $16, %esp\n"
244 "movaps 48(%esp), %xmm3\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000245 CFI(".cfi_restore %xmm3\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000246 "movaps 32(%esp), %xmm2\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000247 CFI(".cfi_restore %xmm2\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000248 "movaps 16(%esp), %xmm1\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000249 CFI(".cfi_restore %xmm1\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000250 "movaps (%esp), %xmm0\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000251 CFI(".cfi_restore %xmm0\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000252 "movl %ebp, %esp\n" // Restore ESP
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000253 CFI(".cfi_def_cfa_register esp\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000254 "subl $12, %esp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000255 CFI(".cfi_adjust_cfa_offset 12\n")
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000256 "popl %ecx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000257 CFI(".cfi_adjust_cfa_offset -4\n")
258 CFI(".cfi_restore %ecx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000259 "popl %edx\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000260 CFI(".cfi_adjust_cfa_offset -4\n")
261 CFI(".cfi_restore %edx\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000262 "popl %eax\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000263 CFI(".cfi_adjust_cfa_offset -4\n")
264 CFI(".cfi_restore %eax\n")
Evan Cheng93b11f82006-10-16 21:01:55 +0000265 "popl %ebp\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000266 CFI(".cfi_adjust_cfa_offset -4\n")
267 CFI(".cfi_restore %ebp\n")
Anton Korobeynikovdf7814c2007-12-10 15:13:55 +0000268 "ret\n"
Anton Korobeynikov5f682872007-12-10 23:04:38 +0000269 CFI(".cfi_endproc\n")
270 );
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000271# else
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000272 void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000273
274 _declspec(naked) void X86CompilationCallback(void) {
275 __asm {
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000276 push ebp
277 mov ebp, esp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000278 push eax
279 push edx
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000280 push ecx
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000281 and esp, -16
282 mov eax, dword ptr [ebp+4]
283 mov dword ptr [esp+4], eax
284 mov dword ptr [esp], ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000285 call X86CompilationCallback2
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000286 mov esp, ebp
287 sub esp, 12
Anton Korobeynikov1620f1a2007-01-29 21:28:01 +0000288 pop ecx
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000289 pop edx
290 pop eax
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000291 pop ebp
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000292 ret
293 }
294 }
Anton Korobeynikov6aeedfd2008-03-23 12:32:54 +0000295
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000296# endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +0000297
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000298#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000299 void X86CompilationCallback() {
Bill Wendling6345d752006-11-17 07:52:03 +0000300 assert(0 && "Cannot call X86CompilationCallback() on a non-x86 arch!\n");
Chris Lattner170fbcb2005-05-20 17:00:21 +0000301 abort();
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000302 }
Chris Lattner1030f722005-05-19 06:49:17 +0000303#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000304}
Chris Lattner1030f722005-05-19 06:49:17 +0000305
306/// X86CompilationCallback - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000307/// function stub when we did not know the real target of a call. This function
308/// must locate the start of the stub or call site and pass it into the JIT
309/// compiler function.
Evan Chengbe33dd92006-06-29 01:48:36 +0000310extern "C" void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
311 intptr_t *RetAddrLoc = &StackPtr[1];
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000312 assert(*RetAddrLoc == RetAddr &&
Chris Lattner7ddde322004-11-20 23:54:33 +0000313 "Could not find return address on the stack!");
314
315 // It's a stub if there is an interrupt marker after the call.
Evan Cheng25ab6902006-09-08 06:48:29 +0000316 bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
Chris Lattner7ddde322004-11-20 23:54:33 +0000317
318 // The call instruction should have pushed the return value onto the stack...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000319#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000320 RetAddr--; // Backtrack to the reference itself...
321#else
Chris Lattner7ddde322004-11-20 23:54:33 +0000322 RetAddr -= 4; // Backtrack to the reference itself...
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000323#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000324
325#if 0
Bill Wendling6345d752006-11-17 07:52:03 +0000326 DOUT << "In callback! Addr=" << (void*)RetAddr
327 << " ESP=" << (void*)StackPtr
328 << ": Resolving call to function: "
329 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n";
Chris Lattner7ddde322004-11-20 23:54:33 +0000330#endif
331
332 // Sanity check to make sure this really is a call instruction.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000333#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000334 assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
335 assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
336#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000337 assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000338#endif
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000339
Evan Cheng25ab6902006-09-08 06:48:29 +0000340 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
Chris Lattner7ddde322004-11-20 23:54:33 +0000341
342 // Rewrite the call target... so that we don't end up here every time we
343 // execute the call.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000344#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000345 *(intptr_t *)(RetAddr - 0xa) = NewVal;
346#else
347 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
348#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000349
350 if (isStub) {
351 // If this is a stub, rewrite the call into an unconditional branch
352 // instruction so that two return addresses are not pushed onto the stack
353 // when the requested function finally gets called. This also makes the
354 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000355#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000356 ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
357#else
Evan Cheng25ab6902006-09-08 06:48:29 +0000358 ((unsigned char*)RetAddr)[-1] = 0xE9;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000359#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000360 }
361
362 // Change the return address to reexecute the call instruction...
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000363#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000364 *RetAddrLoc -= 0xd;
365#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000366 *RetAddrLoc -= 5;
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000367#endif
Chris Lattner7ddde322004-11-20 23:54:33 +0000368}
369
Chris Lattner7ddde322004-11-20 23:54:33 +0000370TargetJITInfo::LazyResolverFn
371X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
372 JITCompilerFunction = F;
Evan Cheng93b11f82006-10-16 21:01:55 +0000373
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000374#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng93b11f82006-10-16 21:01:55 +0000375 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
376 union {
377 unsigned u[3];
378 char c[12];
379 } text;
380
381 if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
382 // FIXME: support for AMD family of processors.
383 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
384 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
385 if ((EDX >> 25) & 0x1)
386 return X86CompilationCallback_SSE;
387 }
388 }
Evan Cheng348b00d2006-10-16 22:53:28 +0000389#endif
Evan Cheng93b11f82006-10-16 21:01:55 +0000390
Chris Lattner1030f722005-05-19 06:49:17 +0000391 return X86CompilationCallback;
Chris Lattner7ddde322004-11-20 23:54:33 +0000392}
393
Evan Chengbe8c03f2008-01-04 10:46:51 +0000394void *X86JITInfo::emitGlobalValueLazyPtr(void *GV, MachineCodeEmitter &MCE) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000395#if defined (X86_64_JIT)
Evan Chengbe8c03f2008-01-04 10:46:51 +0000396 MCE.startFunctionStub(8, 8);
397 MCE.emitWordLE(((unsigned *)&GV)[0]);
398 MCE.emitWordLE(((unsigned *)&GV)[1]);
399#else
400 MCE.startFunctionStub(4, 4);
Bill Wendling750ec002008-01-08 00:52:29 +0000401 MCE.emitWordLE((intptr_t)GV);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000402#endif
403 return MCE.finishFunctionStub(0);
404}
405
Chris Lattner90b1b452004-11-22 22:25:30 +0000406void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000407 // Note, we cast to intptr_t here to silence a -pedantic warning that
408 // complains about casting a function pointer to a normal pointer.
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000409#if defined (X86_32_JIT) && !defined (_MSC_VER)
Evan Cheng348b00d2006-10-16 22:53:28 +0000410 bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
411 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
Evan Chengcf922302006-10-16 23:44:08 +0000412#else
413 bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
Evan Cheng348b00d2006-10-16 22:53:28 +0000414#endif
415 if (NotCC) {
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000416#if defined (X86_64_JIT)
Evan Cheng8510dc02007-03-14 10:48:08 +0000417 MCE.startFunctionStub(13, 4);
418 MCE.emitByte(0x49); // REX prefix
419 MCE.emitByte(0xB8+2); // movabsq r10
420 MCE.emitWordLE(((unsigned *)&Fn)[0]);
421 MCE.emitWordLE(((unsigned *)&Fn)[1]);
422 MCE.emitByte(0x41); // REX prefix
423 MCE.emitByte(0xFF); // jmpq *r10
424 MCE.emitByte(2 | (4 << 3) | (3 << 6));
425#else
Evan Cheng73b00942006-11-16 20:13:34 +0000426 MCE.startFunctionStub(5, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000427 MCE.emitByte(0xE9);
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000428 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng8510dc02007-03-14 10:48:08 +0000429#endif
Evan Cheng774be292007-03-14 19:44:58 +0000430 return MCE.finishFunctionStub(0);
Chris Lattner90b1b452004-11-22 22:25:30 +0000431 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000432
Anton Korobeynikovfd9d9762008-03-23 13:40:45 +0000433#if defined (X86_64_JIT)
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000434 MCE.startFunctionStub(14, 4);
435 MCE.emitByte(0x49); // REX prefix
436 MCE.emitByte(0xB8+2); // movabsq r10
437 MCE.emitWordLE(((unsigned *)&Fn)[0]);
438 MCE.emitWordLE(((unsigned *)&Fn)[1]);
439 MCE.emitByte(0x41); // REX prefix
440 MCE.emitByte(0xFF); // callq *r10
441 MCE.emitByte(2 | (2 << 3) | (3 << 6));
442#else
Evan Cheng73b00942006-11-16 20:13:34 +0000443 MCE.startFunctionStub(6, 4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000444 MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
445
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000446 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Evan Cheng5c0b61a2007-03-14 10:44:30 +0000447#endif
Chris Lattner90b1b452004-11-22 22:25:30 +0000448
449 MCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
450 return MCE.finishFunctionStub(0);
451}
Chris Lattner7ddde322004-11-20 23:54:33 +0000452
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000453/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
454/// specific basic block.
455intptr_t X86JITInfo::getPICJumpTableEntry(intptr_t BB, intptr_t Entry) {
456 return BB - PICBase;
457}
458
Chris Lattner7ddde322004-11-20 23:54:33 +0000459/// relocate - Before the JIT can run a block of code that has been emitted,
460/// it must rewrite the code to contain the actual addresses of any
461/// referenced global symbols.
462void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000463 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000464 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
465 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
466 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
467 switch ((X86::RelocationType)MR->getRelocationType()) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000468 case X86::reloc_pcrel_word: {
Chris Lattner7ddde322004-11-20 23:54:33 +0000469 // PC relative relocation, add the relocated value to the value already in
470 // memory, after we adjust it for where the PC is.
Evan Chengaabe38b2007-12-22 09:40:20 +0000471 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
472 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
473 break;
474 }
475 case X86::reloc_picrel_word: {
476 // PIC base relative relocation, add the relocated value to the value
477 // already in memory, after we adjust it for where the PIC base is.
478 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
Evan Cheng25ab6902006-09-08 06:48:29 +0000479 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000480 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000481 }
Chris Lattner7ddde322004-11-20 23:54:33 +0000482 case X86::reloc_absolute_word:
483 // Absolute relocation, just add the relocated value to the value already
484 // in memory.
Evan Cheng25ab6902006-09-08 06:48:29 +0000485 *((unsigned*)RelocPos) += (unsigned)ResultPtr;
Chris Lattner7ddde322004-11-20 23:54:33 +0000486 break;
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000487 case X86::reloc_absolute_dword:
488 *((intptr_t*)RelocPos) += ResultPtr;
489 break;
Chris Lattner7ddde322004-11-20 23:54:33 +0000490 }
491 }
492}