| 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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 850 | 850 |
| 851 void EmitSIMDqqq(int32_t opcode, OperandSize sz, | 851 void EmitSIMDqqq(int32_t opcode, OperandSize sz, |
| 852 QRegister qd, QRegister qn, QRegister qm); | 852 QRegister qd, QRegister qn, QRegister qm); |
| 853 | 853 |
| 854 void EmitSIMDddd(int32_t opcode, OperandSize sz, | 854 void EmitSIMDddd(int32_t opcode, OperandSize sz, |
| 855 DRegister dd, DRegister dn, DRegister dm); | 855 DRegister dd, DRegister dn, DRegister dm); |
| 856 | 856 |
| 857 void EmitFarBranch(Condition cond, int32_t offset, bool link); | 857 void EmitFarBranch(Condition cond, int32_t offset, bool link); |
| 858 void EmitBranch(Condition cond, Label* label, bool link); | 858 void EmitBranch(Condition cond, Label* label, bool link); |
| 859 int32_t EncodeBranchOffset(int32_t offset, int32_t inst); | 859 int32_t EncodeBranchOffset(int32_t offset, int32_t inst); |
| 860 static int DecodeBranchOffset(int32_t inst); | 860 static int32_t DecodeBranchOffset(int32_t inst); |
| 861 int32_t EncodeTstOffset(int32_t offset, int32_t inst); | 861 int32_t EncodeTstOffset(int32_t offset, int32_t inst); |
| 862 int DecodeTstOffset(int32_t inst); | 862 int32_t DecodeTstOffset(int32_t inst); |
| 863 | 863 |
| 864 void StoreIntoObjectFilter(Register object, Register value, Label* no_update); | 864 void StoreIntoObjectFilter(Register object, Register value, Label* no_update); |
| 865 | 865 |
| 866 // Shorter filtering sequence that assumes that value is not a smi. | 866 // Shorter filtering sequence that assumes that value is not a smi. |
| 867 void StoreIntoObjectFilterNoSmi(Register object, | 867 void StoreIntoObjectFilterNoSmi(Register object, |
| 868 Register value, | 868 Register value, |
| 869 Label* no_update); | 869 Label* no_update); |
| 870 | 870 |
| 871 DISALLOW_ALLOCATION(); | 871 DISALLOW_ALLOCATION(); |
| 872 DISALLOW_COPY_AND_ASSIGN(Assembler); | 872 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 873 }; | 873 }; |
| 874 | 874 |
| 875 } // namespace dart | 875 } // namespace dart |
| 876 | 876 |
| 877 #endif // VM_ASSEMBLER_ARM_H_ | 877 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |