Lines Matching refs:fs
975 FPURegister fs,
977 // Move the data from fs to t8.
978 mfc1(t8, fs);
1022 FPURegister fs,
1024 Trunc_uw_d(fs, t8, scratch);
1028 void MacroAssembler::Trunc_w_d(FPURegister fd, FPURegister fs) {
1029 if (kArchVariant == kLoongson && fd.is(fs)) {
1030 mfc1(t8, FPURegister::from_code(fs.code() + 1));
1031 trunc_w_d(fd, fs);
1032 mtc1(t8, FPURegister::from_code(fs.code() + 1));
1034 trunc_w_d(fd, fs);
1038 void MacroAssembler::Round_w_d(FPURegister fd, FPURegister fs) {
1039 if (kArchVariant == kLoongson && fd.is(fs)) {
1040 mfc1(t8, FPURegister::from_code(fs.code() + 1));
1041 round_w_d(fd, fs);
1042 mtc1(t8, FPURegister::from_code(fs.code() + 1));
1044 round_w_d(fd, fs);
1049 void MacroAssembler::Floor_w_d(FPURegister fd, FPURegister fs) {
1050 if (kArchVariant == kLoongson && fd.is(fs)) {
1051 mfc1(t8, FPURegister::from_code(fs.code() + 1));
1052 floor_w_d(fd, fs);
1053 mtc1(t8, FPURegister::from_code(fs.code() + 1));
1055 floor_w_d(fd, fs);
1060 void MacroAssembler::Ceil_w_d(FPURegister fd, FPURegister fs) {
1061 if (kArchVariant == kLoongson && fd.is(fs)) {
1062 mfc1(t8, FPURegister::from_code(fs.code() + 1));
1063 ceil_w_d(fd, fs);
1064 mtc1(t8, FPURegister::from_code(fs.code() + 1));
1066 ceil_w_d(fd, fs);