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

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

Issue 9320023: Intrinisifed more core library methods: isNaN, isNegative, cos, sin. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 10 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') | 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_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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 void cvtsd2ss(XmmRegister dst, XmmRegister src); 368 void cvtsd2ss(XmmRegister dst, XmmRegister src);
369 369
370 void cvttss2si(Register dst, XmmRegister src); 370 void cvttss2si(Register dst, XmmRegister src);
371 void cvttsd2si(Register dst, XmmRegister src); 371 void cvttsd2si(Register dst, XmmRegister src);
372 372
373 void cvtdq2pd(XmmRegister dst, XmmRegister src); 373 void cvtdq2pd(XmmRegister dst, XmmRegister src);
374 374
375 void comiss(XmmRegister a, XmmRegister b); 375 void comiss(XmmRegister a, XmmRegister b);
376 void comisd(XmmRegister a, XmmRegister b); 376 void comisd(XmmRegister a, XmmRegister b);
377 377
378 void movmskpd(Register dst, XmmRegister src);
379
378 void sqrtsd(XmmRegister dst, XmmRegister src); 380 void sqrtsd(XmmRegister dst, XmmRegister src);
379 void sqrtss(XmmRegister dst, XmmRegister src); 381 void sqrtss(XmmRegister dst, XmmRegister src);
380 382
381 void xorpd(XmmRegister dst, const Address& src); 383 void xorpd(XmmRegister dst, const Address& src);
382 void xorpd(XmmRegister dst, XmmRegister src); 384 void xorpd(XmmRegister dst, XmmRegister src);
383 void xorps(XmmRegister dst, const Address& src); 385 void xorps(XmmRegister dst, const Address& src);
384 void xorps(XmmRegister dst, XmmRegister src); 386 void xorps(XmmRegister dst, XmmRegister src);
385 387
386 void andpd(XmmRegister dst, const Address& src); 388 void andpd(XmmRegister dst, const Address& src);
387 389
388 void flds(const Address& src); 390 void flds(const Address& src);
389 void fstps(const Address& dst); 391 void fstps(const Address& dst);
390 392
391 void fldl(const Address& src); 393 void fldl(const Address& src);
392 void fstpl(const Address& dst); 394 void fstpl(const Address& dst);
393 395
394 void fnstcw(const Address& dst); 396 void fnstcw(const Address& dst);
395 void fldcw(const Address& src); 397 void fldcw(const Address& src);
396 398
397 void fistpl(const Address& dst); 399 void fistpl(const Address& dst);
398 void fistps(const Address& dst); 400 void fistps(const Address& dst);
399 void fildl(const Address& src); 401 void fildl(const Address& src);
402 void filds(const Address& src);
400 403
401 void fincstp(); 404 void fincstp();
402 void ffree(const Immediate& index); 405 void ffree(const Immediate& index);
403 406
404 void fsin(); 407 void fsin();
405 void fcos(); 408 void fcos();
406 void fptan(); 409 void fptan();
407 410
408 void xchgl(Register dst, Register src); 411 void xchgl(Register dst, Register src);
409 412
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 } 614 }
612 615
613 616
614 inline void Assembler::EmitOperandSizeOverride() { 617 inline void Assembler::EmitOperandSizeOverride() {
615 EmitUint8(0x66); 618 EmitUint8(0x66);
616 } 619 }
617 620
618 } // namespace dart 621 } // namespace dart
619 622
620 #endif // VM_ASSEMBLER_IA32_H_ 623 #endif // VM_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698