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

Unified Diff: runtime/vm/flow_graph_compiler_x64.h

Issue 10382234: Introduce locations based code generation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: addressed Srdjan comments Created 8 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
« no previous file with comments | « no previous file | runtime/vm/flow_graph_compiler_x64.cc » ('j') | runtime/vm/flow_graph_compiler_x64.cc » ('J')
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 b72a62696bd5457e98b972932f3f0398282cf320..72a6d1d56c158a264b0897e69baeba1277a90e3d 100644
--- a/runtime/vm/flow_graph_compiler_x64.h
+++ b/runtime/vm/flow_graph_compiler_x64.h
@@ -40,6 +40,8 @@ class FlowGraphCompiler : public FlowGraphVisitor {
void FinalizeExceptionHandlers(const Code& code);
void FinalizeComments(const Code& code);
+ Assembler* assembler() const { return assembler_; }
+
private:
static const int kLocalsOffsetFromFP = (-1 * kWordSize);
@@ -77,6 +79,9 @@ class FlowGraphCompiler : public FlowGraphVisitor {
#undef DECLARE_VISIT_COMPUTATION
#undef DECLARE_VISIT_INSTRUCTION
+ void EmitInstructionPrologue(Instruction* instr);
+ void LoadInputs(LocationSummary* summary);
+
// Emit code to load a Value into register 'dst'.
void LoadValue(Register dst, Value* value);
« no previous file with comments | « no previous file | runtime/vm/flow_graph_compiler_x64.cc » ('j') | runtime/vm/flow_graph_compiler_x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698