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

Unified Diff: runtime/vm/flow_graph_allocator.h

Issue 513213002: Generate some intrinsics using our IR. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: addressed comments Created 6 years, 3 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_allocator.h
===================================================================
--- runtime/vm/flow_graph_allocator.h (revision 39909)
+++ runtime/vm/flow_graph_allocator.h (working copy)
@@ -56,7 +56,8 @@
// Number of stack slots needed for a fpu register spill slot.
static const intptr_t kDoubleSpillFactor = kDoubleSize / kWordSize;
- explicit FlowGraphAllocator(const FlowGraph& flow_graph);
+ explicit FlowGraphAllocator(const FlowGraph& flow_graph,
+ bool intrinsics_mode = false);
srdjan 2014/09/08 17:34:06 s/intrinsics_mode/intrinsic_mode/
Florian Schneider 2014/09/09 09:57:08 Done.
void AllocateRegisters();
@@ -324,6 +325,8 @@
intptr_t cpu_spill_slot_count_;
+ bool intrinsic_mode_;
srdjan 2014/09/08 17:34:06 const
Florian Schneider 2014/09/09 09:57:08 Done.
+
DISALLOW_COPY_AND_ASSIGN(FlowGraphAllocator);
};

Powered by Google App Engine
This is Rietveld 408576698