| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 V(String, empty_string, EmptyString) \ | 94 V(String, empty_string, EmptyString) \ |
| 95 V(DescriptorArray, empty_descriptor_array, EmptyDescriptorArray) \ | 95 V(DescriptorArray, empty_descriptor_array, EmptyDescriptorArray) \ |
| 96 V(Map, neander_map, NeanderMap) \ | 96 V(Map, neander_map, NeanderMap) \ |
| 97 V(JSObject, message_listeners, MessageListeners) \ | 97 V(JSObject, message_listeners, MessageListeners) \ |
| 98 V(Proxy, prototype_accessors, PrototypeAccessors) \ | 98 V(Proxy, prototype_accessors, PrototypeAccessors) \ |
| 99 V(NumberDictionary, code_stubs, CodeStubs) \ | 99 V(NumberDictionary, code_stubs, CodeStubs) \ |
| 100 V(NumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ | 100 V(NumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ |
| 101 V(Code, js_entry_code, JsEntryCode) \ | 101 V(Code, js_entry_code, JsEntryCode) \ |
| 102 V(Code, js_construct_entry_code, JsConstructEntryCode) \ | 102 V(Code, js_construct_entry_code, JsConstructEntryCode) \ |
| 103 V(Code, c_entry_code, CEntryCode) \ | 103 V(Code, c_entry_code, CEntryCode) \ |
| 104 V(Code, c_entry_debug_break_code, CEntryDebugBreakCode) \ | 104 V(Code, debugger_statement_code, DebuggerStatementCode) \ |
| 105 V(FixedArray, number_string_cache, NumberStringCache) \ | 105 V(FixedArray, number_string_cache, NumberStringCache) \ |
| 106 V(FixedArray, single_character_string_cache, SingleCharacterStringCache) \ | 106 V(FixedArray, single_character_string_cache, SingleCharacterStringCache) \ |
| 107 V(FixedArray, natives_source_cache, NativesSourceCache) \ | 107 V(FixedArray, natives_source_cache, NativesSourceCache) \ |
| 108 V(Object, last_script_id, LastScriptId) \ | 108 V(Object, last_script_id, LastScriptId) \ |
| 109 V(Smi, real_stack_limit, RealStackLimit) \ | 109 V(Smi, real_stack_limit, RealStackLimit) \ |
| 110 | 110 |
| 111 #if V8_TARGET_ARCH_ARM && V8_NATIVE_REGEXP | 111 #if V8_TARGET_ARCH_ARM && V8_NATIVE_REGEXP |
| 112 #define STRONG_ROOT_LIST(V) \ | 112 #define STRONG_ROOT_LIST(V) \ |
| 113 UNCONDITIONAL_STRONG_ROOT_LIST(V) \ | 113 UNCONDITIONAL_STRONG_ROOT_LIST(V) \ |
| 114 V(Code, re_c_entry_code, RegExpCEntryCode) | 114 V(Code, re_c_entry_code, RegExpCEntryCode) |
| (...skipping 1581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1696 | 1696 |
| 1697 // To speed up scavenge collections new space string are kept | 1697 // To speed up scavenge collections new space string are kept |
| 1698 // separate from old space strings. | 1698 // separate from old space strings. |
| 1699 static List<Object*> new_space_strings_; | 1699 static List<Object*> new_space_strings_; |
| 1700 static List<Object*> old_space_strings_; | 1700 static List<Object*> old_space_strings_; |
| 1701 }; | 1701 }; |
| 1702 | 1702 |
| 1703 } } // namespace v8::internal | 1703 } } // namespace v8::internal |
| 1704 | 1704 |
| 1705 #endif // V8_HEAP_H_ | 1705 #endif // V8_HEAP_H_ |
| OLD | NEW |