| OLD | NEW |
| 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 Loading... |
| 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, external_buffered_symbol_map, ExternalBufferedSymbolMap) \ |
| 114 V(Map, \ |
| 115 external_buffered_symbol_with_ascii_data_map, \ |
| 116 ExternalBufferedSymbolWithAsciiDataMap) \ |
| 117 V(Map, external_buffered_ascii_symbol_map, ExternalBufferedAsciiSymbolMap) \ |
| 118 V(Map, external_buffered_string_map, ExternalBufferedStringMap) \ |
| 119 V(Map, \ |
| 120 external_buffered_string_with_ascii_data_map, \ |
| 121 ExternalBufferedStringWithAsciiDataMap) \ |
| 122 V(Map, external_buffered_ascii_string_map, ExternalBufferedAsciiStringMap) \ |
| 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 2406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2529 | 2539 |
| 2530 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2540 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2531 }; | 2541 }; |
| 2532 #endif // DEBUG || LIVE_OBJECT_LIST | 2542 #endif // DEBUG || LIVE_OBJECT_LIST |
| 2533 | 2543 |
| 2534 } } // namespace v8::internal | 2544 } } // namespace v8::internal |
| 2535 | 2545 |
| 2536 #undef HEAP | 2546 #undef HEAP |
| 2537 | 2547 |
| 2538 #endif // V8_HEAP_H_ | 2548 #endif // V8_HEAP_H_ |
| OLD | NEW |