| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 V(Map, external_short_array_map, ExternalShortArrayMap) \ | 82 V(Map, external_short_array_map, ExternalShortArrayMap) \ |
| 83 V(Map, external_unsigned_short_array_map, ExternalUnsignedShortArrayMap) \ | 83 V(Map, external_unsigned_short_array_map, ExternalUnsignedShortArrayMap) \ |
| 84 V(Map, external_int_array_map, ExternalIntArrayMap) \ | 84 V(Map, external_int_array_map, ExternalIntArrayMap) \ |
| 85 V(Map, external_unsigned_int_array_map, ExternalUnsignedIntArrayMap) \ | 85 V(Map, external_unsigned_int_array_map, ExternalUnsignedIntArrayMap) \ |
| 86 V(Map, external_float_array_map, ExternalFloatArrayMap) \ | 86 V(Map, external_float_array_map, ExternalFloatArrayMap) \ |
| 87 V(Map, context_map, ContextMap) \ | 87 V(Map, context_map, ContextMap) \ |
| 88 V(Map, catch_context_map, CatchContextMap) \ | 88 V(Map, catch_context_map, CatchContextMap) \ |
| 89 V(Map, code_map, CodeMap) \ | 89 V(Map, code_map, CodeMap) \ |
| 90 V(Map, oddball_map, OddballMap) \ | 90 V(Map, oddball_map, OddballMap) \ |
| 91 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ | 91 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ |
| 92 V(Map, boilerplate_function_map, BoilerplateFunctionMap) \ | |
| 93 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ | 92 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ |
| 94 V(Map, proxy_map, ProxyMap) \ | 93 V(Map, proxy_map, ProxyMap) \ |
| 95 V(Object, nan_value, NanValue) \ | 94 V(Object, nan_value, NanValue) \ |
| 96 V(Object, minus_zero_value, MinusZeroValue) \ | 95 V(Object, minus_zero_value, MinusZeroValue) \ |
| 97 V(String, empty_string, EmptyString) \ | 96 V(String, empty_string, EmptyString) \ |
| 98 V(DescriptorArray, empty_descriptor_array, EmptyDescriptorArray) \ | 97 V(DescriptorArray, empty_descriptor_array, EmptyDescriptorArray) \ |
| 99 V(Map, neander_map, NeanderMap) \ | 98 V(Map, neander_map, NeanderMap) \ |
| 100 V(JSObject, message_listeners, MessageListeners) \ | 99 V(JSObject, message_listeners, MessageListeners) \ |
| 101 V(Proxy, prototype_accessors, PrototypeAccessors) \ | 100 V(Proxy, prototype_accessors, PrototypeAccessors) \ |
| 102 V(NumberDictionary, code_stubs, CodeStubs) \ | 101 V(NumberDictionary, code_stubs, CodeStubs) \ |
| (...skipping 1729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1832 | 1831 |
| 1833 // To speed up scavenge collections new space string are kept | 1832 // To speed up scavenge collections new space string are kept |
| 1834 // separate from old space strings. | 1833 // separate from old space strings. |
| 1835 static List<Object*> new_space_strings_; | 1834 static List<Object*> new_space_strings_; |
| 1836 static List<Object*> old_space_strings_; | 1835 static List<Object*> old_space_strings_; |
| 1837 }; | 1836 }; |
| 1838 | 1837 |
| 1839 } } // namespace v8::internal | 1838 } } // namespace v8::internal |
| 1840 | 1839 |
| 1841 #endif // V8_HEAP_H_ | 1840 #endif // V8_HEAP_H_ |
| OLD | NEW |