Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DTruncInstCombine.cpp91 InstInfoMap.clear(); in buildTruncExpressionGraph()
113 InstInfoMap.try_emplace(I); in buildTruncExpressionGraph()
117 if (InstInfoMap.count(I)) { in buildTruncExpressionGraph()
188 InstInfoMap[cast<Instruction>(Src)].ValidBitWidth = TruncBitWidth; in getMinBitWidth()
201 auto &Info = InstInfoMap[I]; in getMinBitWidth()
214 std::max(Info.MinBitWidth, InstInfoMap[IOp].MinBitWidth); in getMinBitWidth()
231 unsigned IOpBitwidth = InstInfoMap.lookup(IOp).ValidBitWidth; in getMinBitWidth()
234 InstInfoMap[IOp].ValidBitWidth = ValidBitWidth; in getMinBitWidth()
238 unsigned MinBitWidth = InstInfoMap.lookup(cast<Instruction>(Src)).MinBitWidth; in getMinBitWidth()
274 for (auto Itr : InstInfoMap) { in getBestTruncatedType()
[all …]
H A DAggressiveInstCombineInternal.h77 MapVector<Instruction *, Info> InstInfoMap; variable