Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: src/isolate.h

Issue 13016003: GDBJIT: Add gdbjit_zone for --gdbjit_full (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/gdb-jit.cc ('k') | src/isolate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 873 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 884
885 v8::ImplementationUtilities::HandleScopeData* handle_scope_data() { 885 v8::ImplementationUtilities::HandleScopeData* handle_scope_data() {
886 return &handle_scope_data_; 886 return &handle_scope_data_;
887 } 887 }
888 HandleScopeImplementer* handle_scope_implementer() { 888 HandleScopeImplementer* handle_scope_implementer() {
889 ASSERT(handle_scope_implementer_); 889 ASSERT(handle_scope_implementer_);
890 return handle_scope_implementer_; 890 return handle_scope_implementer_;
891 } 891 }
892 Zone* runtime_zone() { return &runtime_zone_; } 892 Zone* runtime_zone() { return &runtime_zone_; }
893 893
894 #ifdef ENABLE_GDB_JIT_INTERFACE
895 Zone* gdbjit_zone() { return &gdbjit_zone_; }
896 #endif
897
894 UnicodeCache* unicode_cache() { 898 UnicodeCache* unicode_cache() {
895 return unicode_cache_; 899 return unicode_cache_;
896 } 900 }
897 901
898 InnerPointerToCodeCache* inner_pointer_to_code_cache() { 902 InnerPointerToCodeCache* inner_pointer_to_code_cache() {
899 return inner_pointer_to_code_cache_; 903 return inner_pointer_to_code_cache_;
900 } 904 }
901 905
902 ConsStringIteratorOp* write_iterator() { return write_iterator_; } 906 ConsStringIteratorOp* write_iterator() { return write_iterator_; }
903 907
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
1254 StackTrace::StackTraceOptions stack_trace_for_uncaught_exceptions_options_; 1258 StackTrace::StackTraceOptions stack_trace_for_uncaught_exceptions_options_;
1255 TranscendentalCache* transcendental_cache_; 1259 TranscendentalCache* transcendental_cache_;
1256 MemoryAllocator* memory_allocator_; 1260 MemoryAllocator* memory_allocator_;
1257 KeyedLookupCache* keyed_lookup_cache_; 1261 KeyedLookupCache* keyed_lookup_cache_;
1258 ContextSlotCache* context_slot_cache_; 1262 ContextSlotCache* context_slot_cache_;
1259 DescriptorLookupCache* descriptor_lookup_cache_; 1263 DescriptorLookupCache* descriptor_lookup_cache_;
1260 v8::ImplementationUtilities::HandleScopeData handle_scope_data_; 1264 v8::ImplementationUtilities::HandleScopeData handle_scope_data_;
1261 HandleScopeImplementer* handle_scope_implementer_; 1265 HandleScopeImplementer* handle_scope_implementer_;
1262 UnicodeCache* unicode_cache_; 1266 UnicodeCache* unicode_cache_;
1263 Zone runtime_zone_; 1267 Zone runtime_zone_;
1268 #ifdef ENABLE_GDB_JIT_INTERFACE
1269 Zone gdbjit_zone_;
1270 #endif
1264 PreallocatedStorage in_use_list_; 1271 PreallocatedStorage in_use_list_;
1265 PreallocatedStorage free_list_; 1272 PreallocatedStorage free_list_;
1266 bool preallocated_storage_preallocated_; 1273 bool preallocated_storage_preallocated_;
1267 InnerPointerToCodeCache* inner_pointer_to_code_cache_; 1274 InnerPointerToCodeCache* inner_pointer_to_code_cache_;
1268 ConsStringIteratorOp* write_iterator_; 1275 ConsStringIteratorOp* write_iterator_;
1269 GlobalHandles* global_handles_; 1276 GlobalHandles* global_handles_;
1270 ContextSwitcher* context_switcher_; 1277 ContextSwitcher* context_switcher_;
1271 ThreadManager* thread_manager_; 1278 ThreadManager* thread_manager_;
1272 RuntimeState runtime_state_; 1279 RuntimeState runtime_state_;
1273 bool fp_stubs_generated_; 1280 bool fp_stubs_generated_;
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
1491 1498
1492 // Mark the native context with out of memory. 1499 // Mark the native context with out of memory.
1493 inline void Context::mark_out_of_memory() { 1500 inline void Context::mark_out_of_memory() {
1494 native_context()->set_out_of_memory(HEAP->true_value()); 1501 native_context()->set_out_of_memory(HEAP->true_value());
1495 } 1502 }
1496 1503
1497 1504
1498 } } // namespace v8::internal 1505 } } // namespace v8::internal
1499 1506
1500 #endif // V8_ISOLATE_H_ 1507 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/gdb-jit.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698