| 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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 #endif | 506 #endif |
| 507 | 507 |
| 508 #if 0 | 508 #if 0 |
| 509 // Moved to ARM32::IceAssemblerARM32::bic() | 509 // Moved to ARM32::IceAssemblerARM32::bic() |
| 510 void bic(Register rd, Register rn, Operand o, Condition cond = AL); | 510 void bic(Register rd, Register rn, Operand o, Condition cond = AL); |
| 511 void bics(Register rd, Register rn, Operand o, Condition cond = AL); | 511 void bics(Register rd, Register rn, Operand o, Condition cond = AL); |
| 512 | 512 |
| 513 // Moved to ARM32::IceAssemblerARM32::mvn() | 513 // Moved to ARM32::IceAssemblerARM32::mvn() |
| 514 void mvn(Register rd, Operand o, Condition cond = AL); | 514 void mvn(Register rd, Operand o, Condition cond = AL); |
| 515 void mvns(Register rd, Operand o, Condition cond = AL); | 515 void mvns(Register rd, Operand o, Condition cond = AL); |
| 516 #endif | |
| 517 | 516 |
| 518 // Miscellaneous data-processing instructions. | 517 // Miscellaneous data-processing instructions. |
| 518 // Moved to ARM32::AssemblerARM32::clz() |
| 519 void clz(Register rd, Register rm, Condition cond = AL); | 519 void clz(Register rd, Register rm, Condition cond = AL); |
| 520 | 520 |
| 521 // Multiply instructions. | 521 // Multiply instructions. |
| 522 #if 0 | 522 |
| 523 // Moved to ARM32::AssemblerARM32::mul() | 523 // Moved to ARM32::AssemblerARM32::mul() |
| 524 void mul(Register rd, Register rn, Register rm, Condition cond = AL); | 524 void mul(Register rd, Register rn, Register rm, Condition cond = AL); |
| 525 void muls(Register rd, Register rn, Register rm, Condition cond = AL); | 525 void muls(Register rd, Register rn, Register rm, Condition cond = AL); |
| 526 | 526 |
| 527 // Moved to ARM32::AssemblerARM32::mla() | 527 // Moved to ARM32::AssemblerARM32::mla() |
| 528 void mla(Register rd, Register rn, Register rm, Register ra, | 528 void mla(Register rd, Register rn, Register rm, Register ra, |
| 529 Condition cond = AL); | 529 Condition cond = AL); |
| 530 #endif | 530 #endif |
| 531 void mls(Register rd, Register rn, Register rm, Register ra, | 531 void mls(Register rd, Register rn, Register rm, Register ra, |
| 532 Condition cond = AL); | 532 Condition cond = AL); |
| (...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1321 // ARM32::AssemblerARM::uxt() (uxtb and uxth). | 1321 // ARM32::AssemblerARM::uxt() (uxtb and uxth). |
| 1322 #endif | 1322 #endif |
| 1323 | 1323 |
| 1324 DISALLOW_ALLOCATION(); | 1324 DISALLOW_ALLOCATION(); |
| 1325 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1325 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1326 }; | 1326 }; |
| 1327 | 1327 |
| 1328 } // namespace dart | 1328 } // namespace dart |
| 1329 | 1329 |
| 1330 #endif // VM_ASSEMBLER_ARM_H_ | 1330 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |