| 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 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |