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

Side by Side Diff: src/isolate.h

Issue 113343003: Remove the last remnants of the TranscendentalCache. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased Created 7 years 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/ia32/lithium-ia32.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 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 ASSERT(logger_ != NULL); 863 ASSERT(logger_ != NULL);
864 return logger_; 864 return logger_;
865 } 865 }
866 StackGuard* stack_guard() { return &stack_guard_; } 866 StackGuard* stack_guard() { return &stack_guard_; }
867 Heap* heap() { return &heap_; } 867 Heap* heap() { return &heap_; }
868 StatsTable* stats_table(); 868 StatsTable* stats_table();
869 StubCache* stub_cache() { return stub_cache_; } 869 StubCache* stub_cache() { return stub_cache_; }
870 DeoptimizerData* deoptimizer_data() { return deoptimizer_data_; } 870 DeoptimizerData* deoptimizer_data() { return deoptimizer_data_; }
871 ThreadLocalTop* thread_local_top() { return &thread_local_top_; } 871 ThreadLocalTop* thread_local_top() { return &thread_local_top_; }
872 872
873 TranscendentalCache* transcendental_cache() const {
874 return transcendental_cache_;
875 }
876
877 MemoryAllocator* memory_allocator() { 873 MemoryAllocator* memory_allocator() {
878 return memory_allocator_; 874 return memory_allocator_;
879 } 875 }
880 876
881 KeyedLookupCache* keyed_lookup_cache() { 877 KeyedLookupCache* keyed_lookup_cache() {
882 return keyed_lookup_cache_; 878 return keyed_lookup_cache_;
883 } 879 }
884 880
885 ContextSlotCache* context_slot_cache() { 881 ContextSlotCache* context_slot_cache() {
886 return context_slot_cache_; 882 return context_slot_cache_;
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
1263 RecursiveMutex debugger_access_; 1259 RecursiveMutex debugger_access_;
1264 Logger* logger_; 1260 Logger* logger_;
1265 StackGuard stack_guard_; 1261 StackGuard stack_guard_;
1266 StatsTable* stats_table_; 1262 StatsTable* stats_table_;
1267 StubCache* stub_cache_; 1263 StubCache* stub_cache_;
1268 DeoptimizerData* deoptimizer_data_; 1264 DeoptimizerData* deoptimizer_data_;
1269 ThreadLocalTop thread_local_top_; 1265 ThreadLocalTop thread_local_top_;
1270 bool capture_stack_trace_for_uncaught_exceptions_; 1266 bool capture_stack_trace_for_uncaught_exceptions_;
1271 int stack_trace_for_uncaught_exceptions_frame_limit_; 1267 int stack_trace_for_uncaught_exceptions_frame_limit_;
1272 StackTrace::StackTraceOptions stack_trace_for_uncaught_exceptions_options_; 1268 StackTrace::StackTraceOptions stack_trace_for_uncaught_exceptions_options_;
1273 TranscendentalCache* transcendental_cache_;
1274 MemoryAllocator* memory_allocator_; 1269 MemoryAllocator* memory_allocator_;
1275 KeyedLookupCache* keyed_lookup_cache_; 1270 KeyedLookupCache* keyed_lookup_cache_;
1276 ContextSlotCache* context_slot_cache_; 1271 ContextSlotCache* context_slot_cache_;
1277 DescriptorLookupCache* descriptor_lookup_cache_; 1272 DescriptorLookupCache* descriptor_lookup_cache_;
1278 v8::ImplementationUtilities::HandleScopeData handle_scope_data_; 1273 v8::ImplementationUtilities::HandleScopeData handle_scope_data_;
1279 HandleScopeImplementer* handle_scope_implementer_; 1274 HandleScopeImplementer* handle_scope_implementer_;
1280 UnicodeCache* unicode_cache_; 1275 UnicodeCache* unicode_cache_;
1281 Zone runtime_zone_; 1276 Zone runtime_zone_;
1282 InnerPointerToCodeCache* inner_pointer_to_code_cache_; 1277 InnerPointerToCodeCache* inner_pointer_to_code_cache_;
1283 ConsStringIteratorOp* write_iterator_; 1278 ConsStringIteratorOp* write_iterator_;
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
1566 } 1561 }
1567 1562
1568 EmbeddedVector<char, 128> filename_; 1563 EmbeddedVector<char, 128> filename_;
1569 FILE* file_; 1564 FILE* file_;
1570 int scope_depth_; 1565 int scope_depth_;
1571 }; 1566 };
1572 1567
1573 } } // namespace v8::internal 1568 } } // namespace v8::internal
1574 1569
1575 #endif // V8_ISOLATE_H_ 1570 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-ia32.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698