OLD | NEW |
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 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 | 835 |
836 void Trunc_l_d(FPURegister fd, FPURegister fs); | 836 void Trunc_l_d(FPURegister fd, FPURegister fs); |
837 void Round_l_d(FPURegister fd, FPURegister fs); | 837 void Round_l_d(FPURegister fd, FPURegister fs); |
838 void Floor_l_d(FPURegister fd, FPURegister fs); | 838 void Floor_l_d(FPURegister fd, FPURegister fs); |
839 void Ceil_l_d(FPURegister fd, FPURegister fs); | 839 void Ceil_l_d(FPURegister fd, FPURegister fs); |
840 | 840 |
841 // Convert double to unsigned word. | 841 // Convert double to unsigned word. |
842 void Trunc_uw_d(FPURegister fd, FPURegister fs, FPURegister scratch); | 842 void Trunc_uw_d(FPURegister fd, FPURegister fs, FPURegister scratch); |
843 void Trunc_uw_d(FPURegister fd, Register rs, FPURegister scratch); | 843 void Trunc_uw_d(FPURegister fd, Register rs, FPURegister scratch); |
844 | 844 |
| 845 // Convert double to unsigned long. |
| 846 void Trunc_ul_d(FPURegister fd, FPURegister fs, FPURegister scratch); |
| 847 void Trunc_ul_d(FPURegister fd, Register rs, FPURegister scratch); |
| 848 |
845 void Trunc_w_d(FPURegister fd, FPURegister fs); | 849 void Trunc_w_d(FPURegister fd, FPURegister fs); |
846 void Round_w_d(FPURegister fd, FPURegister fs); | 850 void Round_w_d(FPURegister fd, FPURegister fs); |
847 void Floor_w_d(FPURegister fd, FPURegister fs); | 851 void Floor_w_d(FPURegister fd, FPURegister fs); |
848 void Ceil_w_d(FPURegister fd, FPURegister fs); | 852 void Ceil_w_d(FPURegister fd, FPURegister fs); |
849 | 853 |
850 void Madd_d(FPURegister fd, | 854 void Madd_d(FPURegister fd, |
851 FPURegister fr, | 855 FPURegister fr, |
852 FPURegister fs, | 856 FPURegister fs, |
853 FPURegister ft, | 857 FPURegister ft, |
854 FPURegister scratch); | 858 FPURegister scratch); |
(...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1848 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1852 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1849 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1853 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1850 #else | 1854 #else |
1851 #define ACCESS_MASM(masm) masm-> | 1855 #define ACCESS_MASM(masm) masm-> |
1852 #endif | 1856 #endif |
1853 | 1857 |
1854 } // namespace internal | 1858 } // namespace internal |
1855 } // namespace v8 | 1859 } // namespace v8 |
1856 | 1860 |
1857 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1861 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
OLD | NEW |