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

Unified Diff: runtime/vm/flow_graph_compiler_arm64.cc

Issue 311413002: Changes for running tests on arm64 hardware. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 6 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/flow_graph_compiler_arm64.cc
===================================================================
--- runtime/vm/flow_graph_compiler_arm64.cc (revision 37032)
+++ runtime/vm/flow_graph_compiler_arm64.cc (working copy)
@@ -158,7 +158,7 @@
__ Comment("Deopt stub for id %" Pd "", deopt_id());
__ Bind(entry_label());
if (FLAG_trap_on_deoptimization) {
- __ hlt(0);
+ __ brk(0);
}
ASSERT(deopt_env() != NULL);
@@ -664,7 +664,7 @@
3,
locs);
// We should never return here.
- __ hlt(0);
+ __ brk(0);
__ Bind(&is_assignable); // For a null object.
// Restore instantiator (R2) and its type arguments (R1).
@@ -901,7 +901,7 @@
__ LeaveDartFrame(); // The arguments are still on the stack.
__ BranchPatchable(&StubCode::CallNoSuchMethodFunctionLabel());
// The noSuchMethod call may return to the caller, but not here.
- __ hlt(0);
+ __ brk(0);
} else if (check_correct_named_args) {
__ Stop("Wrong arguments");
}
@@ -1073,7 +1073,7 @@
__ LeaveDartFrame(); // The arguments are still on the stack.
__ BranchPatchable(&StubCode::CallNoSuchMethodFunctionLabel());
// The noSuchMethod call may return to the caller, but not here.
- __ hlt(0);
+ __ brk(0);
} else {
__ Stop("Wrong number of arguments");
}
@@ -1097,7 +1097,7 @@
VisitBlocks();
- __ hlt(0);
+ __ brk(0);
GenerateDeferredCode();
// Emit function patching code. This will be swapped with the first 3

Powered by Google App Engine
This is Rietveld 408576698