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

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

Issue 654653004: [arm] Drop SMMLS support. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « test/cctest/test-assembler-arm.cc ('k') | test/unittests/base/bits-unittest.cc » ('j') | 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 COMPARE(uxtb(r9, Operand(r10, ROR, 0)), 413 COMPARE(uxtb(r9, Operand(r10, ROR, 0)),
414 "e6ef907a uxtb r9, r10"); 414 "e6ef907a uxtb r9, r10");
415 COMPARE(uxtb(r3, Operand(r4, ROR, 8)), 415 COMPARE(uxtb(r3, Operand(r4, ROR, 8)),
416 "e6ef3474 uxtb r3, r4, ror #8"); 416 "e6ef3474 uxtb r3, r4, ror #8");
417 COMPARE(uxtab(r3, r4, Operand(r5, ROR, 8)), 417 COMPARE(uxtab(r3, r4, Operand(r5, ROR, 8)),
418 "e6e43475 uxtab r3, r4, r5, ror #8"); 418 "e6e43475 uxtab r3, r4, r5, ror #8");
419 COMPARE(uxtb16(r3, Operand(r4, ROR, 8)), 419 COMPARE(uxtb16(r3, Operand(r4, ROR, 8)),
420 "e6cf3474 uxtb16 r3, r4, ror #8"); 420 "e6cf3474 uxtb16 r3, r4, ror #8");
421 } 421 }
422 422
423 COMPARE(smmls(r0, r1, r2, r3), "e75032d1 smmls r0, r1, r2, r3");
424 COMPARE(smmls(r10, r9, r8, r7), "e75a78d9 smmls r10, r9, r8, r7");
425
426 COMPARE(smmla(r0, r1, r2, r3), "e7503211 smmla r0, r1, r2, r3"); 423 COMPARE(smmla(r0, r1, r2, r3), "e7503211 smmla r0, r1, r2, r3");
427 COMPARE(smmla(r10, r9, r8, r7), "e75a7819 smmla r10, r9, r8, r7"); 424 COMPARE(smmla(r10, r9, r8, r7), "e75a7819 smmla r10, r9, r8, r7");
428 425
429 COMPARE(smmul(r0, r1, r2), "e750f211 smmul r0, r1, r2"); 426 COMPARE(smmul(r0, r1, r2), "e750f211 smmul r0, r1, r2");
430 COMPARE(smmul(r8, r9, r10), "e758fa19 smmul r8, r9, r10"); 427 COMPARE(smmul(r8, r9, r10), "e758fa19 smmul r8, r9, r10");
431 428
432 VERIFY_RUN(); 429 VERIFY_RUN();
433 } 430 }
434 431
435 432
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
906 "e16dc7ff strd ip, [sp, #-127]!"); 903 "e16dc7ff strd ip, [sp, #-127]!");
907 904
908 COMPARE(pld(MemOperand(r1, 0)), 905 COMPARE(pld(MemOperand(r1, 0)),
909 "f5d1f000 pld [r1]"); 906 "f5d1f000 pld [r1]");
910 COMPARE(pld(MemOperand(r2, 128)), 907 COMPARE(pld(MemOperand(r2, 128)),
911 "f5d2f080 pld [r2, #+128]"); 908 "f5d2f080 pld [r2, #+128]");
912 } 909 }
913 910
914 VERIFY_RUN(); 911 VERIFY_RUN();
915 } 912 }
OLDNEW
« no previous file with comments | « test/cctest/test-assembler-arm.cc ('k') | test/unittests/base/bits-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698