Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DLiveIntervalAnalysis.cpp443 LiveQueryResult LRQ = li->Query(Idx); in shrinkToUses() local
444 VNInfo *VNI = LRQ.valueIn(); in shrinkToUses()
456 if (VNInfo *DefVNI = LRQ.valueDefined()) in shrinkToUses()
555 LiveQueryResult LRQ = SR.Query(Idx); in shrinkToUses() local
556 VNInfo *VNI = LRQ.valueIn(); in shrinkToUses()
564 if (VNInfo *DefVNI = LRQ.valueDefined()) in shrinkToUses()
607 LiveQueryResult LRQ = LR.Query(Kill); in pruneValue() local
608 VNInfo *VNI = LRQ.valueOutOrDead(); in pruneValue()
616 if (LRQ.endPoint() < MBBEnd) { in pruneValue()
617 LR.removeSegment(Kill, LRQ.endPoint()); in pruneValue()
[all …]
DRegisterPressure.cpp408 LiveQueryResult LRQ = LR->Query(SlotIdx); in detectDeadDefs() local
409 if (LRQ.isDeadDef()) { in detectDeadDefs()
571 LiveQueryResult LRQ = LR->Query(SlotIdx); in recede() local
572 if (!LRQ.isKill() && !LRQ.valueDefined()) in recede()
934 LiveQueryResult LRQ = LR->Query(SlotIdx); in bumpDownwardPressure() local
935 if (LRQ.isKill() && !findUseBetween(Reg, CurrIdx, SlotIdx, *MRI, LIS)) in bumpDownwardPressure()
DMachineVerifier.cpp1057 LiveQueryResult LRQ = LR->Query(UseIdx); in checkLiveness() local
1058 if (!LRQ.valueIn()) { in checkLiveness()
1063 if (MO->isKill() && !LRQ.isKill()) { in checkLiveness()
1075 LiveQueryResult LRQ = LI.Query(UseIdx); in checkLiveness() local
1076 if (!LRQ.valueIn()) { in checkLiveness()
1082 if (MO->isKill() && !LRQ.isKill()) { in checkLiveness()
1176 LiveQueryResult LRQ = LI.Query(DefIdx); in checkLiveness() local
1177 if (!LRQ.isDeadDef()) { in checkLiveness()
DRegisterCoalescer.cpp1318 LiveQueryResult LRQ = LI.Query(CopyIdx); in joinCopy() local
1319 if (VNInfo *DefVNI = LRQ.valueDefined()) { in joinCopy()
1320 VNInfo *ReadVNI = LRQ.valueIn(); in joinCopy()
1865 LiveQueryResult LRQ = LI.Query(Def); in followCopyChain() local
1866 ValueIn = LRQ.valueIn(); in followCopyChain()
1875 LiveQueryResult LRQ = S.Query(Def); in followCopyChain() local
1876 ValueIn = LRQ.valueIn(); in followCopyChain()
DMachineScheduler.cpp991 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(I)); in updatePressureDiffs() local
992 VNI = LRQ.valueIn(); in updatePressureDiffs()
1002 LiveQueryResult LRQ in updatePressureDiffs() local
1004 if (LRQ.valueIn() == VNI) { in updatePressureDiffs()
1196 LiveQueryResult LRQ = in computeCyclicCriticalPath() local
1198 if (!LRQ.valueIn()->isPHIDef()) in computeCyclicCriticalPath()
DLiveInterval.cpp1425 LiveQueryResult LRQ = LI.Query(Idx); in Distribute() local
1426 const VNInfo *VNI = MO.readsReg() ? LRQ.valueIn() : LRQ.valueDefined(); in Distribute()