Skip to content

Commit a95a710

Browse files
committedJan 24, 2019
[IRBuilder] Remove positivity check from CreateAlignmentAssumption()
Summary: An alignment should be non-zero positive power-of-two, anything and everything else is UB. We should not have that check for all these prerequisites here, it's just UB. Also, that was likely confusing middle-end passes. While there, `CreateIntCast()` should be called with `/*isSigned*/ false`. Think about it, there are two explanations: "An alignment should be positive", therefore the sign bit is unset, so `zext` and `sext` is equivalent. Or a second one: you have `i2 0b10` - a valid alignment, now you `sext` it: `i2 0b110` - no longer valid alignment. Reviewers: craig.topper, jyknight, hfinkel, erichkeane, rjmccall Reviewed By: hfinkel, rjmccall Subscribers: hfinkel, llvm-commits Differential Revision: https://reviews.llvm.org/D54653 llvm-svn: 352089
1 parent 1ec465d commit a95a710

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed
 

‎llvm/include/llvm/IR/IRBuilder.h

+5-9
Original file line numberDiff line numberDiff line change
@@ -2279,10 +2279,11 @@ class IRBuilder : public IRBuilderBase, public Inserter {
22792279
Value **TheCheck = nullptr) {
22802280
assert(isa<PointerType>(PtrValue->getType()) &&
22812281
"trying to create an alignment assumption on a non-pointer?");
2282+
assert(Alignment != 0 && "Invalid Alignment");
22822283
auto *PtrTy = cast<PointerType>(PtrValue->getType());
22832284
Type *IntPtrTy = getIntPtrTy(DL, PtrTy->getAddressSpace());
22842285

2285-
Value *Mask = ConstantInt::get(IntPtrTy, Alignment > 0 ? Alignment - 1 : 0);
2286+
Value *Mask = ConstantInt::get(IntPtrTy, Alignment - 1);
22862287
return CreateAlignmentAssumptionHelper(DL, PtrValue, Mask, IntPtrTy,
22872288
OffsetValue, TheCheck);
22882289
}
@@ -2309,15 +2310,10 @@ class IRBuilder : public IRBuilderBase, public Inserter {
23092310
Type *IntPtrTy = getIntPtrTy(DL, PtrTy->getAddressSpace());
23102311

23112312
if (Alignment->getType() != IntPtrTy)
2312-
Alignment = CreateIntCast(Alignment, IntPtrTy, /*isSigned*/ true,
2313+
Alignment = CreateIntCast(Alignment, IntPtrTy, /*isSigned*/ false,
23132314
"alignmentcast");
2314-
Value *IsPositive =
2315-
CreateICmp(CmpInst::ICMP_SGT, Alignment,
2316-
ConstantInt::get(Alignment->getType(), 0), "ispositive");
2317-
Value *PositiveMask =
2318-
CreateSub(Alignment, ConstantInt::get(IntPtrTy, 1), "positivemask");
2319-
Value *Mask = CreateSelect(IsPositive, PositiveMask,
2320-
ConstantInt::get(IntPtrTy, 0), "mask");
2315+
2316+
Value *Mask = CreateSub(Alignment, ConstantInt::get(IntPtrTy, 1), "mask");
23212317

23222318
return CreateAlignmentAssumptionHelper(DL, PtrValue, Mask, IntPtrTy,
23232319
OffsetValue, TheCheck);

0 commit comments

Comments
 (0)
Please sign in to comment.