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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 | 466 |
467 // Moved to ARM32::AssemblerARM32::add() | 467 // Moved to ARM32::AssemblerARM32::add() |
468 void add(Register rd, Register rn, Operand o, Condition cond = AL); | 468 void add(Register rd, Register rn, Operand o, Condition cond = AL); |
469 | 469 |
470 void adds(Register rd, Register rn, Operand o, Condition cond = AL); | 470 void adds(Register rd, Register rn, Operand o, Condition cond = AL); |
471 | 471 |
472 // Moved to ARM32::AssemblerARM32::adc() | 472 // Moved to ARM32::AssemblerARM32::adc() |
473 void adc(Register rd, Register rn, Operand o, Condition cond = AL); | 473 void adc(Register rd, Register rn, Operand o, Condition cond = AL); |
474 | 474 |
475 void adcs(Register rd, Register rn, Operand o, Condition cond = AL); | 475 void adcs(Register rd, Register rn, Operand o, Condition cond = AL); |
476 #endif | |
477 | 476 |
| 477 // Moved to ARM32::AssemblerARM32::sbc() |
478 void sbc(Register rd, Register rn, Operand o, Condition cond = AL); | 478 void sbc(Register rd, Register rn, Operand o, Condition cond = AL); |
479 | 479 |
| 480 // Moved to ARM32::AssemblerARM32::sbc() |
480 void sbcs(Register rd, Register rn, Operand o, Condition cond = AL); | 481 void sbcs(Register rd, Register rn, Operand o, Condition cond = AL); |
481 | 482 |
| 483 // Moved to ARM32::AssemblerARM32::rsc() |
482 void rsc(Register rd, Register rn, Operand o, Condition cond = AL); | 484 void rsc(Register rd, Register rn, Operand o, Condition cond = AL); |
483 | 485 |
484 #if 0 | |
485 // Moved to ARM32::AssemblerARM32::tst(); | 486 // Moved to ARM32::AssemblerARM32::tst(); |
486 void tst(Register rn, Operand o, Condition cond = AL); | 487 void tst(Register rn, Operand o, Condition cond = AL); |
487 #endif | 488 #endif |
488 | 489 |
489 void teq(Register rn, Operand o, Condition cond = AL); | 490 void teq(Register rn, Operand o, Condition cond = AL); |
490 | 491 |
491 #if 0 | 492 #if 0 |
492 // Moved to ARM32::AssemblerARM32::cmp() | 493 // Moved to ARM32::AssemblerARM32::cmp() |
493 void cmp(Register rn, Operand o, Condition cond = AL); | 494 void cmp(Register rn, Operand o, Condition cond = AL); |
494 | 495 |
(...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1320 // ARM32::AssemblerARM::uxt() (uxtb and uxth). | 1321 // ARM32::AssemblerARM::uxt() (uxtb and uxth). |
1321 #endif | 1322 #endif |
1322 | 1323 |
1323 DISALLOW_ALLOCATION(); | 1324 DISALLOW_ALLOCATION(); |
1324 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1325 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1325 }; | 1326 }; |
1326 | 1327 |
1327 } // namespace dart | 1328 } // namespace dart |
1328 | 1329 |
1329 #endif // VM_ASSEMBLER_ARM_H_ | 1330 #endif // VM_ASSEMBLER_ARM_H_ |
OLD | NEW |