| 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 #ifndef VM_ASSEMBLER_IA32_H_ | 5 #ifndef VM_ASSEMBLER_IA32_H_ |
| 6 #define VM_ASSEMBLER_IA32_H_ | 6 #define VM_ASSEMBLER_IA32_H_ |
| 7 | 7 |
| 8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
| 9 #error Do not include assembler_ia32.h directly; use assembler.h instead. | 9 #error Do not include assembler_ia32.h directly; use assembler.h instead. |
| 10 #endif | 10 #endif |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 void cmpl(Register reg, const Address& address); | 507 void cmpl(Register reg, const Address& address); |
| 508 | 508 |
| 509 void cmpl(const Address& address, Register reg); | 509 void cmpl(const Address& address, Register reg); |
| 510 void cmpl(const Address& address, const Immediate& imm); | 510 void cmpl(const Address& address, const Immediate& imm); |
| 511 | 511 |
| 512 void testl(Register reg1, Register reg2); | 512 void testl(Register reg1, Register reg2); |
| 513 void testl(Register reg, const Immediate& imm); | 513 void testl(Register reg, const Immediate& imm); |
| 514 | 514 |
| 515 void andl(Register dst, const Immediate& imm); | 515 void andl(Register dst, const Immediate& imm); |
| 516 void andl(Register dst, Register src); | 516 void andl(Register dst, Register src); |
| 517 void andl(Register dst, const Address& address); |
| 517 | 518 |
| 518 void orl(Register dst, const Immediate& imm); | 519 void orl(Register dst, const Immediate& imm); |
| 519 void orl(Register dst, Register src); | 520 void orl(Register dst, Register src); |
| 521 void orl(Register dst, const Address& address); |
| 520 | 522 |
| 521 void xorl(Register dst, const Immediate& imm); | 523 void xorl(Register dst, const Immediate& imm); |
| 522 void xorl(Register dst, Register src); | 524 void xorl(Register dst, Register src); |
| 525 void xorl(Register dst, const Address& address); |
| 523 | 526 |
| 524 void addl(Register dst, Register src); | 527 void addl(Register dst, Register src); |
| 525 void addl(Register reg, const Immediate& imm); | 528 void addl(Register reg, const Immediate& imm); |
| 526 void addl(Register reg, const Address& address); | 529 void addl(Register reg, const Address& address); |
| 527 | 530 |
| 528 void addl(const Address& address, Register reg); | 531 void addl(const Address& address, Register reg); |
| 529 void addl(const Address& address, const Immediate& imm); | 532 void addl(const Address& address, const Immediate& imm); |
| 530 | 533 |
| 531 void adcl(Register dst, Register src); | 534 void adcl(Register dst, Register src); |
| 532 void adcl(Register reg, const Immediate& imm); | 535 void adcl(Register reg, const Immediate& imm); |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 } | 839 } |
| 837 | 840 |
| 838 | 841 |
| 839 inline void Assembler::EmitOperandSizeOverride() { | 842 inline void Assembler::EmitOperandSizeOverride() { |
| 840 EmitUint8(0x66); | 843 EmitUint8(0x66); |
| 841 } | 844 } |
| 842 | 845 |
| 843 } // namespace dart | 846 } // namespace dart |
| 844 | 847 |
| 845 #endif // VM_ASSEMBLER_IA32_H_ | 848 #endif // VM_ASSEMBLER_IA32_H_ |
| OLD | NEW |