| 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 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 void vnegd(DRegister dd, DRegister dm, Condition cond = AL); | 712 void vnegd(DRegister dd, DRegister dm, Condition cond = AL); |
| 713 void vnegqs(QRegister qd, QRegister qm); | 713 void vnegqs(QRegister qd, QRegister qm); |
| 714 void vsqrts(SRegister sd, SRegister sm, Condition cond = AL); | 714 void vsqrts(SRegister sd, SRegister sm, Condition cond = AL); |
| 715 void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL); | 715 void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL); |
| 716 | 716 |
| 717 #if 0 | 717 #if 0 |
| 718 // Moved to ARM32::AssemblerARM32::vcvtsd | 718 // Moved to ARM32::AssemblerARM32::vcvtsd |
| 719 void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL); | 719 void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL); |
| 720 // Moved to ARM32::AssemblerARM32:vcvtds | 720 // Moved to ARM32::AssemblerARM32:vcvtds |
| 721 void vcvtds(DRegister dd, SRegister sm, Condition cond = AL); | 721 void vcvtds(DRegister dd, SRegister sm, Condition cond = AL); |
| 722 // Moved to ARM32::AssemblerARM32::vcvtis() |
| 723 void vcvtis(SRegister sd, SRegister sm, Condition cond = AL); |
| 722 #endif | 724 #endif |
| 723 void vcvtis(SRegister sd, SRegister sm, Condition cond = AL); | |
| 724 void vcvtid(SRegister sd, DRegister dm, Condition cond = AL); | 725 void vcvtid(SRegister sd, DRegister dm, Condition cond = AL); |
| 725 void vcvtsi(SRegister sd, SRegister sm, Condition cond = AL); | 726 void vcvtsi(SRegister sd, SRegister sm, Condition cond = AL); |
| 726 void vcvtdi(DRegister dd, SRegister sm, Condition cond = AL); | 727 void vcvtdi(DRegister dd, SRegister sm, Condition cond = AL); |
| 727 void vcvtus(SRegister sd, SRegister sm, Condition cond = AL); | 728 void vcvtus(SRegister sd, SRegister sm, Condition cond = AL); |
| 728 void vcvtud(SRegister sd, DRegister dm, Condition cond = AL); | 729 void vcvtud(SRegister sd, DRegister dm, Condition cond = AL); |
| 729 void vcvtsu(SRegister sd, SRegister sm, Condition cond = AL); | 730 void vcvtsu(SRegister sd, SRegister sm, Condition cond = AL); |
| 730 void vcvtdu(DRegister dd, SRegister sm, Condition cond = AL); | 731 void vcvtdu(DRegister dd, SRegister sm, Condition cond = AL); |
| 731 | 732 |
| 732 #if 0 | 733 #if 0 |
| 733 // Moved to ARM23::AssemblerARM32::vcmps(). | 734 // Moved to ARM23::AssemblerARM32::vcmps(). |
| (...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1359 // ARM32::AssemblerARM:rbit(). | 1360 // ARM32::AssemblerARM:rbit(). |
| 1360 #endif | 1361 #endif |
| 1361 | 1362 |
| 1362 DISALLOW_ALLOCATION(); | 1363 DISALLOW_ALLOCATION(); |
| 1363 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1364 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1364 }; | 1365 }; |
| 1365 | 1366 |
| 1366 } // namespace dart | 1367 } // namespace dart |
| 1367 | 1368 |
| 1368 #endif // VM_ASSEMBLER_ARM_H_ | 1369 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |