Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
DSystemZTDC.cpp86 MapVector<Instruction *, std::tuple<Value *, int, bool>> ConvertedInsts; member in __anon2f97e6c60111::SystemZTDCPass
105 ConvertedInsts[I] = std::make_tuple(V, Mask, Worthy); in converted()
299 std::tie(Op0, Mask0, Worthy0) = ConvertedInsts[cast<Instruction>(I.getOperand(0))]; in convertLogicOp()
300 std::tie(Op1, Mask1, Worthy1) = ConvertedInsts[cast<Instruction>(I.getOperand(1))]; in convertLogicOp()
327 ConvertedInsts.clear(); in runOnFunction()
340 if (ConvertedInsts.empty()) in runOnFunction()
349 if (ConvertedInsts.count(dyn_cast<Instruction>(Op->getOperand(0))) && in runOnFunction()
350 ConvertedInsts.count(dyn_cast<Instruction>(Op->getOperand(1))) && in runOnFunction()
351 !ConvertedInsts.count(Op)) in runOnFunction()
362 for (auto &It : reverse(ConvertedInsts)) { in runOnFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp437 if (ConvertedInsts.find(I) != ConvertedInsts.end()) in convert()
439 return ConvertedInsts[I]; in convert()
507 ConvertedInsts[I] = NewV; in convert()
513 for (auto &I : reverse(ConvertedInsts)) in cleanup()
522 ConvertedInsts.clear(); in runImpl()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
DFloat2Int.h48 MapVector<Instruction *, Value *> ConvertedInsts; variable