| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 void orq(Register dst, const Immediate& imm); | 407 void orq(Register dst, const Immediate& imm); |
| 408 | 408 |
| 409 void xorq(Register dst, Register src); | 409 void xorq(Register dst, Register src); |
| 410 | 410 |
| 411 void addl(Register dst, Register src); | 411 void addl(Register dst, Register src); |
| 412 void addl(const Address& address, const Immediate& imm); | 412 void addl(const Address& address, const Immediate& imm); |
| 413 | 413 |
| 414 void addq(Register dst, Register src); | 414 void addq(Register dst, Register src); |
| 415 void addq(Register reg, const Immediate& imm); | 415 void addq(Register reg, const Immediate& imm); |
| 416 void addq(const Address& address, const Immediate& imm); | 416 void addq(const Address& address, const Immediate& imm); |
| 417 void addq(const Address& address, Register reg); |
| 417 | 418 |
| 418 void subl(Register dst, Register src); | 419 void subl(Register dst, Register src); |
| 419 | 420 |
| 420 void cdq(); | 421 void cdq(); |
| 421 void cqo(); | 422 void cqo(); |
| 422 | 423 |
| 423 void idivl(Register reg); | 424 void idivl(Register reg); |
| 424 void idivq(Register reg); | 425 void idivq(Register reg); |
| 425 | 426 |
| 426 void imull(Register dst, Register src); | 427 void imull(Register dst, Register src); |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 } | 636 } |
| 636 | 637 |
| 637 | 638 |
| 638 inline void Assembler::EmitOperandSizeOverride() { | 639 inline void Assembler::EmitOperandSizeOverride() { |
| 639 EmitUint8(0x66); | 640 EmitUint8(0x66); |
| 640 } | 641 } |
| 641 | 642 |
| 642 } // namespace dart | 643 } // namespace dart |
| 643 | 644 |
| 644 #endif // VM_ASSEMBLER_X64_H_ | 645 #endif // VM_ASSEMBLER_X64_H_ |
| OLD | NEW |