-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[PowerPC] Add intrinsics for rldimi/rlwimi/rlwnm #82968
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
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
a06fa5e
[PowerPC] Add intrinsics for rldimi/rlwimi/rlwnm
ecnelises d9c9b4e
Use isRunOfOnes
ecnelises 954f9b6
Make clang-format happy
ecnelises e19475b
Merge commit '1f613bce19ea78789934b2a47be8c6a13925f0fa' into ppcrlbui…
ecnelises 78b5446
Delete unrelated case
ecnelises 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,117 @@ | ||
; All of these ands and shifts should be folded into rlwimi's | ||
; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- | not grep and | ||
; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- | grep rlwimi | count 8 | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 4 | ||
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64le-unknown-linux-gnu | FileCheck %s | ||
|
||
define i32 @test1(i32 %x, i32 %y) { | ||
; CHECK-LABEL: test1: | ||
; CHECK: # %bb.0: # %entry | ||
; CHECK-NEXT: rlwimi 4, 3, 16, 0, 15 | ||
; CHECK-NEXT: mr 3, 4 | ||
; CHECK-NEXT: blr | ||
entry: | ||
%tmp.3 = shl i32 %x, 16 ; <i32> [#uses=1] | ||
%tmp.7 = and i32 %y, 65535 ; <i32> [#uses=1] | ||
%tmp.9 = or i32 %tmp.7, %tmp.3 ; <i32> [#uses=1] | ||
ret i32 %tmp.9 | ||
%tmp.3 = shl i32 %x, 16 | ||
%tmp.7 = and i32 %y, 65535 | ||
%tmp.9 = or i32 %tmp.7, %tmp.3 | ||
ret i32 %tmp.9 | ||
} | ||
|
||
define i32 @test2(i32 %x, i32 %y) { | ||
; CHECK-LABEL: test2: | ||
; CHECK: # %bb.0: # %entry | ||
; CHECK-NEXT: rlwimi 3, 4, 16, 0, 15 | ||
; CHECK-NEXT: blr | ||
entry: | ||
%tmp.7 = and i32 %x, 65535 ; <i32> [#uses=1] | ||
%tmp.3 = shl i32 %y, 16 ; <i32> [#uses=1] | ||
%tmp.9 = or i32 %tmp.7, %tmp.3 ; <i32> [#uses=1] | ||
ret i32 %tmp.9 | ||
%tmp.7 = and i32 %x, 65535 | ||
%tmp.3 = shl i32 %y, 16 | ||
%tmp.9 = or i32 %tmp.7, %tmp.3 | ||
ret i32 %tmp.9 | ||
} | ||
|
||
define i32 @test3(i32 %x, i32 %y) { | ||
; CHECK-LABEL: test3: | ||
; CHECK: # %bb.0: # %entry | ||
; CHECK-NEXT: rlwimi 4, 3, 16, 16, 31 | ||
; CHECK-NEXT: mr 3, 4 | ||
; CHECK-NEXT: blr | ||
entry: | ||
%tmp.3 = lshr i32 %x, 16 ; <i32> [#uses=1] | ||
%tmp.6 = and i32 %y, -65536 ; <i32> [#uses=1] | ||
%tmp.7 = or i32 %tmp.6, %tmp.3 ; <i32> [#uses=1] | ||
ret i32 %tmp.7 | ||
%tmp.3 = lshr i32 %x, 16 | ||
%tmp.6 = and i32 %y, -65536 | ||
%tmp.7 = or i32 %tmp.6, %tmp.3 | ||
ret i32 %tmp.7 | ||
} | ||
|
||
define i32 @test4(i32 %x, i32 %y) { | ||
; CHECK-LABEL: test4: | ||
; CHECK: # %bb.0: # %entry | ||
; CHECK-NEXT: rlwimi 3, 4, 16, 16, 31 | ||
; CHECK-NEXT: blr | ||
entry: | ||
%tmp.6 = and i32 %x, -65536 ; <i32> [#uses=1] | ||
%tmp.3 = lshr i32 %y, 16 ; <i32> [#uses=1] | ||
%tmp.7 = or i32 %tmp.6, %tmp.3 ; <i32> [#uses=1] | ||
ret i32 %tmp.7 | ||
%tmp.6 = and i32 %x, -65536 | ||
%tmp.3 = lshr i32 %y, 16 | ||
%tmp.7 = or i32 %tmp.6, %tmp.3 | ||
ret i32 %tmp.7 | ||
} | ||
|
||
define i32 @test5(i32 %x, i32 %y) { | ||
; CHECK-LABEL: test5: | ||
; CHECK: # %bb.0: # %entry | ||
; CHECK-NEXT: rlwimi 4, 3, 1, 0, 15 | ||
; CHECK-NEXT: mr 3, 4 | ||
; CHECK-NEXT: blr | ||
entry: | ||
%tmp.3 = shl i32 %x, 1 ; <i32> [#uses=1] | ||
%tmp.4 = and i32 %tmp.3, -65536 ; <i32> [#uses=1] | ||
%tmp.7 = and i32 %y, 65535 ; <i32> [#uses=1] | ||
%tmp.9 = or i32 %tmp.4, %tmp.7 ; <i32> [#uses=1] | ||
ret i32 %tmp.9 | ||
%tmp.3 = shl i32 %x, 1 | ||
%tmp.4 = and i32 %tmp.3, -65536 | ||
%tmp.7 = and i32 %y, 65535 | ||
%tmp.9 = or i32 %tmp.4, %tmp.7 | ||
ret i32 %tmp.9 | ||
} | ||
|
||
define i32 @test6(i32 %x, i32 %y) { | ||
; CHECK-LABEL: test6: | ||
; CHECK: # %bb.0: # %entry | ||
; CHECK-NEXT: rlwimi 3, 4, 1, 0, 15 | ||
; CHECK-NEXT: blr | ||
entry: | ||
%tmp.7 = and i32 %x, 65535 ; <i32> [#uses=1] | ||
%tmp.3 = shl i32 %y, 1 ; <i32> [#uses=1] | ||
%tmp.4 = and i32 %tmp.3, -65536 ; <i32> [#uses=1] | ||
%tmp.9 = or i32 %tmp.4, %tmp.7 ; <i32> [#uses=1] | ||
ret i32 %tmp.9 | ||
%tmp.7 = and i32 %x, 65535 | ||
%tmp.3 = shl i32 %y, 1 | ||
%tmp.4 = and i32 %tmp.3, -65536 | ||
%tmp.9 = or i32 %tmp.4, %tmp.7 | ||
ret i32 %tmp.9 | ||
} | ||
|
||
define i32 @test7(i32 %x, i32 %y) { | ||
; CHECK-LABEL: test7: | ||
; CHECK: # %bb.0: # %entry | ||
; CHECK-NEXT: andis. 3, 3, 65535 | ||
; CHECK-NEXT: rldimi 3, 4, 0, 48 | ||
; CHECK-NEXT: blr | ||
entry: | ||
%tmp.2 = and i32 %x, -65536 ; <i32> [#uses=1] | ||
%tmp.5 = and i32 %y, 65535 ; <i32> [#uses=1] | ||
%tmp.7 = or i32 %tmp.5, %tmp.2 ; <i32> [#uses=1] | ||
ret i32 %tmp.7 | ||
%tmp.2 = and i32 %x, -65536 | ||
%tmp.5 = and i32 %y, 65535 | ||
%tmp.7 = or i32 %tmp.5, %tmp.2 | ||
ret i32 %tmp.7 | ||
} | ||
|
||
define i32 @test8(i32 %bar) { | ||
; CHECK-LABEL: test8: | ||
; CHECK: # %bb.0: # %entry | ||
; CHECK-NEXT: rlwimi 3, 3, 1, 30, 30 | ||
; CHECK-NEXT: blr | ||
entry: | ||
%tmp.3 = shl i32 %bar, 1 ; <i32> [#uses=1] | ||
%tmp.4 = and i32 %tmp.3, 2 ; <i32> [#uses=1] | ||
%tmp.6 = and i32 %bar, -3 ; <i32> [#uses=1] | ||
%tmp.7 = or i32 %tmp.4, %tmp.6 ; <i32> [#uses=1] | ||
ret i32 %tmp.7 | ||
%tmp.3 = shl i32 %bar, 1 | ||
%tmp.4 = and i32 %tmp.3, 2 | ||
%tmp.6 = and i32 %bar, -3 | ||
%tmp.7 = or i32 %tmp.4, %tmp.6 | ||
ret i32 %tmp.7 | ||
} | ||
|
||
define i32 @test9(i32 %a, i32 %b) { | ||
; CHECK-LABEL: test9: | ||
; CHECK: # %bb.0: # %entry | ||
; CHECK-NEXT: rlwimi 3, 4, 8, 20, 26 | ||
; CHECK-NEXT: blr | ||
entry: | ||
%r = call i32 @llvm.ppc.rlwimi(i32 %a, i32 %b, i32 8, i32 4064) | ||
ret i32 %r | ||
} | ||
|
||
declare i32 @llvm.ppc.rlwimi(i32, i32, i32 immarg, i32 immarg) | ||
chenzheng1030 marked this conversation as resolved.
Show resolved
Hide resolved
|
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.