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 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
962 // Moved to ARM32::AssemblerARM32::lsl() | 962 // Moved to ARM32::AssemblerARM32::lsl() |
963 void Lsl(Register rd, Register rm, const Operand& shift_imm, | 963 void Lsl(Register rd, Register rm, const Operand& shift_imm, |
964 Condition cond = AL); | 964 Condition cond = AL); |
965 // Moved to ARM32::AssemblerARM32::lsl() | 965 // Moved to ARM32::AssemblerARM32::lsl() |
966 void Lsl(Register rd, Register rm, Register rs, Condition cond = AL); | 966 void Lsl(Register rd, Register rm, Register rs, Condition cond = AL); |
967 // Moved to ARM32::AssemblerARM32::lsr() | 967 // Moved to ARM32::AssemblerARM32::lsr() |
968 void Lsr(Register rd, Register rm, const Operand& shift_imm, | 968 void Lsr(Register rd, Register rm, const Operand& shift_imm, |
969 Condition cond = AL); | 969 Condition cond = AL); |
970 // Moved to ARM32::AssemblerARM32::lsr() | 970 // Moved to ARM32::AssemblerARM32::lsr() |
971 void Lsr(Register rd, Register rm, Register rs, Condition cond = AL); | 971 void Lsr(Register rd, Register rm, Register rs, Condition cond = AL); |
972 #endif | 972 // Moved to ARM32::AssemblerARM32::asr() |
973 void Asr(Register rd, Register rm, const Operand& shift_imm, | 973 void Asr(Register rd, Register rm, const Operand& shift_imm, |
974 Condition cond = AL); | 974 Condition cond = AL); |
| 975 // Moved to ARM32::AssemblerARM32::asr() |
975 void Asr(Register rd, Register rm, Register rs, Condition cond = AL); | 976 void Asr(Register rd, Register rm, Register rs, Condition cond = AL); |
| 977 #endif |
976 void Asrs(Register rd, Register rm, const Operand& shift_imm, | 978 void Asrs(Register rd, Register rm, const Operand& shift_imm, |
977 Condition cond = AL); | 979 Condition cond = AL); |
978 void Ror(Register rd, Register rm, const Operand& shift_imm, | 980 void Ror(Register rd, Register rm, const Operand& shift_imm, |
979 Condition cond = AL); | 981 Condition cond = AL); |
980 void Ror(Register rd, Register rm, Register rs, Condition cond = AL); | 982 void Ror(Register rd, Register rm, Register rs, Condition cond = AL); |
981 void Rrx(Register rd, Register rm, Condition cond = AL); | 983 void Rrx(Register rd, Register rm, Condition cond = AL); |
982 | 984 |
983 // Fill rd with the sign of rm. | 985 // Fill rd with the sign of rm. |
984 void SignFill(Register rd, Register rm, Condition cond = AL); | 986 void SignFill(Register rd, Register rm, Condition cond = AL); |
985 | 987 |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1318 // ARM32::AssemblerARM::uxt() (uxtb and uxth). | 1320 // ARM32::AssemblerARM::uxt() (uxtb and uxth). |
1319 #endif | 1321 #endif |
1320 | 1322 |
1321 DISALLOW_ALLOCATION(); | 1323 DISALLOW_ALLOCATION(); |
1322 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1324 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1323 }; | 1325 }; |
1324 | 1326 |
1325 } // namespace dart | 1327 } // namespace dart |
1326 | 1328 |
1327 #endif // VM_ASSEMBLER_ARM_H_ | 1329 #endif // VM_ASSEMBLER_ARM_H_ |
OLD | NEW |