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

Side by Side Diff: runtime/vm/disassembler_arm.cc

Issue 13983016: Support debugger API on ARM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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 | « runtime/vm/debugger_x64.cc ('k') | runtime/vm/heap_test.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 (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/disassembler.h" 5 #include "vm/disassembler.h"
6 6
7 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. 7 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
8 #if defined(TARGET_ARCH_ARM) 8 #if defined(TARGET_ARCH_ARM)
9 #include "platform/assert.h" 9 #include "platform/assert.h"
10 10
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 case 3: { 631 case 3: {
632 // Assembler registers rd, rn, rm, ra are encoded as rn, rm, rs, rd. 632 // Assembler registers rd, rn, rm, ra are encoded as rn, rm, rs, rd.
633 Format(instr, "mls'cond's 'rn, 'rm, 'rs, 'rd"); 633 Format(instr, "mls'cond's 'rn, 'rm, 'rs, 'rd");
634 break; 634 break;
635 } 635 }
636 case 4: { 636 case 4: {
637 // Registers rd_lo, rd_hi, rn, rm are encoded as rd, rn, rm, rs. 637 // Registers rd_lo, rd_hi, rn, rm are encoded as rd, rn, rm, rs.
638 Format(instr, "umull'cond's 'rd, 'rn, 'rm, 'rs"); 638 Format(instr, "umull'cond's 'rd, 'rn, 'rm, 'rs");
639 break; 639 break;
640 } 640 }
641 case 6: {
642 // Registers rd_lo, rd_hi, rn, rm are encoded as rd, rn, rm, rs.
643 Format(instr, "smull'cond's 'rd, 'rn, 'rm, 'rs");
644 break;
645 }
641 default: { 646 default: {
642 Unknown(instr); // Not used. 647 Unknown(instr); // Not used.
643 break; 648 break;
644 } 649 }
645 } 650 }
646 } else { 651 } else {
647 // synchronization primitives 652 // synchronization primitives
648 switch (instr->Bits(20, 4)) { 653 switch (instr->Bits(20, 4)) {
649 case 8: { 654 case 8: {
650 Format(instr, "strex'cond 'rd, 'rm, ['rn]"); 655 Format(instr, "strex'cond 'rd, 'rm, ['rn]");
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
1301 human_buffer, 1306 human_buffer,
1302 sizeof(human_buffer), 1307 sizeof(human_buffer),
1303 pc); 1308 pc);
1304 pc += instruction_length; 1309 pc += instruction_length;
1305 } 1310 }
1306 } 1311 }
1307 1312
1308 } // namespace dart 1313 } // namespace dart
1309 1314
1310 #endif // defined TARGET_ARCH_ARM 1315 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/debugger_x64.cc ('k') | runtime/vm/heap_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698