| 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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 void rsc(Register rd, Register rn, Operand o, Condition cond = AL); | 474 void rsc(Register rd, Register rn, Operand o, Condition cond = AL); |
| 475 | 475 |
| 476 void tst(Register rn, Operand o, Condition cond = AL); | 476 void tst(Register rn, Operand o, Condition cond = AL); |
| 477 | 477 |
| 478 void teq(Register rn, Operand o, Condition cond = AL); | 478 void teq(Register rn, Operand o, Condition cond = AL); |
| 479 | 479 |
| 480 void cmp(Register rn, Operand o, Condition cond = AL); | 480 void cmp(Register rn, Operand o, Condition cond = AL); |
| 481 | 481 |
| 482 void cmn(Register rn, Operand o, Condition cond = AL); | 482 void cmn(Register rn, Operand o, Condition cond = AL); |
| 483 | 483 |
| 484 #if 0 |
| 485 // Moved to ARM32::IceAssemblerARM32::orr(). |
| 484 void orr(Register rd, Register rn, Operand o, Condition cond = AL); | 486 void orr(Register rd, Register rn, Operand o, Condition cond = AL); |
| 485 void orrs(Register rd, Register rn, Operand o, Condition cond = AL); | 487 void orrs(Register rd, Register rn, Operand o, Condition cond = AL); |
| 486 | 488 |
| 487 #if 0 | 489 // Moved to ARM32::IceAssemblerARM32::mov() |
| 488 // Moved to IceAssemblerARM32::mov() | |
| 489 void mov(Register rd, Operand o, Condition cond = AL); | 490 void mov(Register rd, Operand o, Condition cond = AL); |
| 490 void movs(Register rd, Operand o, Condition cond = AL); | 491 void movs(Register rd, Operand o, Condition cond = AL); |
| 491 #endif | 492 #endif |
| 492 | 493 |
| 493 void bic(Register rd, Register rn, Operand o, Condition cond = AL); | 494 void bic(Register rd, Register rn, Operand o, Condition cond = AL); |
| 494 void bics(Register rd, Register rn, Operand o, Condition cond = AL); | 495 void bics(Register rd, Register rn, Operand o, Condition cond = AL); |
| 495 | 496 |
| 496 void mvn(Register rd, Operand o, Condition cond = AL); | 497 void mvn(Register rd, Operand o, Condition cond = AL); |
| 497 void mvns(Register rd, Operand o, Condition cond = AL); | 498 void mvns(Register rd, Operand o, Condition cond = AL); |
| 498 | 499 |
| (...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 Register new_value, | 1260 Register new_value, |
| 1260 FieldContent old_content); | 1261 FieldContent old_content); |
| 1261 | 1262 |
| 1262 DISALLOW_ALLOCATION(); | 1263 DISALLOW_ALLOCATION(); |
| 1263 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1264 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1264 }; | 1265 }; |
| 1265 | 1266 |
| 1266 } // namespace dart | 1267 } // namespace dart |
| 1267 | 1268 |
| 1268 #endif // VM_ASSEMBLER_ARM_H_ | 1269 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |