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

Unified Diff: src/type-feedback-vector.h

Issue 1161623002: VectorICs: allocating slots for store ics in ast nodes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Code comments. Created 5 years, 7 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/mips64/full-codegen-mips64.cc ('k') | src/type-feedback-vector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/type-feedback-vector.h
diff --git a/src/type-feedback-vector.h b/src/type-feedback-vector.h
index 441d403d090db945853c76c90d6e3164a40de937..c6864aa653142a21b89d6249887639a9adb9cbcd 100644
--- a/src/type-feedback-vector.h
+++ b/src/type-feedback-vector.h
@@ -228,10 +228,12 @@ class TypeFeedbackVector : public FixedArray {
KindUnused = 0x0,
KindCallIC = 0x1,
KindLoadIC = 0x2,
- KindKeyedLoadIC = 0x3
+ KindKeyedLoadIC = 0x3,
+ KindStoreIC = 0x4,
+ KindKeyedStoreIC = 0x5,
};
- static const int kVectorICKindBits = 2;
+ static const int kVectorICKindBits = 3;
static VectorICKind FromCodeKind(Code::Kind kind);
static Code::Kind FromVectorICKind(VectorICKind kind);
void SetKind(FeedbackVectorICSlot slot, Code::Kind kind);
« no previous file with comments | « src/mips64/full-codegen-mips64.cc ('k') | src/type-feedback-vector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698