Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Side by Side Diff: src/objects.h

Issue 1384673002: The metadata part of TypeFeedbackVector is extracted to TypeFeedbackMetadata array. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Cleanup Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/heap/heap.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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_
OLDNEW
« no previous file with comments | « src/heap/heap.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698