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

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

Issue 12334080: For Doubl erounding call C-function instead of attempting to inline it. Fixes issue 8760. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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) 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_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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 const Object& value); 621 const Object& value);
622 622
623 void TraceStoreIntoObject(Register object, 623 void TraceStoreIntoObject(Register object,
624 const Address& dest, 624 const Address& dest,
625 Register value); 625 Register value);
626 626
627 void DoubleNegate(XmmRegister d); 627 void DoubleNegate(XmmRegister d);
628 void FloatNegate(XmmRegister f); 628 void FloatNegate(XmmRegister f);
629 629
630 void DoubleAbs(XmmRegister reg); 630 void DoubleAbs(XmmRegister reg);
631 void DoubleRound(XmmRegister dst, XmmRegister src, XmmRegister tmp);
632 631
633 void LockCmpxchgl(const Address& address, Register reg) { 632 void LockCmpxchgl(const Address& address, Register reg) {
634 lock(); 633 lock();
635 cmpxchgl(address, reg); 634 cmpxchgl(address, reg);
636 } 635 }
637 636
638 void EnterFrame(intptr_t frame_space); 637 void EnterFrame(intptr_t frame_space);
639 void LeaveFrame(); 638 void LeaveFrame();
640 void ReserveAlignedFrameSpace(intptr_t frame_space); 639 void ReserveAlignedFrameSpace(intptr_t frame_space);
641 640
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
770 } 769 }
771 770
772 771
773 inline void Assembler::EmitOperandSizeOverride() { 772 inline void Assembler::EmitOperandSizeOverride() {
774 EmitUint8(0x66); 773 EmitUint8(0x66);
775 } 774 }
776 775
777 } // namespace dart 776 } // namespace dart
778 777
779 #endif // VM_ASSEMBLER_IA32_H_ 778 #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