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

Side by Side Diff: src/heap.h

Issue 6725030: [Arguments] Introduce a new backing store for non-strict arguments objects. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/arguments
Patch Set: Created 9 years, 9 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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 V(Map, undetectable_string_map, UndetectableStringMap) \ 96 V(Map, undetectable_string_map, UndetectableStringMap) \
97 V(Map, undetectable_ascii_string_map, UndetectableAsciiStringMap) \ 97 V(Map, undetectable_ascii_string_map, UndetectableAsciiStringMap) \
98 V(Map, external_pixel_array_map, ExternalPixelArrayMap) \ 98 V(Map, external_pixel_array_map, ExternalPixelArrayMap) \
99 V(Map, external_byte_array_map, ExternalByteArrayMap) \ 99 V(Map, external_byte_array_map, ExternalByteArrayMap) \
100 V(Map, external_unsigned_byte_array_map, ExternalUnsignedByteArrayMap) \ 100 V(Map, external_unsigned_byte_array_map, ExternalUnsignedByteArrayMap) \
101 V(Map, external_short_array_map, ExternalShortArrayMap) \ 101 V(Map, external_short_array_map, ExternalShortArrayMap) \
102 V(Map, external_unsigned_short_array_map, ExternalUnsignedShortArrayMap) \ 102 V(Map, external_unsigned_short_array_map, ExternalUnsignedShortArrayMap) \
103 V(Map, external_int_array_map, ExternalIntArrayMap) \ 103 V(Map, external_int_array_map, ExternalIntArrayMap) \
104 V(Map, external_unsigned_int_array_map, ExternalUnsignedIntArrayMap) \ 104 V(Map, external_unsigned_int_array_map, ExternalUnsignedIntArrayMap) \
105 V(Map, external_float_array_map, ExternalFloatArrayMap) \ 105 V(Map, external_float_array_map, ExternalFloatArrayMap) \
106 V(Map, non_strict_arguments_elements_map, NonStrictArgumentsElementsMap) \
106 V(Map, context_map, ContextMap) \ 107 V(Map, context_map, ContextMap) \
107 V(Map, catch_context_map, CatchContextMap) \ 108 V(Map, catch_context_map, CatchContextMap) \
108 V(Map, code_map, CodeMap) \ 109 V(Map, code_map, CodeMap) \
109 V(Map, oddball_map, OddballMap) \ 110 V(Map, oddball_map, OddballMap) \
110 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ 111 V(Map, global_property_cell_map, GlobalPropertyCellMap) \
111 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ 112 V(Map, shared_function_info_map, SharedFunctionInfoMap) \
112 V(Map, message_object_map, JSMessageObjectMap) \ 113 V(Map, message_object_map, JSMessageObjectMap) \
113 V(Map, proxy_map, ProxyMap) \ 114 V(Map, proxy_map, ProxyMap) \
114 V(Object, nan_value, NanValue) \ 115 V(Object, nan_value, NanValue) \
115 V(Object, minus_zero_value, MinusZeroValue) \ 116 V(Object, minus_zero_value, MinusZeroValue) \
(...skipping 2135 matching lines...) Expand 10 before | Expand all | Expand 10 after
2251 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2252 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2252 }; 2253 };
2253 #endif // DEBUG || LIVE_OBJECT_LIST 2254 #endif // DEBUG || LIVE_OBJECT_LIST
2254 2255
2255 2256
2256 } } // namespace v8::internal 2257 } } // namespace v8::internal
2257 2258
2258 #undef HEAP 2259 #undef HEAP
2259 2260
2260 #endif // V8_HEAP_H_ 2261 #endif // V8_HEAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698