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

Side by Side Diff: src/x64/macro-assembler-x64.h

Issue 1584663007: [turbofan] Implement rounding of floats on x64 and ia32 without sse4.1. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_X64_MACRO_ASSEMBLER_X64_H_ 5 #ifndef V8_X64_MACRO_ASSEMBLER_X64_H_
6 #define V8_X64_MACRO_ASSEMBLER_X64_H_ 6 #define V8_X64_MACRO_ASSEMBLER_X64_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/base/flags.h" 10 #include "src/base/flags.h"
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 819
820 void Cvtqui2ss(XMMRegister dst, Register src, Register tmp); 820 void Cvtqui2ss(XMMRegister dst, Register src, Register tmp);
821 void Cvtqui2sd(XMMRegister dst, Register src, Register tmp); 821 void Cvtqui2sd(XMMRegister dst, Register src, Register tmp);
822 822
823 void Cvtsd2si(Register dst, XMMRegister src); 823 void Cvtsd2si(Register dst, XMMRegister src);
824 824
825 void Cvttsd2si(Register dst, XMMRegister src); 825 void Cvttsd2si(Register dst, XMMRegister src);
826 void Cvttsd2si(Register dst, const Operand& src); 826 void Cvttsd2si(Register dst, const Operand& src);
827 void Cvttss2siq(Register dst, XMMRegister src); 827 void Cvttss2siq(Register dst, XMMRegister src);
828 void Cvttss2siq(Register dst, const Operand& src); 828 void Cvttss2siq(Register dst, const Operand& src);
829 void Cvtss2siq(Register dst, XMMRegister src);
830 void Cvtss2siq(Register dst, const Operand& src);
829 void Cvttsd2siq(Register dst, XMMRegister src); 831 void Cvttsd2siq(Register dst, XMMRegister src);
830 void Cvttsd2siq(Register dst, const Operand& src); 832 void Cvttsd2siq(Register dst, const Operand& src);
833 void Cvtsd2siq(Register dst, XMMRegister src);
834 void Cvtsd2siq(Register dst, const Operand& src);
831 835
832 // Move if the registers are not identical. 836 // Move if the registers are not identical.
833 void Move(Register target, Register source); 837 void Move(Register target, Register source);
834 838
835 // TestBit and Load SharedFunctionInfo special field. 839 // TestBit and Load SharedFunctionInfo special field.
836 void TestBitSharedFunctionInfoSpecialField(Register base, 840 void TestBitSharedFunctionInfoSpecialField(Register base,
837 int offset, 841 int offset,
838 int bit_index); 842 int bit_index);
839 void LoadSharedFunctionInfoSpecialField(Register dst, 843 void LoadSharedFunctionInfoSpecialField(Register dst,
840 Register base, 844 Register base,
(...skipping 893 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 } \ 1738 } \
1735 masm-> 1739 masm->
1736 #else 1740 #else
1737 #define ACCESS_MASM(masm) masm-> 1741 #define ACCESS_MASM(masm) masm->
1738 #endif 1742 #endif
1739 1743
1740 } // namespace internal 1744 } // namespace internal
1741 } // namespace v8 1745 } // namespace v8
1742 1746
1743 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1747 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698