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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 void muls(Register rd, Register rn, Register rm, Condition cond = AL); | 523 void muls(Register rd, Register rn, Register rm, Condition cond = AL); |
524 | 524 |
525 // Moved to ARM32::AssemblerARM32::mla() | 525 // Moved to ARM32::AssemblerARM32::mla() |
526 void mla(Register rd, Register rn, Register rm, Register ra, | 526 void mla(Register rd, Register rn, Register rm, Register ra, |
527 Condition cond = AL); | 527 Condition cond = AL); |
528 #endif | 528 #endif |
529 void mls(Register rd, Register rn, Register rm, Register ra, | 529 void mls(Register rd, Register rn, Register rm, Register ra, |
530 Condition cond = AL); | 530 Condition cond = AL); |
531 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm, | 531 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm, |
532 Condition cond = AL); | 532 Condition cond = AL); |
| 533 #if 0 |
| 534 // Moved to ARM32::AssemblerARM32::umull(); |
533 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, | 535 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, |
534 Condition cond = AL); | 536 Condition cond = AL); |
| 537 #endif |
535 void smlal(Register rd_lo, Register rd_hi, Register rn, Register rm, | 538 void smlal(Register rd_lo, Register rd_hi, Register rn, Register rm, |
536 Condition cond = AL); | 539 Condition cond = AL); |
537 void umlal(Register rd_lo, Register rd_hi, Register rn, Register rm, | 540 void umlal(Register rd_lo, Register rd_hi, Register rn, Register rm, |
538 Condition cond = AL); | 541 Condition cond = AL); |
539 | 542 |
540 // Emulation of this instruction uses IP and the condition codes. Therefore, | 543 // Emulation of this instruction uses IP and the condition codes. Therefore, |
541 // none of the registers can be IP, and the instruction can only be used | 544 // none of the registers can be IP, and the instruction can only be used |
542 // unconditionally. | 545 // unconditionally. |
543 void umaal(Register rd_lo, Register rd_hi, Register rn, Register rm); | 546 void umaal(Register rd_lo, Register rd_hi, Register rn, Register rm); |
544 | 547 |
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1294 Register new_value, | 1297 Register new_value, |
1295 FieldContent old_content); | 1298 FieldContent old_content); |
1296 | 1299 |
1297 DISALLOW_ALLOCATION(); | 1300 DISALLOW_ALLOCATION(); |
1298 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1301 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1299 }; | 1302 }; |
1300 | 1303 |
1301 } // namespace dart | 1304 } // namespace dart |
1302 | 1305 |
1303 #endif // VM_ASSEMBLER_ARM_H_ | 1306 #endif // VM_ASSEMBLER_ARM_H_ |
OLD | NEW |