Searched refs:ReplInst (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVRegularizer.cpp84 auto ReplInst = CE->getAsInstruction();
86 ReplInst->insertBefore(InsPoint);
87 LLVM_DEBUG(dbgs() << " -> " << *ReplInst << '\n');
98 if (ReplInst->getParent() == User->getParent() &&
99 User->comesBefore(ReplInst))
100 ReplInst->moveBefore(User);
101 User->replaceUsesOfWith(CE, ReplInst);
103 return ReplInst;
140 Value *ReplInst = LowerConstantVec(Vec, OI); local
141 if (ReplInst)
150 Value *ReplInst = nullptr; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp241 static void combineKnownMetadata(Instruction *ReplInst, Instruction *I) { argument
250 combineMetadata(ReplInst, I, KnownIDs, true);
H A DMemCpyOptimizer.cpp340 static void combineAAMetadata(Instruction *ReplInst, Instruction *I) {
347 combineMetadata(ReplInst, I, KnownIDs, true);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp3366 auto *ReplInst = dyn_cast<Instruction>(Repl);
3367 if (!ReplInst)
3375 if (isa<OverflowingBinaryOperator>(ReplInst) &&
3377 ReplInst->dropPoisonGeneratingFlags();
3383 ReplInst->andIRFlags(I);
3394 combineMetadataForCSE(ReplInst, I, false);

Completed in 189 milliseconds