| 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 #if 0 | 484 #if 0 |
| 485 // Moved to ARM32::AssemblerARM32::tst(); | 485 // Moved to ARM32::AssemblerARM32::tst(); |
| 486 void tst(Register rn, Operand o, Condition cond = AL); | 486 void tst(Register rn, Operand o, Condition cond = AL); |
| 487 #endif | 487 #endif |
| 488 | 488 |
| 489 void teq(Register rn, Operand o, Condition cond = AL); | 489 void teq(Register rn, Operand o, Condition cond = AL); |
| 490 | 490 |
| 491 #if 0 | 491 #if 0 |
| 492 // Moved to ARM32::AssemblerARM32::cmp() | 492 // Moved to ARM32::AssemblerARM32::cmp() |
| 493 void cmp(Register rn, Operand o, Condition cond = AL); | 493 void cmp(Register rn, Operand o, Condition cond = AL); |
| 494 #endif | |
| 495 | 494 |
| 495 // Moved to ARM32::AssemblerARM32::cmn() |
| 496 void cmn(Register rn, Operand o, Condition cond = AL); | 496 void cmn(Register rn, Operand o, Condition cond = AL); |
| 497 | 497 |
| 498 #if 0 | |
| 499 // Moved to ARM32::IceAssemblerARM32::orr(). | 498 // Moved to ARM32::IceAssemblerARM32::orr(). |
| 500 void orr(Register rd, Register rn, Operand o, Condition cond = AL); | 499 void orr(Register rd, Register rn, Operand o, Condition cond = AL); |
| 501 void orrs(Register rd, Register rn, Operand o, Condition cond = AL); | 500 void orrs(Register rd, Register rn, Operand o, Condition cond = AL); |
| 502 | 501 |
| 503 // Moved to ARM32::IceAssemblerARM32::mov() | 502 // Moved to ARM32::IceAssemblerARM32::mov() |
| 504 void mov(Register rd, Operand o, Condition cond = AL); | 503 void mov(Register rd, Operand o, Condition cond = AL); |
| 505 void movs(Register rd, Operand o, Condition cond = AL); | 504 void movs(Register rd, Operand o, Condition cond = AL); |
| 506 #endif | 505 #endif |
| 507 | 506 |
| 508 #if 0 | 507 #if 0 |
| (...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1320 // ARM32::AssemblerARM::uxt() (uxtb and uxth). | 1319 // ARM32::AssemblerARM::uxt() (uxtb and uxth). |
| 1321 #endif | 1320 #endif |
| 1322 | 1321 |
| 1323 DISALLOW_ALLOCATION(); | 1322 DISALLOW_ALLOCATION(); |
| 1324 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1323 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1325 }; | 1324 }; |
| 1326 | 1325 |
| 1327 } // namespace dart | 1326 } // namespace dart |
| 1328 | 1327 |
| 1329 #endif // VM_ASSEMBLER_ARM_H_ | 1328 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |