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

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

Issue 1475343002: Revert of [turbofan] Implemented the TruncateFloat32ToInt64 TurboFan operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « src/x64/disasm-x64.cc ('k') | src/x64/macro-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 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 void Cvtqsi2sd(XMMRegister dst, Register src); 819 void Cvtqsi2sd(XMMRegister dst, Register src);
820 void Cvtqsi2sd(XMMRegister dst, const Operand& src); 820 void Cvtqsi2sd(XMMRegister dst, const Operand& src);
821 821
822 void Cvtqui2ss(XMMRegister dst, Register src, Register tmp); 822 void Cvtqui2ss(XMMRegister dst, Register src, Register tmp);
823 void Cvtqui2sd(XMMRegister dst, Register src, Register tmp); 823 void Cvtqui2sd(XMMRegister dst, Register src, Register tmp);
824 824
825 void Cvtsd2si(Register dst, XMMRegister src); 825 void Cvtsd2si(Register dst, XMMRegister src);
826 826
827 void Cvttsd2si(Register dst, XMMRegister src); 827 void Cvttsd2si(Register dst, XMMRegister src);
828 void Cvttsd2si(Register dst, const Operand& src); 828 void Cvttsd2si(Register dst, const Operand& src);
829 void Cvttss2siq(Register dst, XMMRegister src);
830 void Cvttss2siq(Register dst, const Operand& src);
831 void Cvttsd2siq(Register dst, XMMRegister src); 829 void Cvttsd2siq(Register dst, XMMRegister src);
832 void Cvttsd2siq(Register dst, const Operand& src); 830 void Cvttsd2siq(Register dst, const Operand& src);
833 831
834 // Move if the registers are not identical. 832 // Move if the registers are not identical.
835 void Move(Register target, Register source); 833 void Move(Register target, Register source);
836 834
837 // TestBit and Load SharedFunctionInfo special field. 835 // TestBit and Load SharedFunctionInfo special field.
838 void TestBitSharedFunctionInfoSpecialField(Register base, 836 void TestBitSharedFunctionInfoSpecialField(Register base,
839 int offset, 837 int offset,
840 int bit_index); 838 int bit_index);
(...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after
1732 } \ 1730 } \
1733 masm-> 1731 masm->
1734 #else 1732 #else
1735 #define ACCESS_MASM(masm) masm-> 1733 #define ACCESS_MASM(masm) masm->
1736 #endif 1734 #endif
1737 1735
1738 } // namespace internal 1736 } // namespace internal
1739 } // namespace v8 1737 } // namespace v8
1740 1738
1741 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1739 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/x64/disasm-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698