Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveVariables.cpp96 for (unsigned AB : AliveBlocks) in print()
134 if (VRInfo.AliveBlocks.test(BBNum)) in MarkVirtRegAliveInBlock()
138 VRInfo.AliveBlocks.set(BBNum); in MarkVirtRegAliveInBlock()
199 if (!VRInfo.AliveBlocks.test(BBNum)) in HandleVirtRegUse()
210 if (VRInfo.AliveBlocks.empty()) in HandleVirtRegDef()
681 VI.AliveBlocks.clear(); in recomputeForSingleDefVirtReg()
731 if (VI.AliveBlocks.test(BB.getNumber())) in recomputeForSingleDefVirtReg()
733 VI.AliveBlocks.set(BB.getNumber()); in recomputeForSingleDefVirtReg()
741 if (VI.AliveBlocks.test(UseBBNum)) in recomputeForSingleDefVirtReg()
806 if (AliveBlocks.test(Num)) in isLiveIn()
[all …]
H A DPHIElimination.cpp234 SparseBitVector<>::iterator AliveBlockItr = VI.AliveBlocks.begin(); in run()
235 SparseBitVector<>::iterator EndItr = VI.AliveBlocks.end(); in run()
577 IncomingVI.AliveBlocks = std::move(SrcVI.AliveBlocks); in LowerPHINode()
578 SrcVI.AliveBlocks.clear(); in LowerPHINode()
667 LV->getVarInfo(SrcReg).AliveBlocks.reset(opBlockNum); in LowerPHINode()
H A DTwoAddressInstructionPass.cpp1820 SrcInfo.AliveBlocks |= DstInfo.AliveBlocks; in processStatepoint()
1821 DstInfo.AliveBlocks.clear(); in processStatepoint()
H A DMachineVerifier.cpp3511 if (!VI.AliveBlocks.test(MBB.getNumber())) { in verifyLiveVariables()
3517 if (VI.AliveBlocks.test(MBB.getNumber())) { in verifyLiveVariables()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIOptimizeVGPRLiveRange.cpp256 if ((VI.AliveBlocks.test(If->getNumber()) || DefMBB == If) && in collectCandidateRegisters()
301 if ((VI.AliveBlocks.test(If->getNumber()) || DefMBB == If) && in collectCandidateRegisters()
427 OldVarInfo.AliveBlocks.reset(MBB->getNumber()); in updateLiveRangeInThenRegion()
484 if (OldVarInfo.AliveBlocks.test(BBNum)) { in updateLiveRangeInElseRegion()
485 NewVarInfo.AliveBlocks.set(BBNum); in updateLiveRangeInElseRegion()
488 OldVarInfo.AliveBlocks.reset(BBNum); in updateLiveRangeInElseRegion()
551 OldVarInfo.AliveBlocks.reset(Flow->getNumber()); in optimizeLiveRange()
610 OldVarInfo.AliveBlocks.reset(BBNum); in optimizeWaterfallLiveRange()
615 NewVarInfo.AliveBlocks.reset(BBNum); in optimizeWaterfallLiveRange()
617 NewVarInfo.AliveBlocks.set(BBNum); in optimizeWaterfallLiveRange()
H A DSILowerControlFlow.cpp548 if (VI.AliveBlocks.test(MBB.getNumber())) in emitEndCf()
549 VI.AliveBlocks.set(SplitBB->getNumber()); in emitEndCf()
553 VI.AliveBlocks.set(MBB.getNumber()); in emitEndCf()
H A DSIInstrInfo.cpp4112 LV->getVarInfo(DefReg).AliveBlocks.clear(); in convertToThreeAddress()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveVariables.h84 SparseBitVector<> AliveBlocks; member