Skip to content

[InstSimplify] Correctly handle comparison with zero-size allocs #115728

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions llvm/lib/Analysis/InstructionSimplify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2774,8 +2774,8 @@ static Constant *computePointerICmp(CmpInst::Predicate Pred, Value *LHS,
return nullptr;
}(LHS);
Opts.NullIsUnknownSize = F ? NullPointerIsDefined(F) : true;
if (getObjectSize(LHS, LHSSize, DL, TLI, Opts) &&
getObjectSize(RHS, RHSSize, DL, TLI, Opts)) {
if (getObjectSize(LHS, LHSSize, DL, TLI, Opts) && LHSSize != 0 &&
getObjectSize(RHS, RHSSize, DL, TLI, Opts) && RHSSize != 0) {
APInt Dist = LHSOffset - RHSOffset;
if (Dist.isNonNegative() ? Dist.ult(LHSSize) : (-Dist).ult(RHSSize))
return ConstantInt::get(getCompareTy(LHS),
Expand Down
14 changes: 10 additions & 4 deletions llvm/test/Transforms/InstSimplify/cmp-alloca-offsets.ll
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,9 @@ define i1 @zst_alloca_start() {
; CHECK-LABEL: @zst_alloca_start(
; CHECK-NEXT: [[A:%.*]] = alloca i64, align 8
; CHECK-NEXT: [[A2:%.*]] = alloca {}, align 1
; CHECK-NEXT: [[CMP:%.*]] = icmp eq ptr [[A]], [[A2]]
; CHECK-NEXT: call void @escape(ptr [[A]], ptr [[A2]])
; CHECK-NEXT: ret i1 false
; CHECK-NEXT: ret i1 [[CMP]]
;
%a = alloca i64
%a2 = alloca {}, align 1
Expand All @@ -249,8 +250,10 @@ define i1 @zst_alloca_middle() {
; CHECK-LABEL: @zst_alloca_middle(
; CHECK-NEXT: [[A:%.*]] = alloca i64, align 8
; CHECK-NEXT: [[A2:%.*]] = alloca {}, align 1
; CHECK-NEXT: [[GEP:%.*]] = getelementptr i8, ptr [[A]], i64 4
; CHECK-NEXT: [[CMP:%.*]] = icmp eq ptr [[GEP]], [[A2]]
; CHECK-NEXT: call void @escape(ptr [[A]], ptr [[A2]])
; CHECK-NEXT: ret i1 false
; CHECK-NEXT: ret i1 [[CMP]]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add an InstCombine test to demonstrate that this case can be folded using KnownBits (??000 != ??100)?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, this was actually a mistake in the test. The zero-size allocation was supposed to have align 1. It's weird that LLVM infers align 8 for it by default. I adjusted the test.

InstCombine actually fails to handle this (see https://llvm.godbolt.org/z/WMPKdnrMd for variant without allocas) due to a weakness in foldICmpUsingKnownBits. I'll work on a fix.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here's the fix: #115874

;
%a = alloca i64
%a2 = alloca {}, align 1
Expand Down Expand Up @@ -282,8 +285,9 @@ define i1 @zst_alloca_end() {
define i1 @zst_global_start() {
; CHECK-LABEL: @zst_global_start(
; CHECK-NEXT: [[A:%.*]] = alloca i64, align 8
; CHECK-NEXT: [[CMP:%.*]] = icmp eq ptr [[A]], @gz
; CHECK-NEXT: call void @escape(ptr [[A]], ptr @gz)
; CHECK-NEXT: ret i1 false
; CHECK-NEXT: ret i1 [[CMP]]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This case (alloca != global) should be folded.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Currently LLVM doesn't make assumptions about how different allocations types are positioned relative to each other. We'd have to add LangRef wording for this, to require that allocas and globals allocations cannot be adjacent.

;
%a = alloca i64
%gep = getelementptr i8, ptr %a, i64 0
Expand All @@ -295,8 +299,10 @@ define i1 @zst_global_start() {
define i1 @zst_global_middle() {
; CHECK-LABEL: @zst_global_middle(
; CHECK-NEXT: [[A:%.*]] = alloca i64, align 8
; CHECK-NEXT: [[GEP:%.*]] = getelementptr i8, ptr [[A]], i64 4
; CHECK-NEXT: [[CMP:%.*]] = icmp eq ptr [[GEP]], @gz
; CHECK-NEXT: call void @escape(ptr [[A]], ptr @gz)
; CHECK-NEXT: ret i1 false
; CHECK-NEXT: ret i1 [[CMP]]
;
%a = alloca i64
%gep = getelementptr i8, ptr %a, i64 4
Expand Down
Loading