-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DAG] Allow AssertZExt to scalarize. (#122463)
With range and undef metadata on a call we can have vector AssertZExt generated on a target with no vector operations. The AssertZExt needs to scalarize to a normal `AssertZext tin, ValueType`. I have added AssertSext too, although I do not have a test case. Fixes #110374
- Loading branch information
1 parent
1eed469
commit ab9a80a
Showing
3 changed files
with
53 additions
and
3 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
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,46 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5 | ||
; RUN: llc -mtriple=armv7-unknown-linux-musleabihf -mattr=-neon %s -o - | FileCheck %s | ||
|
||
declare fastcc noundef range(i16 0, 256) <4 x i16> @other() | ||
|
||
define void @test(ptr %0) #0 { | ||
; CHECK-LABEL: test: | ||
; CHECK: @ %bb.0: @ %entry | ||
; CHECK-NEXT: .save {r4, lr} | ||
; CHECK-NEXT: push {r4, lr} | ||
; CHECK-NEXT: mov r4, r0 | ||
; CHECK-NEXT: bl other | ||
; CHECK-NEXT: uxth r3, r3 | ||
; CHECK-NEXT: uxth r2, r2 | ||
; CHECK-NEXT: uxth r1, r1 | ||
; CHECK-NEXT: uxth r0, r0 | ||
; CHECK-NEXT: strb r3, [r4, #3] | ||
; CHECK-NEXT: strb r2, [r4, #2] | ||
; CHECK-NEXT: strb r1, [r4, #1] | ||
; CHECK-NEXT: strb r0, [r4] | ||
; CHECK-NEXT: pop {r4, pc} | ||
entry: | ||
%call = call fastcc <4 x i16> @other() | ||
%t = trunc <4 x i16> %call to <4 x i8> | ||
store <4 x i8> %t, ptr %0, align 1 | ||
ret void | ||
} | ||
|
||
define <4 x i16> @test2() #0 { | ||
; CHECK-LABEL: test2: | ||
; CHECK: @ %bb.0: @ %entry | ||
; CHECK-NEXT: .save {r11, lr} | ||
; CHECK-NEXT: push {r11, lr} | ||
; CHECK-NEXT: bl other | ||
; CHECK-NEXT: movw r1, #65408 | ||
; CHECK-NEXT: and r0, r0, r1 | ||
; CHECK-NEXT: and r2, r2, r1 | ||
; CHECK-NEXT: mov r1, #0 | ||
; CHECK-NEXT: mov r3, #0 | ||
; CHECK-NEXT: pop {r11, pc} | ||
entry: | ||
%call = call fastcc <4 x i16> @other() | ||
%a = and <4 x i16> %call, <i16 u0x80, i16 u0x100, i16 u0x80, i16 u0x100> | ||
ret <4 x i16> %a | ||
} | ||
|