OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // This is forked from Dart revision df52deea9f25690eb8b66c5995da92b70f7ac1fe | 5 // This is forked from Dart revision df52deea9f25690eb8b66c5995da92b70f7ac1fe |
6 // Please update the (git) revision if we merge changes from Dart. | 6 // Please update the (git) revision if we merge changes from Dart. |
7 // https://code.google.com/p/dart/wiki/GettingTheSource | 7 // https://code.google.com/p/dart/wiki/GettingTheSource |
8 | 8 |
9 #ifndef VM_ASSEMBLER_ARM_H_ | 9 #ifndef VM_ASSEMBLER_ARM_H_ |
10 #define VM_ASSEMBLER_ARM_H_ | 10 #define VM_ASSEMBLER_ARM_H_ |
(...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 void vnegd(DRegister dd, DRegister dm, Condition cond = AL); | 720 void vnegd(DRegister dd, DRegister dm, Condition cond = AL); |
721 void vnegqs(QRegister qd, QRegister qm); | 721 void vnegqs(QRegister qd, QRegister qm); |
722 void vsqrts(SRegister sd, SRegister sm, Condition cond = AL); | 722 void vsqrts(SRegister sd, SRegister sm, Condition cond = AL); |
723 void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL); | 723 void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL); |
724 | 724 |
725 #if 0 | 725 #if 0 |
726 // Moved to ARM32::AssemblerARM32::vcvtsd | 726 // Moved to ARM32::AssemblerARM32::vcvtsd |
727 void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL); | 727 void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL); |
728 // Moved to ARM32::AssemblerARM32:vcvtds | 728 // Moved to ARM32::AssemblerARM32:vcvtds |
729 void vcvtds(DRegister dd, SRegister sm, Condition cond = AL); | 729 void vcvtds(DRegister dd, SRegister sm, Condition cond = AL); |
| 730 // Moved to ARM32::AssemblerARM32::vcvtis() |
| 731 void vcvtis(SRegister sd, SRegister sm, Condition cond = AL); |
730 #endif | 732 #endif |
731 void vcvtis(SRegister sd, SRegister sm, Condition cond = AL); | |
732 void vcvtid(SRegister sd, DRegister dm, Condition cond = AL); | 733 void vcvtid(SRegister sd, DRegister dm, Condition cond = AL); |
733 void vcvtsi(SRegister sd, SRegister sm, Condition cond = AL); | 734 void vcvtsi(SRegister sd, SRegister sm, Condition cond = AL); |
734 void vcvtdi(DRegister dd, SRegister sm, Condition cond = AL); | 735 void vcvtdi(DRegister dd, SRegister sm, Condition cond = AL); |
735 void vcvtus(SRegister sd, SRegister sm, Condition cond = AL); | 736 void vcvtus(SRegister sd, SRegister sm, Condition cond = AL); |
736 void vcvtud(SRegister sd, DRegister dm, Condition cond = AL); | 737 void vcvtud(SRegister sd, DRegister dm, Condition cond = AL); |
737 void vcvtsu(SRegister sd, SRegister sm, Condition cond = AL); | 738 void vcvtsu(SRegister sd, SRegister sm, Condition cond = AL); |
738 void vcvtdu(DRegister dd, SRegister sm, Condition cond = AL); | 739 void vcvtdu(DRegister dd, SRegister sm, Condition cond = AL); |
739 | 740 |
740 #if 0 | 741 #if 0 |
741 // Moved to ARM23::AssemblerARM32::vcmps(). | 742 // Moved to ARM23::AssemblerARM32::vcmps(). |
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1368 // ARM32::AssemblerARM::veord() | 1369 // ARM32::AssemblerARM::veord() |
1369 #endif | 1370 #endif |
1370 | 1371 |
1371 DISALLOW_ALLOCATION(); | 1372 DISALLOW_ALLOCATION(); |
1372 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1373 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1373 }; | 1374 }; |
1374 | 1375 |
1375 } // namespace dart | 1376 } // namespace dart |
1376 | 1377 |
1377 #endif // VM_ASSEMBLER_ARM_H_ | 1378 #endif // VM_ASSEMBLER_ARM_H_ |
OLD | NEW |