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

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

Issue 768633002: Add infrastructure to keep track of references to prototypes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: use WeakCellForMap() when appropriate Created 6 years 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/flag-definitions.h ('k') | src/isolate.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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 V(Array_string, "Array") \ 277 V(Array_string, "Array") \
278 V(Error_string, "Error") \ 278 V(Error_string, "Error") \
279 V(RegExp_string, "RegExp") 279 V(RegExp_string, "RegExp")
280 280
281 #define PRIVATE_SYMBOL_LIST(V) \ 281 #define PRIVATE_SYMBOL_LIST(V) \
282 V(nonextensible_symbol) \ 282 V(nonextensible_symbol) \
283 V(sealed_symbol) \ 283 V(sealed_symbol) \
284 V(frozen_symbol) \ 284 V(frozen_symbol) \
285 V(nonexistent_symbol) \ 285 V(nonexistent_symbol) \
286 V(elements_transition_symbol) \ 286 V(elements_transition_symbol) \
287 V(prototype_users_symbol) \
287 V(observed_symbol) \ 288 V(observed_symbol) \
288 V(uninitialized_symbol) \ 289 V(uninitialized_symbol) \
289 V(megamorphic_symbol) \ 290 V(megamorphic_symbol) \
290 V(premonomorphic_symbol) \ 291 V(premonomorphic_symbol) \
291 V(generic_symbol) \ 292 V(generic_symbol) \
292 V(stack_trace_symbol) \ 293 V(stack_trace_symbol) \
293 V(detailed_stack_trace_symbol) \ 294 V(detailed_stack_trace_symbol) \
294 V(normal_ic_symbol) \ 295 V(normal_ic_symbol) \
295 V(home_object_symbol) \ 296 V(home_object_symbol) \
296 V(intl_initialized_marker_symbol) \ 297 V(intl_initialized_marker_symbol) \
(...skipping 2290 matching lines...) Expand 10 before | Expand all | Expand 10 after
2587 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2588 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2588 2589
2589 private: 2590 private:
2590 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2591 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2591 }; 2592 };
2592 #endif // DEBUG 2593 #endif // DEBUG
2593 } 2594 }
2594 } // namespace v8::internal 2595 } // namespace v8::internal
2595 2596
2596 #endif // V8_HEAP_HEAP_H_ 2597 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698