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.cpp92 InstInfoMap.clear(); in buildTruncExpressionGraph()
114 InstInfoMap.insert(std::make_pair(I, Info())); in buildTruncExpressionGraph()
118 if (InstInfoMap.count(I)) { in buildTruncExpressionGraph()
189 InstInfoMap[cast<Instruction>(Src)].ValidBitWidth = TruncBitWidth; in getMinBitWidth()
202 auto &Info = InstInfoMap[I]; in getMinBitWidth()
215 std::max(Info.MinBitWidth, InstInfoMap[IOp].MinBitWidth); in getMinBitWidth()
232 unsigned IOpBitwidth = InstInfoMap.lookup(IOp).ValidBitWidth; in getMinBitWidth()
235 InstInfoMap[IOp].ValidBitWidth = ValidBitWidth; in getMinBitWidth()
239 unsigned MinBitWidth = InstInfoMap.lookup(cast<Instruction>(Src)).MinBitWidth; in getMinBitWidth()
275 for (auto Itr : InstInfoMap) { in getBestTruncatedType()
[all...]
H A DAggressiveInstCombineInternal.h79 MapVector<Instruction *, Info> InstInfoMap; variable