Lines Matching refs:OffsetValue
2388 llvm::Value *OffsetValue) { in emitAlignmentAssumption() argument
2392 if (OffsetValue && OffsetValue->getType() != IntPtrTy) in emitAlignmentAssumption()
2393 OffsetValue = in emitAlignmentAssumption()
2394 Builder.CreateIntCast(OffsetValue, IntPtrTy, true, "casted.offset"); in emitAlignmentAssumption()
2400 if (OffsetValue) { in emitAlignmentAssumption()
2402 if (const auto *CI = dyn_cast<llvm::ConstantInt>(OffsetValue)) in emitAlignmentAssumption()
2406 PtrIntValue = Builder.CreateSub(PtrIntValue, OffsetValue, "offsetptr"); in emitAlignmentAssumption()
2416 CGM.getDataLayout(), PtrValue, Alignment, OffsetValue); in emitAlignmentAssumption()
2421 OffsetValue, TheCheck, Assumption); in emitAlignmentAssumption()
2428 llvm::Value *OffsetValue) { in emitAlignmentAssumption() argument
2435 OffsetValue); in emitAlignmentAssumption()
2685 llvm::Value *OffsetValue, llvm::Value *TheCheck, in emitAlignmentAssumptionCheck() argument
2712 if (!OffsetValue) in emitAlignmentAssumptionCheck()
2713 OffsetValue = Builder.getInt1(false); // no offset. in emitAlignmentAssumptionCheck()
2720 EmitCheckValue(OffsetValue)}; in emitAlignmentAssumptionCheck()