| 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 832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 return descriptor_lookup_cache_; | 843 return descriptor_lookup_cache_; |
| 844 } | 844 } |
| 845 | 845 |
| 846 v8::ImplementationUtilities::HandleScopeData* handle_scope_data() { | 846 v8::ImplementationUtilities::HandleScopeData* handle_scope_data() { |
| 847 return &handle_scope_data_; | 847 return &handle_scope_data_; |
| 848 } | 848 } |
| 849 HandleScopeImplementer* handle_scope_implementer() { | 849 HandleScopeImplementer* handle_scope_implementer() { |
| 850 ASSERT(handle_scope_implementer_); | 850 ASSERT(handle_scope_implementer_); |
| 851 return handle_scope_implementer_; | 851 return handle_scope_implementer_; |
| 852 } | 852 } |
| 853 Zone* zone() { return &zone_; } | 853 Zone* runtime_zone() { return &runtime_zone_; } |
| 854 | 854 |
| 855 UnicodeCache* unicode_cache() { | 855 UnicodeCache* unicode_cache() { |
| 856 return unicode_cache_; | 856 return unicode_cache_; |
| 857 } | 857 } |
| 858 | 858 |
| 859 InnerPointerToCodeCache* inner_pointer_to_code_cache() { | 859 InnerPointerToCodeCache* inner_pointer_to_code_cache() { |
| 860 return inner_pointer_to_code_cache_; | 860 return inner_pointer_to_code_cache_; |
| 861 } | 861 } |
| 862 | 862 |
| 863 StringInputBuffer* write_input_buffer() { return write_input_buffer_; } | 863 StringInputBuffer* write_input_buffer() { return write_input_buffer_; } |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1189 int stack_trace_for_uncaught_exceptions_frame_limit_; | 1189 int stack_trace_for_uncaught_exceptions_frame_limit_; |
| 1190 StackTrace::StackTraceOptions stack_trace_for_uncaught_exceptions_options_; | 1190 StackTrace::StackTraceOptions stack_trace_for_uncaught_exceptions_options_; |
| 1191 TranscendentalCache* transcendental_cache_; | 1191 TranscendentalCache* transcendental_cache_; |
| 1192 MemoryAllocator* memory_allocator_; | 1192 MemoryAllocator* memory_allocator_; |
| 1193 KeyedLookupCache* keyed_lookup_cache_; | 1193 KeyedLookupCache* keyed_lookup_cache_; |
| 1194 ContextSlotCache* context_slot_cache_; | 1194 ContextSlotCache* context_slot_cache_; |
| 1195 DescriptorLookupCache* descriptor_lookup_cache_; | 1195 DescriptorLookupCache* descriptor_lookup_cache_; |
| 1196 v8::ImplementationUtilities::HandleScopeData handle_scope_data_; | 1196 v8::ImplementationUtilities::HandleScopeData handle_scope_data_; |
| 1197 HandleScopeImplementer* handle_scope_implementer_; | 1197 HandleScopeImplementer* handle_scope_implementer_; |
| 1198 UnicodeCache* unicode_cache_; | 1198 UnicodeCache* unicode_cache_; |
| 1199 Zone zone_; | 1199 Zone runtime_zone_; |
| 1200 PreallocatedStorage in_use_list_; | 1200 PreallocatedStorage in_use_list_; |
| 1201 PreallocatedStorage free_list_; | 1201 PreallocatedStorage free_list_; |
| 1202 bool preallocated_storage_preallocated_; | 1202 bool preallocated_storage_preallocated_; |
| 1203 InnerPointerToCodeCache* inner_pointer_to_code_cache_; | 1203 InnerPointerToCodeCache* inner_pointer_to_code_cache_; |
| 1204 StringInputBuffer* write_input_buffer_; | 1204 StringInputBuffer* write_input_buffer_; |
| 1205 GlobalHandles* global_handles_; | 1205 GlobalHandles* global_handles_; |
| 1206 ContextSwitcher* context_switcher_; | 1206 ContextSwitcher* context_switcher_; |
| 1207 ThreadManager* thread_manager_; | 1207 ThreadManager* thread_manager_; |
| 1208 RuntimeState runtime_state_; | 1208 RuntimeState runtime_state_; |
| 1209 bool fp_stubs_generated_; | 1209 bool fp_stubs_generated_; |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1419 | 1419 |
| 1420 // Mark the global context with out of memory. | 1420 // Mark the global context with out of memory. |
| 1421 inline void Context::mark_out_of_memory() { | 1421 inline void Context::mark_out_of_memory() { |
| 1422 global_context()->set_out_of_memory(HEAP->true_value()); | 1422 global_context()->set_out_of_memory(HEAP->true_value()); |
| 1423 } | 1423 } |
| 1424 | 1424 |
| 1425 | 1425 |
| 1426 } } // namespace v8::internal | 1426 } } // namespace v8::internal |
| 1427 | 1427 |
| 1428 #endif // V8_ISOLATE_H_ | 1428 #endif // V8_ISOLATE_H_ |
| OLD | NEW |