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

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: addressed comments 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
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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 V(byte_offset_string, "byteOffset") \ 275 V(byte_offset_string, "byteOffset") \
276 V(minus_zero_string, "-0") \ 276 V(minus_zero_string, "-0") \
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(frozen_symbol) \ 282 V(frozen_symbol) \
283 V(nonexistent_symbol) \ 283 V(nonexistent_symbol) \
284 V(elements_transition_symbol) \ 284 V(elements_transition_symbol) \
285 V(prototype_users_symbol) \
285 V(observed_symbol) \ 286 V(observed_symbol) \
286 V(uninitialized_symbol) \ 287 V(uninitialized_symbol) \
287 V(megamorphic_symbol) \ 288 V(megamorphic_symbol) \
288 V(premonomorphic_symbol) \ 289 V(premonomorphic_symbol) \
289 V(generic_symbol) \ 290 V(generic_symbol) \
290 V(stack_trace_symbol) \ 291 V(stack_trace_symbol) \
291 V(detailed_stack_trace_symbol) \ 292 V(detailed_stack_trace_symbol) \
292 V(normal_ic_symbol) \ 293 V(normal_ic_symbol) \
293 V(home_object_symbol) \ 294 V(home_object_symbol) \
294 V(intl_initialized_marker_symbol) \ 295 V(intl_initialized_marker_symbol) \
(...skipping 2283 matching lines...) Expand 10 before | Expand all | Expand 10 after
2578 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2579 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2579 2580
2580 private: 2581 private:
2581 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2582 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2582 }; 2583 };
2583 #endif // DEBUG 2584 #endif // DEBUG
2584 } 2585 }
2585 } // namespace v8::internal 2586 } // namespace v8::internal
2586 2587
2587 #endif // V8_HEAP_HEAP_H_ 2588 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/isolate.h » ('j') | src/objects.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698