Lines Matching refs:OffsetValue
2668 llvm::Value *OffsetValue) { in emitAlignmentAssumption() argument
2672 if (OffsetValue && OffsetValue->getType() != IntPtrTy) in emitAlignmentAssumption()
2673 OffsetValue = in emitAlignmentAssumption()
2674 Builder.CreateIntCast(OffsetValue, IntPtrTy, true, "casted.offset"); in emitAlignmentAssumption()
2680 if (OffsetValue) { in emitAlignmentAssumption()
2682 if (const auto *CI = dyn_cast<llvm::ConstantInt>(OffsetValue)) in emitAlignmentAssumption()
2686 PtrIntValue = Builder.CreateSub(PtrIntValue, OffsetValue, "offsetptr"); in emitAlignmentAssumption()
2696 CGM.getDataLayout(), PtrValue, Alignment, OffsetValue); in emitAlignmentAssumption()
2701 OffsetValue, TheCheck, Assumption); in emitAlignmentAssumption()
2708 llvm::Value *OffsetValue) { in emitAlignmentAssumption() argument
2713 OffsetValue); in emitAlignmentAssumption()
3182 llvm::Value *OffsetValue, llvm::Value *TheCheck, in emitAlignmentAssumptionCheck() argument
3211 if (!OffsetValue) in emitAlignmentAssumptionCheck()
3212 OffsetValue = Builder.getInt1(false); // no offset. in emitAlignmentAssumptionCheck()
3217 llvm::Value *DynamicData[] = {Ptr, Alignment, OffsetValue}; in emitAlignmentAssumptionCheck()