D | SkVM.cpp | 2030 void Assembler::vmulps(Ymm dst, Ymm x, Operand y) { this->op(0,0x0f,0x59, dst,x,y); } in vmulps() function in skvm::Assembler 3844 if (in_reg(x)) { a->vmulps(dst(x), r(x), any(y)); } in jit() 3845 else { a->vmulps(dst(y), r(y), any(x)); } in jit()
|