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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 #if 0 | 494 #if 0 |
495 // Moved to ARM32::IceAssemblerARM32::orr(). | 495 // Moved to ARM32::IceAssemblerARM32::orr(). |
496 void orr(Register rd, Register rn, Operand o, Condition cond = AL); | 496 void orr(Register rd, Register rn, Operand o, Condition cond = AL); |
497 void orrs(Register rd, Register rn, Operand o, Condition cond = AL); | 497 void orrs(Register rd, Register rn, Operand o, Condition cond = AL); |
498 | 498 |
499 // Moved to ARM32::IceAssemblerARM32::mov() | 499 // Moved to ARM32::IceAssemblerARM32::mov() |
500 void mov(Register rd, Operand o, Condition cond = AL); | 500 void mov(Register rd, Operand o, Condition cond = AL); |
501 void movs(Register rd, Operand o, Condition cond = AL); | 501 void movs(Register rd, Operand o, Condition cond = AL); |
502 #endif | 502 #endif |
503 | 503 |
| 504 #if 0 |
| 505 // Moved to ARM32::IceAssemblerARM32::bic() |
504 void bic(Register rd, Register rn, Operand o, Condition cond = AL); | 506 void bic(Register rd, Register rn, Operand o, Condition cond = AL); |
505 void bics(Register rd, Register rn, Operand o, Condition cond = AL); | 507 void bics(Register rd, Register rn, Operand o, Condition cond = AL); |
| 508 #endif |
506 | 509 |
507 void mvn(Register rd, Operand o, Condition cond = AL); | 510 void mvn(Register rd, Operand o, Condition cond = AL); |
508 void mvns(Register rd, Operand o, Condition cond = AL); | 511 void mvns(Register rd, Operand o, Condition cond = AL); |
509 | 512 |
510 // Miscellaneous data-processing instructions. | 513 // Miscellaneous data-processing instructions. |
511 void clz(Register rd, Register rm, Condition cond = AL); | 514 void clz(Register rd, Register rm, Condition cond = AL); |
512 | 515 |
513 // Multiply instructions. | 516 // Multiply instructions. |
514 #if 0 | 517 #if 0 |
515 // Moved to ARM32::AssemblerARM32::mul() | 518 // Moved to ARM32::AssemblerARM32::mul() |
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1273 Register new_value, | 1276 Register new_value, |
1274 FieldContent old_content); | 1277 FieldContent old_content); |
1275 | 1278 |
1276 DISALLOW_ALLOCATION(); | 1279 DISALLOW_ALLOCATION(); |
1277 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1280 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1278 }; | 1281 }; |
1279 | 1282 |
1280 } // namespace dart | 1283 } // namespace dart |
1281 | 1284 |
1282 #endif // VM_ASSEMBLER_ARM_H_ | 1285 #endif // VM_ASSEMBLER_ARM_H_ |
OLD | NEW |