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

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

Issue 23129014: Add packed add and subtract to IA32 and X64 assemblers (Closed) Base URL: https://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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 404
405 void addsd(XmmRegister dst, XmmRegister src); 405 void addsd(XmmRegister dst, XmmRegister src);
406 void addsd(XmmRegister dst, const Address& src); 406 void addsd(XmmRegister dst, const Address& src);
407 void subsd(XmmRegister dst, XmmRegister src); 407 void subsd(XmmRegister dst, XmmRegister src);
408 void subsd(XmmRegister dst, const Address& src); 408 void subsd(XmmRegister dst, const Address& src);
409 void mulsd(XmmRegister dst, XmmRegister src); 409 void mulsd(XmmRegister dst, XmmRegister src);
410 void mulsd(XmmRegister dst, const Address& src); 410 void mulsd(XmmRegister dst, const Address& src);
411 void divsd(XmmRegister dst, XmmRegister src); 411 void divsd(XmmRegister dst, XmmRegister src);
412 void divsd(XmmRegister dst, const Address& src); 412 void divsd(XmmRegister dst, const Address& src);
413 413
414 414 void addpl(XmmRegister dst, XmmRegister src);
415 void subpl(XmmRegister dst, XmmRegister src);
415 void addps(XmmRegister dst, XmmRegister src); 416 void addps(XmmRegister dst, XmmRegister src);
416 void subps(XmmRegister dst, XmmRegister src); 417 void subps(XmmRegister dst, XmmRegister src);
417 void divps(XmmRegister dst, XmmRegister src); 418 void divps(XmmRegister dst, XmmRegister src);
418 void mulps(XmmRegister dst, XmmRegister src); 419 void mulps(XmmRegister dst, XmmRegister src);
419 void minps(XmmRegister dst, XmmRegister src); 420 void minps(XmmRegister dst, XmmRegister src);
420 void maxps(XmmRegister dst, XmmRegister src); 421 void maxps(XmmRegister dst, XmmRegister src);
421 void andps(XmmRegister dst, XmmRegister src); 422 void andps(XmmRegister dst, XmmRegister src);
422 void andps(XmmRegister dst, const Address& src); 423 void andps(XmmRegister dst, const Address& src);
423 void orps(XmmRegister dst, XmmRegister src); 424 void orps(XmmRegister dst, XmmRegister src);
424 void notps(XmmRegister dst); 425 void notps(XmmRegister dst);
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 } 857 }
857 858
858 859
859 inline void Assembler::EmitOperandSizeOverride() { 860 inline void Assembler::EmitOperandSizeOverride() {
860 EmitUint8(0x66); 861 EmitUint8(0x66);
861 } 862 }
862 863
863 } // namespace dart 864 } // namespace dart
864 865
865 #endif // VM_ASSEMBLER_IA32_H_ 866 #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