Home | History | Annotate | Download | only in Mips

Lines Matching defs:MCE

54   JITCodeEmitter &MCE;
67 MipsCodeEmitter(TargetMachine &tm, JITCodeEmitter &mce)
69 TM(tm), MCE(mce), MCPEs(0), MJTEs(0),
141 MCE.setModuleInfo(&getAnalysis<MachineModuleInfo> ());
146 MCE.startFunction(MF);
150 MCE.StartMachineBasicBlock(MBB);
155 } while (MCE.finishFunction(MF));
242 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
249 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
251 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset() + Offset,
257 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
262 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
268 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
274 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
280 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << *MI);
287 MCE.processDebugLoc(MI->getDebugLoc(), true);
292 MCE.processDebugLoc(MI->getDebugLoc(), false);
299 MCE.emitWordLE(Word);
301 MCE.emitWordBE(Word);
356 /// code to the specified MCE object.