| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <iomanip> | 5 #include <iomanip> |
| 6 | 6 |
| 7 #include "src/ast/ast-types.h" | 7 #include "src/ast/ast-types.h" |
| 8 | 8 |
| 9 #include "src/handles-inl.h" | 9 #include "src/handles-inl.h" |
| 10 #include "src/ostreams.h" | 10 #include "src/ostreams.h" |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 case TYPE_SWITCH_INFO_TYPE: | 268 case TYPE_SWITCH_INFO_TYPE: |
| 269 case ALLOCATION_MEMENTO_TYPE: | 269 case ALLOCATION_MEMENTO_TYPE: |
| 270 case TYPE_FEEDBACK_INFO_TYPE: | 270 case TYPE_FEEDBACK_INFO_TYPE: |
| 271 case ALIASED_ARGUMENTS_ENTRY_TYPE: | 271 case ALIASED_ARGUMENTS_ENTRY_TYPE: |
| 272 case BOX_TYPE: | 272 case BOX_TYPE: |
| 273 case DEBUG_INFO_TYPE: | 273 case DEBUG_INFO_TYPE: |
| 274 case BREAK_POINT_INFO_TYPE: | 274 case BREAK_POINT_INFO_TYPE: |
| 275 case CELL_TYPE: | 275 case CELL_TYPE: |
| 276 case WEAK_CELL_TYPE: | 276 case WEAK_CELL_TYPE: |
| 277 case PROTOTYPE_INFO_TYPE: | 277 case PROTOTYPE_INFO_TYPE: |
| 278 case TUPLE3_TYPE: |
| 278 case CONTEXT_EXTENSION_TYPE: | 279 case CONTEXT_EXTENSION_TYPE: |
| 279 UNREACHABLE(); | 280 UNREACHABLE(); |
| 280 return kNone; | 281 return kNone; |
| 281 } | 282 } |
| 282 UNREACHABLE(); | 283 UNREACHABLE(); |
| 283 return kNone; | 284 return kNone; |
| 284 } | 285 } |
| 285 | 286 |
| 286 AstType::bitset AstBitsetType::Lub(i::Object* value) { | 287 AstType::bitset AstBitsetType::Lub(i::Object* value) { |
| 287 DisallowHeapAllocation no_allocation; | 288 DisallowHeapAllocation no_allocation; |
| (...skipping 974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1262 #undef CONSTRUCT_SIMD_TYPE | 1263 #undef CONSTRUCT_SIMD_TYPE |
| 1263 | 1264 |
| 1264 // ----------------------------------------------------------------------------- | 1265 // ----------------------------------------------------------------------------- |
| 1265 // Instantiations. | 1266 // Instantiations. |
| 1266 | 1267 |
| 1267 template class AstType::Iterator<i::Map>; | 1268 template class AstType::Iterator<i::Map>; |
| 1268 template class AstType::Iterator<i::Object>; | 1269 template class AstType::Iterator<i::Object>; |
| 1269 | 1270 |
| 1270 } // namespace internal | 1271 } // namespace internal |
| 1271 } // namespace v8 | 1272 } // namespace v8 |
| OLD | NEW |