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

Side by Side Diff: src/isolate.h

Issue 22715004: Version 3.20.15 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Add TypedArray API and correctness patches r16033 and r16084 Created 7 years, 4 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/icu_util.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 904 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
927 ThreadManager* thread_manager() { return thread_manager_; } 925 ThreadManager* thread_manager() { return thread_manager_; }
928 926
929 ContextSwitcher* context_switcher() { return context_switcher_; } 927 ContextSwitcher* context_switcher() { return context_switcher_; }
930 928
931 void set_context_switcher(ContextSwitcher* switcher) { 929 void set_context_switcher(ContextSwitcher* switcher) {
932 context_switcher_ = switcher; 930 context_switcher_ = switcher;
933 } 931 }
934 932
935 StringTracker* string_tracker() { return string_tracker_; } 933 StringTracker* string_tracker() { return string_tracker_; }
936 934
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1290 v8::ImplementationUtilities::HandleScopeData handle_scope_data_; 1288 v8::ImplementationUtilities::HandleScopeData handle_scope_data_;
1291 HandleScopeImplementer* handle_scope_implementer_; 1289 HandleScopeImplementer* handle_scope_implementer_;
1292 UnicodeCache* unicode_cache_; 1290 UnicodeCache* unicode_cache_;
1293 Zone runtime_zone_; 1291 Zone runtime_zone_;
1294 PreallocatedStorage in_use_list_; 1292 PreallocatedStorage in_use_list_;
1295 PreallocatedStorage free_list_; 1293 PreallocatedStorage free_list_;
1296 bool preallocated_storage_preallocated_; 1294 bool preallocated_storage_preallocated_;
1297 InnerPointerToCodeCache* inner_pointer_to_code_cache_; 1295 InnerPointerToCodeCache* inner_pointer_to_code_cache_;
1298 ConsStringIteratorOp* write_iterator_; 1296 ConsStringIteratorOp* write_iterator_;
1299 GlobalHandles* global_handles_; 1297 GlobalHandles* global_handles_;
1300 EternalHandles* eternal_handles_;
1301 ContextSwitcher* context_switcher_; 1298 ContextSwitcher* context_switcher_;
1302 ThreadManager* thread_manager_; 1299 ThreadManager* thread_manager_;
1303 RuntimeState runtime_state_; 1300 RuntimeState runtime_state_;
1304 bool fp_stubs_generated_; 1301 bool fp_stubs_generated_;
1305 Builtins builtins_; 1302 Builtins builtins_;
1306 bool has_installed_extensions_; 1303 bool has_installed_extensions_;
1307 StringTracker* string_tracker_; 1304 StringTracker* string_tracker_;
1308 unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_; 1305 unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_;
1309 unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_; 1306 unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_;
1310 ConsStringIteratorOp objects_string_compare_iterator_a_; 1307 ConsStringIteratorOp objects_string_compare_iterator_a_;
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1527 1524
1528 // Mark the native context with out of memory. 1525 // Mark the native context with out of memory.
1529 inline void Context::mark_out_of_memory() { 1526 inline void Context::mark_out_of_memory() {
1530 native_context()->set_out_of_memory(HEAP->true_value()); 1527 native_context()->set_out_of_memory(HEAP->true_value());
1531 } 1528 }
1532 1529
1533 1530
1534 } } // namespace v8::internal 1531 } } // namespace v8::internal
1535 1532
1536 #endif // V8_ISOLATE_H_ 1533 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/icu_util.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698