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

Side by Side Diff: src/heap/heap.h

Issue 1033653002: Move prototype metadata from internal properties to prototype maps (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: small fixes Created 5 years, 8 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-snapshot-generator.cc ('k') | src/heap/objects-visiting-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_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 V(Array_string, "Array") \ 282 V(Array_string, "Array") \
283 V(Error_string, "Error") \ 283 V(Error_string, "Error") \
284 V(RegExp_string, "RegExp") 284 V(RegExp_string, "RegExp")
285 285
286 #define PRIVATE_SYMBOL_LIST(V) \ 286 #define PRIVATE_SYMBOL_LIST(V) \
287 V(nonextensible_symbol) \ 287 V(nonextensible_symbol) \
288 V(sealed_symbol) \ 288 V(sealed_symbol) \
289 V(frozen_symbol) \ 289 V(frozen_symbol) \
290 V(nonexistent_symbol) \ 290 V(nonexistent_symbol) \
291 V(elements_transition_symbol) \ 291 V(elements_transition_symbol) \
292 V(prototype_users_symbol) \
293 V(observed_symbol) \ 292 V(observed_symbol) \
294 V(uninitialized_symbol) \ 293 V(uninitialized_symbol) \
295 V(megamorphic_symbol) \ 294 V(megamorphic_symbol) \
296 V(premonomorphic_symbol) \ 295 V(premonomorphic_symbol) \
297 V(stack_trace_symbol) \ 296 V(stack_trace_symbol) \
298 V(detailed_stack_trace_symbol) \ 297 V(detailed_stack_trace_symbol) \
299 V(normal_ic_symbol) \ 298 V(normal_ic_symbol) \
300 V(home_object_symbol) \ 299 V(home_object_symbol) \
301 V(intl_initialized_marker_symbol) \ 300 V(intl_initialized_marker_symbol) \
302 V(intl_impl_object_symbol) \ 301 V(intl_impl_object_symbol) \
(...skipping 2315 matching lines...) Expand 10 before | Expand all | Expand 10 after
2618 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2617 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2619 2618
2620 private: 2619 private:
2621 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2620 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2622 }; 2621 };
2623 #endif // DEBUG 2622 #endif // DEBUG
2624 } 2623 }
2625 } // namespace v8::internal 2624 } // namespace v8::internal
2626 2625
2627 #endif // V8_HEAP_HEAP_H_ 2626 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/heap-snapshot-generator.cc ('k') | src/heap/objects-visiting-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698