Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVRegularizer.cpp84 auto ReplInst = CE->getAsInstruction(); in runLowerConstExpr() local
86 ReplInst->insertBefore(InsPoint); in runLowerConstExpr()
87 LLVM_DEBUG(dbgs() << " -> " << *ReplInst << '\n'); in runLowerConstExpr()
98 if (ReplInst->getParent() == User->getParent() && in runLowerConstExpr()
99 User->comesBefore(ReplInst)) in runLowerConstExpr()
100 ReplInst->moveBefore(User); in runLowerConstExpr()
101 User->replaceUsesOfWith(CE, ReplInst); in runLowerConstExpr()
103 return ReplInst; in runLowerConstExpr()
140 Value *ReplInst = LowerConstantVec(Vec, OI); in runLowerConstExpr() local
141 if (ReplInst) in runLowerConstExpr()
150 Value *ReplInst = nullptr; runLowerConstExpr() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp3426 auto *ReplInst = dyn_cast<Instruction>(Repl); in patchReplacementInstruction() local
3427 if (!ReplInst) in patchReplacementInstruction()
3435 if (isa<OverflowingBinaryOperator>(ReplInst) && in patchReplacementInstruction()
3437 ReplInst->dropPoisonGeneratingFlags(); in patchReplacementInstruction()
3443 ReplInst->andIRFlags(I); in patchReplacementInstruction()
3454 combineMetadataForCSE(ReplInst, I, false); in patchReplacementInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp344 static void combineAAMetadata(Instruction *ReplInst, Instruction *I) { in combineAAMetadata() argument
351 combineMetadata(ReplInst, I, KnownIDs, true); in combineAAMetadata()