OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_FEEDBACK_VECTOR_H_ | 5 #ifndef V8_TYPE_FEEDBACK_VECTOR_H_ |
6 #define V8_TYPE_FEEDBACK_VECTOR_H_ | 6 #define V8_TYPE_FEEDBACK_VECTOR_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "src/checks.h" | 10 #include "src/checks.h" |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 void ConfigurePolymorphic(MapHandleList* maps, | 490 void ConfigurePolymorphic(MapHandleList* maps, |
491 MapHandleList* transitioned_maps, | 491 MapHandleList* transitioned_maps, |
492 CodeHandleList* handlers); | 492 CodeHandleList* handlers); |
493 | 493 |
494 KeyedAccessStoreMode GetKeyedAccessStoreMode() const; | 494 KeyedAccessStoreMode GetKeyedAccessStoreMode() const; |
495 IcCheckType GetKeyType() const; | 495 IcCheckType GetKeyType() const; |
496 | 496 |
497 InlineCacheState StateFromFeedback() const override; | 497 InlineCacheState StateFromFeedback() const override; |
498 Name* FindFirstName() const override; | 498 Name* FindFirstName() const override; |
499 }; | 499 }; |
500 } | 500 } // namespace internal |
501 } // namespace v8::internal | 501 } // namespace v8 |
502 | 502 |
503 #endif // V8_TRANSITIONS_H_ | 503 #endif // V8_TRANSITIONS_H_ |
OLD | NEW |