| 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_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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 void movzxw(Register dst, const Address& src); | 343 void movzxw(Register dst, const Address& src); |
| 344 void movsxw(Register dst, Register src); | 344 void movsxw(Register dst, Register src); |
| 345 void movsxw(Register dst, const Address& src); | 345 void movsxw(Register dst, const Address& src); |
| 346 void movw(Register dst, const Address& src); | 346 void movw(Register dst, const Address& src); |
| 347 void movw(const Address& dst, Register src); | 347 void movw(const Address& dst, Register src); |
| 348 | 348 |
| 349 void leal(Register dst, const Address& src); | 349 void leal(Register dst, const Address& src); |
| 350 | 350 |
| 351 void cmovno(Register dst, Register src); | 351 void cmovno(Register dst, Register src); |
| 352 void cmove(Register dst, Register src); | 352 void cmove(Register dst, Register src); |
| 353 void cmovne(Register dst, Register src); |
| 353 void cmovs(Register dst, Register src); | 354 void cmovs(Register dst, Register src); |
| 354 void cmovns(Register dst, Register src); | 355 void cmovns(Register dst, Register src); |
| 355 | 356 |
| 356 void cmovgel(Register dst, Register src); | 357 void cmovgel(Register dst, Register src); |
| 357 void cmovlessl(Register dst, Register src); | 358 void cmovlessl(Register dst, Register src); |
| 358 | 359 |
| 359 void rep_movsb(); | 360 void rep_movsb(); |
| 360 | 361 |
| 361 void movss(XmmRegister dst, const Address& src); | 362 void movss(XmmRegister dst, const Address& src); |
| 362 void movss(const Address& dst, XmmRegister src); | 363 void movss(const Address& dst, XmmRegister src); |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 903 } | 904 } |
| 904 | 905 |
| 905 | 906 |
| 906 inline void Assembler::EmitOperandSizeOverride() { | 907 inline void Assembler::EmitOperandSizeOverride() { |
| 907 EmitUint8(0x66); | 908 EmitUint8(0x66); |
| 908 } | 909 } |
| 909 | 910 |
| 910 } // namespace dart | 911 } // namespace dart |
| 911 | 912 |
| 912 #endif // VM_ASSEMBLER_IA32_H_ | 913 #endif // VM_ASSEMBLER_IA32_H_ |
| OLD | NEW |