Lines Matching refs:OffsetValue
2414 llvm::Value *OffsetValue) { in emitAlignmentAssumption() argument
2418 if (OffsetValue && OffsetValue->getType() != IntPtrTy) in emitAlignmentAssumption()
2419 OffsetValue = in emitAlignmentAssumption()
2420 Builder.CreateIntCast(OffsetValue, IntPtrTy, true, "casted.offset"); in emitAlignmentAssumption()
2426 if (OffsetValue) { in emitAlignmentAssumption()
2428 if (const auto *CI = dyn_cast<llvm::ConstantInt>(OffsetValue)) in emitAlignmentAssumption()
2432 PtrIntValue = Builder.CreateSub(PtrIntValue, OffsetValue, "offsetptr"); in emitAlignmentAssumption()
2442 CGM.getDataLayout(), PtrValue, Alignment, OffsetValue); in emitAlignmentAssumption()
2447 OffsetValue, TheCheck, Assumption); in emitAlignmentAssumption()
2454 llvm::Value *OffsetValue) { in emitAlignmentAssumption() argument
2459 OffsetValue); in emitAlignmentAssumption()
2800 llvm::Value *OffsetValue, llvm::Value *TheCheck, in emitAlignmentAssumptionCheck() argument
2827 if (!OffsetValue) in emitAlignmentAssumptionCheck()
2828 OffsetValue = Builder.getInt1(false); // no offset. in emitAlignmentAssumptionCheck()
2835 EmitCheckValue(OffsetValue)}; in emitAlignmentAssumptionCheck()