| 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 void mls(Register rd, Register rn, Register rm, Register ra, | 415 void mls(Register rd, Register rn, Register rm, Register ra, |
| 416 Condition cond = AL); | 416 Condition cond = AL); |
| 417 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm, | 417 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 418 Condition cond = AL); | 418 Condition cond = AL); |
| 419 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, | 419 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 420 Condition cond = AL); | 420 Condition cond = AL); |
| 421 void smlal(Register rd_lo, Register rd_hi, Register rn, Register rm, | 421 void smlal(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 422 Condition cond = AL); | 422 Condition cond = AL); |
| 423 void umlal(Register rd_lo, Register rd_hi, Register rn, Register rm, | 423 void umlal(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 424 Condition cond = AL); | 424 Condition cond = AL); |
| 425 void umaal(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 426 Condition cond = AL); |
| 425 | 427 |
| 426 // Division instructions. | 428 // Division instructions. |
| 427 void sdiv(Register rd, Register rn, Register rm, Condition cond = AL); | 429 void sdiv(Register rd, Register rn, Register rm, Condition cond = AL); |
| 428 void udiv(Register rd, Register rn, Register rm, Condition cond = AL); | 430 void udiv(Register rd, Register rn, Register rm, Condition cond = AL); |
| 429 | 431 |
| 430 // Load/store instructions. | 432 // Load/store instructions. |
| 431 void ldr(Register rd, Address ad, Condition cond = AL); | 433 void ldr(Register rd, Address ad, Condition cond = AL); |
| 432 void str(Register rd, Address ad, Condition cond = AL); | 434 void str(Register rd, Address ad, Condition cond = AL); |
| 433 | 435 |
| 434 void ldrb(Register rd, Address ad, Condition cond = AL); | 436 void ldrb(Register rd, Address ad, Condition cond = AL); |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1021 Register value, | 1023 Register value, |
| 1022 Label* no_update); | 1024 Label* no_update); |
| 1023 | 1025 |
| 1024 DISALLOW_ALLOCATION(); | 1026 DISALLOW_ALLOCATION(); |
| 1025 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1027 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1026 }; | 1028 }; |
| 1027 | 1029 |
| 1028 } // namespace dart | 1030 } // namespace dart |
| 1029 | 1031 |
| 1030 #endif // VM_ASSEMBLER_ARM_H_ | 1032 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |