/external/llvm/lib/IR/ |
D | Operator.cpp | 9 Type *GEPOperator::getSourceElementType() const { in getSourceElementType() function in llvm::GEPOperator 11 return I->getSourceElementType(); in getSourceElementType() 12 return cast<GetElementPtrConstantExpr>(this)->getSourceElementType(); in getSourceElementType()
|
D | ConstantsContext.h | 240 Type *getSourceElementType() const;
|
D | Constants.cpp | 1171 SrcTy ? SrcTy : GEPO->getSourceElementType(), Ops[0], Ops.slice(1), in getWithOperands() 2277 Type *GetElementPtrConstantExpr::getSourceElementType() const { in getSourceElementType() function in GetElementPtrConstantExpr 2885 return GetElementPtrInst::CreateInBounds(GO->getSourceElementType(), in getAsInstruction() 2887 return GetElementPtrInst::Create(GO->getSourceElementType(), Ops[0], in getAsInstruction()
|
D | ConstantFold.cpp | 635 Type *Ty = GEPO->getSourceElementType(); in ConstantFoldCastInstruction() 2154 cast<GEPOperator>(CE)->getSourceElementType(), CE->getOperand(0), in ConstantFoldGetElementPtrImpl()
|
/external/llvm/include/llvm/IR/ |
D | GetElementPtrTypeIterator.h | 100 GEPOp->getSourceElementType(), in gep_type_begin() 111 GEPOp.getSourceElementType(), in gep_type_begin()
|
D | Operator.h | 403 Type *getSourceElementType() const;
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXFavorNonGenericAddrSpaces.cpp | 167 GEP->getSourceElementType(), Cast->getOperand(0), Indices, in hoistAddrSpaceCastFromGEP() 179 GEP->getSourceElementType(), cast<Constant>(Cast->getOperand(0)), in hoistAddrSpaceCastFromGEP()
|
D | NVPTXGenericToNVVM.cpp | 339 cast<GEPOperator>(C)->getSourceElementType(), in remapConstantExpr() 343 cast<GEPOperator>(C)->getSourceElementType(), in remapConstantExpr()
|
D | NVPTXInferAddressSpaces.cpp | 319 GEP->getSourceElementType(), NewPointerOperands[0], in cloneInstructionWithNewAddressSpace()
|
/external/llvm/lib/Analysis/ |
D | TypeMetadataUtils.cpp | 56 GEP->getSourceElementType(), Indices); in findLoadCallsAtConstantOffset()
|
D | PHITransAddr.cpp | 232 if (Value *V = SimplifyGEPInst(GEP->getSourceElementType(), in PHITranslateSubExpr() 411 GEP->getSourceElementType(), GEPOps[0], makeArrayRef(GEPOps).slice(1), in InsertPHITranslatedSubExpr()
|
D | BasicAliasAnalysis.cpp | 403 if (!GEPOp->getSourceElementType()->isSized()) { in DecomposeGEPExpression() 870 GEP1->getSourceElementType(), IntermediateIndices))) in aliasSameBasePointerGEPs() 876 GEP1->getSourceElementType(), IntermediateIndices); in aliasSameBasePointerGEPs()
|
D | ConstantFolding.cpp | 747 Type *SrcElemTy = GEP->getSourceElementType(); in SymbolicallyEvaluateGEP() 809 SrcElemTy = GEP->getSourceElementType(); in SymbolicallyEvaluateGEP() 939 return ConstantExpr::getGetElementPtr(GEP->getSourceElementType(), in ConstantFoldInstOperandsImpl()
|
/external/llvm/lib/Transforms/Scalar/ |
D | NaryReassociate.cpp | 307 return TTI->getGEPCost(GEP->getSourceElementType(), GEP->getPointerOperand(), in isGEPFoldable() 390 GEP->getSourceElementType(), SE->getSCEV(GEP->getPointerOperand()), in tryReassociateGEPAtIndex()
|
D | StraightLineStrengthReduce.cpp | 242 return TTI->getGEPCost(GEP->getSourceElementType(), GEP->getPointerOperand(), in isGEPFoldable() 502 const SCEV *BaseExpr = SE->getGEPExpr(GEP->getSourceElementType(), in allocateCandidatesAndFindBasisForGEP()
|
D | Scalarizer.cpp | 462 Res[I] = Builder.CreateGEP(GEPI.getSourceElementType(), Base[I], Indices, in visitGetElementPtrInst()
|
/external/llvm/lib/Target/XCore/ |
D | XCoreLowerThreadLocal.cpp | 86 cast<GEPOperator>(CE)->getSourceElementType(), CEOps[0], in createReplacementInstr()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1333 if (Value *V = SimplifyGEPInst(GEP.getSourceElementType(), Ops, DL, TLI, DT, AC)) in visitGetElementPtrInst() 1435 CurTy = Op1->getSourceElementType(); in visitGetElementPtrInst() 1554 Src->getSourceElementType(), Src->getOperand(0), Indices, in visitGetElementPtrInst() 1556 : GetElementPtrInst::Create(Src->getSourceElementType(), in visitGetElementPtrInst() 1565 Type *Ty = GEP.getSourceElementType(); in visitGetElementPtrInst() 1629 dyn_cast<ArrayType>(GEP.getSourceElementType())) { in visitGetElementPtrInst() 1686 Type *ResElTy = GEP.getSourceElementType(); in visitGetElementPtrInst()
|
D | InstCombinePHI.cpp | 223 GetElementPtrInst::Create(FirstInst->getSourceElementType(), Base, in FoldPHIArgGEPIntoPHI()
|
/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfoImpl.h | 510 GEP->getSourceElementType(), GEP->getPointerOperand(), Indices); in getUserCost()
|
/external/llvm/lib/Transforms/Utils/ |
D | ValueMapper.cpp | 471 NewSrcTy = TypeMapper->remapType(GEPO->getSourceElementType()); in mapValue() 907 TypeMapper->remapType(GEP->getSourceElementType())); in remapInstruction()
|
D | Evaluator.cpp | 315 ConstantExpr::getGetElementPtr(GEP->getSourceElementType(), P, GEPOps, in EvaluateBlock()
|
/external/llvm/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 1086 if (int Res = cmpTypes(GEPL->getSourceElementType(), in cmpGEPs() 1087 GEPR->getSourceElementType())) in cmpGEPs()
|
D | ArgumentPromotion.cpp | 706 SrcTy = cast<GetElementPtrInst>(UI)->getSourceElementType(); in DoPromotion()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | EfficiencySanitizer.cpp | 740 Type *SourceTy = GepInst->getSourceElementType(); in instrumentGetElementPtr()
|