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

Unified Diff: src/ic/ic-state.cc

Issue 680883004: Introduce FeedbackNexus for vector-based ics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Patch One. 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
Index: src/ic/ic-state.cc
diff --git a/src/ic/ic-state.cc b/src/ic/ic-state.cc
index 5a17bc8688c77514d1ed2865675524d31f75ba06..1304e1fa1731c3321410876e4df00ed5acc7f378 100644
--- a/src/ic/ic-state.cc
+++ b/src/ic/ic-state.cc
@@ -19,8 +19,8 @@ void ICUtility::Clear(Isolate* isolate, Address address,
// static
void ICUtility::Clear(Isolate* isolate, Code::Kind kind, Code* host,
- TypeFeedbackVector* vector, FeedbackVectorICSlot slot) {
- IC::Clear(isolate, kind, host, vector, slot);
+ FeedbackNexus* nexus) {
+ IC::Clear(isolate, kind, host, nexus);
}

Powered by Google App Engine
This is Rietveld 408576698