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

Unified Diff: runtime/vm/flow_graph_compiler_x64.h

Issue 9474001: Allocate and finalize a code object on x64 if the new compiler succeeds. (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
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..9e9abc6342da6f0372f1d1920d7e2a216b81b3f3 100644
--- a/runtime/vm/flow_graph_compiler_x64.h
+++ b/runtime/vm/flow_graph_compiler_x64.h
@@ -31,6 +31,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);

Powered by Google App Engine
This is Rietveld 408576698