Lines Matching refs:vd
662 void TurboAssembler::Fmov(VRegister vd, double imm) {
665 if (vd.Is1S() || vd.Is2S() || vd.Is4S()) {
666 Fmov(vd, static_cast<float>(imm));
670 DCHECK(vd.Is1D() || vd.Is2D());
672 fmov(vd, imm);
675 if (vd.IsScalar()) {
677 fmov(vd, xzr);
682 fmov(vd, tmp);
685 Movi(vd, bits);
690 void TurboAssembler::Fmov(VRegister vd, float imm) {
692 if (vd.Is1D() || vd.Is2D()) {
693 Fmov(vd, static_cast<double>(imm));
697 DCHECK(vd.Is1S() || vd.Is2S() || vd.Is4S());
699 fmov(vd, imm);
702 if (vd.IsScalar()) {
704 fmov(vd, wzr);
709 Fmov(vd, tmp);
712 Movi(vd, bits);