Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DLiveIntervalAnalysis.cpp424 LiveQueryResult LRQ = li->Query(Idx); in shrinkToUses() local
425 VNInfo *VNI = LRQ.valueIn(); in shrinkToUses()
437 if (VNInfo *DefVNI = LRQ.valueDefined()) in shrinkToUses()
525 LiveQueryResult LRQ = SR.Query(Idx); in shrinkToUses() local
526 VNInfo *VNI = LRQ.valueIn(); in shrinkToUses()
534 if (VNInfo *DefVNI = LRQ.valueDefined()) in shrinkToUses()
577 LiveQueryResult LRQ = LR.Query(Kill); in pruneValue() local
578 VNInfo *VNI = LRQ.valueOutOrDead(); in pruneValue()
586 if (LRQ.endPoint() < MBBEnd) { in pruneValue()
587 LR.removeSegment(Kill, LRQ.endPoint()); in pruneValue()
[all …]
DRegisterPressure.cpp507 LiveQueryResult LRQ = LR->Query(SlotIdx); in recede() local
508 DeadDef = LRQ.isDeadDef(); in recede()
533 LiveQueryResult LRQ = LR->Query(SlotIdx); in recede() local
534 if (!LRQ.isKill() && !LRQ.valueDefined()) in recede()
728 LiveQueryResult LRQ = LR->Query(SlotIdx); in bumpUpwardPressure() local
729 DeadDef = LRQ.isDeadDef(); in bumpUpwardPressure()
927 LiveQueryResult LRQ = LR->Query(SlotIdx); in bumpDownwardPressure() local
928 if (LRQ.isKill() && !findUseBetween(Reg, CurrIdx, SlotIdx, MRI, LIS)) { in bumpDownwardPressure()
DMachineVerifier.cpp1009 LiveQueryResult LRQ = LR->Query(UseIdx); in checkLiveness() local
1010 if (!LRQ.valueIn()) { in checkLiveness()
1015 if (MO->isKill() && !LRQ.isKill()) { in checkLiveness()
1027 LiveQueryResult LRQ = LI.Query(UseIdx); in checkLiveness() local
1028 if (!LRQ.valueIn()) { in checkLiveness()
1034 if (MO->isKill() && !LRQ.isKill()) { in checkLiveness()
1128 LiveQueryResult LRQ = LI.Query(DefIdx); in checkLiveness() local
1129 if (!LRQ.isDeadDef()) { in checkLiveness()
DRegisterCoalescer.cpp1281 LiveQueryResult LRQ = LI.Query(CopyIdx); in joinCopy() local
1282 if (VNInfo *DefVNI = LRQ.valueDefined()) { in joinCopy()
1283 VNInfo *ReadVNI = LRQ.valueIn(); in joinCopy()
1819 LiveQueryResult LRQ = LI.Query(Def); in followCopyChain() local
1820 ValueIn = LRQ.valueIn(); in followCopyChain()
1829 LiveQueryResult LRQ = S.Query(Def); in followCopyChain() local
1830 ValueIn = LRQ.valueIn(); in followCopyChain()
DLiveInterval.cpp1393 LiveQueryResult LRQ = LI.Query(Idx); in Distribute() local
1394 const VNInfo *VNI = MO.readsReg() ? LRQ.valueIn() : LRQ.valueDefined(); in Distribute()
DMachineScheduler.cpp973 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(I)); in updatePressureDiffs() local
974 VNI = LRQ.valueIn(); in updatePressureDiffs()
986 LiveQueryResult LRQ in updatePressureDiffs() local
988 if (LRQ.valueIn() == VNI) in updatePressureDiffs()
1157 LiveQueryResult LRQ = in computeCyclicCriticalPath() local
1159 if (!LRQ.valueIn()->isPHIDef()) in computeCyclicCriticalPath()
DScheduleDAGInstrs.cpp429 LiveQueryResult LRQ in addVRegUseDeps() local
431 VNInfo *VNI = LRQ.valueIn(); in addVRegUseDeps()