| /src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | DwarfEHPrepare.cpp | 96 InsertValueInst *SelIVI = dyn_cast<InsertValueInst>(V); in GetExceptionObject() 98 InsertValueInst *ExcIVI = nullptr; in GetExceptionObject() 103 ExcIVI = dyn_cast<InsertValueInst>(SelIVI->getOperand(0)); in GetExceptionObject()
|
| H A D | Analysis.cpp | 342 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(V)) { in getNoopInput()
|
| /src/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/ |
| H A D | SLPVectorizer.h | 38 class InsertValueInst; variable 136 bool vectorizeInsertValueInst(InsertValueInst *IVI, BasicBlock *BB,
|
| /src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ReplaceConstant.cpp | 35 V = InsertValueInst::Create(V, Op, Idx, "", InsertPt); in expandUser()
|
| H A D | Instruction.cpp | 824 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) in hasSameSpecialState() 825 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices(); in hasSameSpecialState()
|
| H A D | Instructions.cpp | 2443 void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, in init() 2462 InsertValueInst::InsertValueInst(const InsertValueInst &IVI) in InsertValueInst() function in InsertValueInst 2464 OperandTraits<InsertValueInst>::op_begin(this), 2), in InsertValueInst() 4215 InsertValueInst *InsertValueInst::cloneImpl() const { in cloneImpl() 4216 return new InsertValueInst(*this); in cloneImpl()
|
| /src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 2390 class InsertValueInst : public Instruction { 2393 InsertValueInst(const InsertValueInst &IVI); 2399 inline InsertValueInst(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, 2404 InsertValueInst(Value *Agg, Value *Val, unsigned Idx, 2415 InsertValueInst *cloneImpl() const; 2422 static InsertValueInst *Create(Value *Agg, Value *Val, 2426 return new InsertValueInst(Agg, Val, Idxs, NameStr, InsertBefore); 2482 struct OperandTraits<InsertValueInst> : 2483 public FixedNumOperandTraits<InsertValueInst, 2> { 2486 InsertValueInst::InsertValueInst(Value *Agg, Value *Val, [all …]
|
| H A D | InstVisitor.h | 195 RetTy visitInsertValueInst(InsertValueInst &I) { DELEGATE(Instruction); } in visitInsertValueInst()
|
| H A D | Instruction.def | 218 HANDLE_OTHER_INST(65, InsertValue, InsertValueInst) // insert into aggregate
|
| /src/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombinePHI.cpp | 332 auto *FirstIVI = cast<InsertValueInst>(PN.getIncomingValue(0)); in foldPHIArgInsertValueInstructionIntoPHI() 337 auto *I = dyn_cast<InsertValueInst>(V); in foldPHIArgInsertValueInstructionIntoPHI() 354 cast<InsertValueInst>(std::get<1>(Incoming))->getOperand(OpIdx), in foldPHIArgInsertValueInstructionIntoPHI() 360 auto *NewIVI = InsertValueInst::Create(NewOperands[0], NewOperands[1], in foldPHIArgInsertValueInstructionIntoPHI() 876 if (isa<InsertValueInst>(FirstInst)) in foldPHIArgOpIntoPHI()
|
| H A D | InstCombineInternal.h | 172 foldAggregateConstructionIntoAggregateReuse(InsertValueInst &OrigIVI); 173 Instruction *visitInsertValueInst(InsertValueInst &IV);
|
| H A D | InstCombineVectorOps.cpp | 869 InsertValueInst &OrigIVI) { in foldAggregateConstructionIntoAggregateReuse() 910 for (InsertValueInst *CurrIVI = &OrigIVI; in foldAggregateConstructionIntoAggregateReuse() 912 CurrIVI = dyn_cast<InsertValueInst>(CurrIVI->getAggregateOperand()), in foldAggregateConstructionIntoAggregateReuse() 1148 Instruction *InstCombinerImpl::visitInsertValueInst(InsertValueInst &I) { in visitInsertValueInst() 1165 auto UserInsInst = dyn_cast<InsertValueInst>(U); in visitInsertValueInst()
|
| H A D | InstCombineLoadStoreAlloca.cpp | 1120 while (auto *IV = dyn_cast<InsertValueInst>(V)) { in likeBitCastFromVector()
|
| /src/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | DeadArgumentElimination.cpp | 415 if (const InsertValueInst *IV = dyn_cast<InsertValueInst>(V)) { in surveyUse() 416 if (U->getOperandNo() != InsertValueInst::getAggregateOperandIndex() && in surveyUse()
|
| /src/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | Interpreter.h | 168 void visitInsertValueInst(InsertValueInst &I);
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | FunctionComparator.cpp | 713 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(L)) { in cmpOperations() 715 ArrayRef<unsigned> RIndices = cast<InsertValueInst>(R)->getIndices(); in cmpOperations()
|
| H A D | SCCPSolver.cpp | 657 void visitInsertValueInst(InsertValueInst &IVI); 1363 void SCCPInstVisitor::visitInsertValueInst(InsertValueInst &IVI) { in visitInsertValueInst() 1966 if (isa<ExtractValueInst>(I) || isa<InsertValueInst>(I)) in resolvedUndef()
|
| /src/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64PromoteConstant.cpp | 284 if (isa<const InsertValueInst>(Instr) && OpIdx > 1) in shouldConvertUse()
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | EarlyCSE.cpp | 150 isa<ExtractValueInst>(Inst) || isa<InsertValueInst>(Inst) || in canHandle() 306 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(Inst)) in getHashValueImpl()
|
| /src/contrib/llvm-project/llvm/lib/FuzzMutate/ |
| H A D | Operations.cpp | 304 return InsertValueInst::Create(Srcs[0], Srcs[1], {Idx}, "I", Inst); in insertValueDescriptor()
|
| /src/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVEmitIntrinsics.cpp | 161 Instruction *visitInsertValueInst(InsertValueInst &I); 203 return isa<StoreInst>(I) || isa<LoadInst>(I) || isa<InsertValueInst>(I) || in isMemInstrToReplace() 1253 Instruction *SPIRVEmitIntrinsics::visitInsertValueInst(InsertValueInst &I) { in visitInsertValueInst()
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.h | 588 void visitInsertValue(const InsertValueInst &I);
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | NumericalStabilitySanitizer.cpp | 1942 if (InsertValueInst *Insert = dyn_cast<InsertValueInst>(&Inst)) { in propagateShadowValues()
|
| /src/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | InlineCost.cpp | 482 bool visitInsertValue(InsertValueInst &I); 2218 bool CallAnalyzer::visitInsertValue(InsertValueInst &I) { in visitInsertValue()
|
| /src/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPromoteAlloca.cpp | 1209 if (isa<InsertValueInst>(User) || isa<InsertElementInst>(User)) in collectUsesWithPtrTypes()
|