OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 V(Relocatable*, relocatable_top, NULL) \ | 368 V(Relocatable*, relocatable_top, NULL) \ |
369 V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \ | 369 V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \ |
370 V(Object*, string_stream_current_security_token, NULL) \ | 370 V(Object*, string_stream_current_security_token, NULL) \ |
371 /* TODO(isolates): Release this on destruction? */ \ | 371 /* TODO(isolates): Release this on destruction? */ \ |
372 V(int*, irregexp_interpreter_backtrack_stack_cache, NULL) \ | 372 V(int*, irregexp_interpreter_backtrack_stack_cache, NULL) \ |
373 /* Serializer state. */ \ | 373 /* Serializer state. */ \ |
374 V(ExternalReferenceTable*, external_reference_table, NULL) \ | 374 V(ExternalReferenceTable*, external_reference_table, NULL) \ |
375 /* AstNode state. */ \ | 375 /* AstNode state. */ \ |
376 V(int, ast_node_id, 0) \ | 376 V(int, ast_node_id, 0) \ |
377 V(unsigned, ast_node_count, 0) \ | 377 V(unsigned, ast_node_count, 0) \ |
378 V(bool, observer_delivery_pending, false) \ | 378 V(bool, microtasks_pending, false) \ |
379 V(HStatistics*, hstatistics, NULL) \ | 379 V(HStatistics*, hstatistics, NULL) \ |
380 V(HTracer*, htracer, NULL) \ | 380 V(HTracer*, htracer, NULL) \ |
381 V(CodeTracer*, code_tracer, NULL) \ | 381 V(CodeTracer*, code_tracer, NULL) \ |
382 ISOLATE_DEBUGGER_INIT_LIST(V) | 382 ISOLATE_DEBUGGER_INIT_LIST(V) |
383 | 383 |
384 class Isolate { | 384 class Isolate { |
385 // These forward declarations are required to make the friend declarations in | 385 // These forward declarations are required to make the friend declarations in |
386 // PerIsolateThreadData work on some older versions of gcc. | 386 // PerIsolateThreadData work on some older versions of gcc. |
387 class ThreadDataTable; | 387 class ThreadDataTable; |
388 class EntryStackItem; | 388 class EntryStackItem; |
(...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1574 } | 1574 } |
1575 | 1575 |
1576 EmbeddedVector<char, 128> filename_; | 1576 EmbeddedVector<char, 128> filename_; |
1577 FILE* file_; | 1577 FILE* file_; |
1578 int scope_depth_; | 1578 int scope_depth_; |
1579 }; | 1579 }; |
1580 | 1580 |
1581 } } // namespace v8::internal | 1581 } } // namespace v8::internal |
1582 | 1582 |
1583 #endif // V8_ISOLATE_H_ | 1583 #endif // V8_ISOLATE_H_ |
OLD | NEW |