Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- PPCCodeEmitter.cpp - JIT Code Emitter for PowerPC32 -------*- C++ -*-=// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the PowerPC 32-bit CodeEmitter and associated machinery to |
| 11 | // JIT-compile bitcode to native PowerPC. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "PPCTargetMachine.h" |
| 16 | #include "PPCRelocations.h" |
| 17 | #include "PPC.h" |
| 18 | #include "llvm/Module.h" |
| 19 | #include "llvm/PassManager.h" |
| 20 | #include "llvm/CodeGen/MachineCodeEmitter.h" |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/JITCodeEmitter.h" |
Bruno Cardoso Lopes | aabb9a5 | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/ObjectCodeEmitter.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 24 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Nicolas Geoffray | 0e757e1 | 2008-02-13 18:39:37 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/Passes.h" |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 27 | #include "llvm/Support/Debug.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 28 | #include "llvm/Support/Compiler.h" |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 29 | #include "llvm/Support/ErrorHandling.h" |
| 30 | #include "llvm/Support/raw_ostream.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetOptions.h" |
| 32 | using namespace llvm; |
| 33 | |
| 34 | namespace { |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 35 | class PPCCodeEmitter { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 36 | TargetMachine &TM; |
| 37 | MachineCodeEmitter &MCE; |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 38 | public: |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 39 | PPCCodeEmitter(TargetMachine &tm, MachineCodeEmitter &mce): |
| 40 | TM(tm), MCE(mce) {} |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 41 | |
| 42 | /// getBinaryCodeForInstr - This function, generated by the |
| 43 | /// CodeEmitterGenerator using TableGen, produces the binary encoding for |
| 44 | /// machine instructions. |
| 45 | |
| 46 | unsigned getBinaryCodeForInstr(const MachineInstr &MI); |
| 47 | |
| 48 | /// getMachineOpValue - evaluates the MachineOperand of a given MachineInstr |
| 49 | |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 50 | unsigned getMachineOpValue(const MachineInstr &MI, |
| 51 | const MachineOperand &MO); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 52 | |
| 53 | /// MovePCtoLROffset - When/if we see a MovePCtoLR instruction, we record |
| 54 | /// its address in the function into this pointer. |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 55 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 56 | void *MovePCtoLROffset; |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 57 | }; |
| 58 | |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 59 | template <class CodeEmitter> |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 60 | class VISIBILITY_HIDDEN Emitter : public MachineFunctionPass, |
| 61 | public PPCCodeEmitter |
| 62 | { |
| 63 | TargetMachine &TM; |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 64 | CodeEmitter &MCE; |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 65 | |
Nicolas Geoffray | 0e757e1 | 2008-02-13 18:39:37 +0000 | [diff] [blame] | 66 | void getAnalysisUsage(AnalysisUsage &AU) const { |
| 67 | AU.addRequired<MachineModuleInfo>(); |
| 68 | MachineFunctionPass::getAnalysisUsage(AU); |
| 69 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 70 | |
| 71 | public: |
| 72 | static char ID; |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 73 | Emitter(TargetMachine &tm, CodeEmitter &mce) |
| 74 | : MachineFunctionPass(&ID), PPCCodeEmitter(tm, mce), TM(tm), MCE(mce) {} |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 75 | |
| 76 | const char *getPassName() const { return "PowerPC Machine Code Emitter"; } |
| 77 | |
| 78 | /// runOnMachineFunction - emits the given MachineFunction to memory |
| 79 | /// |
| 80 | bool runOnMachineFunction(MachineFunction &MF); |
| 81 | |
| 82 | /// emitBasicBlock - emits the given MachineBasicBlock to memory |
| 83 | /// |
| 84 | void emitBasicBlock(MachineBasicBlock &MBB); |
| 85 | |
| 86 | /// getValueBit - return the particular bit of Val |
| 87 | /// |
| 88 | unsigned getValueBit(int64_t Val, unsigned bit) { return (Val >> bit) & 1; } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 89 | }; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 90 | |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 91 | template <class CodeEmitter> |
| 92 | char Emitter<CodeEmitter>::ID = 0; |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 93 | } |
| 94 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 95 | /// createPPCCodeEmitterPass - Return a pass that emits the collected PPC code |
| 96 | /// to the specified MCE object. |
Bruno Cardoso Lopes | aabb9a5 | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 97 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 98 | FunctionPass *llvm::createPPCCodeEmitterPass(PPCTargetMachine &TM, |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 99 | MachineCodeEmitter &MCE) { |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 100 | return new Emitter<MachineCodeEmitter>(TM, MCE); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 103 | FunctionPass *llvm::createPPCJITCodeEmitterPass(PPCTargetMachine &TM, |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 104 | JITCodeEmitter &JCE) { |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 105 | return new Emitter<JITCodeEmitter>(TM, JCE); |
| 106 | } |
| 107 | |
Bruno Cardoso Lopes | aabb9a5 | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 108 | FunctionPass *llvm::createPPCObjectCodeEmitterPass(PPCTargetMachine &TM, |
| 109 | ObjectCodeEmitter &OCE) { |
| 110 | return new Emitter<ObjectCodeEmitter>(TM, OCE); |
| 111 | } |
| 112 | |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 113 | template <class CodeEmitter> |
| 114 | bool Emitter<CodeEmitter>::runOnMachineFunction(MachineFunction &MF) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 115 | assert((MF.getTarget().getRelocationModel() != Reloc::Default || |
| 116 | MF.getTarget().getRelocationModel() != Reloc::Static) && |
| 117 | "JIT relocation model must be set to static or default!"); |
Nicolas Geoffray | 0e757e1 | 2008-02-13 18:39:37 +0000 | [diff] [blame] | 118 | |
| 119 | MCE.setModuleInfo(&getAnalysis<MachineModuleInfo>()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 120 | do { |
| 121 | MovePCtoLROffset = 0; |
| 122 | MCE.startFunction(MF); |
| 123 | for (MachineFunction::iterator BB = MF.begin(), E = MF.end(); BB != E; ++BB) |
| 124 | emitBasicBlock(*BB); |
| 125 | } while (MCE.finishFunction(MF)); |
| 126 | |
| 127 | return false; |
| 128 | } |
| 129 | |
Bruno Cardoso Lopes | 8e2537b | 2009-06-01 19:57:37 +0000 | [diff] [blame] | 130 | template <class CodeEmitter> |
| 131 | void Emitter<CodeEmitter>::emitBasicBlock(MachineBasicBlock &MBB) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 132 | MCE.StartMachineBasicBlock(&MBB); |
| 133 | |
| 134 | for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); I != E; ++I){ |
Evan Cheng | 3ca8937 | 2008-09-02 06:51:36 +0000 | [diff] [blame] | 135 | const MachineInstr &MI = *I; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 136 | switch (MI.getOpcode()) { |
| 137 | default: |
Evan Cheng | 3ca8937 | 2008-09-02 06:51:36 +0000 | [diff] [blame] | 138 | MCE.emitWordBE(getBinaryCodeForInstr(MI)); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 139 | break; |
Dan Gohman | fa607c9 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 140 | case TargetInstrInfo::DBG_LABEL: |
| 141 | case TargetInstrInfo::EH_LABEL: |
Nicolas Geoffray | 0e757e1 | 2008-02-13 18:39:37 +0000 | [diff] [blame] | 142 | MCE.emitLabel(MI.getOperand(0).getImm()); |
| 143 | break; |
Evan Cheng | b74b4b6 | 2008-03-17 06:56:52 +0000 | [diff] [blame] | 144 | case TargetInstrInfo::IMPLICIT_DEF: |
| 145 | break; // pseudo opcode, no side effects |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 146 | case PPC::MovePCtoLR: |
| 147 | case PPC::MovePCtoLR8: |
| 148 | assert(TM.getRelocationModel() == Reloc::PIC_); |
| 149 | MovePCtoLROffset = (void*)MCE.getCurrentPCValue(); |
| 150 | MCE.emitWordBE(0x48000005); // bl 1 |
| 151 | break; |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | |
Evan Cheng | 3ca8937 | 2008-09-02 06:51:36 +0000 | [diff] [blame] | 156 | unsigned PPCCodeEmitter::getMachineOpValue(const MachineInstr &MI, |
| 157 | const MachineOperand &MO) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 158 | |
Evan Cheng | 3ca8937 | 2008-09-02 06:51:36 +0000 | [diff] [blame] | 159 | unsigned rv = 0; // Return value; defaults to 0 for unhandled cases |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 160 | // or things that get fixed up later by the JIT. |
Dan Gohman | b9f4fa7 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 161 | if (MO.isReg()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 162 | rv = PPCRegisterInfo::getRegisterNumbering(MO.getReg()); |
| 163 | |
| 164 | // Special encoding for MTCRF and MFOCRF, which uses a bit mask for the |
| 165 | // register, not the register number directly. |
| 166 | if ((MI.getOpcode() == PPC::MTCRF || MI.getOpcode() == PPC::MFOCRF) && |
| 167 | (MO.getReg() >= PPC::CR0 && MO.getReg() <= PPC::CR7)) { |
| 168 | rv = 0x80 >> rv; |
| 169 | } |
Dan Gohman | b9f4fa7 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 170 | } else if (MO.isImm()) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 171 | rv = MO.getImm(); |
Dan Gohman | b9f4fa7 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 172 | } else if (MO.isGlobal() || MO.isSymbol() || |
| 173 | MO.isCPI() || MO.isJTI()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 174 | unsigned Reloc = 0; |
Tilmann Scheller | 386330d | 2009-07-03 06:47:08 +0000 | [diff] [blame] | 175 | if (MI.getOpcode() == PPC::BL_Darwin || MI.getOpcode() == PPC::BL8_Darwin || |
| 176 | MI.getOpcode() == PPC::BL_SVR4 || MI.getOpcode() == PPC::BL8_ELF || |
Arnold Schwaighofer | a003272 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 177 | MI.getOpcode() == PPC::TAILB || MI.getOpcode() == PPC::TAILB8) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 178 | Reloc = PPC::reloc_pcrel_bx; |
| 179 | else { |
| 180 | if (TM.getRelocationModel() == Reloc::PIC_) { |
| 181 | assert(MovePCtoLROffset && "MovePCtoLR not seen yet?"); |
| 182 | } |
| 183 | switch (MI.getOpcode()) { |
Edwin Török | bd448e3 | 2009-07-14 16:55:14 +0000 | [diff] [blame^] | 184 | default: MI.dump(); llvm_unreachable("Unknown instruction for relocation!"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 185 | case PPC::LIS: |
| 186 | case PPC::LIS8: |
| 187 | case PPC::ADDIS: |
| 188 | case PPC::ADDIS8: |
| 189 | Reloc = PPC::reloc_absolute_high; // Pointer to symbol |
| 190 | break; |
| 191 | case PPC::LI: |
| 192 | case PPC::LI8: |
| 193 | case PPC::LA: |
| 194 | // Loads. |
| 195 | case PPC::LBZ: |
| 196 | case PPC::LBZ8: |
| 197 | case PPC::LHA: |
| 198 | case PPC::LHA8: |
| 199 | case PPC::LHZ: |
| 200 | case PPC::LHZ8: |
| 201 | case PPC::LWZ: |
| 202 | case PPC::LWZ8: |
| 203 | case PPC::LFS: |
| 204 | case PPC::LFD: |
| 205 | |
| 206 | // Stores. |
| 207 | case PPC::STB: |
| 208 | case PPC::STB8: |
| 209 | case PPC::STH: |
| 210 | case PPC::STH8: |
| 211 | case PPC::STW: |
| 212 | case PPC::STW8: |
| 213 | case PPC::STFS: |
| 214 | case PPC::STFD: |
| 215 | Reloc = PPC::reloc_absolute_low; |
| 216 | break; |
| 217 | |
| 218 | case PPC::LWA: |
| 219 | case PPC::LD: |
| 220 | case PPC::STD: |
| 221 | case PPC::STD_32: |
| 222 | Reloc = PPC::reloc_absolute_low_ix; |
| 223 | break; |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | MachineRelocation R; |
Dan Gohman | b9f4fa7 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 228 | if (MO.isGlobal()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 229 | R = MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc, |
Evan Cheng | 9f6942b | 2008-01-04 02:22:21 +0000 | [diff] [blame] | 230 | MO.getGlobal(), 0, |
| 231 | isa<Function>(MO.getGlobal())); |
Dan Gohman | b9f4fa7 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 232 | } else if (MO.isSymbol()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 233 | R = MachineRelocation::getExtSym(MCE.getCurrentPCOffset(), |
| 234 | Reloc, MO.getSymbolName(), 0); |
Dan Gohman | b9f4fa7 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 235 | } else if (MO.isCPI()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 236 | R = MachineRelocation::getConstPool(MCE.getCurrentPCOffset(), |
Chris Lattner | 6017d48 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 237 | Reloc, MO.getIndex(), 0); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 238 | } else { |
Dan Gohman | b9f4fa7 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 239 | assert(MO.isJTI()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 240 | R = MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(), |
Chris Lattner | 6017d48 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 241 | Reloc, MO.getIndex(), 0); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | // If in PIC mode, we need to encode the negated address of the |
| 245 | // 'movepctolr' into the unrelocated field. After relocation, we'll have |
| 246 | // &gv-&movepctolr-4 in the imm field. Once &movepctolr is added to the imm |
| 247 | // field, we get &gv. This doesn't happen for branch relocations, which are |
| 248 | // always implicitly pc relative. |
| 249 | if (TM.getRelocationModel() == Reloc::PIC_ && Reloc != PPC::reloc_pcrel_bx){ |
| 250 | assert(MovePCtoLROffset && "MovePCtoLR not seen yet?"); |
| 251 | R.setConstantVal(-(intptr_t)MovePCtoLROffset - 4); |
| 252 | } |
| 253 | MCE.addRelocation(R); |
| 254 | |
Dan Gohman | b9f4fa7 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 255 | } else if (MO.isMBB()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 256 | unsigned Reloc = 0; |
| 257 | unsigned Opcode = MI.getOpcode(); |
Tilmann Scheller | 386330d | 2009-07-03 06:47:08 +0000 | [diff] [blame] | 258 | if (Opcode == PPC::B || Opcode == PPC::BL_Darwin || |
| 259 | Opcode == PPC::BLA_Darwin|| Opcode == PPC::BL_SVR4 || |
| 260 | Opcode == PPC::BLA_SVR4) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 261 | Reloc = PPC::reloc_pcrel_bx; |
| 262 | else // BCC instruction |
| 263 | Reloc = PPC::reloc_pcrel_bcx; |
Bruno Cardoso Lopes | aabb9a5 | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 264 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 265 | MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(), |
Chris Lattner | 6017d48 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 266 | Reloc, MO.getMBB())); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 267 | } else { |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 268 | #ifndef NDEBUG |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 269 | cerr << "ERROR: Unknown type of MachineOperand: " << MO << "\n"; |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 270 | #endif |
Edwin Török | bd448e3 | 2009-07-14 16:55:14 +0000 | [diff] [blame^] | 271 | llvm_unreachable(0); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | return rv; |
| 275 | } |
| 276 | |
| 277 | #include "PPCGenCodeEmitter.inc" |
| 278 | |