| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 namespace v8 { | 51 namespace v8 { |
| 52 namespace internal { | 52 namespace internal { |
| 53 | 53 |
| 54 class Bootstrapper; | 54 class Bootstrapper; |
| 55 class CodeGenerator; | 55 class CodeGenerator; |
| 56 class CodeRange; | 56 class CodeRange; |
| 57 struct CodeStubInterfaceDescriptor; | 57 struct CodeStubInterfaceDescriptor; |
| 58 class CodeTracer; | 58 class CodeTracer; |
| 59 class CompilationCache; | 59 class CompilationCache; |
| 60 class ContextSlotCache; | 60 class ContextSlotCache; |
| 61 class ContextSwitcher; | |
| 62 class Counters; | 61 class Counters; |
| 63 class CpuFeatures; | 62 class CpuFeatures; |
| 64 class CpuProfiler; | 63 class CpuProfiler; |
| 65 class DeoptimizerData; | 64 class DeoptimizerData; |
| 66 class Deserializer; | 65 class Deserializer; |
| 67 class EmptyStatement; | 66 class EmptyStatement; |
| 68 class ExternalCallbackScope; | 67 class ExternalCallbackScope; |
| 69 class ExternalReferenceTable; | 68 class ExternalReferenceTable; |
| 70 class Factory; | 69 class Factory; |
| 71 class FunctionInfoListener; | 70 class FunctionInfoListener; |
| (...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 929 } | 928 } |
| 930 | 929 |
| 931 ConsStringIteratorOp* write_iterator() { return write_iterator_; } | 930 ConsStringIteratorOp* write_iterator() { return write_iterator_; } |
| 932 | 931 |
| 933 GlobalHandles* global_handles() { return global_handles_; } | 932 GlobalHandles* global_handles() { return global_handles_; } |
| 934 | 933 |
| 935 EternalHandles* eternal_handles() { return eternal_handles_; } | 934 EternalHandles* eternal_handles() { return eternal_handles_; } |
| 936 | 935 |
| 937 ThreadManager* thread_manager() { return thread_manager_; } | 936 ThreadManager* thread_manager() { return thread_manager_; } |
| 938 | 937 |
| 939 ContextSwitcher* context_switcher() { return context_switcher_; } | |
| 940 | |
| 941 void set_context_switcher(ContextSwitcher* switcher) { | |
| 942 context_switcher_ = switcher; | |
| 943 } | |
| 944 | |
| 945 StringTracker* string_tracker() { return string_tracker_; } | 938 StringTracker* string_tracker() { return string_tracker_; } |
| 946 | 939 |
| 947 unibrow::Mapping<unibrow::Ecma262UnCanonicalize>* jsregexp_uncanonicalize() { | 940 unibrow::Mapping<unibrow::Ecma262UnCanonicalize>* jsregexp_uncanonicalize() { |
| 948 return &jsregexp_uncanonicalize_; | 941 return &jsregexp_uncanonicalize_; |
| 949 } | 942 } |
| 950 | 943 |
| 951 unibrow::Mapping<unibrow::CanonicalizationRange>* jsregexp_canonrange() { | 944 unibrow::Mapping<unibrow::CanonicalizationRange>* jsregexp_canonrange() { |
| 952 return &jsregexp_canonrange_; | 945 return &jsregexp_canonrange_; |
| 953 } | 946 } |
| 954 | 947 |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1288 HandleScopeImplementer* handle_scope_implementer_; | 1281 HandleScopeImplementer* handle_scope_implementer_; |
| 1289 UnicodeCache* unicode_cache_; | 1282 UnicodeCache* unicode_cache_; |
| 1290 Zone runtime_zone_; | 1283 Zone runtime_zone_; |
| 1291 PreallocatedStorage in_use_list_; | 1284 PreallocatedStorage in_use_list_; |
| 1292 PreallocatedStorage free_list_; | 1285 PreallocatedStorage free_list_; |
| 1293 bool preallocated_storage_preallocated_; | 1286 bool preallocated_storage_preallocated_; |
| 1294 InnerPointerToCodeCache* inner_pointer_to_code_cache_; | 1287 InnerPointerToCodeCache* inner_pointer_to_code_cache_; |
| 1295 ConsStringIteratorOp* write_iterator_; | 1288 ConsStringIteratorOp* write_iterator_; |
| 1296 GlobalHandles* global_handles_; | 1289 GlobalHandles* global_handles_; |
| 1297 EternalHandles* eternal_handles_; | 1290 EternalHandles* eternal_handles_; |
| 1298 ContextSwitcher* context_switcher_; | |
| 1299 ThreadManager* thread_manager_; | 1291 ThreadManager* thread_manager_; |
| 1300 RuntimeState runtime_state_; | 1292 RuntimeState runtime_state_; |
| 1301 bool fp_stubs_generated_; | 1293 bool fp_stubs_generated_; |
| 1302 Builtins builtins_; | 1294 Builtins builtins_; |
| 1303 bool has_installed_extensions_; | 1295 bool has_installed_extensions_; |
| 1304 StringTracker* string_tracker_; | 1296 StringTracker* string_tracker_; |
| 1305 unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_; | 1297 unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_; |
| 1306 unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_; | 1298 unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_; |
| 1307 ConsStringIteratorOp objects_string_compare_iterator_a_; | 1299 ConsStringIteratorOp objects_string_compare_iterator_a_; |
| 1308 ConsStringIteratorOp objects_string_compare_iterator_b_; | 1300 ConsStringIteratorOp objects_string_compare_iterator_b_; |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1574 } | 1566 } |
| 1575 | 1567 |
| 1576 EmbeddedVector<char, 128> filename_; | 1568 EmbeddedVector<char, 128> filename_; |
| 1577 FILE* file_; | 1569 FILE* file_; |
| 1578 int scope_depth_; | 1570 int scope_depth_; |
| 1579 }; | 1571 }; |
| 1580 | 1572 |
| 1581 } } // namespace v8::internal | 1573 } } // namespace v8::internal |
| 1582 | 1574 |
| 1583 #endif // V8_ISOLATE_H_ | 1575 #endif // V8_ISOLATE_H_ |
| OLD | NEW |