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

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

Issue 10914142: Intrinsify Double.toInt. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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_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) 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_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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 345
346 void movaps(XmmRegister dst, XmmRegister src); 346 void movaps(XmmRegister dst, XmmRegister src);
347 347
348 void addsd(XmmRegister dst, XmmRegister src); 348 void addsd(XmmRegister dst, XmmRegister src);
349 void subsd(XmmRegister dst, XmmRegister src); 349 void subsd(XmmRegister dst, XmmRegister src);
350 void mulsd(XmmRegister dst, XmmRegister src); 350 void mulsd(XmmRegister dst, XmmRegister src);
351 void divsd(XmmRegister dst, XmmRegister src); 351 void divsd(XmmRegister dst, XmmRegister src);
352 352
353 void comisd(XmmRegister a, XmmRegister b); 353 void comisd(XmmRegister a, XmmRegister b);
354 void cvtsi2sd(XmmRegister a, Register b); 354 void cvtsi2sd(XmmRegister a, Register b);
355 void cvttsd2siq(Register dst, XmmRegister src);
355 356
356 void xchgl(Register dst, Register src); 357 void xchgl(Register dst, Register src);
357 void xchgq(Register dst, Register src); 358 void xchgq(Register dst, Register src);
358 359
359 void cmpl(Register reg, const Immediate& imm); 360 void cmpl(Register reg, const Immediate& imm);
360 void cmpl(Register reg0, Register reg1); 361 void cmpl(Register reg0, Register reg1);
361 void cmpl(Register reg, const Address& address); 362 void cmpl(Register reg, const Address& address);
362 void cmpl(const Address& address, const Immediate& imm); 363 void cmpl(const Address& address, const Immediate& imm);
363 364
364 void cmpq(Register reg, const Immediate& imm); 365 void cmpq(Register reg, const Immediate& imm);
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 } 706 }
706 707
707 708
708 inline void Assembler::EmitOperandSizeOverride() { 709 inline void Assembler::EmitOperandSizeOverride() {
709 EmitUint8(0x66); 710 EmitUint8(0x66);
710 } 711 }
711 712
712 } // namespace dart 713 } // namespace dart
713 714
714 #endif // VM_ASSEMBLER_X64_H_ 715 #endif // VM_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698