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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 void rsc(Register rd, Register rn, Operand o, Condition cond = AL); | 471 void rsc(Register rd, Register rn, Operand o, Condition cond = AL); |
472 | 472 |
473 void tst(Register rn, Operand o, Condition cond = AL); | 473 void tst(Register rn, Operand o, Condition cond = AL); |
474 | 474 |
475 void teq(Register rn, Operand o, Condition cond = AL); | 475 void teq(Register rn, Operand o, Condition cond = AL); |
476 | 476 |
477 void cmp(Register rn, Operand o, Condition cond = AL); | 477 void cmp(Register rn, Operand o, Condition cond = AL); |
478 | 478 |
479 void cmn(Register rn, Operand o, Condition cond = AL); | 479 void cmn(Register rn, Operand o, Condition cond = AL); |
480 | 480 |
| 481 #if 0 |
| 482 // Moved to ARM32::IceAssemblerARM32::orr(). |
481 void orr(Register rd, Register rn, Operand o, Condition cond = AL); | 483 void orr(Register rd, Register rn, Operand o, Condition cond = AL); |
482 void orrs(Register rd, Register rn, Operand o, Condition cond = AL); | 484 void orrs(Register rd, Register rn, Operand o, Condition cond = AL); |
483 | 485 |
484 #if 0 | 486 // Moved to ARM32::IceAssemblerARM32::mov() |
485 // Moved to IceAssemblerARM32::mov() | |
486 void mov(Register rd, Operand o, Condition cond = AL); | 487 void mov(Register rd, Operand o, Condition cond = AL); |
487 void movs(Register rd, Operand o, Condition cond = AL); | 488 void movs(Register rd, Operand o, Condition cond = AL); |
488 #endif | 489 #endif |
489 | 490 |
490 void bic(Register rd, Register rn, Operand o, Condition cond = AL); | 491 void bic(Register rd, Register rn, Operand o, Condition cond = AL); |
491 void bics(Register rd, Register rn, Operand o, Condition cond = AL); | 492 void bics(Register rd, Register rn, Operand o, Condition cond = AL); |
492 | 493 |
493 void mvn(Register rd, Operand o, Condition cond = AL); | 494 void mvn(Register rd, Operand o, Condition cond = AL); |
494 void mvns(Register rd, Operand o, Condition cond = AL); | 495 void mvns(Register rd, Operand o, Condition cond = AL); |
495 | 496 |
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1246 Register new_value, | 1247 Register new_value, |
1247 FieldContent old_content); | 1248 FieldContent old_content); |
1248 | 1249 |
1249 DISALLOW_ALLOCATION(); | 1250 DISALLOW_ALLOCATION(); |
1250 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1251 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1251 }; | 1252 }; |
1252 | 1253 |
1253 } // namespace dart | 1254 } // namespace dart |
1254 | 1255 |
1255 #endif // VM_ASSEMBLER_ARM_H_ | 1256 #endif // VM_ASSEMBLER_ARM_H_ |
OLD | NEW |