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

Unified Diff: runtime/vm/flow_graph_compiler_x64.h

Issue 10824017: Implement deoptimization in the SSA compiler as a parallel move. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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_x64.h
diff --git a/runtime/vm/flow_graph_compiler_x64.h b/runtime/vm/flow_graph_compiler_x64.h
index 19712640de77e0b8111e08f004a5de30ee9abf82..b0bbddd5d35ea93651d8dd27fd92f10584c48885 100644
--- a/runtime/vm/flow_graph_compiler_x64.h
+++ b/runtime/vm/flow_graph_compiler_x64.h
@@ -50,6 +50,9 @@ class FlowGraphCompiler : public ValueObject {
static bool CanOptimize();
bool is_optimizing() const { return is_optimizing_; }
const GrowableArray<BlockInfo*>& block_info() const { return block_info_; }
+ ParallelMoveResolver* parallel_move_resolver() {
+ return &parallel_move_resolver_;
+ }
// Constructor is lighweight, major initialization work should occur here.
// This makes it easier to measure time spent in the compiler.

Powered by Google App Engine
This is Rietveld 408576698