Home
last modified time | relevance | path

Searched refs:AliveBits (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDemandedBits.cpp292 AliveBits.clear(); in performAnalysis()
309 if (AliveBits.try_emplace(&I, T->getScalarSizeInBits(), 0).second) in performAnalysis()
320 AliveBits[J] = APInt::getAllOnes(T->getScalarSizeInBits()); in performAnalysis()
340 AOut = AliveBits[UserI]; in performAnalysis()
385 auto Res = AliveBits.try_emplace(I); in performAnalysis()
401 auto Found = AliveBits.find(I); in getDemandedBits()
402 if (Found != AliveBits.end()) in getDemandedBits()
439 return !Visited.count(I) && !AliveBits.contains(I) && !isAlwaysLive(I); in isInstructionDead()
459 auto Found = AliveBits.find(UserI); in isUseDead()
460 if (Found != AliveBits.end() && Found->second.isZero()) in isUseDead()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDemandedBits.h97 DenseMap<Instruction *, APInt> AliveBits; variable