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

Side by Side Diff: src/heap.h

Issue 21133006: introduce eternal handles (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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
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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ 181 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \
182 V(Smi, arguments_adaptor_deopt_pc_offset, ArgumentsAdaptorDeoptPCOffset) \ 182 V(Smi, arguments_adaptor_deopt_pc_offset, ArgumentsAdaptorDeoptPCOffset) \
183 V(Smi, construct_stub_deopt_pc_offset, ConstructStubDeoptPCOffset) \ 183 V(Smi, construct_stub_deopt_pc_offset, ConstructStubDeoptPCOffset) \
184 V(Smi, getter_stub_deopt_pc_offset, GetterStubDeoptPCOffset) \ 184 V(Smi, getter_stub_deopt_pc_offset, GetterStubDeoptPCOffset) \
185 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) \ 185 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) \
186 V(JSObject, observation_state, ObservationState) \ 186 V(JSObject, observation_state, ObservationState) \
187 V(Map, external_map, ExternalMap) \ 187 V(Map, external_map, ExternalMap) \
188 V(Symbol, frozen_symbol, FrozenSymbol) \ 188 V(Symbol, frozen_symbol, FrozenSymbol) \
189 V(SeededNumberDictionary, empty_slow_element_dictionary, \ 189 V(SeededNumberDictionary, empty_slow_element_dictionary, \
190 EmptySlowElementDictionary) \ 190 EmptySlowElementDictionary) \
191 V(Symbol, observed_symbol, ObservedSymbol) \ 191 V(Symbol, observed_symbol, ObservedSymbol)
192 V(HeapObject, i18n_template_one, I18nTemplateOne) \
193 V(HeapObject, i18n_template_two, I18nTemplateTwo)
194 192
195 #define ROOT_LIST(V) \ 193 #define ROOT_LIST(V) \
196 STRONG_ROOT_LIST(V) \ 194 STRONG_ROOT_LIST(V) \
197 V(StringTable, string_table, StringTable) 195 V(StringTable, string_table, StringTable)
198 196
199 #define INTERNALIZED_STRING_LIST(V) \ 197 #define INTERNALIZED_STRING_LIST(V) \
200 V(Array_string, "Array") \ 198 V(Array_string, "Array") \
201 V(Object_string, "Object") \ 199 V(Object_string, "Object") \
202 V(proto_string, "__proto__") \ 200 V(proto_string, "__proto__") \
203 V(StringImpl_string, "StringImpl") \ 201 V(StringImpl_string, "StringImpl") \
(...skipping 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after
1290 void RemoveGCEpilogueCallback(GCEpilogueCallback callback); 1288 void RemoveGCEpilogueCallback(GCEpilogueCallback callback);
1291 1289
1292 void SetGlobalGCPrologueCallback(GCCallback callback) { 1290 void SetGlobalGCPrologueCallback(GCCallback callback) {
1293 ASSERT((callback == NULL) ^ (global_gc_prologue_callback_ == NULL)); 1291 ASSERT((callback == NULL) ^ (global_gc_prologue_callback_ == NULL));
1294 global_gc_prologue_callback_ = callback; 1292 global_gc_prologue_callback_ = callback;
1295 } 1293 }
1296 void SetGlobalGCEpilogueCallback(GCCallback callback) { 1294 void SetGlobalGCEpilogueCallback(GCCallback callback) {
1297 ASSERT((callback == NULL) ^ (global_gc_epilogue_callback_ == NULL)); 1295 ASSERT((callback == NULL) ^ (global_gc_epilogue_callback_ == NULL));
1298 global_gc_epilogue_callback_ = callback; 1296 global_gc_epilogue_callback_ = callback;
1299 } 1297 }
1300 void SetI18nTemplateOne(ObjectTemplateInfo* tmpl) {
1301 set_i18n_template_one(tmpl);
1302 }
1303 void SetI18nTemplateTwo(ObjectTemplateInfo* tmpl) {
1304 set_i18n_template_two(tmpl);
1305 }
1306 1298
1307 // Heap root getters. We have versions with and without type::cast() here. 1299 // Heap root getters. We have versions with and without type::cast() here.
1308 // You can't use type::cast during GC because the assert fails. 1300 // You can't use type::cast during GC because the assert fails.
1309 // TODO(1490): Try removing the unchecked accessors, now that GC marking does 1301 // TODO(1490): Try removing the unchecked accessors, now that GC marking does
1310 // not corrupt the map. 1302 // not corrupt the map.
1311 #define ROOT_ACCESSOR(type, name, camel_name) \ 1303 #define ROOT_ACCESSOR(type, name, camel_name) \
1312 type* name() { \ 1304 type* name() { \
1313 return type::cast(roots_[k##camel_name##RootIndex]); \ 1305 return type::cast(roots_[k##camel_name##RootIndex]); \
1314 } \ 1306 } \
1315 type* raw_unchecked_##name() { \ 1307 type* raw_unchecked_##name() { \
(...skipping 1731 matching lines...) Expand 10 before | Expand all | Expand 10 after
3047 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3039 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3048 3040
3049 private: 3041 private:
3050 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3042 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3051 }; 3043 };
3052 #endif // DEBUG 3044 #endif // DEBUG
3053 3045
3054 } } // namespace v8::internal 3046 } } // namespace v8::internal
3055 3047
3056 #endif // V8_HEAP_H_ 3048 #endif // V8_HEAP_H_
OLDNEW
« include/v8.h ('K') | « src/global-handles.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698