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

Side by Side Diff: src/isolate.h

Issue 7111034: Kill some dead code: classic frame element and const lists. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Killed CompilationZoneScope Created 9 years, 6 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/compiler.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 877 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 return &regexp_macro_assembler_canonicalize_; 888 return &regexp_macro_assembler_canonicalize_;
889 } 889 }
890 890
891 RegExpStack* regexp_stack() { return regexp_stack_; } 891 RegExpStack* regexp_stack() { return regexp_stack_; }
892 892
893 unibrow::Mapping<unibrow::Ecma262Canonicalize>* 893 unibrow::Mapping<unibrow::Ecma262Canonicalize>*
894 interp_canonicalize_mapping() { 894 interp_canonicalize_mapping() {
895 return &interp_canonicalize_mapping_; 895 return &interp_canonicalize_mapping_;
896 } 896 }
897 897
898 ZoneObjectList* frame_element_constant_list() {
899 return &frame_element_constant_list_;
900 }
901
902 ZoneObjectList* result_constant_list() {
903 return &result_constant_list_;
904 }
905
906 void* PreallocatedStorageNew(size_t size); 898 void* PreallocatedStorageNew(size_t size);
907 void PreallocatedStorageDelete(void* p); 899 void PreallocatedStorageDelete(void* p);
908 void PreallocatedStorageInit(size_t size); 900 void PreallocatedStorageInit(size_t size);
909 901
910 #ifdef ENABLE_DEBUGGER_SUPPORT 902 #ifdef ENABLE_DEBUGGER_SUPPORT
911 Debugger* debugger() { return debugger_; } 903 Debugger* debugger() { return debugger_; }
912 Debug* debug() { return debug_; } 904 Debug* debug() { return debug_; }
913 #endif 905 #endif
914 906
915 inline bool DebuggerHasBreakPoints(); 907 inline bool DebuggerHasBreakPoints();
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1150 StringTracker* string_tracker_; 1142 StringTracker* string_tracker_;
1151 unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_; 1143 unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_;
1152 unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_; 1144 unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_;
1153 StringInputBuffer objects_string_compare_buffer_a_; 1145 StringInputBuffer objects_string_compare_buffer_a_;
1154 StringInputBuffer objects_string_compare_buffer_b_; 1146 StringInputBuffer objects_string_compare_buffer_b_;
1155 StaticResource<StringInputBuffer> objects_string_input_buffer_; 1147 StaticResource<StringInputBuffer> objects_string_input_buffer_;
1156 unibrow::Mapping<unibrow::Ecma262Canonicalize> 1148 unibrow::Mapping<unibrow::Ecma262Canonicalize>
1157 regexp_macro_assembler_canonicalize_; 1149 regexp_macro_assembler_canonicalize_;
1158 RegExpStack* regexp_stack_; 1150 RegExpStack* regexp_stack_;
1159 unibrow::Mapping<unibrow::Ecma262Canonicalize> interp_canonicalize_mapping_; 1151 unibrow::Mapping<unibrow::Ecma262Canonicalize> interp_canonicalize_mapping_;
1160 ZoneObjectList frame_element_constant_list_;
1161 ZoneObjectList result_constant_list_;
1162 void* embedder_data_; 1152 void* embedder_data_;
1163 1153
1164 #if defined(V8_TARGET_ARCH_ARM) && !defined(__arm__) || \ 1154 #if defined(V8_TARGET_ARCH_ARM) && !defined(__arm__) || \
1165 defined(V8_TARGET_ARCH_MIPS) && !defined(__mips__) 1155 defined(V8_TARGET_ARCH_MIPS) && !defined(__mips__)
1166 bool simulator_initialized_; 1156 bool simulator_initialized_;
1167 HashMap* simulator_i_cache_; 1157 HashMap* simulator_i_cache_;
1168 Redirection* simulator_redirection_; 1158 Redirection* simulator_redirection_;
1169 #endif 1159 #endif
1170 1160
1171 #ifdef DEBUG 1161 #ifdef DEBUG
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
1373 1363
1374 } } // namespace v8::internal 1364 } } // namespace v8::internal
1375 1365
1376 // TODO(isolates): Get rid of these -inl.h includes and place them only where 1366 // TODO(isolates): Get rid of these -inl.h includes and place them only where
1377 // they're needed. 1367 // they're needed.
1378 #include "allocation-inl.h" 1368 #include "allocation-inl.h"
1379 #include "zone-inl.h" 1369 #include "zone-inl.h"
1380 #include "frames-inl.h" 1370 #include "frames-inl.h"
1381 1371
1382 #endif // V8_ISOLATE_H_ 1372 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698