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

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

Issue 616873003: Use UnboxedInt32 and UnboxedUint32 representation for LoadIndexedInstr (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 void abspd(XmmRegister dst); 453 void abspd(XmmRegister dst);
454 void minpd(XmmRegister dst, XmmRegister src); 454 void minpd(XmmRegister dst, XmmRegister src);
455 void maxpd(XmmRegister dst, XmmRegister src); 455 void maxpd(XmmRegister dst, XmmRegister src);
456 void sqrtpd(XmmRegister dst); 456 void sqrtpd(XmmRegister dst);
457 void cvtps2pd(XmmRegister dst, XmmRegister src); 457 void cvtps2pd(XmmRegister dst, XmmRegister src);
458 void cvtpd2ps(XmmRegister dst, XmmRegister src); 458 void cvtpd2ps(XmmRegister dst, XmmRegister src);
459 void shufpd(XmmRegister dst, XmmRegister src, const Immediate& mask); 459 void shufpd(XmmRegister dst, XmmRegister src, const Immediate& mask);
460 460
461 void comisd(XmmRegister a, XmmRegister b); 461 void comisd(XmmRegister a, XmmRegister b);
462 void cvtsi2sd(XmmRegister a, Register b); 462 void cvtsi2sd(XmmRegister a, Register b);
463 // Only looks at first 32-bits of b.
464 void cvtsi2sd32(XmmRegister a, Register b);
463 void cvttsd2siq(Register dst, XmmRegister src); 465 void cvttsd2siq(Register dst, XmmRegister src);
464 466
465 void cvtss2sd(XmmRegister dst, XmmRegister src); 467 void cvtss2sd(XmmRegister dst, XmmRegister src);
466 void cvtsd2ss(XmmRegister dst, XmmRegister src); 468 void cvtsd2ss(XmmRegister dst, XmmRegister src);
467 469
468 void pxor(XmmRegister dst, XmmRegister src); 470 void pxor(XmmRegister dst, XmmRegister src);
469 471
470 enum RoundingMode { 472 enum RoundingMode {
471 kRoundToNearest = 0x0, 473 kRoundToNearest = 0x0,
472 kRoundDown = 0x1, 474 kRoundDown = 0x1,
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 } 1130 }
1129 1131
1130 1132
1131 inline void Assembler::EmitOperandSizeOverride() { 1133 inline void Assembler::EmitOperandSizeOverride() {
1132 EmitUint8(0x66); 1134 EmitUint8(0x66);
1133 } 1135 }
1134 1136
1135 } // namespace dart 1137 } // namespace dart
1136 1138
1137 #endif // VM_ASSEMBLER_X64_H_ 1139 #endif // VM_ASSEMBLER_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698