Chromium Code Reviews| 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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 454 #endif | 454 #endif |
| 455 | 455 |
| 456 void rsb(Register rd, Register rn, Operand o, Condition cond = AL); | 456 void rsb(Register rd, Register rn, Operand o, Condition cond = AL); |
| 457 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL); | 457 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL); |
| 458 | 458 |
| 459 #if 0 | 459 #if 0 |
| 460 // Moved to ARM32::AssemblerARM32::add() | 460 // Moved to ARM32::AssemblerARM32::add() |
| 461 void add(Register rd, Register rn, Operand o, Condition cond = AL); | 461 void add(Register rd, Register rn, Operand o, Condition cond = AL); |
| 462 | 462 |
| 463 void adds(Register rd, Register rn, Operand o, Condition cond = AL); | 463 void adds(Register rd, Register rn, Operand o, Condition cond = AL); |
| 464 #endif | |
| 465 | 464 |
| 465 // Moved to ARM32::AssemblerARM32::add() | |
|
Jim Stichnoth
2015/10/26 23:42:44
adc
Karl
2015/10/27 14:37:11
Done.
| |
| 466 void adc(Register rd, Register rn, Operand o, Condition cond = AL); | 466 void adc(Register rd, Register rn, Operand o, Condition cond = AL); |
| 467 | 467 |
| 468 void adcs(Register rd, Register rn, Operand o, Condition cond = AL); | 468 void adcs(Register rd, Register rn, Operand o, Condition cond = AL); |
| 469 #endif | |
| 469 | 470 |
| 470 void sbc(Register rd, Register rn, Operand o, Condition cond = AL); | 471 void sbc(Register rd, Register rn, Operand o, Condition cond = AL); |
| 471 | 472 |
| 472 void sbcs(Register rd, Register rn, Operand o, Condition cond = AL); | 473 void sbcs(Register rd, Register rn, Operand o, Condition cond = AL); |
| 473 | 474 |
| 474 void rsc(Register rd, Register rn, Operand o, Condition cond = AL); | 475 void rsc(Register rd, Register rn, Operand o, Condition cond = AL); |
| 475 | 476 |
| 476 void tst(Register rn, Operand o, Condition cond = AL); | 477 void tst(Register rn, Operand o, Condition cond = AL); |
| 477 | 478 |
| 478 void teq(Register rn, Operand o, Condition cond = AL); | 479 void teq(Register rn, Operand o, Condition cond = AL); |
| (...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1246 Register new_value, | 1247 Register new_value, |
| 1247 FieldContent old_content); | 1248 FieldContent old_content); |
| 1248 | 1249 |
| 1249 DISALLOW_ALLOCATION(); | 1250 DISALLOW_ALLOCATION(); |
| 1250 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1251 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1251 }; | 1252 }; |
| 1252 | 1253 |
| 1253 } // namespace dart | 1254 } // namespace dart |
| 1254 | 1255 |
| 1255 #endif // VM_ASSEMBLER_ARM_H_ | 1256 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |