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

Side by Side Diff: src/heap.h

Issue 21228002: Remove elements transitions from the transition array. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « include/v8.h ('k') | src/heap.cc » ('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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 V(JSObject, message_listeners, MessageListeners) \ 171 V(JSObject, message_listeners, MessageListeners) \
172 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ 172 V(UnseededNumberDictionary, code_stubs, CodeStubs) \
173 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ 173 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \
174 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ 174 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \
175 V(Code, js_entry_code, JsEntryCode) \ 175 V(Code, js_entry_code, JsEntryCode) \
176 V(Code, js_construct_entry_code, JsConstructEntryCode) \ 176 V(Code, js_construct_entry_code, JsConstructEntryCode) \
177 V(FixedArray, natives_source_cache, NativesSourceCache) \ 177 V(FixedArray, natives_source_cache, NativesSourceCache) \
178 V(Smi, last_script_id, LastScriptId) \ 178 V(Smi, last_script_id, LastScriptId) \
179 V(Script, empty_script, EmptyScript) \ 179 V(Script, empty_script, EmptyScript) \
180 V(Smi, real_stack_limit, RealStackLimit) \ 180 V(Smi, real_stack_limit, RealStackLimit) \
181 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ 181 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \
182 V(Smi, arguments_adaptor_deopt_pc_offset, ArgumentsAdaptorDeoptPCOffset) \ 182 V(Smi, arguments_adaptor_deopt_pc_offset, ArgumentsAdaptorDeoptPCOffset) \
183 V(Smi, construct_stub_deopt_pc_offset, ConstructStubDeoptPCOffset) \ 183 V(Smi, construct_stub_deopt_pc_offset, ConstructStubDeoptPCOffset) \
184 V(Smi, getter_stub_deopt_pc_offset, GetterStubDeoptPCOffset) \ 184 V(Smi, getter_stub_deopt_pc_offset, GetterStubDeoptPCOffset) \
185 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) \ 185 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) \
186 V(JSObject, observation_state, ObservationState) \ 186 V(JSObject, observation_state, ObservationState) \
187 V(Map, external_map, ExternalMap) \ 187 V(Map, external_map, ExternalMap) \
188 V(Symbol, frozen_symbol, FrozenSymbol) \ 188 V(Symbol, frozen_symbol, FrozenSymbol) \
189 V(Symbol, elements_transition_symbol, ElementsTransitionSymbol) \
189 V(SeededNumberDictionary, empty_slow_element_dictionary, \ 190 V(SeededNumberDictionary, empty_slow_element_dictionary, \
190 EmptySlowElementDictionary) \ 191 EmptySlowElementDictionary) \
191 V(Symbol, observed_symbol, ObservedSymbol) \ 192 V(Symbol, observed_symbol, ObservedSymbol) \
192 V(HeapObject, i18n_template_one, I18nTemplateOne) \ 193 V(HeapObject, i18n_template_one, I18nTemplateOne) \
193 V(HeapObject, i18n_template_two, I18nTemplateTwo) 194 V(HeapObject, i18n_template_two, I18nTemplateTwo)
194 195
195 #define ROOT_LIST(V) \ 196 #define ROOT_LIST(V) \
196 STRONG_ROOT_LIST(V) \ 197 STRONG_ROOT_LIST(V) \
197 V(StringTable, string_table, StringTable) 198 V(StringTable, string_table, StringTable)
198 199
(...skipping 2851 matching lines...) Expand 10 before | Expand all | Expand 10 after
3050 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3051 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3051 3052
3052 private: 3053 private:
3053 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3054 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3054 }; 3055 };
3055 #endif // DEBUG 3056 #endif // DEBUG
3056 3057
3057 } } // namespace v8::internal 3058 } } // namespace v8::internal
3058 3059
3059 #endif // V8_HEAP_H_ 3060 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698