| 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 | 431 |
| 432 void Comment(const char* format, ...) PRINTF_ATTRIBUTE(2, 3); | 432 void Comment(const char* format, ...) PRINTF_ATTRIBUTE(2, 3); |
| 433 static bool EmittingComments(); | 433 static bool EmittingComments(); |
| 434 | 434 |
| 435 const Code::Comments& GetCodeComments() const; | 435 const Code::Comments& GetCodeComments() const; |
| 436 | 436 |
| 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 |
| 442 // Moved to ARM32::AssemblerARM32::and_() |
| 441 // Data-processing instructions. | 443 // Data-processing instructions. |
| 442 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 |
| 443 | 446 |
| 444 void eor(Register rd, Register rn, Operand o, Condition cond = AL); | 447 void eor(Register rd, Register rn, Operand o, Condition cond = AL); |
| 445 | 448 |
| 446 #if 0 | 449 #if 0 |
| 447 // Moved to ARM32::AssemberARM32::sub() | 450 // Moved to ARM32::AssemberARM32::sub() |
| 448 void sub(Register rd, Register rn, Operand o, Condition cond = AL); | 451 void sub(Register rd, Register rn, Operand o, Condition cond = AL); |
| 449 void subs(Register rd, Register rn, Operand o, Condition cond = AL); | 452 void subs(Register rd, Register rn, Operand o, Condition cond = AL); |
| 450 #endif | 453 #endif |
| 451 | 454 |
| 452 void rsb(Register rd, Register rn, Operand o, Condition cond = AL); | 455 void rsb(Register rd, Register rn, Operand o, Condition cond = AL); |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1250 Register new_value, | 1253 Register new_value, |
| 1251 FieldContent old_content); | 1254 FieldContent old_content); |
| 1252 | 1255 |
| 1253 DISALLOW_ALLOCATION(); | 1256 DISALLOW_ALLOCATION(); |
| 1254 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1257 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1255 }; | 1258 }; |
| 1256 | 1259 |
| 1257 } // namespace dart | 1260 } // namespace dart |
| 1258 | 1261 |
| 1259 #endif // VM_ASSEMBLER_ARM_H_ | 1262 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |