| 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 void and_(Register rd, Register rn, Operand o, Condition cond = AL); | 452 void and_(Register rd, Register rn, Operand o, Condition cond = AL); |
| 453 #endif | 453 #endif |
| 454 | 454 |
| 455 #if 0 | 455 #if 0 |
| 456 // Moved to ARM32::AssemblerARM32::eor() | 456 // Moved to ARM32::AssemblerARM32::eor() |
| 457 void eor(Register rd, Register rn, Operand o, Condition cond = AL); | 457 void eor(Register rd, Register rn, Operand o, Condition cond = AL); |
| 458 | 458 |
| 459 // Moved to ARM32::AssemberARM32::sub() | 459 // Moved to ARM32::AssemberARM32::sub() |
| 460 void sub(Register rd, Register rn, Operand o, Condition cond = AL); | 460 void sub(Register rd, Register rn, Operand o, Condition cond = AL); |
| 461 void subs(Register rd, Register rn, Operand o, Condition cond = AL); | 461 void subs(Register rd, Register rn, Operand o, Condition cond = AL); |
| 462 #endif | |
| 463 | 462 |
| 463 // Moved to ARM32::AssemberARM32::rsb() |
| 464 void rsb(Register rd, Register rn, Operand o, Condition cond = AL); | 464 void rsb(Register rd, Register rn, Operand o, Condition cond = AL); |
| 465 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL); | 465 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL); |
| 466 | 466 |
| 467 #if 0 | |
| 468 // Moved to ARM32::AssemblerARM32::add() | 467 // Moved to ARM32::AssemblerARM32::add() |
| 469 void add(Register rd, Register rn, Operand o, Condition cond = AL); | 468 void add(Register rd, Register rn, Operand o, Condition cond = AL); |
| 470 | 469 |
| 471 void adds(Register rd, Register rn, Operand o, Condition cond = AL); | 470 void adds(Register rd, Register rn, Operand o, Condition cond = AL); |
| 472 | 471 |
| 473 // Moved to ARM32::AssemblerARM32::adc() | 472 // Moved to ARM32::AssemblerARM32::adc() |
| 474 void adc(Register rd, Register rn, Operand o, Condition cond = AL); | 473 void adc(Register rd, Register rn, Operand o, Condition cond = AL); |
| 475 | 474 |
| 476 void adcs(Register rd, Register rn, Operand o, Condition cond = AL); | 475 void adcs(Register rd, Register rn, Operand o, Condition cond = AL); |
| 477 #endif | 476 #endif |
| (...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1317 // ARM32::AssemblerARM::uxt() (uxtb and uxth). | 1316 // ARM32::AssemblerARM::uxt() (uxtb and uxth). |
| 1318 #endif | 1317 #endif |
| 1319 | 1318 |
| 1320 DISALLOW_ALLOCATION(); | 1319 DISALLOW_ALLOCATION(); |
| 1321 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1320 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1322 }; | 1321 }; |
| 1323 | 1322 |
| 1324 } // namespace dart | 1323 } // namespace dart |
| 1325 | 1324 |
| 1326 #endif // VM_ASSEMBLER_ARM_H_ | 1325 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |