| 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 void mla(Register rd, Register rn, Register rm, Register ra, | 395 void mla(Register rd, Register rn, Register rm, Register ra, |
| 396 Condition cond = AL); | 396 Condition cond = AL); |
| 397 void mls(Register rd, Register rn, Register rm, Register ra, | 397 void mls(Register rd, Register rn, Register rm, Register ra, |
| 398 Condition cond = AL); | 398 Condition cond = AL); |
| 399 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm, | 399 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 400 Condition cond = AL); | 400 Condition cond = AL); |
| 401 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, | 401 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 402 Condition cond = AL); | 402 Condition cond = AL); |
| 403 void smlal(Register rd_lo, Register rd_hi, Register rn, Register rm, | 403 void smlal(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 404 Condition cond = AL); | 404 Condition cond = AL); |
| 405 void umlal(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 406 Condition cond = AL); |
| 405 | 407 |
| 406 // Division instructions. | 408 // Division instructions. |
| 407 void sdiv(Register rd, Register rn, Register rm, Condition cond = AL); | 409 void sdiv(Register rd, Register rn, Register rm, Condition cond = AL); |
| 408 void udiv(Register rd, Register rn, Register rm, Condition cond = AL); | 410 void udiv(Register rd, Register rn, Register rm, Condition cond = AL); |
| 409 | 411 |
| 410 // Load/store instructions. | 412 // Load/store instructions. |
| 411 void ldr(Register rd, Address ad, Condition cond = AL); | 413 void ldr(Register rd, Address ad, Condition cond = AL); |
| 412 void str(Register rd, Address ad, Condition cond = AL); | 414 void str(Register rd, Address ad, Condition cond = AL); |
| 413 | 415 |
| 414 void ldrb(Register rd, Address ad, Condition cond = AL); | 416 void ldrb(Register rd, Address ad, Condition cond = AL); |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 Register value, | 801 Register value, |
| 800 Label* no_update); | 802 Label* no_update); |
| 801 | 803 |
| 802 DISALLOW_ALLOCATION(); | 804 DISALLOW_ALLOCATION(); |
| 803 DISALLOW_COPY_AND_ASSIGN(Assembler); | 805 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 804 }; | 806 }; |
| 805 | 807 |
| 806 } // namespace dart | 808 } // namespace dart |
| 807 | 809 |
| 808 #endif // VM_ASSEMBLER_ARM_H_ | 810 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |