-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AArch64] All bits of an exact right shift are demanded (#97448)
When building a vector which contains zero elements, the AArch64 ISel replaces those elements with `undef`, if they are right shifted out. However, these elements need to stay zero if the right shift is exact, or otherwise we will be introducing undefined behavior. Should allow #92528 to be recommitted.
- Loading branch information
1 parent
4339d2e
commit f92bfca
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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,35 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5 | ||
; RUN: llc < %s | FileCheck %s | ||
target triple = "aarch64-linux" | ||
|
||
define <2 x i32> @f(i8 %0, i8 %1) { | ||
; CHECK-LABEL: f: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: movi v0.2d, #0000000000000000 | ||
; CHECK-NEXT: mov v0.b[3], w0 | ||
; CHECK-NEXT: mov v0.b[7], w1 | ||
; CHECK-NEXT: sshr v0.2s, v0.2s, #24 | ||
; CHECK-NEXT: ret | ||
%3 = insertelement <2 x i8> poison, i8 %0, i64 0 | ||
%4 = insertelement <2 x i8> %3, i8 %1, i64 1 | ||
%5 = shufflevector <2 x i8> %4, <2 x i8> <i8 0, i8 poison>, <8 x i32> <i32 2, i32 2, i32 2, i32 0, i32 2, i32 2, i32 2, i32 1> | ||
%6 = bitcast <8 x i8> %5 to <2 x i32> | ||
%7 = ashr exact <2 x i32> %6, <i32 24, i32 24> | ||
ret <2 x i32> %7 | ||
} | ||
|
||
define <2 x i32> @g(i8 %0, i8 %1) { | ||
; CHECK-LABEL: g: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: movi v0.2d, #0000000000000000 | ||
; CHECK-NEXT: mov v0.b[3], w0 | ||
; CHECK-NEXT: mov v0.b[7], w1 | ||
; CHECK-NEXT: ushr v0.2s, v0.2s, #24 | ||
; CHECK-NEXT: ret | ||
%3 = insertelement <2 x i8> poison, i8 %0, i64 0 | ||
%4 = insertelement <2 x i8> %3, i8 %1, i64 1 | ||
%5 = shufflevector <2 x i8> %4, <2 x i8> <i8 0, i8 poison>, <8 x i32> <i32 2, i32 2, i32 2, i32 0, i32 2, i32 2, i32 2, i32 1> | ||
%6 = bitcast <8 x i8> %5 to <2 x i32> | ||
%7 = lshr exact <2 x i32> %6, <i32 24, i32 24> | ||
ret <2 x i32> %7 | ||
} |