Home
last modified time | relevance | path

Searched refs:OperIdx (Results 1 – 6 of 6) sorted by relevance

/external/llvm/include/llvm/CodeGen/
DScheduleDAGInstrs.h245 void addPhysRegDataDeps(SUnit *SU, unsigned OperIdx);
246 void addPhysRegDeps(SUnit *SU, unsigned OperIdx);
247 void addVRegDefDeps(SUnit *SU, unsigned OperIdx);
248 void addVRegUseDeps(SUnit *SU, unsigned OperIdx);
/external/llvm/lib/CodeGen/
DScheduleDAGInstrs.cpp252 void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) { in addPhysRegDataDeps() argument
253 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx); in addPhysRegDataDeps()
283 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse, in addPhysRegDataDeps()
295 void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) { in addPhysRegDeps() argument
297 MachineOperand &MO = MI->getOperand(OperIdx); in addPhysRegDeps()
322 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr())); in addPhysRegDeps()
334 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg())); in addPhysRegDeps()
339 addPhysRegDataDeps(SU, OperIdx); in addPhysRegDeps()
366 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg)); in addPhysRegDeps()
376 void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) { in addVRegDefDeps() argument
[all …]
DStackMaps.cpp394 unsigned OperIdx = 0; in emitCallsiteEntries() local
416 DEBUG(dbgs() << WSMP << " Loc " << OperIdx << ": "; in emitCallsiteEntries()
450 OperIdx++; in emitCallsiteEntries()
460 OperIdx = 0; in emitCallsiteEntries()
462 DEBUG(dbgs() << WSMP << " LO " << OperIdx << ": " in emitCallsiteEntries()
DTargetLoweringBase.cpp933 for(unsigned OperIdx = 0; OperIdx != MI->getNumOperands(); ++OperIdx) { in emitPatchPoint() local
934 MachineOperand &MO = MI->getOperand(OperIdx); in emitPatchPoint()
944 for (unsigned i = 0; i < OperIdx; ++i) in emitPatchPoint()
948 MIB.addOperand(MI->getOperand(OperIdx)); in emitPatchPoint()
951 for (unsigned i = OperIdx + 1; i != MI->getNumOperands(); ++i) in emitPatchPoint()
970 OperIdx += (MIB->getNumOperands() - MI->getNumOperands()) - 1; in emitPatchPoint()
/external/llvm/lib/Transforms/Utils/
DSimplifyIndVar.cpp99 unsigned OperIdx = 0; in foldIVUser() local
108 if (IVOperand != UseInst->getOperand(OperIdx) || in foldIVUser()
145 UseInst->setOperand(OperIdx, IVSrc); in foldIVUser()
/external/llvm/utils/TableGen/
DCodeGenSchedule.cpp1173 unsigned OperIdx = RWSequences.size()-1; in pushVariant() local
1178 RWSequences.push_back(RWSequences[OperIdx]); in pushVariant()
1185 RWI != RWE; ++RWI, ++OperIdx) { in pushVariant()
1191 RWSequences[OperIdx].insert(RWSequences[OperIdx].end(), in pushVariant()
1194 assert(OperIdx == RWSequences.size() && "missed a sequence"); in pushVariant()