Lines Matching refs:OffsetValue
2560 llvm::Value *OffsetValue) { in emitAlignmentAssumption() argument
2564 if (OffsetValue && OffsetValue->getType() != IntPtrTy) in emitAlignmentAssumption()
2565 OffsetValue = in emitAlignmentAssumption()
2566 Builder.CreateIntCast(OffsetValue, IntPtrTy, true, "casted.offset"); in emitAlignmentAssumption()
2572 if (OffsetValue) { in emitAlignmentAssumption()
2574 if (const auto *CI = dyn_cast<llvm::ConstantInt>(OffsetValue)) in emitAlignmentAssumption()
2578 PtrIntValue = Builder.CreateSub(PtrIntValue, OffsetValue, "offsetptr"); in emitAlignmentAssumption()
2588 CGM.getDataLayout(), PtrValue, Alignment, OffsetValue); in emitAlignmentAssumption()
2593 OffsetValue, TheCheck, Assumption); in emitAlignmentAssumption()
2600 llvm::Value *OffsetValue) { in emitAlignmentAssumption() argument
2605 OffsetValue); in emitAlignmentAssumption()
2976 llvm::Value *OffsetValue, llvm::Value *TheCheck, in emitAlignmentAssumptionCheck() argument
3003 if (!OffsetValue) in emitAlignmentAssumptionCheck()
3004 OffsetValue = Builder.getInt1(false); // no offset. in emitAlignmentAssumptionCheck()
3011 EmitCheckValue(OffsetValue)}; in emitAlignmentAssumptionCheck()