| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_CONSTANTS_ARM64_H_ | 5 #ifndef VM_CONSTANTS_ARM64_H_ |
| 6 #define VM_CONSTANTS_ARM64_H_ | 6 #define VM_CONSTANTS_ARM64_H_ |
| 7 | 7 |
| 8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
| 9 | 9 |
| 10 namespace dart { | 10 namespace dart { |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 }; | 555 }; |
| 556 | 556 |
| 557 // C3.6.30 | 557 // C3.6.30 |
| 558 enum FPIntCvtOp { | 558 enum FPIntCvtOp { |
| 559 FPIntCvtMask = 0x5f20fc00, | 559 FPIntCvtMask = 0x5f20fc00, |
| 560 FPIntCvtFixed = FPFixed | B21, | 560 FPIntCvtFixed = FPFixed | B21, |
| 561 FMOVRD = FPIntCvtFixed | B31 | B22 | B18 | B17, | 561 FMOVRD = FPIntCvtFixed | B31 | B22 | B18 | B17, |
| 562 FMOVDR = FPIntCvtFixed | B31 | B22 | B18 | B17 | B16, | 562 FMOVDR = FPIntCvtFixed | B31 | B22 | B18 | B17 | B16, |
| 563 FCVTZDS = FPIntCvtFixed | B31 | B22 | B20 | B19, | 563 FCVTZDS = FPIntCvtFixed | B31 | B22 | B20 | B19, |
| 564 SCVTFD = FPIntCvtFixed | B31 | B22 | B17, | 564 SCVTFD = FPIntCvtFixed | B31 | B22 | B17, |
| 565 SCVTFD32 = FPIntCvtFixed | B22 | B17, |
| 565 }; | 566 }; |
| 566 | 567 |
| 567 | 568 |
| 568 #define APPLY_OP_LIST(_V) \ | 569 #define APPLY_OP_LIST(_V) \ |
| 569 _V(DPImmediate) \ | 570 _V(DPImmediate) \ |
| 570 _V(CompareBranch) \ | 571 _V(CompareBranch) \ |
| 571 _V(LoadStore) \ | 572 _V(LoadStore) \ |
| 572 _V(DPRegister) \ | 573 _V(DPRegister) \ |
| 573 _V(DPSimd1) \ | 574 _V(DPSimd1) \ |
| 574 _V(DPSimd2) \ | 575 _V(DPSimd2) \ |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1017 static Instr* At(uword pc) { return reinterpret_cast<Instr*>(pc); } | 1018 static Instr* At(uword pc) { return reinterpret_cast<Instr*>(pc); } |
| 1018 | 1019 |
| 1019 private: | 1020 private: |
| 1020 DISALLOW_ALLOCATION(); | 1021 DISALLOW_ALLOCATION(); |
| 1021 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); | 1022 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); |
| 1022 }; | 1023 }; |
| 1023 | 1024 |
| 1024 } // namespace dart | 1025 } // namespace dart |
| 1025 | 1026 |
| 1026 #endif // VM_CONSTANTS_ARM64_H_ | 1027 #endif // VM_CONSTANTS_ARM64_H_ |
| OLD | NEW |