Home
last modified time | relevance | path

Searched refs:DepthMap (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DPhiValues.cpp53 assert(DepthMap.lookup(Phi) == 0); in processPhi()
56 DepthMap[Phi] = DepthNumber; in processPhi()
63 if (DepthMap.lookup(PhiPhiOp) == 0) in processPhi()
69 DepthMap[Phi] = std::min(DepthMap[Phi], DepthMap[PhiPhiOp]); in processPhi()
80 if (DepthMap[Phi] == DepthNumber) { in processPhi()
88 DepthMap[ComponentPhi] = DepthNumber; in processPhi()
115 if (DepthMap.count(PN) == 0) { in getValuesForPhi()
120 assert(DepthMap.lookup(PN) != 0); in getValuesForPhi()
121 return NonPhiReachableMap[DepthMap[PN]]; in getValuesForPhi()
134 DepthMap.erase(PN); in invalidateValue()
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86CmovConversion.cpp386 DenseMap<MachineInstr *, DepthInfo> DepthMap; in checkForProfitableCmovCandidates() local
396 DepthMap[nullptr] = {0, 0}; in checkForProfitableCmovCandidates()
445 DepthInfo Info = DepthMap.lookup(DefMI); in checkForProfitableCmovCandidates()
454 DepthMap[OperandToDefMap.lookup(&MI.getOperand(1))].OptDepth, in checkForProfitableCmovCandidates()
455 DepthMap[OperandToDefMap.lookup(&MI.getOperand(2))].OptDepth); in checkForProfitableCmovCandidates()
466 DepthMap[&MI] = {MIDepth += Latency, MIDepthOpt += Latency}; in checkForProfitableCmovCandidates()
549 DepthMap[OperandToDefMap.lookup(&MI->getOperand(3))].Depth; in checkForProfitableCmovCandidates()
551 DepthMap[OperandToDefMap.lookup(&MI->getOperand(1))].Depth, in checkForProfitableCmovCandidates()
552 DepthMap[OperandToDefMap.lookup(&MI->getOperand(2))].Depth); in checkForProfitableCmovCandidates()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DPhiValues.h83 DenseMap<const PHINode *, unsigned int> DepthMap; variable