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

Unified Diff: runtime/vm/flow_graph_compiler.h

Issue 2796283003: VM: [Kernel] Implement CatchBlockEntryInstr::should_restore_closure_context on all platforms. (Closed)
Patch Set: Fix status file Created 3 years, 8 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.h
diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
index 313691504ff9eba4446bed12c7382c12f1ce7162..7262d0e9c03589ab3ea89fe9f7cd40f2a74a2dc7 100644
--- a/runtime/vm/flow_graph_compiler.h
+++ b/runtime/vm/flow_graph_compiler.h
@@ -540,6 +540,11 @@ class FlowGraphCompiler : public ValueObject {
// If the cid does not fit in 16 bits, then this will cause a bailout.
uint16_t ToEmbeddableCid(intptr_t cid, Instruction* instruction);
+
+ // In optimized code, variables at the catch block entry reside at the top
+ // of the allocatable register range.
+ // Must be in sync with FlowGraphAllocator::ProcessInitialDefinition.
+ intptr_t CatchEntryRegForVariable(const LocalVariable& var);
#endif // defined(TARGET_ARCH_DBC)
CompilerDeoptInfo* AddDeoptIndexAtCall(intptr_t deopt_id);

Powered by Google App Engine
This is Rietveld 408576698