blob: a96b4a67e341a822157d8113095673d77963860a [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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"
17#include "llvm/CodeGen/MachineCodeEmitter.h"
18#include "llvm/Config/alloca.h"
Nate Begemanbe136342005-05-20 21:29:24 +000019#include <cstdlib>
20#include <iostream>
Chris Lattner7ddde322004-11-20 23:54:33 +000021using namespace llvm;
22
Chris Lattner38f73732006-01-26 19:55:20 +000023#ifdef _MSC_VER
24 extern "C" void *_AddressOfReturnAddress(void);
25 #pragma intrinsic(_AddressOfReturnAddress)
26#endif
27
Chris Lattner7ddde322004-11-20 23:54:33 +000028void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
29 unsigned char *OldByte = (unsigned char *)Old;
30 *OldByte++ = 0xE9; // Emit JMP opcode.
31 unsigned *OldWord = (unsigned *)OldByte;
32 unsigned NewAddr = (intptr_t)New;
33 unsigned OldAddr = (intptr_t)OldWord;
34 *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
35}
36
37
Chris Lattner7ddde322004-11-20 23:54:33 +000038/// JITCompilerFunction - This contains the address of the JIT function used to
39/// compile a function lazily.
40static TargetJITInfo::JITCompilerFn JITCompilerFunction;
41
Chris Lattner1030f722005-05-19 06:49:17 +000042// Provide a wrapper for X86CompilationCallback2 that saves non-traditional
43// callee saved registers, for the fastcc calling convention.
Jeff Cohen8bc6f932005-05-20 01:35:39 +000044extern "C" {
45#if defined(__i386__) || defined(i386) || defined(_M_IX86)
Chris Lattner1030f722005-05-19 06:49:17 +000046#ifndef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +000047 void X86CompilationCallback(void);
48 asm(
49 ".text\n"
50 ".align 8\n"
Jeff Cohen10a59ce2006-04-29 18:41:44 +000051#if defined(__CYGWIN__) || defined(__APPLE__) || defined(__MINGW32__)
Reid Spencer628214e2005-06-02 21:33:19 +000052 ".globl _X86CompilationCallback\n"
53 "_X86CompilationCallback:\n"
54#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +000055 ".globl X86CompilationCallback\n"
56 "X86CompilationCallback:\n"
Reid Spencer628214e2005-06-02 21:33:19 +000057#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +000058 "pushl %ebp\n"
59 "movl %esp, %ebp\n" // Standard prologue
Evan Chengda08d2c2006-06-24 08:36:10 +000060#if FASTCC_NUM_INT_ARGS_INREGS > 0
Jeff Cohen8bc6f932005-05-20 01:35:39 +000061 "pushl %eax\n"
Evan Chengda08d2c2006-06-24 08:36:10 +000062 "pushl %edx\n" // Save EAX/EDX
63#endif
64#if defined(__APPLE__)
65 "andl $-16, %esp\n" // Align ESP on 16-byte boundary
66#endif
67#if defined(__CYGWIN__) || defined(__MINGW32__) || defined(__APPLE__)
Nate Begemanadd19dc2006-04-25 20:54:26 +000068 "call _X86CompilationCallback2\n"
Reid Spencer628214e2005-06-02 21:33:19 +000069#else
Evan Chengda08d2c2006-06-24 08:36:10 +000070 "call X86CompilationCallback2\n"
71#endif
72#if defined(__APPLE__)
73 "movl %ebp, %esp\n" // Restore ESP
74#endif
75#if FASTCC_NUM_INT_ARGS_INREGS > 0
76#if defined(__APPLE__)
77 "subl $8, %esp\n"
Reid Spencer628214e2005-06-02 21:33:19 +000078#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +000079 "popl %edx\n"
80 "popl %eax\n"
Evan Chengda08d2c2006-06-24 08:36:10 +000081#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +000082 "popl %ebp\n"
83 "ret\n");
Chris Lattner1030f722005-05-19 06:49:17 +000084#else
Jeff Cohen8bc6f932005-05-20 01:35:39 +000085 void X86CompilationCallback2(void);
86
87 _declspec(naked) void X86CompilationCallback(void) {
88 __asm {
89 push eax
90 push edx
91 call X86CompilationCallback2
92 pop edx
93 pop eax
94 ret
95 }
96 }
Misha Brukman57ebf3d2005-05-20 19:46:50 +000097#endif // _MSC_VER
Chris Lattner1030f722005-05-19 06:49:17 +000098
Misha Brukman57ebf3d2005-05-20 19:46:50 +000099#else // Not an i386 host
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000100 void X86CompilationCallback() {
Misha Brukman57ebf3d2005-05-20 19:46:50 +0000101 std::cerr << "Cannot call X86CompilationCallback() on a non-x86 arch!\n";
Chris Lattner170fbcb2005-05-20 17:00:21 +0000102 abort();
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000103 }
Chris Lattner1030f722005-05-19 06:49:17 +0000104#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000105}
Chris Lattner1030f722005-05-19 06:49:17 +0000106
107/// X86CompilationCallback - This is the target-specific function invoked by the
Chris Lattner7ddde322004-11-20 23:54:33 +0000108/// function stub when we did not know the real target of a call. This function
109/// must locate the start of the stub or call site and pass it into the JIT
110/// compiler function.
Chris Lattner1030f722005-05-19 06:49:17 +0000111extern "C" void X86CompilationCallback2() {
Chris Lattner7ddde322004-11-20 23:54:33 +0000112#ifdef _MSC_VER
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000113 assert(sizeof(size_t) == 4); // FIXME: handle Win64
114 unsigned *RetAddrLoc = (unsigned *)_AddressOfReturnAddress();
115 RetAddrLoc += 3; // skip over ret addr, edx, eax
116 unsigned RetAddr = *RetAddrLoc;
Chris Lattner7ddde322004-11-20 23:54:33 +0000117#else
Chris Lattner1030f722005-05-19 06:49:17 +0000118 unsigned *StackPtr = (unsigned*)__builtin_frame_address(1);
119 unsigned RetAddr = (unsigned)(intptr_t)__builtin_return_address(1);
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000120 unsigned *RetAddrLoc = &StackPtr[1];
Chris Lattner7ddde322004-11-20 23:54:33 +0000121
122 // NOTE: __builtin_frame_address doesn't work if frame pointer elimination has
123 // been performed. Having a variable sized alloca disables frame pointer
124 // elimination currently, even if it's dead. This is a gross hack.
125 alloca(10+(RetAddr >> 31));
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000126
Chris Lattner7ddde322004-11-20 23:54:33 +0000127#endif
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000128 assert(*RetAddrLoc == RetAddr &&
Chris Lattner7ddde322004-11-20 23:54:33 +0000129 "Could not find return address on the stack!");
130
131 // It's a stub if there is an interrupt marker after the call.
132 bool isStub = ((unsigned char*)(intptr_t)RetAddr)[0] == 0xCD;
133
134 // The call instruction should have pushed the return value onto the stack...
135 RetAddr -= 4; // Backtrack to the reference itself...
136
137#if 0
138 DEBUG(std::cerr << "In callback! Addr=" << (void*)RetAddr
139 << " ESP=" << (void*)StackPtr
140 << ": Resolving call to function: "
141 << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n");
142#endif
143
144 // Sanity check to make sure this really is a call instruction.
145 assert(((unsigned char*)(intptr_t)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000146
Chris Lattner7ddde322004-11-20 23:54:33 +0000147 unsigned NewVal = (intptr_t)JITCompilerFunction((void*)(intptr_t)RetAddr);
148
149 // Rewrite the call target... so that we don't end up here every time we
150 // execute the call.
151 *(unsigned*)(intptr_t)RetAddr = NewVal-RetAddr-4;
152
153 if (isStub) {
154 // If this is a stub, rewrite the call into an unconditional branch
155 // instruction so that two return addresses are not pushed onto the stack
156 // when the requested function finally gets called. This also makes the
157 // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
158 ((unsigned char*)(intptr_t)RetAddr)[-1] = 0xE9;
159 }
160
161 // Change the return address to reexecute the call instruction...
Jeff Cohen8bc6f932005-05-20 01:35:39 +0000162 *RetAddrLoc -= 5;
Chris Lattner7ddde322004-11-20 23:54:33 +0000163}
164
Chris Lattner7ddde322004-11-20 23:54:33 +0000165TargetJITInfo::LazyResolverFn
166X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
167 JITCompilerFunction = F;
Chris Lattner1030f722005-05-19 06:49:17 +0000168 return X86CompilationCallback;
Chris Lattner7ddde322004-11-20 23:54:33 +0000169}
170
Chris Lattner90b1b452004-11-22 22:25:30 +0000171void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
Chris Lattner078d1822006-06-01 17:13:10 +0000172 // Note, we cast to intptr_t here to silence a -pedantic warning that
173 // complains about casting a function pointer to a normal pointer.
174 if (Fn != (void*)(intptr_t)X86CompilationCallback) {
Chris Lattner90b1b452004-11-22 22:25:30 +0000175 MCE.startFunctionStub(5);
176 MCE.emitByte(0xE9);
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000177 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000178 return MCE.finishFunctionStub(0);
179 }
Misha Brukman0e0a7a452005-04-21 23:38:14 +0000180
Chris Lattner90b1b452004-11-22 22:25:30 +0000181 MCE.startFunctionStub(6);
182 MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
183
Chris Lattnerd3f0aef2006-05-02 19:14:47 +0000184 MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
Chris Lattner90b1b452004-11-22 22:25:30 +0000185
186 MCE.emitByte(0xCD); // Interrupt - Just a marker identifying the stub!
187 return MCE.finishFunctionStub(0);
188}
Chris Lattner7ddde322004-11-20 23:54:33 +0000189
190/// relocate - Before the JIT can run a block of code that has been emitted,
191/// it must rewrite the code to contain the actual addresses of any
192/// referenced global symbols.
193void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +0000194 unsigned NumRelocs, unsigned char* GOTBase) {
Chris Lattner7ddde322004-11-20 23:54:33 +0000195 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
196 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
197 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
198 switch ((X86::RelocationType)MR->getRelocationType()) {
199 case X86::reloc_pcrel_word:
200 // PC relative relocation, add the relocated value to the value already in
201 // memory, after we adjust it for where the PC is.
202 ResultPtr = ResultPtr-(intptr_t)RelocPos-4;
203 *((intptr_t*)RelocPos) += ResultPtr;
204 break;
205 case X86::reloc_absolute_word:
206 // Absolute relocation, just add the relocated value to the value already
207 // in memory.
208 *((intptr_t*)RelocPos) += ResultPtr;
209 break;
210 }
211 }
212}