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

Side by Side Diff: test/cctest/test-disasm-arm.cc

Issue 2602293002: [ARM] Add vcge, vcgt instructions to assembler. (Closed)
Patch Set: Fix some assembler comments. 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 unified diff | Download patch
« src/arm/simulator-arm.cc ('K') | « test/cctest/test-assembler-arm.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 COMPARE(vmul(Neon32, q15, q0, q8), 1050 COMPARE(vmul(Neon32, q15, q0, q8),
1051 "f260e970 vmul.i32 q15, q0, q8"); 1051 "f260e970 vmul.i32 q15, q0, q8");
1052 COMPARE(vtst(Neon8, q0, q1, q2), 1052 COMPARE(vtst(Neon8, q0, q1, q2),
1053 "f2020854 vtst.i8 q0, q1, q2"); 1053 "f2020854 vtst.i8 q0, q1, q2");
1054 COMPARE(vtst(Neon16, q1, q2, q8), 1054 COMPARE(vtst(Neon16, q1, q2, q8),
1055 "f2142870 vtst.i16 q1, q2, q8"); 1055 "f2142870 vtst.i16 q1, q2, q8");
1056 COMPARE(vtst(Neon32, q15, q0, q8), 1056 COMPARE(vtst(Neon32, q15, q0, q8),
1057 "f260e870 vtst.i32 q15, q0, q8"); 1057 "f260e870 vtst.i32 q15, q0, q8");
1058 COMPARE(vceq(q0, q1, q2), 1058 COMPARE(vceq(q0, q1, q2),
1059 "f2020e44 vceq.f32 q0, q1, q2"); 1059 "f2020e44 vceq.f32 q0, q1, q2");
1060 COMPARE(vcge(q0, q1, q2),
1061 "f3020e44 vcge.f32 q0, q1, q2");
1062 COMPARE(vcgt(q0, q1, q2),
1063 "f3220e44 vcgt.f32 q0, q1, q2");
1060 COMPARE(vceq(Neon8, q0, q1, q2), 1064 COMPARE(vceq(Neon8, q0, q1, q2),
1061 "f3020854 vceq.i8 q0, q1, q2"); 1065 "f3020854 vceq.i8 q0, q1, q2");
1062 COMPARE(vceq(Neon16, q1, q2, q8), 1066 COMPARE(vceq(Neon16, q1, q2, q8),
1063 "f3142870 vceq.i16 q1, q2, q8"); 1067 "f3142870 vceq.i16 q1, q2, q8");
1064 COMPARE(vceq(Neon32, q15, q0, q8), 1068 COMPARE(vceq(Neon32, q15, q0, q8),
1065 "f360e870 vceq.i32 q15, q0, q8"); 1069 "f360e870 vceq.i32 q15, q0, q8");
1070 COMPARE(vcge(NeonS8, q0, q1, q2),
1071 "f2020354 vcge.s8 q0, q1, q2");
1072 COMPARE(vcge(NeonU16, q1, q2, q8),
1073 "f3142370 vcge.u16 q1, q2, q8");
1074 COMPARE(vcge(NeonS32, q15, q0, q8),
1075 "f260e370 vcge.s32 q15, q0, q8");
1076 COMPARE(vcgt(NeonS8, q0, q1, q2),
1077 "f2020344 vcgt.s8 q0, q1, q2");
1078 COMPARE(vcgt(NeonU16, q1, q2, q8),
1079 "f3142360 vcgt.u16 q1, q2, q8");
1080 COMPARE(vcgt(NeonS32, q15, q0, q8),
1081 "f260e360 vcgt.s32 q15, q0, q8");
1066 COMPARE(vbsl(q0, q1, q2), 1082 COMPARE(vbsl(q0, q1, q2),
1067 "f3120154 vbsl q0, q1, q2"); 1083 "f3120154 vbsl q0, q1, q2");
1068 COMPARE(vbsl(q15, q0, q8), 1084 COMPARE(vbsl(q15, q0, q8),
1069 "f350e170 vbsl q15, q0, q8"); 1085 "f350e170 vbsl q15, q0, q8");
1070 COMPARE(vext(q15, q0, q8, 3), 1086 COMPARE(vext(q15, q0, q8, 3),
1071 "f2f0e360 vext.8 q15, q0, q8, #3"); 1087 "f2f0e360 vext.8 q15, q0, q8, #3");
1072 COMPARE(vzip(Neon16, q15, q0), 1088 COMPARE(vzip(Neon16, q15, q0),
1073 "f3f6e1c0 vzip.16 q15, q0"); 1089 "f3f6e1c0 vzip.16 q15, q0");
1074 COMPARE(vrev64(Neon8, q15, q0), 1090 COMPARE(vrev64(Neon8, q15, q0),
1075 "f3f0e040 vrev64.8 q15, q0"); 1091 "f3f0e040 vrev64.8 q15, q0");
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
1372 1388
1373 COMPARE(ldrexb(r0, r1), "e1d10f9f ldrexb r0, [r1]"); 1389 COMPARE(ldrexb(r0, r1), "e1d10f9f ldrexb r0, [r1]");
1374 COMPARE(strexb(r0, r1, r2), "e1c20f91 strexb r0, r1, [r2]"); 1390 COMPARE(strexb(r0, r1, r2), "e1c20f91 strexb r0, r1, [r2]");
1375 COMPARE(ldrexh(r0, r1), "e1f10f9f ldrexh r0, [r1]"); 1391 COMPARE(ldrexh(r0, r1), "e1f10f9f ldrexh r0, [r1]");
1376 COMPARE(strexh(r0, r1, r2), "e1e20f91 strexh r0, r1, [r2]"); 1392 COMPARE(strexh(r0, r1, r2), "e1e20f91 strexh r0, r1, [r2]");
1377 COMPARE(ldrex(r0, r1), "e1910f9f ldrex r0, [r1]"); 1393 COMPARE(ldrex(r0, r1), "e1910f9f ldrex r0, [r1]");
1378 COMPARE(strex(r0, r1, r2), "e1820f91 strex r0, r1, [r2]"); 1394 COMPARE(strex(r0, r1, r2), "e1820f91 strex r0, r1, [r2]");
1379 1395
1380 VERIFY_RUN(); 1396 VERIFY_RUN();
1381 } 1397 }
OLDNEW
« src/arm/simulator-arm.cc ('K') | « test/cctest/test-assembler-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698