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

Side by Side Diff: runtime/vm/assembler_x64.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 | « runtime/vm/assembler_ia32_test.cc ('k') | runtime/vm/assembler_x64.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_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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 void movaps(XmmRegister dst, XmmRegister src); 408 void movaps(XmmRegister dst, XmmRegister src);
409 409
410 void movups(const Address& dst, XmmRegister src); 410 void movups(const Address& dst, XmmRegister src);
411 void movups(XmmRegister dst, const Address& src); 411 void movups(XmmRegister dst, const Address& src);
412 412
413 void addsd(XmmRegister dst, XmmRegister src); 413 void addsd(XmmRegister dst, XmmRegister src);
414 void subsd(XmmRegister dst, XmmRegister src); 414 void subsd(XmmRegister dst, XmmRegister src);
415 void mulsd(XmmRegister dst, XmmRegister src); 415 void mulsd(XmmRegister dst, XmmRegister src);
416 void divsd(XmmRegister dst, XmmRegister src); 416 void divsd(XmmRegister dst, XmmRegister src);
417 417
418 void addpl(XmmRegister dst, XmmRegister src);
419 void subpl(XmmRegister dst, XmmRegister src);
418 void addps(XmmRegister dst, XmmRegister src); 420 void addps(XmmRegister dst, XmmRegister src);
419 void subps(XmmRegister dst, XmmRegister src); 421 void subps(XmmRegister dst, XmmRegister src);
420 void divps(XmmRegister dst, XmmRegister src); 422 void divps(XmmRegister dst, XmmRegister src);
421 void mulps(XmmRegister dst, XmmRegister src); 423 void mulps(XmmRegister dst, XmmRegister src);
422 void minps(XmmRegister dst, XmmRegister src); 424 void minps(XmmRegister dst, XmmRegister src);
423 void maxps(XmmRegister dst, XmmRegister src); 425 void maxps(XmmRegister dst, XmmRegister src);
424 void andps(XmmRegister dst, XmmRegister src); 426 void andps(XmmRegister dst, XmmRegister src);
425 void andps(XmmRegister dst, const Address& src); 427 void andps(XmmRegister dst, const Address& src);
426 void orps(XmmRegister dst, XmmRegister src); 428 void orps(XmmRegister dst, XmmRegister src);
427 void notps(XmmRegister dst); 429 void notps(XmmRegister dst);
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 } 937 }
936 938
937 939
938 inline void Assembler::EmitOperandSizeOverride() { 940 inline void Assembler::EmitOperandSizeOverride() {
939 EmitUint8(0x66); 941 EmitUint8(0x66);
940 } 942 }
941 943
942 } // namespace dart 944 } // namespace dart
943 945
944 #endif // VM_ASSEMBLER_X64_H_ 946 #endif // VM_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « runtime/vm/assembler_ia32_test.cc ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698