Disable this.
[oota-llvm.git] / lib / Target / PowerPC / PPCCodeEmitter.cpp
1 //===-- PPC32CodeEmitter.cpp - JIT Code Emitter for PowerPC32 -----*- C++ -*-=//
2 // 
3 //                     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.
7 // 
8 //===----------------------------------------------------------------------===//
9 // 
10 // This file defines the PowerPC 32-bit CodeEmitter and associated machinery to
11 // JIT-compile bytecode to native PowerPC.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "PPC32JITInfo.h"
16 #include "PPC32TargetMachine.h"
17 #include "PowerPC.h"
18 #include "llvm/Module.h"
19 #include "llvm/CodeGen/MachineCodeEmitter.h"
20 #include "llvm/CodeGen/MachineFunctionPass.h"
21 #include "llvm/CodeGen/MachineInstrBuilder.h"
22 #include "llvm/CodeGen/Passes.h"
23 #include "llvm/Support/Debug.h"
24 using namespace llvm;
25
26 namespace {
27   class JITResolver {
28     MachineCodeEmitter &MCE;
29
30     // LazyCodeGenMap - Keep track of call sites for functions that are to be
31     // lazily resolved.
32     std::map<unsigned, Function*> LazyCodeGenMap;
33
34     // LazyResolverMap - Keep track of the lazy resolver created for a
35     // particular function so that we can reuse them if necessary.
36     std::map<Function*, unsigned> LazyResolverMap;
37
38   public:
39     JITResolver(MachineCodeEmitter &mce) : MCE(mce) {}
40     unsigned getLazyResolver(Function *F);
41     unsigned addFunctionReference(unsigned Address, Function *F);
42     
43   private:
44     unsigned emitStubForFunction(Function *F);
45     static void CompilationCallback();
46     unsigned resolveFunctionReference(unsigned RetAddr);
47   };
48
49   static JITResolver &getResolver(MachineCodeEmitter &MCE) {
50     static JITResolver *TheJITResolver = 0;
51     if (TheJITResolver == 0)
52       TheJITResolver = new JITResolver(MCE);
53     return *TheJITResolver;
54   }
55 }
56
57 unsigned JITResolver::getLazyResolver(Function *F) {
58   std::map<Function*, unsigned>::iterator I = LazyResolverMap.lower_bound(F);
59   if (I != LazyResolverMap.end() && I->first == F) return I->second;
60
61   unsigned Stub = emitStubForFunction(F);
62   LazyResolverMap.insert(I, std::make_pair(F, Stub));
63   return Stub;
64 }
65
66 /// addFunctionReference - This method is called when we need to emit the
67 /// address of a function that has not yet been emitted, so we don't know the
68 /// address.  Instead, we emit a call to the CompilationCallback method, and
69 /// keep track of where we are.
70 ///
71 unsigned JITResolver::addFunctionReference(unsigned Address, Function *F) {
72   LazyCodeGenMap[Address] = F;
73   return (intptr_t)&JITResolver::CompilationCallback;
74 }
75
76 unsigned JITResolver::resolveFunctionReference(unsigned RetAddr) {
77   std::map<unsigned, Function*>::iterator I = LazyCodeGenMap.find(RetAddr);
78   assert(I != LazyCodeGenMap.end() && "Not in map!");
79   Function *F = I->second;
80   LazyCodeGenMap.erase(I);
81   // FIXME: this needs to be rewritten.
82   return 0; //MCE.forceCompilationOf(F);
83 }
84
85 /// emitStubForFunction - This method is used by the JIT when it needs to emit
86 /// the address of a function for a function whose code has not yet been
87 /// generated.  In order to do this, it generates a stub which jumps to the lazy
88 /// function compiler, which will eventually get fixed to call the function
89 /// directly.
90 ///
91 unsigned JITResolver::emitStubForFunction(Function *F) {
92   std::cerr << "PPC32CodeEmitter::emitStubForFunction() unimplemented!\n";
93   abort();
94   return 0;
95 }
96
97 void JITResolver::CompilationCallback() {
98   std::cerr << "PPC32CodeEmitter: CompilationCallback() unimplemented!";
99   abort();
100 }
101
102 namespace {
103   class PPC32CodeEmitter : public MachineFunctionPass {
104     TargetMachine &TM;
105     MachineCodeEmitter &MCE;
106
107     // Tracks which instruction references which BasicBlock
108     std::vector<std::pair<const BasicBlock*,
109                           std::pair<unsigned*,MachineInstr*> > > BBRefs;
110     // Tracks where each BasicBlock starts
111     std::map<const BasicBlock*, long> BBLocations;
112
113     /// getMachineOpValue - evaluates the MachineOperand of a given MachineInstr
114     ///
115     int64_t getMachineOpValue(MachineInstr &MI, MachineOperand &MO);
116
117     unsigned getAddressOfExternalFunction(Function *F);
118
119   public:
120     PPC32CodeEmitter(TargetMachine &T, MachineCodeEmitter &M) 
121       : TM(T), MCE(M) {}
122
123     const char *getPassName() const { return "PowerPC Machine Code Emitter"; }
124
125     /// runOnMachineFunction - emits the given MachineFunction to memory
126     ///
127     bool runOnMachineFunction(MachineFunction &MF);
128
129     /// emitBasicBlock - emits the given MachineBasicBlock to memory
130     ///
131     void emitBasicBlock(MachineBasicBlock &MBB);
132
133     /// emitWord - write a 32-bit word to memory at the current PC
134     ///
135     void emitWord(unsigned w) { MCE.emitWord(w); }
136     
137     /// getValueBit - return the particular bit of Val
138     ///
139     unsigned getValueBit(int64_t Val, unsigned bit) { return (Val >> bit) & 1; }
140
141     /// getBinaryCodeForInstr - This function, generated by the
142     /// CodeEmitterGenerator using TableGen, produces the binary encoding for
143     /// machine instructions.
144     ///
145     unsigned getBinaryCodeForInstr(MachineInstr &MI);
146   };
147 }
148
149 /// addPassesToEmitMachineCode - Add passes to the specified pass manager to get
150 /// machine code emitted.  This uses a MachineCodeEmitter object to handle
151 /// actually outputting the machine code and resolving things like the address
152 /// of functions.  This method should returns true if machine code emission is
153 /// not supported.
154 ///
155 bool PPC32TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
156                                                     MachineCodeEmitter &MCE) {
157   // Keep as `true' until this is a functional JIT to allow llvm-gcc to build
158   return true;
159
160   // Machine code emitter pass for PowerPC
161   PM.add(new PPC32CodeEmitter(*this, MCE)); 
162   // Delete machine code for this function after emitting it
163   PM.add(createMachineCodeDeleter());
164   return false;
165 }
166
167 bool PPC32CodeEmitter::runOnMachineFunction(MachineFunction &MF) {
168   MCE.startFunction(MF);
169   MCE.emitConstantPool(MF.getConstantPool());
170   for (MachineFunction::iterator BB = MF.begin(), E = MF.end(); BB != E; ++BB)
171     emitBasicBlock(*BB);
172   MCE.finishFunction(MF);
173
174   // Resolve branches to BasicBlocks for the entire function
175   for (unsigned i = 0, e = BBRefs.size(); i != e; ++i) {
176     long Location = BBLocations[BBRefs[i].first];
177     unsigned *Ref = BBRefs[i].second.first;
178     MachineInstr *MI = BBRefs[i].second.second;
179     DEBUG(std::cerr << "Fixup @ " << std::hex << Ref << " to 0x" << Location
180                     << " in instr: " << std::dec << *MI);
181     for (unsigned ii = 0, ee = MI->getNumOperands(); ii != ee; ++ii) {
182       MachineOperand &op = MI->getOperand(ii);
183       if (op.isPCRelativeDisp()) {
184         // the instruction's branch target is made such that it branches to
185         // PC + (branchTarget * 4), so undo that arithmetic here:
186         // Location is the target of the branch
187         // Ref is the location of the instruction, and hence the PC
188         int64_t branchTarget = (Location - (long)Ref) >> 2;
189         MI->SetMachineOperandConst(ii, MachineOperand::MO_SignExtendedImmed,
190                                    branchTarget);
191         unsigned fixedInstr = PPC32CodeEmitter::getBinaryCodeForInstr(*MI);
192         MCE.emitWordAt(fixedInstr, Ref);
193         break;
194       }
195     }
196   }
197   BBRefs.clear();
198   BBLocations.clear();
199
200   return false;
201 }
202
203 void PPC32CodeEmitter::emitBasicBlock(MachineBasicBlock &MBB) {
204   BBLocations[MBB.getBasicBlock()] = MCE.getCurrentPCValue();
205   for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); I != E; ++I){
206     MachineInstr &MI = *I;
207     unsigned Opcode = MI.getOpcode();
208     if (Opcode == PPC::IMPLICIT_DEF) 
209       continue; // pseudo opcode, no side effects
210     else if (Opcode == PPC::MovePCtoLR) {
211       // This can be simplified: the resulting 32-bit code is 0x48000005
212       MachineInstr *MI = BuildMI(PPC::BL, 1).addImm(1);
213       emitWord(getBinaryCodeForInstr(*MI));
214       delete MI;
215     } else
216       emitWord(getBinaryCodeForInstr(*I));
217   }
218 }
219
220 unsigned PPC32CodeEmitter::getAddressOfExternalFunction(Function *F) {
221   static std::map<Function*, unsigned> ExternalFn2Addr;
222   std::map<Function*, unsigned>::iterator Addr = ExternalFn2Addr.find(F);
223
224   // FIXME: this needs to be rewritten.
225   if (Addr == ExternalFn2Addr.end())
226     ExternalFn2Addr[F] = 0; //MCE.forceCompilationOf(F);
227   return ExternalFn2Addr[F];
228 }
229
230 static unsigned enumRegToMachineReg(unsigned enumReg) {
231   switch (enumReg) {
232   case PPC::R0 :  case PPC::F0 :  return  0;  
233   case PPC::R1 :  case PPC::F1 :  return  1; 
234   case PPC::R2 :  case PPC::F2 :  return  2;
235   case PPC::R3 :  case PPC::F3 :  return  3; 
236   case PPC::R4 :  case PPC::F4 :  return  4; 
237   case PPC::R5 :  case PPC::F5 :  return  5;
238   case PPC::R6 :  case PPC::F6 :  return  6; 
239   case PPC::R7 :  case PPC::F7 :  return  7; 
240   case PPC::R8 :  case PPC::F8 :  return  8;
241   case PPC::R9 :  case PPC::F9 :  return  9; 
242   case PPC::R10:  case PPC::F10:  return 10; 
243   case PPC::R11:  case PPC::F11:  return 11;
244   case PPC::R12:  case PPC::F12:  return 12; 
245   case PPC::R13:  case PPC::F13:  return 13; 
246   case PPC::R14:  case PPC::F14:  return 14;
247   case PPC::R15:  case PPC::F15:  return 15; 
248   case PPC::R16:  case PPC::F16:  return 16; 
249   case PPC::R17:  case PPC::F17:  return 17;
250   case PPC::R18:  case PPC::F18:  return 18; 
251   case PPC::R19:  case PPC::F19:  return 19; 
252   case PPC::R20:  case PPC::F20:  return 20;
253   case PPC::R21:  case PPC::F21:  return 21;
254   case PPC::R22:  case PPC::F22:  return 22; 
255   case PPC::R23:  case PPC::F23:  return 23; 
256   case PPC::R24:  case PPC::F24:  return 24;
257   case PPC::R25:  case PPC::F25:  return 25; 
258   case PPC::R26:  case PPC::F26:  return 26; 
259   case PPC::R27:  case PPC::F27:  return 27;
260   case PPC::R28:  case PPC::F28:  return 28; 
261   case PPC::R29:  case PPC::F29:  return 29; 
262   case PPC::R30:  case PPC::F30:  return 30;
263   case PPC::R31:  case PPC::F31:  return 31;
264   default:
265     std::cerr << "Unhandled reg in enumRegToRealReg!\n";
266     abort();
267   }
268 }
269
270 int64_t PPC32CodeEmitter::getMachineOpValue(MachineInstr &MI, 
271                                             MachineOperand &MO) {
272   int64_t rv = 0; // Return value; defaults to 0 for unhandled cases
273                   // or things that get fixed up later by the JIT.
274   if (MO.isRegister()) {
275     rv = enumRegToMachineReg(MO.getReg());
276   } else if (MO.isImmediate()) {
277     rv = MO.getImmedValue();
278   } else if (MO.isGlobalAddress()) {
279     //GlobalValue *GV = MO.getGlobal();
280     // FIXME: Emit a relocation here.
281     rv = 0;
282   } else if (MO.isMachineBasicBlock()) {
283     const BasicBlock *BB = MO.getMachineBasicBlock()->getBasicBlock();
284     unsigned* CurrPC = (unsigned*)(intptr_t)MCE.getCurrentPCValue();
285     BBRefs.push_back(std::make_pair(BB, std::make_pair(CurrPC, &MI)));
286   } else if (MO.isConstantPoolIndex()) {
287     unsigned index = MO.getConstantPoolIndex();
288     rv = MCE.getConstantPoolEntryAddress(index);
289   } else if (MO.isFrameIndex()) {
290     std::cerr << "PPC32CodeEmitter: error: Frame index unhandled!\n";
291     abort();
292   } else {
293     std::cerr << "ERROR: Unknown type of MachineOperand: " << MO << "\n";
294     abort();
295   }
296
297   // Special treatment for global symbols: constants and vars
298   if (MO.isConstantPoolIndex() || MO.isGlobalAddress()) {
299     unsigned Opcode = MI.getOpcode();
300     int64_t MBBLoc = BBLocations[MI.getParent()->getBasicBlock()];
301     if (Opcode == PPC::LOADHiAddr) {
302       // LoadHiAddr wants hi16(addr - mbb)
303       rv = (rv - MBBLoc) >> 16;
304     } else if (Opcode == PPC::LWZ || Opcode == PPC::LA ||
305                Opcode == PPC::LFS || Opcode == PPC::LFD) {
306       // These load opcodes want lo16(addr - mbb)
307       rv = (rv - MBBLoc) & 0xffff;
308     }
309   }
310
311   return rv;
312 }
313
314 void PPC32JITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
315   std::cerr << "PPC32JITInfo::replaceMachineCodeForFunction not implemented\n";
316   abort();
317 }
318
319 #include "PPC32GenCodeEmitter.inc"
320