Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DPhiValues.cpp52 assert(DepthMap.lookup(Phi) == 0); in processPhi()
55 DepthMap[Phi] = RootDepthNumber; in processPhi()
62 unsigned int OpDepthNumber = DepthMap.lookup(PhiPhiOp); in processPhi()
65 OpDepthNumber = DepthMap.lookup(PhiPhiOp); in processPhi()
71 unsigned &Depth = DepthMap[Phi]; in processPhi()
84 if (DepthMap[Phi] == RootDepthNumber) { in processPhi()
99 unsigned int OpDepthNumber = DepthMap[PhiOp]; in processPhi()
112 unsigned int &ComponentDepthNumber = DepthMap[Stack.back()]; in processPhi()
128 unsigned int DepthNumber = DepthMap.lookup(PN); in getValuesForPhi()
132 DepthNumber = DepthMap.lookup(PN); in getValuesForPhi()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CGData/
H A DOutlinedHashTree.cpp61 DenseMap<const HashNode *, size_t> DepthMap; in depth() local
62 walkGraph([&Size, &DepthMap]( in depth()
63 const HashNode *N) { Size = std::max(Size, DepthMap[N]); }, in depth()
64 [&DepthMap](const HashNode *Src, const HashNode *Dst) { in depth()
65 size_t Depth = DepthMap[Src]; in depth()
66 DepthMap[Dst] = Depth + 1; in depth()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CmovConversion.cpp402 DenseMap<MachineInstr *, DepthInfo> DepthMap; in checkForProfitableCmovCandidates() local
412 DepthMap[nullptr] = {0, 0}; in checkForProfitableCmovCandidates()
460 DepthInfo Info = DepthMap.lookup(DefMI); in checkForProfitableCmovCandidates()
469 DepthMap[OperandToDefMap.lookup(&MI.getOperand(1))].OptDepth, in checkForProfitableCmovCandidates()
470 DepthMap[OperandToDefMap.lookup(&MI.getOperand(2))].OptDepth); in checkForProfitableCmovCandidates()
481 DepthMap[&MI] = {MIDepth += Latency, MIDepthOpt += Latency}; in checkForProfitableCmovCandidates()
564 DepthMap[OperandToDefMap.lookup(&MI->getOperand(4))].Depth; in checkForProfitableCmovCandidates()
566 DepthMap[OperandToDefMap.lookup(&MI->getOperand(1))].Depth, in checkForProfitableCmovCandidates()
567 DepthMap[OperandToDefMap.lookup(&MI->getOperand(2))].Depth); in checkForProfitableCmovCandidates()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DPhiValues.h80 DenseMap<const PHINode *, unsigned int> DepthMap; variable