blob: cd910bb02a784ff3a1b8d5fecaabd8f9d8e9838e [file] [log] [blame]
Jia Liuc5707112012-02-17 08:55:11 +00001//===-- MipsJITInfo.cpp - Implement the Mips JIT Interface ----------------===//
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the JIT interfaces for the Mips target.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "jit"
15#include "MipsJITInfo.h"
16#include "MipsInstrInfo.h"
17#include "MipsRelocations.h"
18#include "MipsSubtarget.h"
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +000019#include "llvm/CodeGen/JITCodeEmitter.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000020#include "llvm/Function.h"
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +000021#include "llvm/Support/Debug.h"
22#include "llvm/Support/ErrorHandling.h"
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +000023#include "llvm/Support/Memory.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000024#include "llvm/Support/raw_ostream.h"
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +000025#include <cstdlib>
26using namespace llvm;
27
28
29void MipsJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
Akira Hatanakac15ad852012-08-01 02:29:24 +000030 unsigned NewAddr = (intptr_t)New;
31 unsigned OldAddr = (intptr_t)Old;
32 const unsigned NopInstr = 0x0;
33
34 // If the functions are in the same memory segment, insert PC-region branch.
35 if ((NewAddr & 0xF0000000) == ((OldAddr + 4) & 0xF0000000)) {
36 unsigned *OldInstruction = (unsigned *)Old;
37 *OldInstruction = 0x08000000;
38 unsigned JTargetAddr = NewAddr & 0x0FFFFFFC;
39
40 JTargetAddr >>= 2;
41 *OldInstruction |= JTargetAddr;
42
43 // Insert a NOP.
44 OldInstruction++;
45 *OldInstruction = NopInstr;
46
47 sys::Memory::InvalidateInstructionCache(Old, 2 * 4);
48 } else {
49 // We need to clear hint bits from the instruction, in case it is 'jr ra'.
50 const unsigned HintMask = 0xFFFFF83F, ReturnSequence = 0x03e00008;
51 unsigned* CurrentInstr = (unsigned*)Old;
52 unsigned CurrInstrHintClear = (*CurrentInstr) & HintMask;
53 unsigned* NextInstr = CurrentInstr + 1;
54 unsigned NextInstrHintClear = (*NextInstr) & HintMask;
55
56 // Do absolute jump if there are 2 or more instructions before return from
57 // the old function.
58 if ((CurrInstrHintClear != ReturnSequence) &&
59 (NextInstrHintClear != ReturnSequence)) {
60 const unsigned LuiT0Instr = 0x3c080000, AddiuT0Instr = 0x25080000;
61 const unsigned JrT0Instr = 0x01000008;
62 // lui t0, high 16 bit of the NewAddr
63 (*(CurrentInstr++)) = LuiT0Instr | ((NewAddr & 0xffff0000) >> 16);
64 // addiu t0, t0, low 16 bit of the NewAddr
65 (*(CurrentInstr++)) = AddiuT0Instr | (NewAddr & 0x0000ffff);
66 // jr t0
67 (*(CurrentInstr++)) = JrT0Instr;
68 (*CurrentInstr) = NopInstr;
69
70 sys::Memory::InvalidateInstructionCache(Old, 4 * 4);
71 } else {
72 // Unsupported case
73 report_fatal_error("MipsJITInfo::replaceMachineCodeForFunction");
74 }
75 }
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +000076}
77
78/// JITCompilerFunction - This contains the address of the JIT function used to
79/// compile a function lazily.
80static TargetJITInfo::JITCompilerFn JITCompilerFunction;
81
82// Get the ASMPREFIX for the current host. This is often '_'.
83#ifndef __USER_LABEL_PREFIX__
84#define __USER_LABEL_PREFIX__
85#endif
86#define GETASMPREFIX2(X) #X
87#define GETASMPREFIX(X) GETASMPREFIX2(X)
88#define ASMPREFIX GETASMPREFIX(__USER_LABEL_PREFIX__)
89
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +000090// CompilationCallback stub - We can't use a C function with inline assembly in
91// it, because the prolog/epilog inserted by GCC won't work for us. Instead,
92// write our own wrapper, which does things our way, so we have complete control
93// over register saving and restoring. This code saves registers, calls
94// MipsCompilationCallbackC and restores registers.
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +000095extern "C" {
96#if defined (__mips__)
97void MipsCompilationCallback();
98
99 asm(
100 ".text\n"
101 ".align 2\n"
102 ".globl " ASMPREFIX "MipsCompilationCallback\n"
103 ASMPREFIX "MipsCompilationCallback:\n"
104 ".ent " ASMPREFIX "MipsCompilationCallback\n"
Bruno Cardoso Lopes02dc5182011-10-25 17:30:47 +0000105 ".frame $sp, 32, $ra\n"
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000106 ".set noreorder\n"
107 ".cpload $t9\n"
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000108
Bruno Cardoso Lopes02dc5182011-10-25 17:30:47 +0000109 "addiu $sp, $sp, -64\n"
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000110 ".cprestore 16\n"
111
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000112 // Save argument registers a0, a1, a2, a3, f12, f14 since they may contain
113 // stuff for the real target function right now. We have to act as if this
114 // whole compilation callback doesn't exist as far as the caller is
115 // concerned. We also need to save the ra register since it contains the
116 // original return address, and t8 register since it contains the address
117 // of the end of function stub.
118 "sw $a0, 20($sp)\n"
119 "sw $a1, 24($sp)\n"
120 "sw $a2, 28($sp)\n"
121 "sw $a3, 32($sp)\n"
122 "sw $ra, 36($sp)\n"
123 "sw $t8, 40($sp)\n"
Bruno Cardoso Lopes02dc5182011-10-25 17:30:47 +0000124 "sdc1 $f12, 48($sp)\n"
125 "sdc1 $f14, 56($sp)\n"
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000126
127 // t8 points at the end of function stub. Pass the beginning of the stub
128 // to the MipsCompilationCallbackC.
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000129 "addiu $a0, $t8, -16\n"
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000130 "jal " ASMPREFIX "MipsCompilationCallbackC\n"
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000131 "nop\n"
132
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000133 // Restore registers.
134 "lw $a0, 20($sp)\n"
135 "lw $a1, 24($sp)\n"
136 "lw $a2, 28($sp)\n"
137 "lw $a3, 32($sp)\n"
138 "lw $ra, 36($sp)\n"
139 "lw $t8, 40($sp)\n"
Bruno Cardoso Lopes02dc5182011-10-25 17:30:47 +0000140 "ldc1 $f12, 48($sp)\n"
141 "ldc1 $f14, 56($sp)\n"
142 "addiu $sp, $sp, 64\n"
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000143
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000144 // Jump to the (newly modified) stub to invoke the real function.
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000145 "addiu $t8, $t8, -16\n"
146 "jr $t8\n"
147 "nop\n"
148
149 ".set reorder\n"
150 ".end " ASMPREFIX "MipsCompilationCallback\n"
151 );
152#else // host != Mips
153 void MipsCompilationCallback() {
154 llvm_unreachable(
155 "Cannot call MipsCompilationCallback() on a non-Mips arch!");
156 }
157#endif
158}
159
160/// MipsCompilationCallbackC - This is the target-specific function invoked
161/// by the function stub when we did not know the real target of a call.
162/// This function must locate the start of the stub or call site and pass
163/// it into the JIT compiler function.
164extern "C" void MipsCompilationCallbackC(intptr_t StubAddr) {
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000165 // Get the address of the compiled code for this function.
166 intptr_t NewVal = (intptr_t) JITCompilerFunction((void*) StubAddr);
167
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000168 // Rewrite the function stub so that we don't end up here every time we
169 // execute the call. We're replacing the first four instructions of the
170 // stub with code that jumps to the compiled function:
171 // lui $t9, %hi(NewVal)
172 // addiu $t9, $t9, %lo(NewVal)
173 // jr $t9
174 // nop
175
176 int Hi = ((unsigned)NewVal & 0xffff0000) >> 16;
177 if ((NewVal & 0x8000) != 0)
178 Hi++;
179 int Lo = (int)(NewVal & 0xffff);
180
181 *(intptr_t *)(StubAddr) = 0xf << 26 | 25 << 16 | Hi;
182 *(intptr_t *)(StubAddr + 4) = 9 << 26 | 25 << 21 | 25 << 16 | Lo;
183 *(intptr_t *)(StubAddr + 8) = 25 << 21 | 8;
184 *(intptr_t *)(StubAddr + 12) = 0;
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000185
186 sys::Memory::InvalidateInstructionCache((void*) StubAddr, 16);
187}
188
189TargetJITInfo::LazyResolverFn MipsJITInfo::getLazyResolverFunction(
190 JITCompilerFn F) {
191 JITCompilerFunction = F;
192 return MipsCompilationCallback;
193}
194
195TargetJITInfo::StubLayout MipsJITInfo::getStubLayout() {
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000196 // The stub contains 4 4-byte instructions, aligned at 4 bytes. See
197 // emitFunctionStub for details.
198 StubLayout Result = { 4*4, 4 };
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000199 return Result;
200}
201
Akira Hatanaka864f6602012-06-14 21:10:56 +0000202void *MipsJITInfo::emitFunctionStub(const Function *F, void *Fn,
203 JITCodeEmitter &JCE) {
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000204 JCE.emitAlignment(4);
205 void *Addr = (void*) (JCE.getCurrentPCValue());
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000206 if (!sys::Memory::setRangeWritable(Addr, 16))
207 llvm_unreachable("ERROR: Unable to mark stub writable.");
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000208
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000209 intptr_t EmittedAddr;
210 if (Fn != (void*)(intptr_t)MipsCompilationCallback)
211 EmittedAddr = (intptr_t)Fn;
212 else
213 EmittedAddr = (intptr_t)MipsCompilationCallback;
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000214
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000215
216 int Hi = ((unsigned)EmittedAddr & 0xffff0000) >> 16;
217 if ((EmittedAddr & 0x8000) != 0)
218 Hi++;
219 int Lo = (int)(EmittedAddr & 0xffff);
220
221 // lui t9, %hi(EmittedAddr)
222 // addiu t9, t9, %lo(EmittedAddr)
223 // jalr t8, t9
224 // nop
225 JCE.emitWordLE(0xf << 26 | 25 << 16 | Hi);
226 JCE.emitWordLE(9 << 26 | 25 << 21 | 25 << 16 | Lo);
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000227 JCE.emitWordLE(25 << 21 | 24 << 11 | 9);
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000228 JCE.emitWordLE(0);
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000229
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000230 sys::Memory::InvalidateInstructionCache(Addr, 16);
231 if (!sys::Memory::setRangeExecutable(Addr, 16))
232 llvm_unreachable("ERROR: Unable to mark stub executable.");
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000233
234 return Addr;
235}
236
237/// relocate - Before the JIT can run a block of code that has been emitted,
238/// it must rewrite the code to contain the actual addresses of any
239/// referenced global symbols.
240void MipsJITInfo::relocate(void *Function, MachineRelocation *MR,
Akira Hatanaka864f6602012-06-14 21:10:56 +0000241 unsigned NumRelocs, unsigned char *GOTBase) {
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000242 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
243
244 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
245 intptr_t ResultPtr = (intptr_t) MR->getResultPointer();
246
247 switch ((Mips::RelocationType) MR->getRelocationType()) {
Bruno Cardoso Lopes3aa035f2011-12-30 21:04:30 +0000248 case Mips::reloc_mips_pc16:
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000249 ResultPtr = (((ResultPtr - (intptr_t) RelocPos) - 4) >> 2) & 0xffff;
250 *((unsigned*) RelocPos) |= (unsigned) ResultPtr;
251 break;
252
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000253 case Mips::reloc_mips_26:
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000254 ResultPtr = (ResultPtr & 0x0fffffff) >> 2;
255 *((unsigned*) RelocPos) |= (unsigned) ResultPtr;
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000256 break;
257
Bruno Cardoso Lopesc4cc40c2011-09-14 03:00:41 +0000258 case Mips::reloc_mips_hi:
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000259 ResultPtr = ResultPtr >> 16;
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000260 if ((((intptr_t) (MR->getResultPointer()) & 0xffff) >> 15) == 1) {
261 ResultPtr += 1;
262 }
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000263 *((unsigned*) RelocPos) |= (unsigned) ResultPtr;
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000264 break;
265
Bruno Cardoso Lopesad6eef42011-11-08 12:47:11 +0000266 case Mips::reloc_mips_lo: {
267 // Addend is needed for unaligned load/store instructions, where offset
268 // for the second load/store in the expanded instruction sequence must
269 // be modified by +1 or +3. Otherwise, Addend is 0.
270 int Addend = *((unsigned*) RelocPos) & 0xffff;
271 ResultPtr = (ResultPtr + Addend) & 0xffff;
272 *((unsigned*) RelocPos) &= 0xffff0000;
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000273 *((unsigned*) RelocPos) |= (unsigned) ResultPtr;
274 break;
Bruno Cardoso Lopesad6eef42011-11-08 12:47:11 +0000275 }
Bruno Cardoso Lopesdca6cdd2011-07-21 16:28:51 +0000276 }
277 }
278}