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

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

Issue 624013005: Classes: Add support for toString (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add type checks Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/full-codegen.cc ('k') | src/parser.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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 V(megamorphic_symbol) \ 333 V(megamorphic_symbol) \
334 V(premonomorphic_symbol) \ 334 V(premonomorphic_symbol) \
335 V(generic_symbol) \ 335 V(generic_symbol) \
336 V(stack_trace_symbol) \ 336 V(stack_trace_symbol) \
337 V(detailed_stack_trace_symbol) \ 337 V(detailed_stack_trace_symbol) \
338 V(normal_ic_symbol) \ 338 V(normal_ic_symbol) \
339 V(home_object_symbol) \ 339 V(home_object_symbol) \
340 V(intl_initialized_marker_symbol) \ 340 V(intl_initialized_marker_symbol) \
341 V(intl_impl_object_symbol) \ 341 V(intl_impl_object_symbol) \
342 V(promise_debug_marker_symbol) \ 342 V(promise_debug_marker_symbol) \
343 V(promise_has_handler_symbol) 343 V(promise_has_handler_symbol) \
344 V(class_script_symbol) \
345 V(class_start_position_symbol) \
346 V(class_end_position_symbol)
344 347
345 // Forward declarations. 348 // Forward declarations.
346 class HeapStats; 349 class HeapStats;
347 class Isolate; 350 class Isolate;
348 class WeakObjectRetainer; 351 class WeakObjectRetainer;
349 352
350 353
351 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, 354 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
352 Object** pointer); 355 Object** pointer);
353 356
(...skipping 2153 matching lines...) Expand 10 before | Expand all | Expand 10 after
2507 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2510 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2508 2511
2509 private: 2512 private:
2510 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2513 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2511 }; 2514 };
2512 #endif // DEBUG 2515 #endif // DEBUG
2513 } 2516 }
2514 } // namespace v8::internal 2517 } // namespace v8::internal
2515 2518
2516 #endif // V8_HEAP_HEAP_H_ 2519 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/full-codegen.cc ('k') | src/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698