HomeSort by relevance Sort by last modified time
    Searched refs:LastDef (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
LiveVariables.cpp 192 MachineInstr *LastDef = NULL;
201 LastDef = Def;
206 if (!LastDef)
210 for (unsigned i = 0, e = LastDef->getNumOperands(); i != e; ++i) {
211 MachineOperand &MO = LastDef->getOperand(i);
222 return LastDef;
229 MachineInstr *LastDef = PhysRegDef[Reg];
231 if (!LastDef && !PhysRegUse[Reg]) {
265 else if (LastDef && !PhysRegUse[Reg] &&
266 !LastDef->findRegisterDefOperand(Reg)
    [all...]
TwoAddressInstructionPass.cpp 95 unsigned &LastDef);
343 unsigned &LastDef) {
344 LastDef = 0;
357 if (MO.isDef() && DI->second > LastDef)
358 LastDef = DI->second;
361 return !(LastUse > LastDef && LastUse < Dist);
    [all...]

Completed in 640 milliseconds