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

Unified Diff: runtime/vm/disassembler_arm.cc

Issue 12335102: Compile and simulate first dart function on arm generated from ast. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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
Index: runtime/vm/disassembler_arm.cc
===================================================================
--- runtime/vm/disassembler_arm.cc (revision 19074)
+++ runtime/vm/disassembler_arm.cc (working copy)
@@ -555,6 +555,8 @@
case 1: {
if (instr->Bits(21, 2) == 0x3) {
Format(instr, "clz'cond 'rd, 'rm");
+ } else if (instr->Bits(21, 2) == 0x1) {
+ Format(instr, "bx'cond 'rm");
} else {
Unknown(instr);
}
@@ -571,7 +573,7 @@
}
case 7: {
if (instr->Bits(21, 2) == 0x1) {
- Format(instr, "bkpt #'imm12_4");
+ Format(instr, "bkpt'cond #'imm12_4");
} else {
// Format(instr, "smc'cond");
Unknown(instr); // Not used.

Powered by Google App Engine
This is Rietveld 408576698