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

Unified Diff: test/cctest/test-disasm-arm.cc

Issue 2602293002: [ARM] Add vcge, vcgt instructions to assembler. (Closed)
Patch Set: Rebase. Created 3 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
« no previous file with comments | « test/cctest/test-assembler-arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-disasm-arm.cc
diff --git a/test/cctest/test-disasm-arm.cc b/test/cctest/test-disasm-arm.cc
index c0acb8df50738c27426bf49ef62741bb98198e14..8aaecb4ae05d0225226331c3611436c78841ead9 100644
--- a/test/cctest/test-disasm-arm.cc
+++ b/test/cctest/test-disasm-arm.cc
@@ -1065,12 +1065,28 @@ TEST(Neon) {
"f260e870 vtst.i32 q15, q0, q8");
COMPARE(vceq(q0, q1, q2),
"f2020e44 vceq.f32 q0, q1, q2");
+ COMPARE(vcge(q0, q1, q2),
+ "f3020e44 vcge.f32 q0, q1, q2");
+ COMPARE(vcgt(q0, q1, q2),
+ "f3220e44 vcgt.f32 q0, q1, q2");
COMPARE(vceq(Neon8, q0, q1, q2),
"f3020854 vceq.i8 q0, q1, q2");
COMPARE(vceq(Neon16, q1, q2, q8),
"f3142870 vceq.i16 q1, q2, q8");
COMPARE(vceq(Neon32, q15, q0, q8),
"f360e870 vceq.i32 q15, q0, q8");
+ COMPARE(vcge(NeonS8, q0, q1, q2),
+ "f2020354 vcge.s8 q0, q1, q2");
+ COMPARE(vcge(NeonU16, q1, q2, q8),
+ "f3142370 vcge.u16 q1, q2, q8");
+ COMPARE(vcge(NeonS32, q15, q0, q8),
+ "f260e370 vcge.s32 q15, q0, q8");
+ COMPARE(vcgt(NeonS8, q0, q1, q2),
+ "f2020344 vcgt.s8 q0, q1, q2");
+ COMPARE(vcgt(NeonU16, q1, q2, q8),
+ "f3142360 vcgt.u16 q1, q2, q8");
+ COMPARE(vcgt(NeonS32, q15, q0, q8),
+ "f260e360 vcgt.s32 q15, q0, q8");
COMPARE(vbsl(q0, q1, q2),
"f3120154 vbsl q0, q1, q2");
COMPARE(vbsl(q15, q0, q8),
« no previous file with comments | « test/cctest/test-assembler-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698