OLD | NEW |
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 V(Map, module_context_map, ModuleContextMap) \ | 143 V(Map, module_context_map, ModuleContextMap) \ |
144 V(Map, global_context_map, GlobalContextMap) \ | 144 V(Map, global_context_map, GlobalContextMap) \ |
145 V(Map, oddball_map, OddballMap) \ | 145 V(Map, oddball_map, OddballMap) \ |
146 V(Map, message_object_map, JSMessageObjectMap) \ | 146 V(Map, message_object_map, JSMessageObjectMap) \ |
147 V(Map, foreign_map, ForeignMap) \ | 147 V(Map, foreign_map, ForeignMap) \ |
148 V(HeapNumber, nan_value, NanValue) \ | 148 V(HeapNumber, nan_value, NanValue) \ |
149 V(HeapNumber, infinity_value, InfinityValue) \ | 149 V(HeapNumber, infinity_value, InfinityValue) \ |
150 V(HeapNumber, minus_zero_value, MinusZeroValue) \ | 150 V(HeapNumber, minus_zero_value, MinusZeroValue) \ |
151 V(Map, neander_map, NeanderMap) \ | 151 V(Map, neander_map, NeanderMap) \ |
152 V(JSObject, message_listeners, MessageListeners) \ | 152 V(JSObject, message_listeners, MessageListeners) \ |
153 V(Foreign, prototype_accessors, PrototypeAccessors) \ | |
154 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ | 153 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ |
155 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ | 154 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ |
156 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ | 155 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ |
157 V(Code, js_entry_code, JsEntryCode) \ | 156 V(Code, js_entry_code, JsEntryCode) \ |
158 V(Code, js_construct_entry_code, JsConstructEntryCode) \ | 157 V(Code, js_construct_entry_code, JsConstructEntryCode) \ |
159 V(FixedArray, natives_source_cache, NativesSourceCache) \ | 158 V(FixedArray, natives_source_cache, NativesSourceCache) \ |
160 V(Object, last_script_id, LastScriptId) \ | 159 V(Object, last_script_id, LastScriptId) \ |
161 V(Script, empty_script, EmptyScript) \ | 160 V(Script, empty_script, EmptyScript) \ |
162 V(Smi, real_stack_limit, RealStackLimit) \ | 161 V(Smi, real_stack_limit, RealStackLimit) \ |
163 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ | 162 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ |
(...skipping 2865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3029 AssertNoAllocation no_alloc; // i.e. no gc allowed. | 3028 AssertNoAllocation no_alloc; // i.e. no gc allowed. |
3030 | 3029 |
3031 private: | 3030 private: |
3032 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3031 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
3033 }; | 3032 }; |
3034 #endif // DEBUG | 3033 #endif // DEBUG |
3035 | 3034 |
3036 } } // namespace v8::internal | 3035 } } // namespace v8::internal |
3037 | 3036 |
3038 #endif // V8_HEAP_H_ | 3037 #endif // V8_HEAP_H_ |
OLD | NEW |