| 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 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 915 } | 915 } |
| 916 | 916 |
| 917 InnerPointerToCodeCache* inner_pointer_to_code_cache() { | 917 InnerPointerToCodeCache* inner_pointer_to_code_cache() { |
| 918 return inner_pointer_to_code_cache_; | 918 return inner_pointer_to_code_cache_; |
| 919 } | 919 } |
| 920 | 920 |
| 921 ConsStringIteratorOp* write_iterator() { return write_iterator_; } | 921 ConsStringIteratorOp* write_iterator() { return write_iterator_; } |
| 922 | 922 |
| 923 GlobalHandles* global_handles() { return global_handles_; } | 923 GlobalHandles* global_handles() { return global_handles_; } |
| 924 | 924 |
| 925 EternalHandles* eternal_handles() { return eternal_handles_; } |
| 926 |
| 925 ThreadManager* thread_manager() { return thread_manager_; } | 927 ThreadManager* thread_manager() { return thread_manager_; } |
| 926 | 928 |
| 927 ContextSwitcher* context_switcher() { return context_switcher_; } | 929 ContextSwitcher* context_switcher() { return context_switcher_; } |
| 928 | 930 |
| 929 void set_context_switcher(ContextSwitcher* switcher) { | 931 void set_context_switcher(ContextSwitcher* switcher) { |
| 930 context_switcher_ = switcher; | 932 context_switcher_ = switcher; |
| 931 } | 933 } |
| 932 | 934 |
| 933 StringTracker* string_tracker() { return string_tracker_; } | 935 StringTracker* string_tracker() { return string_tracker_; } |
| 934 | 936 |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1281 v8::ImplementationUtilities::HandleScopeData handle_scope_data_; | 1283 v8::ImplementationUtilities::HandleScopeData handle_scope_data_; |
| 1282 HandleScopeImplementer* handle_scope_implementer_; | 1284 HandleScopeImplementer* handle_scope_implementer_; |
| 1283 UnicodeCache* unicode_cache_; | 1285 UnicodeCache* unicode_cache_; |
| 1284 Zone runtime_zone_; | 1286 Zone runtime_zone_; |
| 1285 PreallocatedStorage in_use_list_; | 1287 PreallocatedStorage in_use_list_; |
| 1286 PreallocatedStorage free_list_; | 1288 PreallocatedStorage free_list_; |
| 1287 bool preallocated_storage_preallocated_; | 1289 bool preallocated_storage_preallocated_; |
| 1288 InnerPointerToCodeCache* inner_pointer_to_code_cache_; | 1290 InnerPointerToCodeCache* inner_pointer_to_code_cache_; |
| 1289 ConsStringIteratorOp* write_iterator_; | 1291 ConsStringIteratorOp* write_iterator_; |
| 1290 GlobalHandles* global_handles_; | 1292 GlobalHandles* global_handles_; |
| 1293 EternalHandles* eternal_handles_; |
| 1291 ContextSwitcher* context_switcher_; | 1294 ContextSwitcher* context_switcher_; |
| 1292 ThreadManager* thread_manager_; | 1295 ThreadManager* thread_manager_; |
| 1293 RuntimeState runtime_state_; | 1296 RuntimeState runtime_state_; |
| 1294 bool fp_stubs_generated_; | 1297 bool fp_stubs_generated_; |
| 1295 Builtins builtins_; | 1298 Builtins builtins_; |
| 1296 bool has_installed_extensions_; | 1299 bool has_installed_extensions_; |
| 1297 StringTracker* string_tracker_; | 1300 StringTracker* string_tracker_; |
| 1298 unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_; | 1301 unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_; |
| 1299 unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_; | 1302 unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_; |
| 1300 ConsStringIteratorOp objects_string_compare_iterator_a_; | 1303 ConsStringIteratorOp objects_string_compare_iterator_a_; |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1513 | 1516 |
| 1514 // Mark the native context with out of memory. | 1517 // Mark the native context with out of memory. |
| 1515 inline void Context::mark_out_of_memory() { | 1518 inline void Context::mark_out_of_memory() { |
| 1516 native_context()->set_out_of_memory(HEAP->true_value()); | 1519 native_context()->set_out_of_memory(HEAP->true_value()); |
| 1517 } | 1520 } |
| 1518 | 1521 |
| 1519 | 1522 |
| 1520 } } // namespace v8::internal | 1523 } } // namespace v8::internal |
| 1521 | 1524 |
| 1522 #endif // V8_ISOLATE_H_ | 1525 #endif // V8_ISOLATE_H_ |
| OLD | NEW |