Chromium Code Reviews| 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); |
| }; |