Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveVariables.cpp70 for (unsigned AB : AliveBlocks) in dump()
105 if (VRInfo.AliveBlocks.test(BBNum)) in MarkVirtRegAliveInBlock()
109 VRInfo.AliveBlocks.set(BBNum); in MarkVirtRegAliveInBlock()
170 if (!VRInfo.AliveBlocks.test(BBNum)) in HandleVirtRegUse()
181 if (VRInfo.AliveBlocks.empty()) in HandleVirtRegDef()
659 VI.AliveBlocks.clear(); in recomputeForSingleDefVirtReg()
784 if (AliveBlocks.test(Num)) in isLiveIn()
808 if (VI.AliveBlocks.test(SuccIdx)) in isLiveOut()
863 VI.AliveBlocks.set(NumNew); in addNewBlock()
881 VI.AliveBlocks.set(NumNew); in addNewBlock()
[all …]
H A DPHIElimination.cpp169 SparseBitVector<>::iterator AliveBlockItr = VI.AliveBlocks.begin(); in runOnMachineFunction()
170 SparseBitVector<>::iterator EndItr = VI.AliveBlocks.end(); in runOnMachineFunction()
492 IncomingVI.AliveBlocks = std::move(SrcVI.AliveBlocks); in LowerPHINode()
493 SrcVI.AliveBlocks.clear(); in LowerPHINode()
581 LV->getVarInfo(SrcReg).AliveBlocks.reset(opBlockNum); in LowerPHINode()
H A DTwoAddressInstructionPass.cpp1743 SrcInfo.AliveBlocks |= DstInfo.AliveBlocks; in processStatepoint()
1744 DstInfo.AliveBlocks.clear(); in processStatepoint()
H A DMachineVerifier.cpp3049 if (!VI.AliveBlocks.test(MBB.getNumber())) { in verifyLiveVariables()
3055 if (VI.AliveBlocks.test(MBB.getNumber())) { in verifyLiveVariables()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIOptimizeVGPRLiveRange.cpp249 if ((VI.AliveBlocks.test(If->getNumber()) || DefMBB == If) && in collectCandidateRegisters()
294 if ((VI.AliveBlocks.test(If->getNumber()) || DefMBB == If) && in collectCandidateRegisters()
422 OldVarInfo.AliveBlocks.reset(MBB->getNumber()); in updateLiveRangeInThenRegion()
479 if (OldVarInfo.AliveBlocks.test(BBNum)) { in updateLiveRangeInElseRegion()
480 NewVarInfo.AliveBlocks.set(BBNum); in updateLiveRangeInElseRegion()
483 OldVarInfo.AliveBlocks.reset(BBNum); in updateLiveRangeInElseRegion()
546 OldVarInfo.AliveBlocks.reset(Flow->getNumber()); in optimizeLiveRange()
605 OldVarInfo.AliveBlocks.reset(BBNum); in optimizeWaterfallLiveRange()
610 NewVarInfo.AliveBlocks.reset(BBNum); in optimizeWaterfallLiveRange()
612 NewVarInfo.AliveBlocks.set(BBNum); in optimizeWaterfallLiveRange()
H A DSILowerControlFlow.cpp541 if (VI.AliveBlocks.test(MBB.getNumber())) in emitEndCf()
542 VI.AliveBlocks.set(SplitBB->getNumber()); in emitEndCf()
546 VI.AliveBlocks.set(MBB.getNumber()); in emitEndCf()
H A DSIInstrInfo.cpp3887 LV->getVarInfo(DefReg).AliveBlocks.clear(); in convertToThreeAddress()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveVariables.h85 SparseBitVector<> AliveBlocks; member