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

Side by Side Diff: src/heap.h

Issue 8681007: Rolling back r10049 due to webkit failures. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « src/api.cc ('k') | src/heap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 V(Map, sliced_string_map, SlicedStringMap) \ 103 V(Map, sliced_string_map, SlicedStringMap) \
104 V(Map, sliced_ascii_string_map, SlicedAsciiStringMap) \ 104 V(Map, sliced_ascii_string_map, SlicedAsciiStringMap) \
105 V(Map, cons_symbol_map, ConsSymbolMap) \ 105 V(Map, cons_symbol_map, ConsSymbolMap) \
106 V(Map, cons_ascii_symbol_map, ConsAsciiSymbolMap) \ 106 V(Map, cons_ascii_symbol_map, ConsAsciiSymbolMap) \
107 V(Map, external_symbol_map, ExternalSymbolMap) \ 107 V(Map, external_symbol_map, ExternalSymbolMap) \
108 V(Map, external_symbol_with_ascii_data_map, ExternalSymbolWithAsciiDataMap) \ 108 V(Map, external_symbol_with_ascii_data_map, ExternalSymbolWithAsciiDataMap) \
109 V(Map, external_ascii_symbol_map, ExternalAsciiSymbolMap) \ 109 V(Map, external_ascii_symbol_map, ExternalAsciiSymbolMap) \
110 V(Map, external_string_map, ExternalStringMap) \ 110 V(Map, external_string_map, ExternalStringMap) \
111 V(Map, external_string_with_ascii_data_map, ExternalStringWithAsciiDataMap) \ 111 V(Map, external_string_with_ascii_data_map, ExternalStringWithAsciiDataMap) \
112 V(Map, external_ascii_string_map, ExternalAsciiStringMap) \ 112 V(Map, external_ascii_string_map, ExternalAsciiStringMap) \
113 V(Map, short_external_symbol_map, ShortExternalSymbolMap) \
114 V(Map, \
115 short_external_symbol_with_ascii_data_map, \
116 ShortExternalSymbolWithAsciiDataMap) \
117 V(Map, short_external_ascii_symbol_map, ShortExternalAsciiSymbolMap) \
118 V(Map, short_external_string_map, ShortExternalStringMap) \
119 V(Map, \
120 short_external_string_with_ascii_data_map, \
121 ShortExternalStringWithAsciiDataMap) \
122 V(Map, short_external_ascii_string_map, ShortExternalAsciiStringMap) \
123 V(Map, undetectable_string_map, UndetectableStringMap) \ 113 V(Map, undetectable_string_map, UndetectableStringMap) \
124 V(Map, undetectable_ascii_string_map, UndetectableAsciiStringMap) \ 114 V(Map, undetectable_ascii_string_map, UndetectableAsciiStringMap) \
125 V(Map, external_pixel_array_map, ExternalPixelArrayMap) \ 115 V(Map, external_pixel_array_map, ExternalPixelArrayMap) \
126 V(Map, external_byte_array_map, ExternalByteArrayMap) \ 116 V(Map, external_byte_array_map, ExternalByteArrayMap) \
127 V(Map, external_unsigned_byte_array_map, ExternalUnsignedByteArrayMap) \ 117 V(Map, external_unsigned_byte_array_map, ExternalUnsignedByteArrayMap) \
128 V(Map, external_short_array_map, ExternalShortArrayMap) \ 118 V(Map, external_short_array_map, ExternalShortArrayMap) \
129 V(Map, external_unsigned_short_array_map, ExternalUnsignedShortArrayMap) \ 119 V(Map, external_unsigned_short_array_map, ExternalUnsignedShortArrayMap) \
130 V(Map, external_int_array_map, ExternalIntArrayMap) \ 120 V(Map, external_int_array_map, ExternalIntArrayMap) \
131 V(Map, external_unsigned_int_array_map, ExternalUnsignedIntArrayMap) \ 121 V(Map, external_unsigned_int_array_map, ExternalUnsignedIntArrayMap) \
132 V(Map, external_float_array_map, ExternalFloatArrayMap) \ 122 V(Map, external_float_array_map, ExternalFloatArrayMap) \
(...skipping 2408 matching lines...) Expand 10 before | Expand all | Expand 10 after
2541 2531
2542 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2532 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2543 }; 2533 };
2544 #endif // DEBUG || LIVE_OBJECT_LIST 2534 #endif // DEBUG || LIVE_OBJECT_LIST
2545 2535
2546 } } // namespace v8::internal 2536 } } // namespace v8::internal
2547 2537
2548 #undef HEAP 2538 #undef HEAP
2549 2539
2550 #endif // V8_HEAP_H_ 2540 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698