Home | History | Annotate | Download | only in a64

Lines Matching refs:Fmov

627   void Fmov(FPRegister fd, FPRegister fn) {
630 // registers. fmov(s0, s0) is not a no-op because it clears the top word of
631 // d0. Technically, fmov(d0, d0) is not a no-op either because it clears
634 fmov(fd, fn);
637 void Fmov(FPRegister fd, Register rn) {
640 fmov(fd, rn);
646 void Fmov(FPRegister fd, double imm);
647 void Fmov(FPRegister fd, float imm);
650 void Fmov(FPRegister fd, T imm) {
652 Fmov(fd, static_cast<double>(imm));
654 void Fmov(Register rd, FPRegister fn) {
657 fmov(rd, fn);