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