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

Unified Diff: runtime/vm/disassembler_mips.cc

Issue 1722013002: Enable concurrent sweep on MIPS and ARM64. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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_mips.cc
diff --git a/runtime/vm/disassembler_mips.cc b/runtime/vm/disassembler_mips.cc
index a6195fba874a1e191f5edfc78e4c4cf988146a31..b9e0987e1ca8231632dbe50ee078ec7b021c0027 100644
--- a/runtime/vm/disassembler_mips.cc
+++ b/runtime/vm/disassembler_mips.cc
@@ -712,6 +712,10 @@ void MIPSDecoder::InstructionDecode(Instr* instr) {
Format(instr, "lui 'rt, 'immu");
break;
}
+ case LL: {
+ Format(instr, "ll 'rt, 'imms('rs)");
+ break;
+ }
case LW: {
Format(instr, "lw 'rt, 'imms('rs)");
break;
@@ -728,6 +732,10 @@ void MIPSDecoder::InstructionDecode(Instr* instr) {
Format(instr, "sb 'rt, 'imms('rs)");
break;
}
+ case SC: {
+ Format(instr, "sc 'rt, 'imms('rs)");
+ break;
+ }
case SLTI: {
Format(instr, "slti 'rt, 'rs, 'imms");
break;

Powered by Google App Engine
This is Rietveld 408576698