| 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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 /* function cache of the native context. */ \ | 346 /* function cache of the native context. */ \ |
| 347 V(int, next_serial_number, 0) \ | 347 V(int, next_serial_number, 0) \ |
| 348 V(ExternalReferenceRedirectorPointer*, external_reference_redirector, NULL) \ | 348 V(ExternalReferenceRedirectorPointer*, external_reference_redirector, NULL) \ |
| 349 V(bool, always_allow_natives_syntax, false) \ | 349 V(bool, always_allow_natives_syntax, false) \ |
| 350 /* Part of the state of liveedit. */ \ | 350 /* Part of the state of liveedit. */ \ |
| 351 V(FunctionInfoListener*, active_function_info_listener, NULL) \ | 351 V(FunctionInfoListener*, active_function_info_listener, NULL) \ |
| 352 /* State for Relocatable. */ \ | 352 /* State for Relocatable. */ \ |
| 353 V(Relocatable*, relocatable_top, NULL) \ | 353 V(Relocatable*, relocatable_top, NULL) \ |
| 354 V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \ | 354 V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \ |
| 355 V(Object*, string_stream_current_security_token, NULL) \ | 355 V(Object*, string_stream_current_security_token, NULL) \ |
| 356 /* TODO(isolates): Release this on destruction? */ \ | |
| 357 V(int*, irregexp_interpreter_backtrack_stack_cache, NULL) \ | |
| 358 /* Serializer state. */ \ | 356 /* Serializer state. */ \ |
| 359 V(ExternalReferenceTable*, external_reference_table, NULL) \ | 357 V(ExternalReferenceTable*, external_reference_table, NULL) \ |
| 360 /* AstNode state. */ \ | 358 /* AstNode state. */ \ |
| 361 V(int, ast_node_id, 0) \ | 359 V(int, ast_node_id, 0) \ |
| 362 V(unsigned, ast_node_count, 0) \ | 360 V(unsigned, ast_node_count, 0) \ |
| 363 V(bool, microtask_pending, false) \ | 361 V(bool, microtask_pending, false) \ |
| 364 V(bool, autorun_microtasks, true) \ | 362 V(bool, autorun_microtasks, true) \ |
| 365 V(HStatistics*, hstatistics, NULL) \ | 363 V(HStatistics*, hstatistics, NULL) \ |
| 366 V(HTracer*, htracer, NULL) \ | 364 V(HTracer*, htracer, NULL) \ |
| 367 V(CodeTracer*, code_tracer, NULL) \ | 365 V(CodeTracer*, code_tracer, NULL) \ |
| (...skipping 1192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1560 } | 1558 } |
| 1561 | 1559 |
| 1562 EmbeddedVector<char, 128> filename_; | 1560 EmbeddedVector<char, 128> filename_; |
| 1563 FILE* file_; | 1561 FILE* file_; |
| 1564 int scope_depth_; | 1562 int scope_depth_; |
| 1565 }; | 1563 }; |
| 1566 | 1564 |
| 1567 } } // namespace v8::internal | 1565 } } // namespace v8::internal |
| 1568 | 1566 |
| 1569 #endif // V8_ISOLATE_H_ | 1567 #endif // V8_ISOLATE_H_ |
| OLD | NEW |