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

Side by Side Diff: src/heap.h

Issue 8677006: Recommit introducing short external strings. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixing webkit failures. 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') | src/ia32/codegen-ia32.cc » ('J')
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) \
113 V(Map, undetectable_string_map, UndetectableStringMap) \ 123 V(Map, undetectable_string_map, UndetectableStringMap) \
114 V(Map, undetectable_ascii_string_map, UndetectableAsciiStringMap) \ 124 V(Map, undetectable_ascii_string_map, UndetectableAsciiStringMap) \
115 V(Map, external_pixel_array_map, ExternalPixelArrayMap) \ 125 V(Map, external_pixel_array_map, ExternalPixelArrayMap) \
116 V(Map, external_byte_array_map, ExternalByteArrayMap) \ 126 V(Map, external_byte_array_map, ExternalByteArrayMap) \
117 V(Map, external_unsigned_byte_array_map, ExternalUnsignedByteArrayMap) \ 127 V(Map, external_unsigned_byte_array_map, ExternalUnsignedByteArrayMap) \
118 V(Map, external_short_array_map, ExternalShortArrayMap) \ 128 V(Map, external_short_array_map, ExternalShortArrayMap) \
119 V(Map, external_unsigned_short_array_map, ExternalUnsignedShortArrayMap) \ 129 V(Map, external_unsigned_short_array_map, ExternalUnsignedShortArrayMap) \
120 V(Map, external_int_array_map, ExternalIntArrayMap) \ 130 V(Map, external_int_array_map, ExternalIntArrayMap) \
121 V(Map, external_unsigned_int_array_map, ExternalUnsignedIntArrayMap) \ 131 V(Map, external_unsigned_int_array_map, ExternalUnsignedIntArrayMap) \
122 V(Map, external_float_array_map, ExternalFloatArrayMap) \ 132 V(Map, external_float_array_map, ExternalFloatArrayMap) \
(...skipping 2408 matching lines...) Expand 10 before | Expand all | Expand 10 after
2531 2541
2532 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2542 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2533 }; 2543 };
2534 #endif // DEBUG || LIVE_OBJECT_LIST 2544 #endif // DEBUG || LIVE_OBJECT_LIST
2535 2545
2536 } } // namespace v8::internal 2546 } } // namespace v8::internal
2537 2547
2538 #undef HEAP 2548 #undef HEAP
2539 2549
2540 #endif // V8_HEAP_H_ 2550 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/heap.cc » ('j') | src/ia32/codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698