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

Unified Diff: runtime/vm/flow_graph_compiler_x64.h

Issue 9479004: Add a stubbed-out implementation of FlowGraphCompiler for ia32 and arm. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | runtime/vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 db83d44811953d6f48216bb67acd8227bfb2c9d5..b7d73d93b9f0eb29dd398e4a52b834f93ef0cea4 100644
--- a/runtime/vm/flow_graph_compiler_x64.h
+++ b/runtime/vm/flow_graph_compiler_x64.h
@@ -15,6 +15,8 @@
namespace dart {
+class Code;
+class GrowableArray;
class ParsedFunction;
class FlowGraphCompiler : public InstructionVisitor {
@@ -31,6 +33,11 @@ class FlowGraphCompiler : public InstructionVisitor {
void CompileGraph();
+ // Infrastructure copied from class CodeGenerator or stubbed out.
+ void FinalizePcDescriptors(const Code& code);
+ void FinalizeVarDescriptors(const Code& code);
+ void FinalizeExceptionHandlers(const Code& code);
+
private:
// Bail out of the flow graph compiler. Does not return to the caller.
void Bailout(const char* reason);
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | runtime/vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698