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

Unified Diff: runtime/vm/flow_graph_builder.cc

Issue 14682020: Optimize functions containing try-catch. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: fixed checked mode tests failure Created 7 years, 7 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_builder.cc
===================================================================
--- runtime/vm/flow_graph_builder.cc (revision 22436)
+++ runtime/vm/flow_graph_builder.cc (working copy)
@@ -3071,6 +3071,9 @@
void EffectGraphVisitor::VisitCatchClauseNode(CatchClauseNode* node) {
+#if defined(TARGET_ARCH_ARM) || defined(TARGET_ARCH_MIPS)
+ Bailout("EffectGraphVisitor::VisitCatchClauseNode (exception)");
srdjan 2013/05/07 17:34:05 Why is this bailout necessary?
Florian Schneider 2013/05/08 08:57:47 Oops, yes this is the wrong place here. I was inc
+#endif
InlineBailout("EffectGraphVisitor::VisitCatchClauseNode (exception)");
// NOTE: The implicit variables ':saved_context', ':exception_var'
// and ':stacktrace_var' can never be captured variables.

Powered by Google App Engine
This is Rietveld 408576698