Lines Matching defs:BaseTy
3752 Type *BaseTy;
3763 OpSplitter(Instruction *InsertionPoint, Value *Ptr, Type *BaseTy,
3765 : IRB(IRB), GEPIndices(1, IRB.getInt32(0)), Ptr(Ptr), BaseTy(BaseTy),
3786 unsigned Offset = DL.getIndexedOffsetInType(BaseTy, GEPIndices);
3834 LoadOpSplitter(Instruction *InsertionPoint, Value *Ptr, Type *BaseTy,
3837 : OpSplitter<LoadOpSplitter>(InsertionPoint, Ptr, BaseTy, BaseAlign, DL,
3847 IRB.CreateInBoundsGEP(BaseTy, Ptr, GEPIndices, Name + ".gep");
3854 GEPOperator::accumulateConstantOffset(BaseTy, GEPIndices, DL, Offset))
3905 StoreOpSplitter(Instruction *InsertionPoint, Value *Ptr, Type *BaseTy,
3908 : OpSplitter<StoreOpSplitter>(InsertionPoint, Ptr, BaseTy, BaseAlign,
3924 IRB.CreateInBoundsGEP(BaseTy, Ptr, GEPIndices, Name + ".gep");
3930 GEPOperator::accumulateConstantOffset(BaseTy, GEPIndices, DL, Offset);