Commit 33b96b0c authored by jiepan's avatar jiepan Committed by Commit Bot

Fix the parameter name of vmovdqu function

Switch the parameter name src and dst.

Change-Id: I4bd07959dd9e9da3a32ebb8d4b61dd6b92e90592
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1918094Reviewed-by: 's avatarBill Budge <bbudge@chromium.org>
Commit-Queue: Jie Pan <jie.pan@intel.com>
Cr-Commit-Position: refs/heads/master@{#64996}
parent 43528531
......@@ -3649,12 +3649,12 @@ void Assembler::vmovdqu(XMMRegister dst, Operand src) {
emit_sse_operand(dst, src);
}
void Assembler::vmovdqu(Operand src, XMMRegister dst) {
void Assembler::vmovdqu(Operand dst, XMMRegister src) {
DCHECK(IsEnabled(AVX));
EnsureSpace ensure_space(this);
emit_vex_prefix(dst, xmm0, src, kL128, kF3, k0F, kWIG);
emit_vex_prefix(src, xmm0, dst, kL128, kF3, k0F, kWIG);
emit(0x7F);
emit_sse_operand(dst, src);
emit_sse_operand(src, dst);
}
void Assembler::vinstr(byte op, XMMRegister dst, XMMRegister src1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment