| 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_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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 void addl(const Address& address, Register src); | 550 void addl(const Address& address, Register src); |
| 551 void adcl(Register dst, Register src); | 551 void adcl(Register dst, Register src); |
| 552 void adcl(Register dst, const Immediate& imm); | 552 void adcl(Register dst, const Immediate& imm); |
| 553 void adcl(Register dst, const Address& address); | 553 void adcl(Register dst, const Address& address); |
| 554 | 554 |
| 555 void addq(Register dst, Register src); | 555 void addq(Register dst, Register src); |
| 556 void addq(Register dst, const Immediate& imm); | 556 void addq(Register dst, const Immediate& imm); |
| 557 void addq(Register dst, const Address& address); | 557 void addq(Register dst, const Address& address); |
| 558 void addq(const Address& address, const Immediate& imm); | 558 void addq(const Address& address, const Immediate& imm); |
| 559 void addq(const Address& address, Register src); | 559 void addq(const Address& address, Register src); |
| 560 void adcq(Register dst, Register src); |
| 561 void adcq(Register dst, const Immediate& imm); |
| 562 void adcq(Register dst, const Address& address); |
| 560 | 563 |
| 561 void cdq(); | 564 void cdq(); |
| 562 void cqo(); | 565 void cqo(); |
| 563 | 566 |
| 564 void idivl(Register reg); | 567 void idivl(Register reg); |
| 565 void divl(Register reg); | 568 void divl(Register reg); |
| 566 | 569 |
| 567 void idivq(Register reg); | 570 void idivq(Register reg); |
| 568 | 571 |
| 569 void imull(Register dst, Register src); | 572 void imull(Register dst, Register src); |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1156 } | 1159 } |
| 1157 | 1160 |
| 1158 | 1161 |
| 1159 inline void Assembler::EmitOperandSizeOverride() { | 1162 inline void Assembler::EmitOperandSizeOverride() { |
| 1160 EmitUint8(0x66); | 1163 EmitUint8(0x66); |
| 1161 } | 1164 } |
| 1162 | 1165 |
| 1163 } // namespace dart | 1166 } // namespace dart |
| 1164 | 1167 |
| 1165 #endif // VM_ASSEMBLER_X64_H_ | 1168 #endif // VM_ASSEMBLER_X64_H_ |
| OLD | NEW |