• Home
  • Raw
  • Download

Lines Matching refs:FPURegister

161 struct FPURegister {  struct
179 bool is(FPURegister reg) const { return reg_code == reg.reg_code; } in is() argument
180 FPURegister low() const { in low() argument
184 FPURegister reg; in low()
189 FPURegister high() const { in high() argument
193 FPURegister reg; in high()
208 static FPURegister from_code(int code) { in from_code() argument
209 FPURegister r = {code}; in from_code()
234 typedef FPURegister FloatRegister; argument
236 typedef FPURegister DoubleRegister;
239 typedef FPURegister Simd128Register;
874 void sel(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft);
875 void sel_s(FPURegister fd, FPURegister fs, FPURegister ft);
876 void sel_d(FPURegister fd, FPURegister fs, FPURegister ft);
878 void seleqz(SecondaryField fmt, FPURegister fd, FPURegister fs,
879 FPURegister ft);
881 void selnez(SecondaryField fmt, FPURegister fd, FPURegister fs,
882 FPURegister ft);
883 void seleqz_d(FPURegister fd, FPURegister fs, FPURegister ft);
884 void seleqz_s(FPURegister fd, FPURegister fs, FPURegister ft);
885 void selnez_d(FPURegister fd, FPURegister fs, FPURegister ft);
886 void selnez_s(FPURegister fd, FPURegister fs, FPURegister ft);
888 void movz_s(FPURegister fd, FPURegister fs, Register rt);
889 void movz_d(FPURegister fd, FPURegister fs, Register rt);
890 void movt_s(FPURegister fd, FPURegister fs, uint16_t cc = 0);
891 void movt_d(FPURegister fd, FPURegister fs, uint16_t cc = 0);
892 void movf_s(FPURegister fd, FPURegister fs, uint16_t cc = 0);
893 void movf_d(FPURegister fd, FPURegister fs, uint16_t cc = 0);
894 void movn_s(FPURegister fd, FPURegister fs, Register rt);
895 void movn_d(FPURegister fd, FPURegister fs, Register rt);
919 void lwc1(FPURegister fd, const MemOperand& src);
920 void ldc1(FPURegister fd, const MemOperand& src);
922 void swc1(FPURegister fs, const MemOperand& dst);
923 void sdc1(FPURegister fs, const MemOperand& dst);
925 void mtc1(Register rt, FPURegister fs);
926 void mthc1(Register rt, FPURegister fs);
927 void dmtc1(Register rt, FPURegister fs);
929 void mfc1(Register rt, FPURegister fs);
930 void mfhc1(Register rt, FPURegister fs);
931 void dmfc1(Register rt, FPURegister fs);
937 void add_s(FPURegister fd, FPURegister fs, FPURegister ft);
938 void add_d(FPURegister fd, FPURegister fs, FPURegister ft);
939 void sub_s(FPURegister fd, FPURegister fs, FPURegister ft);
940 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft);
941 void mul_s(FPURegister fd, FPURegister fs, FPURegister ft);
942 void mul_d(FPURegister fd, FPURegister fs, FPURegister ft);
943 void madd_s(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft);
944 void madd_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft);
945 void msub_s(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft);
946 void msub_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft);
947 void maddf_s(FPURegister fd, FPURegister fs, FPURegister ft);
948 void maddf_d(FPURegister fd, FPURegister fs, FPURegister ft);
949 void msubf_s(FPURegister fd, FPURegister fs, FPURegister ft);
950 void msubf_d(FPURegister fd, FPURegister fs, FPURegister ft);
951 void div_s(FPURegister fd, FPURegister fs, FPURegister ft);
952 void div_d(FPURegister fd, FPURegister fs, FPURegister ft);
953 void abs_s(FPURegister fd, FPURegister fs);
954 void abs_d(FPURegister fd, FPURegister fs);
955 void mov_d(FPURegister fd, FPURegister fs);
956 void mov_s(FPURegister fd, FPURegister fs);
957 void neg_s(FPURegister fd, FPURegister fs);
958 void neg_d(FPURegister fd, FPURegister fs);
959 void sqrt_s(FPURegister fd, FPURegister fs);
960 void sqrt_d(FPURegister fd, FPURegister fs);
961 void rsqrt_s(FPURegister fd, FPURegister fs);
962 void rsqrt_d(FPURegister fd, FPURegister fs);
963 void recip_d(FPURegister fd, FPURegister fs);
964 void recip_s(FPURegister fd, FPURegister fs);
967 void cvt_w_s(FPURegister fd, FPURegister fs);
968 void cvt_w_d(FPURegister fd, FPURegister fs);
969 void trunc_w_s(FPURegister fd, FPURegister fs);
970 void trunc_w_d(FPURegister fd, FPURegister fs);
971 void round_w_s(FPURegister fd, FPURegister fs);
972 void round_w_d(FPURegister fd, FPURegister fs);
973 void floor_w_s(FPURegister fd, FPURegister fs);
974 void floor_w_d(FPURegister fd, FPURegister fs);
975 void ceil_w_s(FPURegister fd, FPURegister fs);
976 void ceil_w_d(FPURegister fd, FPURegister fs);
977 void rint_s(FPURegister fd, FPURegister fs);
978 void rint_d(FPURegister fd, FPURegister fs);
979 void rint(SecondaryField fmt, FPURegister fd, FPURegister fs);
982 void cvt_l_s(FPURegister fd, FPURegister fs);
983 void cvt_l_d(FPURegister fd, FPURegister fs);
984 void trunc_l_s(FPURegister fd, FPURegister fs);
985 void trunc_l_d(FPURegister fd, FPURegister fs);
986 void round_l_s(FPURegister fd, FPURegister fs);
987 void round_l_d(FPURegister fd, FPURegister fs);
988 void floor_l_s(FPURegister fd, FPURegister fs);
989 void floor_l_d(FPURegister fd, FPURegister fs);
990 void ceil_l_s(FPURegister fd, FPURegister fs);
991 void ceil_l_d(FPURegister fd, FPURegister fs);
993 void class_s(FPURegister fd, FPURegister fs);
994 void class_d(FPURegister fd, FPURegister fs);
996 void min(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft);
997 void mina(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft);
998 void max(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft);
999 void maxa(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft);
1000 void min_s(FPURegister fd, FPURegister fs, FPURegister ft);
1001 void min_d(FPURegister fd, FPURegister fs, FPURegister ft);
1002 void max_s(FPURegister fd, FPURegister fs, FPURegister ft);
1003 void max_d(FPURegister fd, FPURegister fs, FPURegister ft);
1004 void mina_s(FPURegister fd, FPURegister fs, FPURegister ft);
1005 void mina_d(FPURegister fd, FPURegister fs, FPURegister ft);
1006 void maxa_s(FPURegister fd, FPURegister fs, FPURegister ft);
1007 void maxa_d(FPURegister fd, FPURegister fs, FPURegister ft);
1009 void cvt_s_w(FPURegister fd, FPURegister fs);
1010 void cvt_s_l(FPURegister fd, FPURegister fs);
1011 void cvt_s_d(FPURegister fd, FPURegister fs);
1013 void cvt_d_w(FPURegister fd, FPURegister fs);
1014 void cvt_d_l(FPURegister fd, FPURegister fs);
1015 void cvt_d_s(FPURegister fd, FPURegister fs);
1019 FPURegister fd, FPURegister ft, FPURegister fs);
1020 void cmp_s(FPUCondition cond, FPURegister fd, FPURegister fs, FPURegister ft);
1021 void cmp_d(FPUCondition cond, FPURegister fd, FPURegister fs, FPURegister ft);
1023 void bc1eqz(int16_t offset, FPURegister ft);
1024 inline void bc1eqz(Label* L, FPURegister ft) { in bc1eqz()
1027 void bc1nez(int16_t offset, FPURegister ft);
1028 inline void bc1nez(Label* L, FPURegister ft) { in bc1nez()
1034 FPURegister ft, FPURegister fs, uint16_t cc = 0);
1035 void c_s(FPUCondition cond, FPURegister ft, FPURegister fs, uint16_t cc = 0);
1036 void c_d(FPUCondition cond, FPURegister ft, FPURegister fs, uint16_t cc = 0);
1046 void fcmp(FPURegister src1, const double src2, FPUCondition cond);
1390 FPURegister ft,
1391 FPURegister fs,
1392 FPURegister fd,
1396 FPURegister fr,
1397 FPURegister ft,
1398 FPURegister fs,
1399 FPURegister fd,
1405 FPURegister fs,
1406 FPURegister fd,
1423 Opcode opcode, Register r1, FPURegister r2, int32_t j,