Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTDC.cpp78 MapVector<Instruction *, std::tuple<Value *, int, bool>> ConvertedInsts; member in __anon24945bae0111::SystemZTDCPass
97 ConvertedInsts[I] = std::make_tuple(V, Mask, Worthy); in converted()
291 std::tie(Op0, Mask0, Worthy0) = ConvertedInsts[cast<Instruction>(I.getOperand(0))]; in convertLogicOp()
292 std::tie(Op1, Mask1, Worthy1) = ConvertedInsts[cast<Instruction>(I.getOperand(1))]; in convertLogicOp()
319 ConvertedInsts.clear(); in runOnFunction()
332 if (ConvertedInsts.empty()) in runOnFunction()
341 if (ConvertedInsts.count(dyn_cast<Instruction>(Op->getOperand(0))) && in runOnFunction()
342 ConvertedInsts.count(dyn_cast<Instruction>(Op->getOperand(1))) && in runOnFunction()
343 !ConvertedInsts.count(Op)) in runOnFunction()
354 for (auto &It : reverse(ConvertedInsts)) { in runOnFunction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp401 if (auto It = ConvertedInsts.find(I); It != ConvertedInsts.end()) in convert()
471 ConvertedInsts[I] = NewV; in convert()
477 for (auto &I : reverse(ConvertedInsts)) in cleanup()
486 ConvertedInsts.clear(); in runImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DFloat2Int.h54 MapVector<Instruction *, Value *> ConvertedInsts; variable