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

Side by Side Diff: src/isolate.h

Issue 490173002: Take ast node id counting away from Isolate. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebased Created 6 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 | « src/compiler.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_ISOLATE_H_ 5 #ifndef V8_ISOLATE_H_
6 #define V8_ISOLATE_H_ 6 #define V8_ISOLATE_H_
7 7
8 #include "include/v8-debug.h" 8 #include "include/v8-debug.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/assert-scope.h" 10 #include "src/assert-scope.h"
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 V(int, next_serial_number, 0) \ 350 V(int, next_serial_number, 0) \
351 V(ExternalReferenceRedirectorPointer*, external_reference_redirector, NULL) \ 351 V(ExternalReferenceRedirectorPointer*, external_reference_redirector, NULL) \
352 /* Part of the state of liveedit. */ \ 352 /* Part of the state of liveedit. */ \
353 V(FunctionInfoListener*, active_function_info_listener, NULL) \ 353 V(FunctionInfoListener*, active_function_info_listener, NULL) \
354 /* State for Relocatable. */ \ 354 /* State for Relocatable. */ \
355 V(Relocatable*, relocatable_top, NULL) \ 355 V(Relocatable*, relocatable_top, NULL) \
356 V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \ 356 V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \
357 V(Object*, string_stream_current_security_token, NULL) \ 357 V(Object*, string_stream_current_security_token, NULL) \
358 /* Serializer state. */ \ 358 /* Serializer state. */ \
359 V(ExternalReferenceTable*, external_reference_table, NULL) \ 359 V(ExternalReferenceTable*, external_reference_table, NULL) \
360 /* AstNode state. */ \
361 V(int, ast_node_id, 0) \
362 V(unsigned, ast_node_count, 0) \
363 V(int, pending_microtask_count, 0) \ 360 V(int, pending_microtask_count, 0) \
364 V(bool, autorun_microtasks, true) \ 361 V(bool, autorun_microtasks, true) \
365 V(HStatistics*, hstatistics, NULL) \ 362 V(HStatistics*, hstatistics, NULL) \
366 V(HStatistics*, tstatistics, NULL) \ 363 V(HStatistics*, tstatistics, NULL) \
367 V(HTracer*, htracer, NULL) \ 364 V(HTracer*, htracer, NULL) \
368 V(CodeTracer*, code_tracer, NULL) \ 365 V(CodeTracer*, code_tracer, NULL) \
369 V(bool, fp_stubs_generated, false) \ 366 V(bool, fp_stubs_generated, false) \
370 V(int, max_available_threads, 0) \ 367 V(int, max_available_threads, 0) \
371 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ 368 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \
372 V(InterruptCallback, api_interrupt_callback, NULL) \ 369 V(InterruptCallback, api_interrupt_callback, NULL) \
(...skipping 1181 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 } 1551 }
1555 1552
1556 EmbeddedVector<char, 128> filename_; 1553 EmbeddedVector<char, 128> filename_;
1557 FILE* file_; 1554 FILE* file_;
1558 int scope_depth_; 1555 int scope_depth_;
1559 }; 1556 };
1560 1557
1561 } } // namespace v8::internal 1558 } } // namespace v8::internal
1562 1559
1563 #endif // V8_ISOLATE_H_ 1560 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698