| 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 #ifndef VM_ASSEMBLER_ARM_H_ | 5 #ifndef VM_ASSEMBLER_ARM_H_ |
| 6 #define VM_ASSEMBLER_ARM_H_ | 6 #define VM_ASSEMBLER_ARM_H_ |
| 7 | 7 |
| 8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
| 9 #error Do not include assembler_arm.h directly; use assembler.h instead. | 9 #error Do not include assembler_arm.h directly; use assembler.h instead. |
| 10 #endif | 10 #endif |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 void vcvtdi(DRegister dd, SRegister sm, Condition cond = AL); | 551 void vcvtdi(DRegister dd, SRegister sm, Condition cond = AL); |
| 552 void vcvtus(SRegister sd, SRegister sm, Condition cond = AL); | 552 void vcvtus(SRegister sd, SRegister sm, Condition cond = AL); |
| 553 void vcvtud(SRegister sd, DRegister dm, Condition cond = AL); | 553 void vcvtud(SRegister sd, DRegister dm, Condition cond = AL); |
| 554 void vcvtsu(SRegister sd, SRegister sm, Condition cond = AL); | 554 void vcvtsu(SRegister sd, SRegister sm, Condition cond = AL); |
| 555 void vcvtdu(DRegister dd, SRegister sm, Condition cond = AL); | 555 void vcvtdu(DRegister dd, SRegister sm, Condition cond = AL); |
| 556 | 556 |
| 557 void vcmps(SRegister sd, SRegister sm, Condition cond = AL); | 557 void vcmps(SRegister sd, SRegister sm, Condition cond = AL); |
| 558 void vcmpd(DRegister dd, DRegister dm, Condition cond = AL); | 558 void vcmpd(DRegister dd, DRegister dm, Condition cond = AL); |
| 559 void vcmpsz(SRegister sd, Condition cond = AL); | 559 void vcmpsz(SRegister sd, Condition cond = AL); |
| 560 void vcmpdz(DRegister dd, Condition cond = AL); | 560 void vcmpdz(DRegister dd, Condition cond = AL); |
| 561 void vmstat(Condition cond = AL); // VMRS APSR_nzcv, FPSCR | 561 void vmrs(Register rd, Condition cond = AL); |
| 562 void vmstat(Condition cond = AL); |
| 562 | 563 |
| 563 // Duplicates the operand of size sz at index idx from dm to all elements of | 564 // Duplicates the operand of size sz at index idx from dm to all elements of |
| 564 // qd. This is a special case of vtbl. | 565 // qd. This is a special case of vtbl. |
| 565 void vdup(OperandSize sz, QRegister qd, DRegister dm, int idx); | 566 void vdup(OperandSize sz, QRegister qd, DRegister dm, int idx); |
| 566 | 567 |
| 567 // Each byte of dm is an index into the table of bytes formed by concatenating | 568 // Each byte of dm is an index into the table of bytes formed by concatenating |
| 568 // a list of 'length' registers starting with dn. The result is placed in dd. | 569 // a list of 'length' registers starting with dn. The result is placed in dd. |
| 569 void vtbl(DRegister dd, DRegister dn, int length, DRegister dm); | 570 void vtbl(DRegister dd, DRegister dn, int length, DRegister dm); |
| 570 | 571 |
| 571 // The words of qd and qm are interleaved with the low words of the result | 572 // The words of qd and qm are interleaved with the low words of the result |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1023 Register value, | 1024 Register value, |
| 1024 Label* no_update); | 1025 Label* no_update); |
| 1025 | 1026 |
| 1026 DISALLOW_ALLOCATION(); | 1027 DISALLOW_ALLOCATION(); |
| 1027 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1028 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1028 }; | 1029 }; |
| 1029 | 1030 |
| 1030 } // namespace dart | 1031 } // namespace dart |
| 1031 | 1032 |
| 1032 #endif // VM_ASSEMBLER_ARM_H_ | 1033 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |