| 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 void movw(Register rd, uint16_t imm16, Condition cond = AL); | 386 void movw(Register rd, uint16_t imm16, Condition cond = AL); |
| 387 void movt(Register rd, uint16_t imm16, Condition cond = AL); | 387 void movt(Register rd, uint16_t imm16, Condition cond = AL); |
| 388 | 388 |
| 389 // Multiply instructions. | 389 // Multiply instructions. |
| 390 void mul(Register rd, Register rn, Register rm, Condition cond = AL); | 390 void mul(Register rd, Register rn, Register rm, Condition cond = AL); |
| 391 void muls(Register rd, Register rn, Register rm, Condition cond = AL); | 391 void muls(Register rd, Register rn, Register rm, Condition cond = AL); |
| 392 void mla(Register rd, Register rn, Register rm, Register ra, | 392 void mla(Register rd, Register rn, Register rm, Register ra, |
| 393 Condition cond = AL); | 393 Condition cond = AL); |
| 394 void mls(Register rd, Register rn, Register rm, Register ra, | 394 void mls(Register rd, Register rn, Register rm, Register ra, |
| 395 Condition cond = AL); | 395 Condition cond = AL); |
| 396 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 397 Condition cond = AL); |
| 396 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, | 398 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 397 Condition cond = AL); | 399 Condition cond = AL); |
| 398 | 400 |
| 399 // Division instructions. | 401 // Division instructions. |
| 400 void sdiv(Register rd, Register rn, Register rm, Condition cond = AL); | 402 void sdiv(Register rd, Register rn, Register rm, Condition cond = AL); |
| 401 void udiv(Register rd, Register rn, Register rm, Condition cond = AL); | 403 void udiv(Register rd, Register rn, Register rm, Condition cond = AL); |
| 402 | 404 |
| 403 // Load/store instructions. | 405 // Load/store instructions. |
| 404 void ldr(Register rd, Address ad, Condition cond = AL); | 406 void ldr(Register rd, Address ad, Condition cond = AL); |
| 405 void str(Register rd, Address ad, Condition cond = AL); | 407 void str(Register rd, Address ad, Condition cond = AL); |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 Register value, | 795 Register value, |
| 794 Label* no_update); | 796 Label* no_update); |
| 795 | 797 |
| 796 DISALLOW_ALLOCATION(); | 798 DISALLOW_ALLOCATION(); |
| 797 DISALLOW_COPY_AND_ASSIGN(Assembler); | 799 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 798 }; | 800 }; |
| 799 | 801 |
| 800 } // namespace dart | 802 } // namespace dart |
| 801 | 803 |
| 802 #endif // VM_ASSEMBLER_ARM_H_ | 804 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |