[llvm] r371524 - [ARM] auto-generate complete test checks; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 10 07:26:25 PDT 2019
Author: spatel
Date: Tue Sep 10 07:26:25 2019
New Revision: 371524
URL: http://llvm.org/viewvc/llvm-project?rev=371524&view=rev
Log:
[ARM] auto-generate complete test checks; NFC
Modified:
llvm/trunk/test/CodeGen/ARM/a15-partial-update.ll
Modified: llvm/trunk/test/CodeGen/ARM/a15-partial-update.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/a15-partial-update.ll?rev=371524&r1=371523&r2=371524&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/a15-partial-update.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/a15-partial-update.ll Tue Sep 10 07:26:25 2019
@@ -1,7 +1,6 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -O1 -mcpu=cortex-a15 -mtriple=armv7-linux-gnueabi -verify-machineinstrs < %s | FileCheck %s
-; CHECK-LABEL: t1:
-define <2 x float> @t1(float* %A, <2 x float> %B) {
; The generated code for this test uses a vld1.32 instruction
; to write the lane 1 of a D register containing the value of
; <2 x float> %B. Since the D register is defined, it would
@@ -9,22 +8,42 @@ define <2 x float> @t1(float* %A, <2 x f
; vld1.32 instruction. The test checks that a vmov.f64 was not
; generated.
-; CHECK-NOT: vmov.{{.*}} d{{[0-9]+}},
+define <2 x float> @t1(float* %A, <2 x float> %B) {
+; CHECK-LABEL: t1:
+; CHECK: @ %bb.0:
+; CHECK-NEXT: vmov d16, r2, r3
+; CHECK-NEXT: vld1.32 {d16[1]}, [r0:32]
+; CHECK-NEXT: vmov r0, r1, d16
+; CHECK-NEXT: bx lr
%tmp2 = load float, float* %A, align 4
%tmp3 = insertelement <2 x float> %B, float %tmp2, i32 1
ret <2 x float> %tmp3
}
-; CHECK-LABEL: t2:
-define void @t2(<4 x i8> *%in, <4 x i8> *%out, i32 %n) {
-entry:
- br label %loop
-loop:
; The code generated by this test uses a vld1.32 instruction.
; We check that a dependency breaking vmov* instruction was
; generated.
-; CHECK: vmov.{{.*}} d{{[0-9]+}},
+define void @t2(<4 x i8> *%in, <4 x i8> *%out, i32 %n) {
+; CHECK-LABEL: t2:
+; CHECK: @ %bb.0: @ %entry
+; CHECK-NEXT: add r0, r0, #4
+; CHECK-NEXT: add r1, r1, #4
+; CHECK-NEXT: .LBB1_1: @ %loop
+; CHECK-NEXT: @ =>This Inner Loop Header: Depth=1
+; CHECK-NEXT: vmov.f64 d16, #5.000000e-01
+; CHECK-NEXT: vld1.32 {d16[0]}, [r0:32]
+; CHECK-NEXT: vmovl.u8 q8, d16
+; CHECK-NEXT: vuzp.8 d16, d18
+; CHECK-NEXT: vst1.32 {d16[0]}, [r1:32]!
+; CHECK-NEXT: add r0, r0, #4
+; CHECK-NEXT: subs r2, r2, #1
+; CHECK-NEXT: beq .LBB1_1
+; CHECK-NEXT: @ %bb.2: @ %ret
+; CHECK-NEXT: bx lr
+entry:
+ br label %loop
+loop:
%oldcount = phi i32 [0, %entry], [%newcount, %loop]
%newcount = add i32 %oldcount, 1
%p1 = getelementptr <4 x i8>, <4 x i8> *%in, i32 %newcount
More information about the llvm-commits
mailing list