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

Unified Diff: vm/scopes.h

Issue 10539108: First step to SSA construction: Phi insertion. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 6 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: vm/scopes.h
===================================================================
--- vm/scopes.h (revision 8546)
+++ vm/scopes.h (working copy)
@@ -74,7 +74,9 @@
// Map the frame index to a bit-vector index. Assumes the variable is
// allocated to the frame.
- int BitIndexIn(BitVector* vector) const;
+ // var_count is the total number of stack-allocated variables including
+ // all parameters.
+ int BitIndexIn(intptr_t var_count) const;
private:
static const int kUnitializedIndex = INT_MIN;
« vm/intermediate_language.cc ('K') | « vm/intermediate_language.cc ('k') | vm/scopes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698