| 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_OBJECTS_H_ | 5 #ifndef V8_OBJECTS_H_ |
| 6 #define V8_OBJECTS_H_ | 6 #define V8_OBJECTS_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 // - HashTable | 81 // - HashTable |
| 82 // - Dictionary | 82 // - Dictionary |
| 83 // - StringTable | 83 // - StringTable |
| 84 // - CompilationCacheTable | 84 // - CompilationCacheTable |
| 85 // - CodeCacheHashTable | 85 // - CodeCacheHashTable |
| 86 // - MapCache | 86 // - MapCache |
| 87 // - OrderedHashTable | 87 // - OrderedHashTable |
| 88 // - OrderedHashSet | 88 // - OrderedHashSet |
| 89 // - OrderedHashMap | 89 // - OrderedHashMap |
| 90 // - Context | 90 // - Context |
| 91 // - TypeFeedbackMetadata |
| 91 // - TypeFeedbackVector | 92 // - TypeFeedbackVector |
| 92 // - ScopeInfo | 93 // - ScopeInfo |
| 93 // - TransitionArray | 94 // - TransitionArray |
| 94 // - ScriptContextTable | 95 // - ScriptContextTable |
| 95 // - WeakFixedArray | 96 // - WeakFixedArray |
| 96 // - FixedDoubleArray | 97 // - FixedDoubleArray |
| 97 // - Name | 98 // - Name |
| 98 // - String | 99 // - String |
| 99 // - SeqString | 100 // - SeqString |
| 100 // - SeqOneByteString | 101 // - SeqOneByteString |
| (...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 V(JSObject) \ | 939 V(JSObject) \ |
| 939 V(JSContextExtensionObject) \ | 940 V(JSContextExtensionObject) \ |
| 940 V(JSGeneratorObject) \ | 941 V(JSGeneratorObject) \ |
| 941 V(JSModule) \ | 942 V(JSModule) \ |
| 942 V(LayoutDescriptor) \ | 943 V(LayoutDescriptor) \ |
| 943 V(Map) \ | 944 V(Map) \ |
| 944 V(DescriptorArray) \ | 945 V(DescriptorArray) \ |
| 945 V(BindingsArray) \ | 946 V(BindingsArray) \ |
| 946 V(TransitionArray) \ | 947 V(TransitionArray) \ |
| 947 V(LiteralsArray) \ | 948 V(LiteralsArray) \ |
| 949 V(TypeFeedbackMetadata) \ |
| 948 V(TypeFeedbackVector) \ | 950 V(TypeFeedbackVector) \ |
| 949 V(DeoptimizationInputData) \ | 951 V(DeoptimizationInputData) \ |
| 950 V(DeoptimizationOutputData) \ | 952 V(DeoptimizationOutputData) \ |
| 951 V(DependentCode) \ | 953 V(DependentCode) \ |
| 952 V(HandlerTable) \ | 954 V(HandlerTable) \ |
| 953 V(FixedArray) \ | 955 V(FixedArray) \ |
| 954 V(FixedDoubleArray) \ | 956 V(FixedDoubleArray) \ |
| 955 V(WeakFixedArray) \ | 957 V(WeakFixedArray) \ |
| 956 V(ArrayList) \ | 958 V(ArrayList) \ |
| 957 V(Context) \ | 959 V(Context) \ |
| (...skipping 9704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10662 Handle<FixedArray> keys_; | 10664 Handle<FixedArray> keys_; |
| 10663 Handle<OrderedHashSet> set_; | 10665 Handle<OrderedHashSet> set_; |
| 10664 int length_; | 10666 int length_; |
| 10665 DISALLOW_COPY_AND_ASSIGN(KeyAccumulator); | 10667 DISALLOW_COPY_AND_ASSIGN(KeyAccumulator); |
| 10666 }; | 10668 }; |
| 10667 | 10669 |
| 10668 } // NOLINT, false-positive due to second-order macros. | 10670 } // NOLINT, false-positive due to second-order macros. |
| 10669 } // NOLINT, false-positive due to second-order macros. | 10671 } // NOLINT, false-positive due to second-order macros. |
| 10670 | 10672 |
| 10671 #endif // V8_OBJECTS_H_ | 10673 #endif // V8_OBJECTS_H_ |
| OLD | NEW |