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

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

Issue 10968059: Support for unboxed 64-bit integer bitwise operations and equality on ia32. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: addressed comments, added tests and flags Created 8 years, 2 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') | runtime/vm/assembler_ia32.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 380
381 void sqrtsd(XmmRegister dst, XmmRegister src); 381 void sqrtsd(XmmRegister dst, XmmRegister src);
382 void sqrtss(XmmRegister dst, XmmRegister src); 382 void sqrtss(XmmRegister dst, XmmRegister src);
383 383
384 void xorpd(XmmRegister dst, const Address& src); 384 void xorpd(XmmRegister dst, const Address& src);
385 void xorpd(XmmRegister dst, XmmRegister src); 385 void xorpd(XmmRegister dst, XmmRegister src);
386 void xorps(XmmRegister dst, const Address& src); 386 void xorps(XmmRegister dst, const Address& src);
387 void xorps(XmmRegister dst, XmmRegister src); 387 void xorps(XmmRegister dst, XmmRegister src);
388 388
389 void andpd(XmmRegister dst, const Address& src); 389 void andpd(XmmRegister dst, const Address& src);
390 void andpd(XmmRegister dst, XmmRegister src);
391
392 void orpd(XmmRegister dst, XmmRegister src);
393
394 void pextrd(Register dst, XmmRegister src, const Immediate& imm);
395 void pmovsxdq(XmmRegister dst, XmmRegister src);
396 void pcmpeqq(XmmRegister dst, XmmRegister src);
390 397
391 void flds(const Address& src); 398 void flds(const Address& src);
392 void fstps(const Address& dst); 399 void fstps(const Address& dst);
393 400
394 void fldl(const Address& src); 401 void fldl(const Address& src);
395 void fstpl(const Address& dst); 402 void fstpl(const Address& dst);
396 403
397 void fnstcw(const Address& dst); 404 void fnstcw(const Address& dst);
398 void fldcw(const Address& src); 405 void fldcw(const Address& src);
399 406
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 } 684 }
678 685
679 686
680 inline void Assembler::EmitOperandSizeOverride() { 687 inline void Assembler::EmitOperandSizeOverride() {
681 EmitUint8(0x66); 688 EmitUint8(0x66);
682 } 689 }
683 690
684 } // namespace dart 691 } // namespace dart
685 692
686 #endif // VM_ASSEMBLER_IA32_H_ 693 #endif // VM_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.cc » ('j') | runtime/vm/assembler_ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698