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

Unified Diff: src/ast.cc

Issue 650073002: vector-based ICs did not update type feedback counts correctly. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ports. Created 6 years, 2 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 | « src/ast.h ('k') | src/bootstrapper.cc » ('j') | src/ic/ic.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast.cc
diff --git a/src/ast.cc b/src/ast.cc
index 60db9132104dcc09c63357e104d9adb8de537226..71bd839a62aa3fc742029f321eb0e50e34b3100e 100644
--- a/src/ast.cc
+++ b/src/ast.cc
@@ -64,7 +64,7 @@ VariableProxy::VariableProxy(Zone* zone, Variable* var, int position,
: Expression(zone, position, 0, id_gen),
raw_name_(var->raw_name()),
interface_(var->interface()),
- variable_feedback_slot_(FeedbackVectorSlot::Invalid()),
+ variable_feedback_slot_(FeedbackVectorICSlot::Invalid()),
is_this_(var->is_this()),
is_assigned_(false),
is_resolved_(false) {
@@ -77,7 +77,7 @@ VariableProxy::VariableProxy(Zone* zone, const AstRawString* name, bool is_this,
: Expression(zone, position, 0, id_gen),
raw_name_(name),
interface_(interface),
- variable_feedback_slot_(FeedbackVectorSlot::Invalid()),
+ variable_feedback_slot_(FeedbackVectorICSlot::Invalid()),
is_this_(is_this),
is_assigned_(false),
is_resolved_(false) {}
« no previous file with comments | « src/ast.h ('k') | src/bootstrapper.cc » ('j') | src/ic/ic.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698