| 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 | 395 |
| 396 void fnstcw(const Address& dst); | 396 void fnstcw(const Address& dst); |
| 397 void fldcw(const Address& src); | 397 void fldcw(const Address& src); |
| 398 | 398 |
| 399 void fistpl(const Address& dst); | 399 void fistpl(const Address& dst); |
| 400 void fistps(const Address& dst); | 400 void fistps(const Address& dst); |
| 401 void fildl(const Address& src); | 401 void fildl(const Address& src); |
| 402 void filds(const Address& src); | 402 void filds(const Address& src); |
| 403 | 403 |
| 404 void fincstp(); | 404 void fincstp(); |
| 405 void ffree(const Immediate& index); | 405 void ffree(intptr_t value); |
| 406 | 406 |
| 407 void fsin(); | 407 void fsin(); |
| 408 void fcos(); | 408 void fcos(); |
| 409 void fptan(); | 409 void fptan(); |
| 410 | 410 |
| 411 void xchgl(Register dst, Register src); | 411 void xchgl(Register dst, Register src); |
| 412 | 412 |
| 413 void cmpl(Register reg, const Immediate& imm); | 413 void cmpl(Register reg, const Immediate& imm); |
| 414 void cmpl(Register reg0, Register reg1); | 414 void cmpl(Register reg0, Register reg1); |
| 415 void cmpl(Register reg, const Address& address); | 415 void cmpl(Register reg, const Address& address); |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 } | 614 } |
| 615 | 615 |
| 616 | 616 |
| 617 inline void Assembler::EmitOperandSizeOverride() { | 617 inline void Assembler::EmitOperandSizeOverride() { |
| 618 EmitUint8(0x66); | 618 EmitUint8(0x66); |
| 619 } | 619 } |
| 620 | 620 |
| 621 } // namespace dart | 621 } // namespace dart |
| 622 | 622 |
| 623 #endif // VM_ASSEMBLER_IA32_H_ | 623 #endif // VM_ASSEMBLER_IA32_H_ |
| OLD | NEW |