| Index: runtime/vm/disassembler_arm.cc
|
| ===================================================================
|
| --- runtime/vm/disassembler_arm.cc (revision 40683)
|
| +++ runtime/vm/disassembler_arm.cc (working copy)
|
| @@ -1308,6 +1308,13 @@
|
| } else {
|
| Format(instr, "vmovr'cond 'rd, 'sn");
|
| }
|
| + } else if ((instr->Bits(22, 3) == 0) && (instr->Bit(20) == 0) &&
|
| + (instr->Bit(8) == 1) && (instr->Bits(5, 2) == 0)) {
|
| + if (instr->Bit(21) == 0) {
|
| + Format(instr, "vmovd'cond 'dn[0], 'rd");
|
| + } else {
|
| + Format(instr, "vmovd'cond 'dn[1], 'rd");
|
| + }
|
| } else if ((instr->Bits(20, 4) == 0xf) && (instr->Bit(8) == 0) &&
|
| (instr->Bits(12, 4) == 0xf)) {
|
| Format(instr, "vmstat'cond");
|
|
|