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 "src/compiler/machine-operator.h" | 5 #include "src/compiler/machine-operator.h" |
6 | 6 |
7 #include "src/base/lazy-instance.h" | 7 #include "src/base/lazy-instance.h" |
8 #include "src/compiler/opcodes.h" | 8 #include "src/compiler/opcodes.h" |
9 #include "src/compiler/operator.h" | 9 #include "src/compiler/operator.h" |
10 | 10 |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 V(Simd128) \ | 415 V(Simd128) \ |
416 V(Int8) \ | 416 V(Int8) \ |
417 V(Uint8) \ | 417 V(Uint8) \ |
418 V(Int16) \ | 418 V(Int16) \ |
419 V(Uint16) \ | 419 V(Uint16) \ |
420 V(Int32) \ | 420 V(Int32) \ |
421 V(Uint32) \ | 421 V(Uint32) \ |
422 V(Int64) \ | 422 V(Int64) \ |
423 V(Uint64) \ | 423 V(Uint64) \ |
424 V(Pointer) \ | 424 V(Pointer) \ |
| 425 V(TaggedSigned) \ |
| 426 V(TaggedPointer) \ |
425 V(AnyTagged) | 427 V(AnyTagged) |
426 | 428 |
427 #define MACHINE_REPRESENTATION_LIST(V) \ | 429 #define MACHINE_REPRESENTATION_LIST(V) \ |
428 V(kFloat32) \ | 430 V(kFloat32) \ |
429 V(kFloat64) \ | 431 V(kFloat64) \ |
430 V(kSimd128) \ | 432 V(kSimd128) \ |
431 V(kWord8) \ | 433 V(kWord8) \ |
432 V(kWord16) \ | 434 V(kWord16) \ |
433 V(kWord32) \ | 435 V(kWord32) \ |
434 V(kWord64) \ | 436 V(kWord64) \ |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 } | 792 } |
791 ATOMIC_REPRESENTATION_LIST(STORE) | 793 ATOMIC_REPRESENTATION_LIST(STORE) |
792 #undef STORE | 794 #undef STORE |
793 UNREACHABLE(); | 795 UNREACHABLE(); |
794 return nullptr; | 796 return nullptr; |
795 } | 797 } |
796 | 798 |
797 } // namespace compiler | 799 } // namespace compiler |
798 } // namespace internal | 800 } // namespace internal |
799 } // namespace v8 | 801 } // namespace v8 |
OLD | NEW |