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/types.h" | 7 #include "src/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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 case TYPE_SWITCH_INFO_TYPE: | 271 case TYPE_SWITCH_INFO_TYPE: |
272 case ALLOCATION_MEMENTO_TYPE: | 272 case ALLOCATION_MEMENTO_TYPE: |
273 case TYPE_FEEDBACK_INFO_TYPE: | 273 case TYPE_FEEDBACK_INFO_TYPE: |
274 case ALIASED_ARGUMENTS_ENTRY_TYPE: | 274 case ALIASED_ARGUMENTS_ENTRY_TYPE: |
275 case BOX_TYPE: | 275 case BOX_TYPE: |
276 case DEBUG_INFO_TYPE: | 276 case DEBUG_INFO_TYPE: |
277 case BREAK_POINT_INFO_TYPE: | 277 case BREAK_POINT_INFO_TYPE: |
278 case CELL_TYPE: | 278 case CELL_TYPE: |
279 case WEAK_CELL_TYPE: | 279 case WEAK_CELL_TYPE: |
280 case PROTOTYPE_INFO_TYPE: | 280 case PROTOTYPE_INFO_TYPE: |
281 case SLOPPY_BLOCK_WITH_EVAL_CONTEXT_EXTENSION_TYPE: | 281 case CONTEXT_EXTENSION_TYPE: |
282 UNREACHABLE(); | 282 UNREACHABLE(); |
283 return kNone; | 283 return kNone; |
284 } | 284 } |
285 UNREACHABLE(); | 285 UNREACHABLE(); |
286 return kNone; | 286 return kNone; |
287 } | 287 } |
288 | 288 |
289 Type::bitset BitsetType::Lub(i::Object* value) { | 289 Type::bitset BitsetType::Lub(i::Object* value) { |
290 DisallowHeapAllocation no_allocation; | 290 DisallowHeapAllocation no_allocation; |
291 if (value->IsNumber()) { | 291 if (value->IsNumber()) { |
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1270 #undef CONSTRUCT_SIMD_TYPE | 1270 #undef CONSTRUCT_SIMD_TYPE |
1271 | 1271 |
1272 // ----------------------------------------------------------------------------- | 1272 // ----------------------------------------------------------------------------- |
1273 // Instantiations. | 1273 // Instantiations. |
1274 | 1274 |
1275 template class Type::Iterator<i::Map>; | 1275 template class Type::Iterator<i::Map>; |
1276 template class Type::Iterator<i::Object>; | 1276 template class Type::Iterator<i::Object>; |
1277 | 1277 |
1278 } // namespace internal | 1278 } // namespace internal |
1279 } // namespace v8 | 1279 } // namespace v8 |
OLD | NEW |