| 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_X64_H_ | 5 #ifndef VM_ASSEMBLER_X64_H_ |
| 6 #define VM_ASSEMBLER_X64_H_ | 6 #define VM_ASSEMBLER_X64_H_ |
| 7 | 7 |
| 8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
| 9 #error Do not include assembler_x64.h directly; use assembler.h instead. | 9 #error Do not include assembler_x64.h directly; use assembler.h instead. |
| 10 #endif | 10 #endif |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 void andq(Register dst, const Address& address); | 385 void andq(Register dst, const Address& address); |
| 386 void andq(Register dst, const Immediate& imm); | 386 void andq(Register dst, const Immediate& imm); |
| 387 | 387 |
| 388 void orq(Register dst, Register src); | 388 void orq(Register dst, Register src); |
| 389 void orq(Register dst, const Address& address); | 389 void orq(Register dst, const Address& address); |
| 390 void orq(Register dst, const Immediate& imm); | 390 void orq(Register dst, const Immediate& imm); |
| 391 | 391 |
| 392 void xorq(Register dst, Register src); | 392 void xorq(Register dst, Register src); |
| 393 void xorq(Register dst, const Address& address); | 393 void xorq(Register dst, const Address& address); |
| 394 void xorq(const Address& dst, Register src); | 394 void xorq(const Address& dst, Register src); |
| 395 void xorq(Register dst, const Immediate& imm); |
| 395 | 396 |
| 396 void addl(Register dst, Register src); | 397 void addl(Register dst, Register src); |
| 397 void addl(const Address& address, const Immediate& imm); | 398 void addl(const Address& address, const Immediate& imm); |
| 398 | 399 |
| 399 void addq(Register dst, Register src); | 400 void addq(Register dst, Register src); |
| 400 void addq(Register reg, const Immediate& imm); | 401 void addq(Register reg, const Immediate& imm); |
| 401 void addq(Register reg, const Address& address); | 402 void addq(Register reg, const Address& address); |
| 402 void addq(const Address& address, const Immediate& imm); | 403 void addq(const Address& address, const Immediate& imm); |
| 403 void addq(const Address& address, Register reg); | 404 void addq(const Address& address, Register reg); |
| 404 | 405 |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 } | 705 } |
| 705 | 706 |
| 706 | 707 |
| 707 inline void Assembler::EmitOperandSizeOverride() { | 708 inline void Assembler::EmitOperandSizeOverride() { |
| 708 EmitUint8(0x66); | 709 EmitUint8(0x66); |
| 709 } | 710 } |
| 710 | 711 |
| 711 } // namespace dart | 712 } // namespace dart |
| 712 | 713 |
| 713 #endif // VM_ASSEMBLER_X64_H_ | 714 #endif // VM_ASSEMBLER_X64_H_ |
| OLD | NEW |