-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[SCEV] Simplify SCEVExpr for PHI to SCEV for operand if operands are identical #115945
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
akshayrdeodhar
merged 7 commits into
llvm:main
from
akshayrdeodhar:upstream/simplifyscevphi
Dec 6, 2024
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ff9c1b8
[SCEV] Simplify SCEVExpr for PHI to SCEV for operand if operands are …
akshayrdeodhar 24e4262
address review comments
akshayrdeodhar bd8642d
address review comments, compare SCEVExprs instead of instructions
akshayrdeodhar 7c43e64
explicitly check equality of SCEVs
akshayrdeodhar 231503f
comments
akshayrdeodhar ea17ced
add test, address comments
akshayrdeodhar 68c8213
clang-format
akshayrdeodhar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
92 changes: 92 additions & 0 deletions
92
llvm/test/Analysis/ScalarEvolution/trip-count-phi-increment.ll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py UTC_ARGS: --version 5 | ||
; RUN: opt < %s -disable-output "-passes=print<scalar-evolution>" 2>&1 | FileCheck %s | ||
define void @test1(ptr %x, ptr %y) { | ||
; CHECK-LABEL: 'test1' | ||
; CHECK-NEXT: Classifying expressions for: @test1 | ||
; CHECK-NEXT: %v1.0 = phi i32 [ 0, %entry ], [ %k.0, %if.end ] | ||
; CHECK-NEXT: --> {0,+,1}<nuw><nsw><%for.cond> U: [0,7) S: [0,7) Exits: 6 LoopDispositions: { %for.cond: Computable } | ||
; CHECK-NEXT: %add = add nsw i32 %v1.0, 1 | ||
; CHECK-NEXT: --> {1,+,1}<nuw><nsw><%for.cond> U: [1,8) S: [1,8) Exits: 7 LoopDispositions: { %for.cond: Computable } | ||
; CHECK-NEXT: %add6 = add nsw i32 %v1.0, 1 | ||
; CHECK-NEXT: --> {1,+,1}<nuw><nsw><%for.cond> U: [1,8) S: [1,8) Exits: 7 LoopDispositions: { %for.cond: Computable } | ||
; CHECK-NEXT: %k.0 = phi i32 [ %add, %if.then ], [ %add6, %if.else ] | ||
; CHECK-NEXT: --> {1,+,1}<nuw><nsw><%for.cond> U: [1,8) S: [1,8) Exits: 7 LoopDispositions: { %for.cond: Computable } | ||
; CHECK-NEXT: Determining loop execution counts for: @test1 | ||
; CHECK-NEXT: Loop %for.cond: backedge-taken count is i32 6 | ||
; CHECK-NEXT: Loop %for.cond: constant max backedge-taken count is i32 6 | ||
; CHECK-NEXT: Loop %for.cond: symbolic max backedge-taken count is i32 6 | ||
; CHECK-NEXT: Loop %for.cond: Trip multiple is 7 | ||
; | ||
entry: | ||
br label %for.cond | ||
|
||
for.cond: ; preds = %6, %0 | ||
%v1.0 = phi i32 [ 0, %entry ], [ %k.0, %if.end ] | ||
%cmp = icmp slt i32 %v1.0, 6 | ||
br i1 %cmp, label %for.body, label %exit | ||
|
||
for.body: ; preds = %1 | ||
%cmp3 = icmp slt i32 %v1.0, 2 | ||
br i1 %cmp3, label %if.then, label %if.else | ||
|
||
if.then: ; preds = %2 | ||
%add = add nsw i32 %v1.0, 1 | ||
br label %if.end | ||
|
||
if.else: ; preds = %2 | ||
%add6 = add nsw i32 %v1.0, 1 | ||
br label %if.end | ||
|
||
if.end: ; preds = %4, %3 | ||
%k.0 = phi i32 [ %add, %if.then ], [ %add6, %if.else ] | ||
br label %for.cond | ||
|
||
exit: ; preds = %5 | ||
ret void | ||
} | ||
|
||
define void @test2(ptr %x, ptr %y) { | ||
; CHECK-LABEL: 'test2' | ||
; CHECK-NEXT: Classifying expressions for: @test2 | ||
; CHECK-NEXT: %v1.0 = phi i32 [ 0, %entry ], [ %k.0, %if.end ] | ||
; CHECK-NEXT: --> {0,+,1}<nuw><nsw><%for.cond> U: [0,7) S: [0,7) Exits: 6 LoopDispositions: { %for.cond: Computable } | ||
; CHECK-NEXT: %add = add nuw i32 %v1.0, 1 | ||
; CHECK-NEXT: --> {1,+,1}<nuw><nsw><%for.cond> U: [1,8) S: [1,8) Exits: 7 LoopDispositions: { %for.cond: Computable } | ||
; CHECK-NEXT: %add6 = add nsw i32 %v1.0, 1 | ||
; CHECK-NEXT: --> {1,+,1}<nuw><nsw><%for.cond> U: [1,8) S: [1,8) Exits: 7 LoopDispositions: { %for.cond: Computable } | ||
; CHECK-NEXT: %k.0 = phi i32 [ %add, %if.then ], [ %add6, %if.else ] | ||
; CHECK-NEXT: --> {1,+,1}<nuw><nsw><%for.cond> U: [1,8) S: [1,8) Exits: 7 LoopDispositions: { %for.cond: Computable } | ||
; CHECK-NEXT: Determining loop execution counts for: @test2 | ||
; CHECK-NEXT: Loop %for.cond: backedge-taken count is i32 6 | ||
; CHECK-NEXT: Loop %for.cond: constant max backedge-taken count is i32 6 | ||
; CHECK-NEXT: Loop %for.cond: symbolic max backedge-taken count is i32 6 | ||
; CHECK-NEXT: Loop %for.cond: Trip multiple is 7 | ||
; | ||
entry: | ||
br label %for.cond | ||
|
||
for.cond: ; preds = %6, %0 | ||
%v1.0 = phi i32 [ 0, %entry ], [ %k.0, %if.end ] | ||
%cmp = icmp slt i32 %v1.0, 6 | ||
br i1 %cmp, label %for.body, label %exit | ||
|
||
for.body: ; preds = %1 | ||
%cmp3 = icmp slt i32 %v1.0, 2 | ||
br i1 %cmp3, label %if.then, label %if.else | ||
|
||
if.then: ; preds = %2 | ||
%add = add nuw i32 %v1.0, 1 | ||
br label %if.end | ||
|
||
if.else: ; preds = %2 | ||
%add6 = add nsw i32 %v1.0, 1 | ||
br label %if.end | ||
|
||
if.end: ; preds = %4, %3 | ||
%k.0 = phi i32 [ %add, %if.then ], [ %add6, %if.else ] | ||
br label %for.cond | ||
|
||
exit: ; preds = %5 | ||
ret void | ||
} | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.