/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 623 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 …]
|
D | EarlyCSE.cpp | 275 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/ |
D | Evaluator.cpp | 427 } 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()
|
D | FunctionComparator.cpp | 587 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/ |
D | SLPVectorizer.h | 122 bool vectorizeInsertValueInst(InsertValueInst *IVI, BasicBlock *BB,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | Analysis.cpp | 319 } 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/ |
D | Instruction.cpp | 416 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) in haveSameSpecialState() local 417 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices(); in haveSameSpecialState()
|
D | Instructions.cpp | 2118 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()
|
D | Verifier.cpp | 487 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()
|
D | AsmWriter.cpp | 3780 } 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/ |
D | ConstantFolding.cpp | 1175 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()
|
D | InstructionSimplify.cpp | 4236 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/ |
D | faqs.rst | 334 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/ |
D | IRTranslator.cpp | 959 } 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/ |
D | SLPVectorizer.cpp | 7180 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/ |
D | BitcodeWriter.cpp | 2665 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/ |
D | TestNames_SerbianSH.txt | 3922 Ž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/ |
D | Instructions.h | 2412 InsertValueInst(const InsertValueInst &IVI);
|