Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: runtime/vm/assembler_ia32.h

Issue 21307004: Implement some conditional moves instructions for ia32/x64. Use them in MinMax instruction implemen… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 void movsxw(Register dst, Register src); 359 void movsxw(Register dst, Register src);
360 void movsxw(Register dst, const Address& src); 360 void movsxw(Register dst, const Address& src);
361 void movw(Register dst, const Address& src); 361 void movw(Register dst, const Address& src);
362 void movw(const Address& dst, Register src); 362 void movw(const Address& dst, Register src);
363 363
364 void leal(Register dst, const Address& src); 364 void leal(Register dst, const Address& src);
365 365
366 void cmovs(Register dst, Register src); 366 void cmovs(Register dst, Register src);
367 void cmovns(Register dst, Register src); 367 void cmovns(Register dst, Register src);
368 368
369 void cmovgel(Register dst, Register src);
370 void cmovlessl(Register dst, Register src);
371
369 void rep_movsb(); 372 void rep_movsb();
370 373
371 void movss(XmmRegister dst, const Address& src); 374 void movss(XmmRegister dst, const Address& src);
372 void movss(const Address& dst, XmmRegister src); 375 void movss(const Address& dst, XmmRegister src);
373 void movss(XmmRegister dst, XmmRegister src); 376 void movss(XmmRegister dst, XmmRegister src);
374 377
375 void movd(XmmRegister dst, Register src); 378 void movd(XmmRegister dst, Register src);
376 void movd(Register dst, XmmRegister src); 379 void movd(Register dst, XmmRegister src);
377 380
378 void movq(const Address& dst, XmmRegister src); 381 void movq(const Address& dst, XmmRegister src);
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 } 853 }
851 854
852 855
853 inline void Assembler::EmitOperandSizeOverride() { 856 inline void Assembler::EmitOperandSizeOverride() {
854 EmitUint8(0x66); 857 EmitUint8(0x66);
855 } 858 }
856 859
857 } // namespace dart 860 } // namespace dart
858 861
859 #endif // VM_ASSEMBLER_IA32_H_ 862 #endif // VM_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698