Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 69c10a1c8e1a2f856ea25ee2f38e68e264b76829..0b62ac658d415d8cc39fee7221aade1039c0e595 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -8502,7 +8502,10 @@ class TypeFeedbackInfo: public Struct { |
inline void set_ic_total_count(int count); |
inline int ic_with_type_info_count(); |
- inline void change_ic_with_type_info_count(int count); |
+ inline void change_ic_with_type_info_count(int delta); |
+ |
+ inline int ic_generic_count(); |
+ inline void change_ic_generic_count(int delta); |
inline void initialize_storage(); |
@@ -8521,7 +8524,8 @@ class TypeFeedbackInfo: public Struct { |
static const int kStorage1Offset = HeapObject::kHeaderSize; |
static const int kStorage2Offset = kStorage1Offset + kPointerSize; |
- static const int kSize = kStorage2Offset + kPointerSize; |
+ static const int kStorage3Offset = kStorage2Offset + kPointerSize; |
+ static const int kSize = kStorage3Offset + kPointerSize; |
// TODO(mvstanton): move these sentinel declarations to shared function info. |
// The object that indicates an uninitialized cache. |