Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: tests_lit/assembler/arm32/sub-vec.ll

Issue 1639923002: Subzero. ARM32. Vector lowering. Subtract. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests_lit/assembler/arm32/sub-vec.ll
diff --git a/tests_lit/assembler/arm32/sub-vec.ll b/tests_lit/assembler/arm32/sub-vec.ll
new file mode 100644
index 0000000000000000000000000000000000000000..d653372166d3cfd0da90fd2e806d245aa99c8300
--- /dev/null
+++ b/tests_lit/assembler/arm32/sub-vec.ll
@@ -0,0 +1,85 @@
+; Show that we know how to translate vsub vector instructions.
+
+; REQUIRES: allow_dump
+
+; Compile using standalone assembler.
+; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -O2 \
+; RUN: -reg-use q10,q11 \
+; RUN: | FileCheck %s --check-prefix=ASM
+
+; Show bytes in assembled standalone code.
+; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \
+; RUN: --args -O2 \
+; RUN: -reg-use q10,q11 \
+; RUN: | FileCheck %s --check-prefix=DIS
+
+; Compile using integrated assembler.
+; RUN: %p2i --filetype=iasm -i %s --target=arm32 --args -O2 \
+; RUN: -reg-use q10,q11 \
+; RUN: | FileCheck %s --check-prefix=IASM
+
+; Show bytes in assembled integrated code.
+; RUN: %p2i --filetype=iasm -i %s --target=arm32 --assemble --disassemble \
+; RUN: --args -O2 \
+; RUN: -reg-use q10,q11 \
+; RUN: | FileCheck %s --check-prefix=DIS
+
+define internal <4 x float> @testVsubFloat4(<4 x float> %v1, <4 x float> %v2) {
+; ASM-LABEL: testVsubFloat4:
+; DIS-LABEL: 00000000 <testVsubFloat4>:
+; IASM-LABEL: testVsubFloat4:
+
+entry:
+ %res = fsub <4 x float> %v1, %v2
+
+; ASM: vsub.f32 q10, q10, q11
+; DIS: 8: f2644de6
+; IASM: vsub.f32
+
+ ret <4 x float> %res
+}
+
+define internal <4 x i32> @testVsub4i32(<4 x i32> %v1, <4 x i32> %v2) {
+; ASM-LABEL: testVsub4i32:
+; DIS-LABEL: 00000020 <testVsub4i32>:
+; IASM-LABEL: testVsub4i32:
+
+entry:
+ %res = sub <4 x i32> %v1, %v2
+
+; ASM: vsub.i32 q10, q10, q11
+; DIS: 28: f36448e6
+; IASM: vsub.i32
+
+ ret <4 x i32> %res
+}
+
+define internal <8 x i16> @testVsub8i16(<8 x i16> %v1, <8 x i16> %v2) {
+; ASM-LABEL: testVsub8i16:
+; DIS-LABEL: 00000040 <testVsub8i16>:
+; IASM-LABEL: testVsub8i16:
+
+entry:
+ %res = sub <8 x i16> %v1, %v2
+
+; ASM: vsub.i16 q10, q10, q11
+; DIS: 48: f35448e6
+; IASM: vsub.i16
+
+ ret <8 x i16> %res
+}
+
+define internal <16 x i8> @testVsub16i8(<16 x i8> %v1, <16 x i8> %v2) {
+; ASM-LABEL: testVsub16i8:
+; DIS-LABEL: 00000060 <testVsub16i8>:
+; IASM-LABEL: testVsub16i8:
+
+entry:
+ %res = sub <16 x i8> %v1, %v2
+
+; ASM: vsub.i8 q10, q10, q11
+; DIS: 68: f34448e6
+; IASM: vsub.i8
+
+ ret <16 x i8> %res
+}

Powered by Google App Engine
This is Rietveld 408576698