Chromium Code Reviews| Index: src/type-feedback-vector.h |
| diff --git a/src/type-feedback-vector.h b/src/type-feedback-vector.h |
| index 05dfff7dba302b9b54279bf931f3f2ab60ba889b..715a82c791f366d604f6acbd8e8c0c816b438356 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 compute_counts(int* with_type_info, int* generic); |
|
Benedikt Meurer
2015/12/09 07:23:02
ComputeCounts
mvstanton
2015/12/09 07:37:32
Done.
|
| inline bool is_empty() const; |