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

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

Issue 1476063002: [turbofan] Implemented the TruncateFloat32ToInt64 TurboFan operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Increased the type of opcodes from uint8_t to uint16_t. 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 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 void Cvtqsi2sd(XMMRegister dst, Register src); 825 void Cvtqsi2sd(XMMRegister dst, Register src);
826 void Cvtqsi2sd(XMMRegister dst, const Operand& src); 826 void Cvtqsi2sd(XMMRegister dst, const Operand& src);
827 827
828 void Cvtqui2ss(XMMRegister dst, Register src, Register tmp); 828 void Cvtqui2ss(XMMRegister dst, Register src, Register tmp);
829 void Cvtqui2sd(XMMRegister dst, Register src, Register tmp); 829 void Cvtqui2sd(XMMRegister dst, Register src, Register tmp);
830 830
831 void Cvtsd2si(Register dst, XMMRegister src); 831 void Cvtsd2si(Register dst, XMMRegister src);
832 832
833 void Cvttsd2si(Register dst, XMMRegister src); 833 void Cvttsd2si(Register dst, XMMRegister src);
834 void Cvttsd2si(Register dst, const Operand& src); 834 void Cvttsd2si(Register dst, const Operand& src);
835 void Cvttss2siq(Register dst, XMMRegister src);
836 void Cvttss2siq(Register dst, const Operand& src);
835 void Cvttsd2siq(Register dst, XMMRegister src); 837 void Cvttsd2siq(Register dst, XMMRegister src);
836 void Cvttsd2siq(Register dst, const Operand& src); 838 void Cvttsd2siq(Register dst, const Operand& src);
837 839
838 // Move if the registers are not identical. 840 // Move if the registers are not identical.
839 void Move(Register target, Register source); 841 void Move(Register target, Register source);
840 842
841 // TestBit and Load SharedFunctionInfo special field. 843 // TestBit and Load SharedFunctionInfo special field.
842 void TestBitSharedFunctionInfoSpecialField(Register base, 844 void TestBitSharedFunctionInfoSpecialField(Register base,
843 int offset, 845 int offset,
844 int bit_index); 846 int bit_index);
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
1732 } \ 1734 } \
1733 masm-> 1735 masm->
1734 #else 1736 #else
1735 #define ACCESS_MASM(masm) masm-> 1737 #define ACCESS_MASM(masm) masm->
1736 #endif 1738 #endif
1737 1739
1738 } // namespace internal 1740 } // namespace internal
1739 } // namespace v8 1741 } // namespace v8
1740 1742
1741 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1743 #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