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

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

Issue 198053014: ARM: fix assertions for uxtb and co. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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 | « src/arm/disasm-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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 "e6e7201e usat r2, #7, lr"); 403 "e6e7201e usat r2, #7, lr");
404 COMPARE(usat(r3, 31, Operand(r4, LSL, 31)), 404 COMPARE(usat(r3, 31, Operand(r4, LSL, 31)),
405 "e6ff3f94 usat r3, #31, r4, lsl #31"); 405 "e6ff3f94 usat r3, #31, r4, lsl #31");
406 COMPARE(usat(r8, 0, Operand(r5, ASR, 17)), 406 COMPARE(usat(r8, 0, Operand(r5, ASR, 17)),
407 "e6e088d5 usat r8, #0, r5, asr #17"); 407 "e6e088d5 usat r8, #0, r5, asr #17");
408 408
409 COMPARE(pkhbt(r3, r4, Operand(r5, LSL, 17)), 409 COMPARE(pkhbt(r3, r4, Operand(r5, LSL, 17)),
410 "e6843895 pkhbt r3, r4, r5, lsl #17"); 410 "e6843895 pkhbt r3, r4, r5, lsl #17");
411 COMPARE(pkhtb(r3, r4, Operand(r5, ASR, 17)), 411 COMPARE(pkhtb(r3, r4, Operand(r5, ASR, 17)),
412 "e68438d5 pkhtb r3, r4, r5, asr #17"); 412 "e68438d5 pkhtb r3, r4, r5, asr #17");
413 COMPARE(uxtb(r9, Operand(r10, ROR, 0)),
414 "e6ef907a uxtb r9, r10");
413 COMPARE(uxtb(r3, Operand(r4, ROR, 8)), 415 COMPARE(uxtb(r3, Operand(r4, ROR, 8)),
414 "e6ef3474 uxtb r3, r4, ror #8"); 416 "e6ef3474 uxtb r3, r4, ror #8");
415 COMPARE(uxtab(r3, r4, Operand(r5, ROR, 8)), 417 COMPARE(uxtab(r3, r4, Operand(r5, ROR, 8)),
416 "e6e43475 uxtab r3, r4, r5, ror #8"); 418 "e6e43475 uxtab r3, r4, r5, ror #8");
417 COMPARE(uxtb16(r3, Operand(r4, ROR, 8)), 419 COMPARE(uxtb16(r3, Operand(r4, ROR, 8)),
418 "e6cf3474 uxtb16 r3, r4, ror #8"); 420 "e6cf3474 uxtb16 r3, r4, ror #8");
419 } 421 }
420 422
421 VERIFY_RUN(); 423 VERIFY_RUN();
422 } 424 }
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 "e16dc7ff strd ip, [sp, #-127]!"); 897 "e16dc7ff strd ip, [sp, #-127]!");
896 898
897 COMPARE(pld(MemOperand(r1, 0)), 899 COMPARE(pld(MemOperand(r1, 0)),
898 "f5d1f000 pld [r1]"); 900 "f5d1f000 pld [r1]");
899 COMPARE(pld(MemOperand(r2, 128)), 901 COMPARE(pld(MemOperand(r2, 128)),
900 "f5d2f080 pld [r2, #+128]"); 902 "f5d2f080 pld [r2, #+128]");
901 } 903 }
902 904
903 VERIFY_RUN(); 905 VERIFY_RUN();
904 } 906 }
OLDNEW
« no previous file with comments | « src/arm/disasm-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698