| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 | 402 |
| 403 void testl(Register reg1, Register reg2); | 403 void testl(Register reg1, Register reg2); |
| 404 void testl(Register reg, const Immediate& imm); | 404 void testl(Register reg, const Immediate& imm); |
| 405 | 405 |
| 406 void andl(Register dst, const Immediate& imm); | 406 void andl(Register dst, const Immediate& imm); |
| 407 void andl(Register dst, Register src); | 407 void andl(Register dst, Register src); |
| 408 | 408 |
| 409 void orl(Register dst, const Immediate& imm); | 409 void orl(Register dst, const Immediate& imm); |
| 410 void orl(Register dst, Register src); | 410 void orl(Register dst, Register src); |
| 411 | 411 |
| 412 void xorl(Register dst, const Immediate& imm); |
| 412 void xorl(Register dst, Register src); | 413 void xorl(Register dst, Register src); |
| 413 | 414 |
| 414 void addl(Register dst, Register src); | 415 void addl(Register dst, Register src); |
| 415 void addl(Register reg, const Immediate& imm); | 416 void addl(Register reg, const Immediate& imm); |
| 416 void addl(Register reg, const Address& address); | 417 void addl(Register reg, const Address& address); |
| 417 | 418 |
| 418 void addl(const Address& address, Register reg); | 419 void addl(const Address& address, Register reg); |
| 419 void addl(const Address& address, const Immediate& imm); | 420 void addl(const Address& address, const Immediate& imm); |
| 420 | 421 |
| 421 void adcl(Register dst, Register src); | 422 void adcl(Register dst, Register src); |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 } | 657 } |
| 657 | 658 |
| 658 | 659 |
| 659 inline void Assembler::EmitOperandSizeOverride() { | 660 inline void Assembler::EmitOperandSizeOverride() { |
| 660 EmitUint8(0x66); | 661 EmitUint8(0x66); |
| 661 } | 662 } |
| 662 | 663 |
| 663 } // namespace dart | 664 } // namespace dart |
| 664 | 665 |
| 665 #endif // VM_ASSEMBLER_IA32_H_ | 666 #endif // VM_ASSEMBLER_IA32_H_ |
| OLD | NEW |