| 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 | 500 |
| 501 // Moved to ARM32::IceAssemblerARM32::mov() | 501 // Moved to ARM32::IceAssemblerARM32::mov() |
| 502 void mov(Register rd, Operand o, Condition cond = AL); | 502 void mov(Register rd, Operand o, Condition cond = AL); |
| 503 void movs(Register rd, Operand o, Condition cond = AL); | 503 void movs(Register rd, Operand o, Condition cond = AL); |
| 504 #endif | 504 #endif |
| 505 | 505 |
| 506 #if 0 | 506 #if 0 |
| 507 // Moved to ARM32::IceAssemblerARM32::bic() | 507 // Moved to ARM32::IceAssemblerARM32::bic() |
| 508 void bic(Register rd, Register rn, Operand o, Condition cond = AL); | 508 void bic(Register rd, Register rn, Operand o, Condition cond = AL); |
| 509 void bics(Register rd, Register rn, Operand o, Condition cond = AL); | 509 void bics(Register rd, Register rn, Operand o, Condition cond = AL); |
| 510 #endif | |
| 511 | 510 |
| 511 // Moved to ARM32::IceAssemblerARM32::mvn() |
| 512 void mvn(Register rd, Operand o, Condition cond = AL); | 512 void mvn(Register rd, Operand o, Condition cond = AL); |
| 513 void mvns(Register rd, Operand o, Condition cond = AL); | 513 void mvns(Register rd, Operand o, Condition cond = AL); |
| 514 #endif |
| 514 | 515 |
| 515 // Miscellaneous data-processing instructions. | 516 // Miscellaneous data-processing instructions. |
| 516 void clz(Register rd, Register rm, Condition cond = AL); | 517 void clz(Register rd, Register rm, Condition cond = AL); |
| 517 | 518 |
| 518 // Multiply instructions. | 519 // Multiply instructions. |
| 519 #if 0 | 520 #if 0 |
| 520 // Moved to ARM32::AssemblerARM32::mul() | 521 // Moved to ARM32::AssemblerARM32::mul() |
| 521 void mul(Register rd, Register rn, Register rm, Condition cond = AL); | 522 void mul(Register rd, Register rn, Register rm, Condition cond = AL); |
| 522 void muls(Register rd, Register rn, Register rm, Condition cond = AL); | 523 void muls(Register rd, Register rn, Register rm, Condition cond = AL); |
| 523 | 524 |
| (...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1314 // ARM32::AssemblerARM::uxt() (uxtb and uxth). | 1315 // ARM32::AssemblerARM::uxt() (uxtb and uxth). |
| 1315 #endif | 1316 #endif |
| 1316 | 1317 |
| 1317 DISALLOW_ALLOCATION(); | 1318 DISALLOW_ALLOCATION(); |
| 1318 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1319 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1319 }; | 1320 }; |
| 1320 | 1321 |
| 1321 } // namespace dart | 1322 } // namespace dart |
| 1322 | 1323 |
| 1323 #endif // VM_ASSEMBLER_ARM_H_ | 1324 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |