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.cpp82 MapVector<Instruction *, std::tuple<Value *, int, bool>> ConvertedInsts; member in __anon24945bae0111::SystemZTDCPass
101 ConvertedInsts[I] = std::make_tuple(V, Mask, Worthy); in converted()
295 std::tie(Op0, Mask0, Worthy0) = ConvertedInsts[cast<Instruction>(I.getOperand(0))]; in convertLogicOp()
296 std::tie(Op1, Mask1, Worthy1) = ConvertedInsts[cast<Instruction>(I.getOperand(1))]; in convertLogicOp()
323 ConvertedInsts.clear(); in runOnFunction()
336 if (ConvertedInsts.empty()) in runOnFunction()
345 if (ConvertedInsts.count(dyn_cast<Instruction>(Op->getOperand(0))) && in runOnFunction()
346 ConvertedInsts.count(dyn_cast<Instruction>(Op->getOperand(1))) && in runOnFunction()
347 !ConvertedInsts.count(Op)) in runOnFunction()
358 for (auto &It : reverse(ConvertedInsts)) { in runOnFunction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp405 if (ConvertedInsts.contains(I)) in convert()
407 return ConvertedInsts[I]; in convert()
475 ConvertedInsts[I] = NewV; in convert()
481 for (auto &I : reverse(ConvertedInsts)) in cleanup()
490 ConvertedInsts.clear(); in runImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DFloat2Int.h54 MapVector<Instruction *, Value *> ConvertedInsts; variable