Home
last modified time | relevance | path

Searched refs:getIndexedType (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DGetElementPtrTypeIterator.h102 Type *getIndexedType() const {
113 Type *Ty = getIndexedType();
156 Type *ElemTy = getIndexedType();
70 Type *getIndexedType() const { getIndexedType() function
H A DInstructions.h992 static Type *getIndexedType(Type *Ty, ArrayRef<Value *> IdxList);
993 static Type *getIndexedType(Type *Ty, ArrayRef<Constant *> IdxList);
994 static Type *getIndexedType(Type *Ty, ArrayRef<uint64_t> IdxList);
1127 ResultElementType(getIndexedType(PointeeType, IdxList)) {
2334 static Type *getIndexedType(Type *Agg, ArrayRef<unsigned> Idxs);
2378 : UnaryInstruction(checkGEPType(getIndexedType(Agg->getType(), Idxs)),
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DAnalysis.cpp462 ExtractValueInst::getIndexedType(SubTypes.back(), Path.back()); in advanceToNextLeafType()
470 DeeperType = ExtractValueInst::getIndexedType(DeeperType, 0); in advanceToNextLeafType()
491 while (Type *FirstInner = ExtractValueInst::getIndexedType(Next, 0)) { in firstRealType()
504 while (ExtractValueInst::getIndexedType(SubTypes.back(), Path.back()) in firstRealType()
522 } while (ExtractValueInst::getIndexedType(SubTypes.back(), Path.back()) in nextRealType()
691 ExtractValueInst::getIndexedType(RetSubTypes.back(), RetPath.back()); in returnTypeIsEligibleForTailCall()
H A DCodeGenPrepare.cpp5941 auto *SecondTy = GetElementPtrInst::getIndexedType( in optimizeGatherScatterInst()
5955 SourceTy = GetElementPtrInst::getIndexedType( in optimizeGatherScatterInst()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DOperator.cpp159 bool ScalableType = GTI.getIndexedType()->isScalableTy(); in accumulateConstantOffset()
218 bool ScalableType = GTI.getIndexedType()->isScalableTy(); in collectOffset()
H A DInstructions.cpp1516 Type *GetElementPtrInst::getIndexedType(Type *Ty, ArrayRef<Value *> IdxList) { in getIndexedType() function in GetElementPtrInst
1520 Type *GetElementPtrInst::getIndexedType(Type *Ty, in getIndexedType() function in GetElementPtrInst
1525 Type *GetElementPtrInst::getIndexedType(Type *Ty, ArrayRef<uint64_t> IdxList) { in getIndexedType() function in GetElementPtrInst
2453 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) == in init()
2498 Type *ExtractValueInst::getIndexedType(Type *Agg, in getIndexedType() function in ExtractValueInst
H A DConstants.cpp2476 assert(GetElementPtrInst::getIndexedType(Ty, Idxs) && "GEP indices invalid!"); in getGetElementPtr()
2756 ResElementTy(GetElementPtrInst::getIndexedType(SrcElementTy, IdxList)), in GetElementPtrConstantExpr()
H A DVerifier.cpp4090 GetElementPtrInst::getIndexedType(GEP.getSourceElementType(), Idxs); in visitGetElementPtrInst()
4352 Check(ExtractValueInst::getIndexedType(EVI.getAggregateOperand()->getType(), in visitExtractValueInst()
4360 Check(ExtractValueInst::getIndexedType(IVI.getAggregateOperand()->getType(), in visitInsertValueInst()
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DOperations.cpp279 Type *Indexed = ExtractValueInst::getIndexedType(Cur[0]->getType(), in validInsertValueIndex()
290 while (Type *Indexed = ExtractValueInst::getIndexedType(BaseTy, I)) { in validInsertValueIndex()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp834 if (GTI.getIndexedType()->isScalableTy()) in accumulateByteOffset()
1066 if (GTI.getIndexedType()->isScalableTy()) in splitGEP()
H A DNaryReassociate.cpp344 GTI.getIndexedType())) { in tryReassociateGEP()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1087 TargetType = GTI.getIndexedType(); in getGEPCost()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1905 Type *IndexedType = ExtractValueInst::getIndexedType(Agg->getType(), I.getIndices()); in visitExtractValueInst()
1952 Type *IndexedType = ExtractValueInst::getIndexedType(Agg->getType(), I.getIndices()); in visitInsertValueInst()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp927 Type *AllocTy = GetElementPtrInst::getIndexedType(SourceElementType, Ops); in canReplaceGEPIdxWithZero()
H A DInstructionCombining.cpp2396 Type *BaseType = GTI.getIndexedType(); in visitGEPOfGEP()
2401 BaseType = GTI.getIndexedType(); in visitGEPOfGEP()
2763 Type *EltTy = GTI.getIndexedType(); in visitGetElementPtrInst()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp4405 if (!GetElementPtrInst::getIndexedType(Ty, Indices)) in parseValID()
8513 if (!GetElementPtrInst::getIndexedType(Ty, Indices)) in parseGetElementPtr()
8534 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices)) in parseExtractValue()
8555 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices); in parseInsertValue()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp2820 ? DL.getTypeAllocSize(GEPTI.getIndexedType()) in getGEPInductionOperand()
H A DValueTracking.cpp1366 Type *IndexedTy = GTI.getIndexedType(); in computeKnownBitsFromOperator()
6123 Type *IndexedType = ExtractValueInst::getIndexedType(From->getType(), in BuildSubAggregate()
6148 assert(ExtractValueInst::getIndexedType(V->getType(), idx_range) && in FindInsertedValue()
H A DConstantFolding.cpp840 !isa<StructType>(GetElementPtrInst::getIndexedType( in CastGEPIndices()
H A DInstructionSimplify.cpp4991 Type *LastType = GetElementPtrInst::getIndexedType(SrcTy, Indices); in simplifyGEPInst()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp15842 Type *IdxTy = GTI.getIndexedType(); in isExtFreeImpl()