| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_TYPE_INFO_H_ | 5 #ifndef V8_TYPE_INFO_H_ |
| 6 #define V8_TYPE_INFO_H_ | 6 #define V8_TYPE_INFO_H_ |
| 7 | 7 |
| 8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/globals.h" | 9 #include "src/globals.h" |
| 10 #include "src/types.h" | 10 #include "src/types.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 void PropertyReceiverTypes(TypeFeedbackId id, Handle<String> name, | 45 void PropertyReceiverTypes(TypeFeedbackId id, Handle<String> name, |
| 46 SmallMapList* receiver_types); | 46 SmallMapList* receiver_types); |
| 47 void PropertyReceiverTypes(FeedbackVectorICSlot slot, Handle<String> name, | 47 void PropertyReceiverTypes(FeedbackVectorICSlot slot, Handle<String> name, |
| 48 SmallMapList* receiver_types); | 48 SmallMapList* receiver_types); |
| 49 void KeyedPropertyReceiverTypes(TypeFeedbackId id, | 49 void KeyedPropertyReceiverTypes(TypeFeedbackId id, |
| 50 SmallMapList* receiver_types, | 50 SmallMapList* receiver_types, |
| 51 bool* is_string, | 51 bool* is_string, |
| 52 IcCheckType* key_type); | 52 IcCheckType* key_type); |
| 53 void KeyedPropertyReceiverTypes(FeedbackVectorICSlot slot, | 53 void KeyedPropertyReceiverTypes(FeedbackVectorICSlot slot, |
| 54 SmallMapList* receiver_types, | 54 SmallMapList* receiver_types, bool* is_string, |
| 55 bool* is_string); | 55 IcCheckType* key_type); |
| 56 void AssignmentReceiverTypes(TypeFeedbackId id, | 56 void AssignmentReceiverTypes(TypeFeedbackId id, |
| 57 Handle<String> name, | 57 Handle<String> name, |
| 58 SmallMapList* receiver_types); | 58 SmallMapList* receiver_types); |
| 59 void KeyedAssignmentReceiverTypes(TypeFeedbackId id, | 59 void KeyedAssignmentReceiverTypes(TypeFeedbackId id, |
| 60 SmallMapList* receiver_types, | 60 SmallMapList* receiver_types, |
| 61 KeyedAccessStoreMode* store_mode, | 61 KeyedAccessStoreMode* store_mode, |
| 62 IcCheckType* key_type); | 62 IcCheckType* key_type); |
| 63 void CountReceiverTypes(TypeFeedbackId id, | 63 void CountReceiverTypes(TypeFeedbackId id, |
| 64 SmallMapList* receiver_types); | 64 SmallMapList* receiver_types); |
| 65 | 65 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 Zone* zone_; | 140 Zone* zone_; |
| 141 Handle<UnseededNumberDictionary> dictionary_; | 141 Handle<UnseededNumberDictionary> dictionary_; |
| 142 Handle<TypeFeedbackVector> feedback_vector_; | 142 Handle<TypeFeedbackVector> feedback_vector_; |
| 143 | 143 |
| 144 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); | 144 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); |
| 145 }; | 145 }; |
| 146 | 146 |
| 147 } } // namespace v8::internal | 147 } } // namespace v8::internal |
| 148 | 148 |
| 149 #endif // V8_TYPE_INFO_H_ | 149 #endif // V8_TYPE_INFO_H_ |
| OLD | NEW |