Home
last modified time | relevance | path

Searched refs:IVI (Results 1 – 18 of 18) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSCCP.cpp623 void visitInsertValueInst(InsertValueInst &IVI);
909 void SCCPSolver::visitInsertValueInst(InsertValueInst &IVI) { in visitInsertValueInst() argument
910 auto *STy = dyn_cast<StructType>(IVI.getType()); in visitInsertValueInst()
912 return (void)markOverdefined(&IVI); in visitInsertValueInst()
916 if (IVI.getNumIndices() != 1) in visitInsertValueInst()
917 return (void)markOverdefined(&IVI); in visitInsertValueInst()
919 Value *Aggr = IVI.getAggregateOperand(); in visitInsertValueInst()
920 unsigned Idx = *IVI.idx_begin(); in visitInsertValueInst()
927 mergeInValue(getStructValueState(&IVI, i), &IVI, EltVal); in visitInsertValueInst()
931 Value *Val = IVI.getInsertedValueOperand(); in visitInsertValueInst()
[all …]
DEarlyCSE.cpp275 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(Inst)) in getHashValueImpl() local
276 return hash_combine(IVI->getOpcode(), IVI->getOperand(0), in getHashValueImpl()
277 IVI->getOperand(1), in getHashValueImpl()
278 hash_combine_range(IVI->idx_begin(), IVI->idx_end())); in getHashValueImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DEvaluator.cpp427 } else if (auto *IVI = dyn_cast<InsertValueInst>(CurInst)) { in EvaluateBlock() local
429 getVal(IVI->getAggregateOperand()), in EvaluateBlock()
430 getVal(IVI->getInsertedValueOperand()), IVI->getIndices()); in EvaluateBlock()
DFunctionComparator.cpp587 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(L)) { in cmpOperations() local
588 ArrayRef<unsigned> LIndices = IVI->getIndices(); in cmpOperations()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Vectorize/
DSLPVectorizer.h122 bool vectorizeInsertValueInst(InsertValueInst *IVI, BasicBlock *BB,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DAnalysis.cpp319 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(V)) { in getNoopInput() local
321 ArrayRef<unsigned> InsertLoc = IVI->getIndices(); in getNoopInput()
328 NoopInput = IVI->getInsertedValueOperand(); in getNoopInput()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInstruction.cpp416 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) in haveSameSpecialState() local
417 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices(); in haveSameSpecialState()
DInstructions.cpp2118 InsertValueInst::InsertValueInst(const InsertValueInst &IVI) in InsertValueInst() argument
2119 : Instruction(IVI.getType(), InsertValue, in InsertValueInst()
2121 Indices(IVI.Indices) { in InsertValueInst()
2122 Op<0>() = IVI.getOperand(0); in InsertValueInst()
2123 Op<1>() = IVI.getOperand(1); in InsertValueInst()
2124 SubclassOptionalData = IVI.SubclassOptionalData; in InsertValueInst()
DVerifier.cpp487 void visitInsertValueInst(InsertValueInst &IVI);
3600 void Verifier::visitInsertValueInst(InsertValueInst &IVI) { in visitInsertValueInst() argument
3601 Assert(ExtractValueInst::getIndexedType(IVI.getAggregateOperand()->getType(), in visitInsertValueInst()
3602 IVI.getIndices()) == in visitInsertValueInst()
3603 IVI.getOperand(1)->getType(), in visitInsertValueInst()
3604 "Invalid InsertValueInst operands!", &IVI); in visitInsertValueInst()
3606 visitInstruction(IVI); in visitInsertValueInst()
DAsmWriter.cpp3780 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) { in printInstruction() local
3784 for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i) in printInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DConstantFolding.cpp1175 if (auto *IVI = dyn_cast<InsertValueInst>(I)) { in ConstantFoldInstruction() local
1177 cast<Constant>(IVI->getAggregateOperand()), in ConstantFoldInstruction()
1178 cast<Constant>(IVI->getInsertedValueOperand()), in ConstantFoldInstruction()
1179 IVI->getIndices()); in ConstantFoldInstruction()
DInstructionSimplify.cpp4236 for (auto *IVI = dyn_cast<InsertValueInst>(Agg); IVI != nullptr; in SimplifyExtractValueInst() local
4237 IVI = dyn_cast<InsertValueInst>(IVI->getAggregateOperand())) { in SimplifyExtractValueInst()
4238 ArrayRef<unsigned> InsertValueIdxs = IVI->getIndices(); in SimplifyExtractValueInst()
4244 return IVI->getInsertedValueOperand(); in SimplifyExtractValueInst()
/third_party/libinput/doc/user/
Dfaqs.rst334 are more specialized (e.g. in-vehicle infotainment or IVI) can handle input
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DIRTranslator.cpp959 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&U)) { in getOffsetFromIndices() local
960 for (auto Idx : IVI->indices()) in getOffsetFromIndices()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp7180 bool SLPVectorizerPass::vectorizeInsertValueInst(InsertValueInst *IVI, in vectorizeInsertValueInst() argument
7184 if (!R.canMapToVector(IVI->getType(), DL)) in vectorizeInsertValueInst()
7188 if (!findBuildAggregate(IVI, TTI, BuildVectorOpds, UserCost)) in vectorizeInsertValueInst()
7191 LLVM_DEBUG(dbgs() << "SLP: array mappable to vector: " << *IVI << "\n"); in vectorizeInsertValueInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp2665 const InsertValueInst *IVI = cast<InsertValueInst>(&I); in writeInstruction() local
2666 Vals.append(IVI->idx_begin(), IVI->idx_end()); in writeInstruction()
/third_party/icu/icu4j/perf-tests/data/collation/
DTestNames_SerbianSH.txt3922 ŽIVIĆ ĐORĐE
3923 ŽIVIĆ ĐORĐE
3924 ŽIVIĆ BOŽIDAR
3925 ŽIVIĆ GAVRA
3926 ŽIVIĆ JEFTA
3927 ŽIVIĆ JELICA
3928 ŽIVIĆ JOVAN
3929 ŽIVIĆ LAZAR
3930 ŽIVIĆ LJUBICA
3931 ŽIVIĆ RADOJICA
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstructions.h2412 InsertValueInst(const InsertValueInst &IVI);