| Index: src/type-feedback-vector.h
|
| diff --git a/src/type-feedback-vector.h b/src/type-feedback-vector.h
|
| index 05dfff7dba302b9b54279bf931f3f2ab60ba889b..80267a4d54a9c2266909247d9847242f373ea338 100644
|
| --- a/src/type-feedback-vector.h
|
| +++ b/src/type-feedback-vector.h
|
| @@ -182,14 +182,9 @@ class TypeFeedbackVector : public FixedArray {
|
| static inline TypeFeedbackVector* cast(Object* obj);
|
|
|
| static const int kMetadataIndex = 0;
|
| - static const int kWithTypesIndex = 1;
|
| - static const int kGenericCountIndex = 2;
|
| - static const int kReservedIndexCount = 3;
|
| -
|
| - inline int ic_with_type_info_count();
|
| - inline void change_ic_with_type_info_count(int delta);
|
| - inline int ic_generic_count();
|
| - inline void change_ic_generic_count(int delta);
|
| + static const int kReservedIndexCount = 1;
|
| +
|
| + inline void ComputeCounts(int* with_type_info, int* generic);
|
|
|
| inline bool is_empty() const;
|
|
|
|
|