Searched refs:IndexedType (Results 1 – 6 of 6) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/ |
H A D | NaryReassociate.h | 130 unsigned I, Type *IndexedType); 136 Value *RHS, Type *IndexedType);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | NaryReassociate.cpp | 357 unsigned I, Type *IndexedType) { in tryReassociateGEPAtIndex() argument 378 if (auto *NewGEP = tryReassociateGEPAtIndex(GEP, I, LHS, RHS, IndexedType)) in tryReassociateGEPAtIndex() 383 tryReassociateGEPAtIndex(GEP, I, RHS, LHS, IndexedType)) in tryReassociateGEPAtIndex() 393 Value *RHS, Type *IndexedType) { in tryReassociateGEPAtIndex() argument 426 uint64_t IndexedSize = DL->getTypeAllocSize(IndexedType); in tryReassociateGEPAtIndex()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Execution.cpp | 1941 Type *IndexedType = ExtractValueInst::getIndexedType(Agg->getType(), I.getIndices()); in visitExtractValueInst() local 1942 switch (IndexedType->getTypeID()) { in visitExtractValueInst() 1988 Type *IndexedType = ExtractValueInst::getIndexedType(Agg->getType(), I.getIndices()); in visitInsertValueInst() local 1990 switch (IndexedType->getTypeID()) { in visitInsertValueInst()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGExpr.cpp | 961 CodeGenFunction &CGF, const Expr *Base, QualType &IndexedType) { in getArrayIndexingBound() argument 964 IndexedType = Base->getType(); in getArrayIndexingBound() 973 IndexedType = CE->getSubExpr()->getType(); in getArrayIndexingBound() 974 const ArrayType *AT = IndexedType->castAsArrayTypeUnsafe(); in getArrayIndexingBound() 985 IndexedType = Base->getType(); in getArrayIndexingBound() 999 QualType IndexedType; in EmitBoundsCheck() local 1000 llvm::Value *Bound = getArrayIndexingBound(*this, Base, IndexedType); in EmitBoundsCheck() 1010 EmitCheckTypeDescriptor(IndexedType), in EmitBoundsCheck()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 3665 Type *IndexedType = in parseValID() local 3667 if (!IndexedType) in parseValID() 3669 if (IndexedType != Val1->getType()) in parseValID() 3672 "' instead of '" + getTypeString(IndexedType) + in parseValID() 7830 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices); in parseInsertValue() local 7831 if (!IndexedType) in parseInsertValue() 7833 if (IndexedType != Val1->getType()) in parseInsertValue() 7836 getTypeString(IndexedType) + "'"); in parseInsertValue()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 3887 static Value *BuildSubAggregate(Value *From, Value* To, Type *IndexedType, in BuildSubAggregate() argument 3891 StructType *STy = dyn_cast<StructType>(IndexedType); in BuildSubAggregate() 3949 Type *IndexedType = ExtractValueInst::getIndexedType(From->getType(), in BuildSubAggregate() local 3951 Value *To = UndefValue::get(IndexedType); in BuildSubAggregate() 3955 return BuildSubAggregate(From, To, IndexedType, Idxs, IdxSkip, InsertBefore); in BuildSubAggregate()
|