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

Unified Diff: vm/flow_graph_compiler_x64.h

Issue 10407082: Reland: Migrate {Closure,Instance,Static}Call to use location-based code generation templates. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: 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 | vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/flow_graph_compiler_x64.h
===================================================================
--- vm/flow_graph_compiler_x64.h (revision 7834)
+++ vm/flow_graph_compiler_x64.h (working copy)
@@ -43,6 +43,12 @@
Assembler* assembler() const { return assembler_; }
private:
+ // TODO(fschneider): Clean up friend-class declarations once all code
+ // generator templates have been moved to intermediate_language_x64.cc.
+#define DECLARE_FRIEND(ShortName, ClassName) friend class ClassName;
+ FOR_EACH_COMPUTATION(DECLARE_FRIEND)
+#undef DECLARE_FRIEND
+
static const int kLocalsOffsetFromFP = (-1 * kWordSize);
// Constructor is lighweight, major initialization work should occur here.
@@ -80,7 +86,6 @@
#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 | vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698