| 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 V(AnyTagged) | 431 V(AnyTagged) |
| 432 | 432 |
| 433 #define MACHINE_REPRESENTATION_LIST(V) \ | 433 #define MACHINE_REPRESENTATION_LIST(V) \ |
| 434 V(kFloat32) \ | 434 V(kFloat32) \ |
| 435 V(kFloat64) \ | 435 V(kFloat64) \ |
| 436 V(kSimd128) \ | 436 V(kSimd128) \ |
| 437 V(kWord8) \ | 437 V(kWord8) \ |
| 438 V(kWord16) \ | 438 V(kWord16) \ |
| 439 V(kWord32) \ | 439 V(kWord32) \ |
| 440 V(kWord64) \ | 440 V(kWord64) \ |
| 441 V(kTaggedSigned) \ |
| 442 V(kTaggedPointer) \ |
| 441 V(kTagged) | 443 V(kTagged) |
| 442 | 444 |
| 443 #define ATOMIC_TYPE_LIST(V) \ | 445 #define ATOMIC_TYPE_LIST(V) \ |
| 444 V(Int8) \ | 446 V(Int8) \ |
| 445 V(Uint8) \ | 447 V(Uint8) \ |
| 446 V(Int16) \ | 448 V(Int16) \ |
| 447 V(Uint16) \ | 449 V(Uint16) \ |
| 448 V(Int32) \ | 450 V(Int32) \ |
| 449 V(Uint32) | 451 V(Uint32) |
| 450 | 452 |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 } | 796 } |
| 795 ATOMIC_REPRESENTATION_LIST(STORE) | 797 ATOMIC_REPRESENTATION_LIST(STORE) |
| 796 #undef STORE | 798 #undef STORE |
| 797 UNREACHABLE(); | 799 UNREACHABLE(); |
| 798 return nullptr; | 800 return nullptr; |
| 799 } | 801 } |
| 800 | 802 |
| 801 } // namespace compiler | 803 } // namespace compiler |
| 802 } // namespace internal | 804 } // namespace internal |
| 803 } // namespace v8 | 805 } // namespace v8 |
| OLD | NEW |