Searched refs:ClonedValue (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopVersioning.cpp160 Value *ClonedValue = PN->getIncomingValue(0); local
161 auto Mapped = VMap.find(ClonedValue);
163 ClonedValue = Mapped->second;
165 PN->addIncoming(ClonedValue, NonVersionedLoop->getExitingBlock());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp2103 Instruction *ClonedValue = Instr->clone();
2104 ClonedValue->insertBefore(InsertBefore);
2105 ClonedValue->setName(Instr->getName() + ".remat");
2111 ClonedValue->replaceUsesOfWith(LastValue, LastClonedValue);
2113 for (auto OpValue : ClonedValue->operand_values()) {
2130 ClonedValue->replaceUsesOfWith(RootOfChain, AlternateLiveBase);
2133 LastClonedValue = ClonedValue;

Completed in 214 milliseconds