Chromium Code Reviews| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 344 | 344 |
| 345 void rsb(Register rd, Register rn, ShifterOperand so, Condition cond = AL); | 345 void rsb(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| 346 void rsbs(Register rd, Register rn, ShifterOperand so, Condition cond = AL); | 346 void rsbs(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| 347 | 347 |
| 348 void add(Register rd, Register rn, ShifterOperand so, Condition cond = AL); | 348 void add(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| 349 | 349 |
| 350 void adds(Register rd, Register rn, ShifterOperand so, Condition cond = AL); | 350 void adds(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| 351 | 351 |
| 352 void adc(Register rd, Register rn, ShifterOperand so, Condition cond = AL); | 352 void adc(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| 353 | 353 |
| 354 void adcs(Register rd, Register rn, ShifterOperand so, Condition cond = AL); | |
| 355 | |
| 356 // Fill rd with the sign of rm. | |
| 357 void SignFill(Register rd, Register rm); | |
|
zra
2014/05/14 18:27:41
Move down with other macros.
Cutch
2014/05/15 18:26:08
Done.
| |
| 358 | |
| 354 void sbc(Register rd, Register rn, ShifterOperand so, Condition cond = AL); | 359 void sbc(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| 355 | 360 |
| 361 void sbcs(Register rd, Register rn, ShifterOperand so, Condition cond = AL); | |
| 362 | |
| 356 void rsc(Register rd, Register rn, ShifterOperand so, Condition cond = AL); | 363 void rsc(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| 357 | 364 |
| 358 void tst(Register rn, ShifterOperand so, Condition cond = AL); | 365 void tst(Register rn, ShifterOperand so, Condition cond = AL); |
| 359 | 366 |
| 360 void teq(Register rn, ShifterOperand so, Condition cond = AL); | 367 void teq(Register rn, ShifterOperand so, Condition cond = AL); |
| 361 | 368 |
| 362 void cmp(Register rn, ShifterOperand so, Condition cond = AL); | 369 void cmp(Register rn, ShifterOperand so, Condition cond = AL); |
| 363 | 370 |
| 364 void cmn(Register rn, ShifterOperand so, Condition cond = AL); | 371 void cmn(Register rn, ShifterOperand so, Condition cond = AL); |
| 365 | 372 |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 905 Register value, | 912 Register value, |
| 906 Label* no_update); | 913 Label* no_update); |
| 907 | 914 |
| 908 DISALLOW_ALLOCATION(); | 915 DISALLOW_ALLOCATION(); |
| 909 DISALLOW_COPY_AND_ASSIGN(Assembler); | 916 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 910 }; | 917 }; |
| 911 | 918 |
| 912 } // namespace dart | 919 } // namespace dart |
| 913 | 920 |
| 914 #endif // VM_ASSEMBLER_ARM_H_ | 921 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |