Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveIntervals.cpp468 LiveQueryResult LRQ = li->Query(Idx); in shrinkToUses() local
469 VNInfo *VNI = LRQ.valueIn(); in shrinkToUses()
572 LiveQueryResult LRQ = SR.Query(Idx); in shrinkToUses() local
573 VNInfo *VNI = LRQ.valueIn(); in shrinkToUses()
626 LiveQueryResult LRQ = LR.Query(Kill); in pruneValue() local
627 VNInfo *VNI = LRQ.valueOutOrDead(); in pruneValue()
635 if (LRQ.endPoint() < MBBEnd) { in pruneValue()
636 LR.removeSegment(Kill, LRQ.endPoint()); in pruneValue()
660 if (LRQ.valueIn() != VNI) { in pruneValue()
667 if (LRQ.endPoint() < MBBEnd) { in pruneValue()
[all …]
H A DMachineVerifier.cpp2432 LiveQueryResult LRQ = LR.Query(UseIdx); in checkLivenessAtUse() local
2433 bool HasValue = LRQ.valueIn() || (MI->isPHI() && LRQ.valueOut()); in checkLivenessAtUse()
2442 if (MO->isKill() && !LRQ.isKill()) { in checkLivenessAtUse()
2489 LiveQueryResult LRQ = LR.Query(DefIdx); in checkLivenessAtDef() local
2490 if (!LRQ.isDeadDef()) { in checkLivenessAtDef()
2573 LiveQueryResult LRQ = SR.Query(UseIdx); in checkLiveness() local
2574 if (LRQ.valueIn() || (MI->isPHI() && LRQ.valueOut())) in checkLiveness()
H A DRegisterCoalescer.cpp2024 LiveQueryResult LRQ = LI.Query(CopyIdx); in joinCopy() local
2025 if (VNInfo *DefVNI = LRQ.valueDefined()) { in joinCopy()
2026 VNInfo *ReadVNI = LRQ.valueIn(); in joinCopy()
2681 LiveQueryResult LRQ = LI.Query(Def); in followCopyChain() local
2682 ValueIn = LRQ.valueIn(); in followCopyChain()
2692 LiveQueryResult LRQ = S.Query(Def); in followCopyChain() local
2694 ValueIn = LRQ.valueIn(); in followCopyChain()
2697 if (LRQ.valueIn() && ValueIn != LRQ.valueIn()) in followCopyChain()
H A DLiveInterval.cpp1363 LiveQueryResult LRQ = LI.Query(Idx); in Distribute() local
1364 VNI = MO.readsReg() ? LRQ.valueIn() : LRQ.valueDefined(); in Distribute()
H A DMachineScheduler.cpp1364 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(*I)); in updatePressureDiffs() local
1365 VNI = LRQ.valueIn(); in updatePressureDiffs()
1375 LiveQueryResult LRQ = in updatePressureDiffs() local
1377 if (LRQ.valueIn() == VNI) { in updatePressureDiffs()
1573 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(*SU->getInstr())); in computeCyclicCriticalPath() local
1574 if (!LRQ.valueIn()->isPHIDef()) in computeCyclicCriticalPath()
H A DRegisterPressure.cpp585 LiveQueryResult LRQ = LR->Query(SlotIdx); in detectDeadDefs() local
586 if (LRQ.isDeadDef()) { in detectDeadDefs()
H A DLiveDebugVariables.cpp838 LiveQueryResult LRQ = LI.Query(Idx); in handleDebugValue() local
839 if (!LRQ.valueOutOrDead()) { in handleDebugValue()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIWholeQuadMode.cpp402 LiveQueryResult LRQ = LR.Query(LIS->getInstructionIndex(*MI)); in markDefs() local
403 if (const VNInfo *VN = LRQ.valueIn()) { in markDefs()