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

Unified Diff: runtime/vm/intermediate_language.cc

Issue 10915026: We can throw an exception but we cannot deoptimize at a runtime call. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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/intermediate_language.cc
===================================================================
--- runtime/vm/intermediate_language.cc (revision 11671)
+++ runtime/vm/intermediate_language.cc (working copy)
@@ -1176,8 +1176,7 @@
void ThrowInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
- compiler->GenerateCallRuntime(deopt_id(),
- token_pos(),
+ compiler->GenerateCallRuntime(token_pos(),
kThrowRuntimeEntry,
locs());
__ int3();
@@ -1190,8 +1189,7 @@
void ReThrowInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
- compiler->GenerateCallRuntime(deopt_id(),
- token_pos(),
+ compiler->GenerateCallRuntime(token_pos(),
kReThrowRuntimeEntry,
locs());
__ int3();
@@ -1377,8 +1375,7 @@
void AssertAssignableComp::EmitNativeCode(FlowGraphCompiler* compiler) {
if (!is_eliminated()) {
- compiler->GenerateAssertAssignable(deopt_id(),
- token_pos(),
+ compiler->GenerateAssertAssignable(token_pos(),
dst_type(),
dst_name(),
locs());

Powered by Google App Engine
This is Rietveld 408576698