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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 static const char* RegisterName(Register reg); | 437 static const char* RegisterName(Register reg); |
438 | 438 |
439 static const char* FpuRegisterName(FpuRegister reg); | 439 static const char* FpuRegisterName(FpuRegister reg); |
440 | 440 |
441 #if 0 | 441 #if 0 |
442 // Moved to ARM32::AssemblerARM32::and_() | 442 // Moved to ARM32::AssemblerARM32::and_() |
443 // Data-processing instructions. | 443 // Data-processing instructions. |
444 void and_(Register rd, Register rn, Operand o, Condition cond = AL); | 444 void and_(Register rd, Register rn, Operand o, Condition cond = AL); |
445 #endif | 445 #endif |
446 | 446 |
| 447 #if 0 |
| 448 // Moved to ARM32::AssemblerARM32::eor() |
447 void eor(Register rd, Register rn, Operand o, Condition cond = AL); | 449 void eor(Register rd, Register rn, Operand o, Condition cond = AL); |
448 | 450 |
449 #if 0 | |
450 // Moved to ARM32::AssemberARM32::sub() | 451 // Moved to ARM32::AssemberARM32::sub() |
451 void sub(Register rd, Register rn, Operand o, Condition cond = AL); | 452 void sub(Register rd, Register rn, Operand o, Condition cond = AL); |
452 void subs(Register rd, Register rn, Operand o, Condition cond = AL); | 453 void subs(Register rd, Register rn, Operand o, Condition cond = AL); |
453 #endif | 454 #endif |
454 | 455 |
455 void rsb(Register rd, Register rn, Operand o, Condition cond = AL); | 456 void rsb(Register rd, Register rn, Operand o, Condition cond = AL); |
456 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL); | 457 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL); |
457 | 458 |
458 #if 0 | 459 #if 0 |
459 // Moved to ARM32::AssemblerARM32::add() | 460 // Moved to ARM32::AssemblerARM32::add() |
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1260 Register new_value, | 1261 Register new_value, |
1261 FieldContent old_content); | 1262 FieldContent old_content); |
1262 | 1263 |
1263 DISALLOW_ALLOCATION(); | 1264 DISALLOW_ALLOCATION(); |
1264 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1265 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1265 }; | 1266 }; |
1266 | 1267 |
1267 } // namespace dart | 1268 } // namespace dart |
1268 | 1269 |
1269 #endif // VM_ASSEMBLER_ARM_H_ | 1270 #endif // VM_ASSEMBLER_ARM_H_ |
OLD | NEW |