Searched refs:BlockInstRange (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStackColoring.cpp118 BlockInstRange[BB] = std::make_pair(BBStart, BBEnd);
156 BlockInstRange[BB] = std::make_pair(BBStart, BBEnd);
210 std::tie(BBStart, BBEnd) = BlockInstRange[BB];
266 auto BlockRange = BlockInstRange[BB];
H A DSafeStackColoring.h86 DenseMap<const BasicBlock *, std::pair<unsigned, unsigned>> BlockInstRange; member in class:llvm::safestack::StackColoring
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp638 DenseMap<const BasicBlock *, std::pair<unsigned, unsigned>> BlockInstRange;
961 // order. The BlockInstRange numbers are generated in an RPO walk of the basic
965 return BlockInstRange.lookup(P1.second).first <
966 BlockInstRange.lookup(P2.second).first;
2439 const auto &InstRange = BlockInstRange.lookup(To);
2967 BlockInstRange.clear();
3374 const auto &CurrInstRange = BlockInstRange.lookup(CurrBlock);
3447 BlockInstRange.insert({B, BlockRange});
3459 const auto &InstRange = BlockInstRange.lookup(&F.getEntryBlock());

Completed in 117 milliseconds