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

Unified Diff: runtime/vm/flow_graph_allocator.h

Issue 10882055: Put live register bits in stackmaps. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Handle XMM registers in stackmaps. Created 8 years, 4 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
diff --git a/runtime/vm/flow_graph_allocator.h b/runtime/vm/flow_graph_allocator.h
index 27f8fc399c02565d2073fa90a5ce2badf30d368b..17a9ce1751ea0be7e52b1223fa994ae881c0f1af 100644
--- a/runtime/vm/flow_graph_allocator.h
+++ b/runtime/vm/flow_graph_allocator.h
@@ -19,6 +19,8 @@ class UsePosition;
class FlowGraphAllocator : public ValueObject {
public:
+ static const intptr_t kDoubleSpillSlotFactor = kDoubleSize / kWordSize;
Vyacheslav Egorov (Google) 2012/08/30 09:24:35 you copied the constant but not the comment.
Kevin Millikin (Google) 2012/08/30 10:02:21 I restored the comment.
+
explicit FlowGraphAllocator(const FlowGraph& flow_graph);
void AllocateRegisters();

Powered by Google App Engine
This is Rietveld 408576698