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

Unified Diff: runtime/vm/assembler_mips.h

Issue 12431016: Copies Simulator Debugger from ARM to MIPS. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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 | « no previous file | runtime/vm/constants_mips.h » ('j') | runtime/vm/disassembler_mips.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_mips.h
===================================================================
--- runtime/vm/assembler_mips.h (revision 19939)
+++ runtime/vm/assembler_mips.h (working copy)
@@ -245,6 +245,13 @@
EmitIType(ANDI, rs, rt, imm_value);
}
+ void break_(int32_t code) {
+ ASSERT(Utils::IsUint(20, code));
+ Emit(SPECIAL << kOpcodeShift |
+ code << kBreakCodeShift |
+ BREAK << kFunctionShift);
+ }
+
void clo(Register rd, Register rs) {
EmitRType(SPECIAL2, rs, rd, rd, 0, CLO);
}
« no previous file with comments | « no previous file | runtime/vm/constants_mips.h » ('j') | runtime/vm/disassembler_mips.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698