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

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

Issue 1708853002: MIPS: [turbofan] Add TruncateFloat32ToUint32 operator to Turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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
« no previous file with comments | « src/mips/macro-assembler-mips.cc ('k') | src/mips64/macro-assembler-mips64.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_MIPS_MACRO_ASSEMBLER_MIPS_H_ 5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/mips64/assembler-mips64.h" 10 #include "src/mips64/assembler-mips64.h"
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 841
842 void Trunc_l_d(FPURegister fd, FPURegister fs); 842 void Trunc_l_d(FPURegister fd, FPURegister fs);
843 void Round_l_d(FPURegister fd, FPURegister fs); 843 void Round_l_d(FPURegister fd, FPURegister fs);
844 void Floor_l_d(FPURegister fd, FPURegister fs); 844 void Floor_l_d(FPURegister fd, FPURegister fs);
845 void Ceil_l_d(FPURegister fd, FPURegister fs); 845 void Ceil_l_d(FPURegister fd, FPURegister fs);
846 846
847 // Convert double to unsigned word. 847 // Convert double to unsigned word.
848 void Trunc_uw_d(FPURegister fd, FPURegister fs, FPURegister scratch); 848 void Trunc_uw_d(FPURegister fd, FPURegister fs, FPURegister scratch);
849 void Trunc_uw_d(FPURegister fd, Register rs, FPURegister scratch); 849 void Trunc_uw_d(FPURegister fd, Register rs, FPURegister scratch);
850 850
851 // Convert single to unsigned word.
852 void Trunc_uw_s(FPURegister fd, FPURegister fs, FPURegister scratch);
853 void Trunc_uw_s(FPURegister fd, Register rs, FPURegister scratch);
854
851 // Convert double to unsigned long. 855 // Convert double to unsigned long.
852 void Trunc_ul_d(FPURegister fd, FPURegister fs, FPURegister scratch, 856 void Trunc_ul_d(FPURegister fd, FPURegister fs, FPURegister scratch,
853 Register result = no_reg); 857 Register result = no_reg);
854 void Trunc_ul_d(FPURegister fd, Register rs, FPURegister scratch, 858 void Trunc_ul_d(FPURegister fd, Register rs, FPURegister scratch,
855 Register result = no_reg); 859 Register result = no_reg);
856 860
857 // Convert single to unsigned long. 861 // Convert single to unsigned long.
858 void Trunc_ul_s(FPURegister fd, FPURegister fs, FPURegister scratch, 862 void Trunc_ul_s(FPURegister fd, FPURegister fs, FPURegister scratch,
859 Register result = no_reg); 863 Register result = no_reg);
860 void Trunc_ul_s(FPURegister fd, Register rs, FPURegister scratch, 864 void Trunc_ul_s(FPURegister fd, Register rs, FPURegister scratch,
(...skipping 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after
1949 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1953 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1950 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1954 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1951 #else 1955 #else
1952 #define ACCESS_MASM(masm) masm-> 1956 #define ACCESS_MASM(masm) masm->
1953 #endif 1957 #endif
1954 1958
1955 } // namespace internal 1959 } // namespace internal
1956 } // namespace v8 1960 } // namespace v8
1957 1961
1958 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1962 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/macro-assembler-mips.cc ('k') | src/mips64/macro-assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698