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

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

Issue 11009006: Enable Float32Array_getIndexed on X64 now that cvtss2sd is implemented (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Whitespace 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_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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 365
366 void addsd(XmmRegister dst, XmmRegister src); 366 void addsd(XmmRegister dst, XmmRegister src);
367 void subsd(XmmRegister dst, XmmRegister src); 367 void subsd(XmmRegister dst, XmmRegister src);
368 void mulsd(XmmRegister dst, XmmRegister src); 368 void mulsd(XmmRegister dst, XmmRegister src);
369 void divsd(XmmRegister dst, XmmRegister src); 369 void divsd(XmmRegister dst, XmmRegister src);
370 370
371 void comisd(XmmRegister a, XmmRegister b); 371 void comisd(XmmRegister a, XmmRegister b);
372 void cvtsi2sd(XmmRegister a, Register b); 372 void cvtsi2sd(XmmRegister a, Register b);
373 void cvttsd2siq(Register dst, XmmRegister src); 373 void cvttsd2siq(Register dst, XmmRegister src);
374 374
375 void cvtss2sd(XmmRegister dst, XmmRegister src);
376 void cvtsd2ss(XmmRegister dst, XmmRegister src);
377
375 void xchgl(Register dst, Register src); 378 void xchgl(Register dst, Register src);
376 void xchgq(Register dst, Register src); 379 void xchgq(Register dst, Register src);
377 380
378 void cmpl(Register reg, const Immediate& imm); 381 void cmpl(Register reg, const Immediate& imm);
379 void cmpl(Register reg0, Register reg1); 382 void cmpl(Register reg0, Register reg1);
380 void cmpl(Register reg, const Address& address); 383 void cmpl(Register reg, const Address& address);
381 void cmpl(const Address& address, const Immediate& imm); 384 void cmpl(const Address& address, const Immediate& imm);
382 385
383 void cmpq(Register reg, const Immediate& imm); 386 void cmpq(Register reg, const Immediate& imm);
384 void cmpq(const Address& address, Register reg); 387 void cmpq(const Address& address, Register reg);
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 } 730 }
728 731
729 732
730 inline void Assembler::EmitOperandSizeOverride() { 733 inline void Assembler::EmitOperandSizeOverride() {
731 EmitUint8(0x66); 734 EmitUint8(0x66);
732 } 735 }
733 736
734 } // namespace dart 737 } // namespace dart
735 738
736 #endif // VM_ASSEMBLER_X64_H_ 739 #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