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

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
« no previous file with comments | « runtime/vm/constants_x64.h ('k') | runtime/vm/flow_graph_allocator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/disassembler_arm.cc
===================================================================
--- runtime/vm/disassembler_arm.cc (revision 19151)
+++ 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.
« no previous file with comments | « runtime/vm/constants_x64.h ('k') | runtime/vm/flow_graph_allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698