Lines Matching defs:BaseTy
3730 Type *BaseTy;
3741 OpSplitter(Instruction *InsertionPoint, Value *Ptr, Type *BaseTy,
3743 : IRB(IRB), GEPIndices(1, IRB.getInt32(0)), Ptr(Ptr), BaseTy(BaseTy),
3764 unsigned Offset = DL.getIndexedOffsetInType(BaseTy, GEPIndices);
3806 LoadOpSplitter(Instruction *InsertionPoint, Value *Ptr, Type *BaseTy,
3809 : OpSplitter<LoadOpSplitter>(InsertionPoint, Ptr, BaseTy, BaseAlign, DL,
3819 IRB.CreateInBoundsGEP(BaseTy, Ptr, GEPIndices, Name + ".gep");
3826 GEPOperator::accumulateConstantOffset(BaseTy, GEPIndices, DL, Offset))
3853 StoreOpSplitter(Instruction *InsertionPoint, Value *Ptr, Type *BaseTy,
3856 : OpSplitter<StoreOpSplitter>(InsertionPoint, Ptr, BaseTy, BaseAlign,
3872 IRB.CreateInBoundsGEP(BaseTy, Ptr, GEPIndices, Name + ".gep");
3878 GEPOperator::accumulateConstantOffset(BaseTy, GEPIndices, DL, Offset);