blob: e33c8c133e3715356c1097b5939631d854c979c7 [file] [log] [blame]
Misha Brukman3d9a6c22004-08-11 00:09:42 +00001//===-- PPC32CodeEmitter.cpp - JIT Code Emitter for PowerPC32 -----*- C++ -*-=//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00002//
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//
Misha Brukmand37faba2004-10-14 06:07:25 +000010// This file defines the PowerPC 32-bit CodeEmitter and associated machinery to
11// JIT-compile bytecode to native PowerPC.
Misha Brukman5dfe3a92004-06-21 16:55:25 +000012//
13//===----------------------------------------------------------------------===//
14
Misha Brukman3d9a6c22004-08-11 00:09:42 +000015#include "PPC32JITInfo.h"
16#include "PPC32TargetMachine.h"
Misha Brukmanb05daff2004-08-09 23:03:59 +000017#include "llvm/CodeGen/MachineCodeEmitter.h"
18#include "llvm/CodeGen/MachineFunctionPass.h"
19#include "llvm/CodeGen/Passes.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000020#include "llvm/Support/Debug.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000021
22namespace llvm {
23
Misha Brukmanb05daff2004-08-09 23:03:59 +000024namespace {
Misha Brukman3d9a6c22004-08-11 00:09:42 +000025 class PPC32CodeEmitter : public MachineFunctionPass {
Misha Brukmanb05daff2004-08-09 23:03:59 +000026 TargetMachine &TM;
27 MachineCodeEmitter &MCE;
28
Misha Brukmand37faba2004-10-14 06:07:25 +000029 int64_t getMachineOpValue(MachineInstr &MI, MachineOperand &MO);
30
Misha Brukmanb05daff2004-08-09 23:03:59 +000031 public:
Misha Brukman3d9a6c22004-08-11 00:09:42 +000032 PPC32CodeEmitter(TargetMachine &T, MachineCodeEmitter &M)
Misha Brukmanb05daff2004-08-09 23:03:59 +000033 : TM(T), MCE(M) {}
34
35 const char *getPassName() const { return "PowerPC Machine Code Emitter"; }
36
37 /// runOnMachineFunction - emits the given MachineFunction to memory
38 ///
39 bool runOnMachineFunction(MachineFunction &MF);
40
41 /// emitBasicBlock - emits the given MachineBasicBlock to memory
42 ///
43 void emitBasicBlock(MachineBasicBlock &MBB);
44
45 /// emitWord - write a 32-bit word to memory at the current PC
46 ///
47 void emitWord(unsigned w) { MCE.emitWord(w); }
Misha Brukmand37faba2004-10-14 06:07:25 +000048
49 /// getValueBit - return the particular bit of Val
50 ///
51 unsigned getValueBit(int64_t Val, unsigned bit) { return (Val >> bit) & 1; }
Misha Brukmanb05daff2004-08-09 23:03:59 +000052
53 /// getBinaryCodeForInstr - returns the assembled code for an instruction
54 ///
Misha Brukmand37faba2004-10-14 06:07:25 +000055 unsigned getBinaryCodeForInstr(MachineInstr &MI);
Misha Brukmanb05daff2004-08-09 23:03:59 +000056 };
57}
58
Misha Brukman5dfe3a92004-06-21 16:55:25 +000059/// addPassesToEmitMachineCode - Add passes to the specified pass manager to get
60/// machine code emitted. This uses a MachineCodeEmitter object to handle
61/// actually outputting the machine code and resolving things like the address
62/// of functions. This method should returns true if machine code emission is
63/// not supported.
64///
Misha Brukman3d9a6c22004-08-11 00:09:42 +000065bool PPC32TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
66 MachineCodeEmitter &MCE) {
Misha Brukmanb05daff2004-08-09 23:03:59 +000067 // Machine code emitter pass for PowerPC
Misha Brukman3d9a6c22004-08-11 00:09:42 +000068 PM.add(new PPC32CodeEmitter(*this, MCE));
Misha Brukmand37faba2004-10-14 06:07:25 +000069 // Delete machine code for this function after emitting it
Misha Brukmanb05daff2004-08-09 23:03:59 +000070 PM.add(createMachineCodeDeleter());
Misha Brukmanc982cfa2004-10-14 06:39:56 +000071 return false;
Misha Brukmanb05daff2004-08-09 23:03:59 +000072}
73
Misha Brukman3d9a6c22004-08-11 00:09:42 +000074bool PPC32CodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Misha Brukmanb05daff2004-08-09 23:03:59 +000075 MCE.startFunction(MF);
76 MCE.emitConstantPool(MF.getConstantPool());
77 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
78 emitBasicBlock(*I);
79 MCE.finishFunction(MF);
80 return false;
81}
82
Misha Brukman3d9a6c22004-08-11 00:09:42 +000083void PPC32CodeEmitter::emitBasicBlock(MachineBasicBlock &MBB) {
Misha Brukmanb05daff2004-08-09 23:03:59 +000084 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); I != E; ++I)
85 emitWord(getBinaryCodeForInstr(*I));
86}
87
Misha Brukmand37faba2004-10-14 06:07:25 +000088int64_t PPC32CodeEmitter::getMachineOpValue(MachineInstr &MI,
89 MachineOperand &MO) {
Misha Brukmanc982cfa2004-10-14 06:39:56 +000090 int64_t rv = 0; // Return value; defaults to 0 for unhandled cases
91 // or things that get fixed up later by the JIT.
92 if (MO.isPCRelativeDisp()) {
93 std::cerr << "PPC32CodeEmitter: PC-relative disp unhandled\n";
94 abort();
95 } else if (MO.isRegister()) {
96 rv = MO.getReg();
97 } else if (MO.isImmediate()) {
98 rv = MO.getImmedValue();
99#if 0
100 } else if (MO.isGlobalAddress()) {
101 } else if (MO.isMachineBasicBlock()) {
102 MachineBasicBlock *MBB = MO.getMachineBasicBlock();
103 } else if (MO.isExternalSymbol()) {
104 } else if (MO.isFrameIndex()) {
105 unsigned index = MO.getFrameIndex();
106 } else if (MO.isConstantPoolIndex()) {
107 unsigned index = MO.getCosntantPoolIndex();
108#endif
109 } else {
110 std::cerr << "ERROR: Unknown type of MachineOperand: " << MO << "\n";
111 abort();
112 }
113
114 return rv;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000115}
116
Misha Brukmand37faba2004-10-14 06:07:25 +0000117
Misha Brukman3d9a6c22004-08-11 00:09:42 +0000118void *PPC32JITInfo::getJITStubForFunction(Function *F,
119 MachineCodeEmitter &MCE) {
Misha Brukmand37faba2004-10-14 06:07:25 +0000120 std::cerr << "PPC32JITInfo::getJITStubForFunction not implemented\n";
121 abort();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000122 return 0;
123}
124
Misha Brukman3d9a6c22004-08-11 00:09:42 +0000125void PPC32JITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
Misha Brukmand37faba2004-10-14 06:07:25 +0000126 std::cerr << "PPC32JITInfo::replaceMachineCodeForFunction not implemented\n";
127 abort();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000128}
129
Misha Brukmand37faba2004-10-14 06:07:25 +0000130#include "PPC32GenCodeEmitter.inc"
Misha Brukmanb05daff2004-08-09 23:03:59 +0000131
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000132} // end llvm namespace
133