| 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 | 343 |
| 344 void popq(Register reg); | 344 void popq(Register reg); |
| 345 void popq(const Address& address); | 345 void popq(const Address& address); |
| 346 | 346 |
| 347 void setcc(Condition condition, ByteRegister dst); | 347 void setcc(Condition condition, ByteRegister dst); |
| 348 | 348 |
| 349 void movl(Register dst, Register src); | 349 void movl(Register dst, Register src); |
| 350 void movl(Register dst, const Immediate& imm); | 350 void movl(Register dst, const Immediate& imm); |
| 351 void movl(Register dst, const Address& src); | 351 void movl(Register dst, const Address& src); |
| 352 void movl(const Address& dst, Register src); | 352 void movl(const Address& dst, Register src); |
| 353 void movl(const Address& dst, const Immediate& imm); |
| 353 | 354 |
| 354 void movzxb(Register dst, Register src); | 355 void movzxb(Register dst, Register src); |
| 355 void movzxb(Register dst, const Address& src); | 356 void movzxb(Register dst, const Address& src); |
| 356 void movsxb(Register dst, Register src); | 357 void movsxb(Register dst, Register src); |
| 357 void movsxb(Register dst, const Address& src); | 358 void movsxb(Register dst, const Address& src); |
| 358 void movb(Register dst, const Address& src); | 359 void movb(Register dst, const Address& src); |
| 359 void movb(const Address& dst, Register src); | 360 void movb(const Address& dst, Register src); |
| 360 void movb(const Address& dst, const Immediate& imm); | 361 void movb(const Address& dst, const Immediate& imm); |
| 361 | 362 |
| 362 void movzxw(Register dst, Register src); | 363 void movzxw(Register dst, Register src); |
| (...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1075 } | 1076 } |
| 1076 | 1077 |
| 1077 | 1078 |
| 1078 inline void Assembler::EmitOperandSizeOverride() { | 1079 inline void Assembler::EmitOperandSizeOverride() { |
| 1079 EmitUint8(0x66); | 1080 EmitUint8(0x66); |
| 1080 } | 1081 } |
| 1081 | 1082 |
| 1082 } // namespace dart | 1083 } // namespace dart |
| 1083 | 1084 |
| 1084 #endif // VM_ASSEMBLER_X64_H_ | 1085 #endif // VM_ASSEMBLER_X64_H_ |
| OLD | NEW |