EXTRACT_I8, EXTRACT_I16, EXTRACT_I32, EXTRACT_F32: properly modified the code in comments

This commit is contained in:
hlide 2014-05-31 14:23:22 +02:00
parent df5d86e78c
commit 334f744fb8

View File

@ -4430,11 +4430,12 @@ EMITTER(EXTRACT_I8, MATCH(I<OPCODE_EXTRACT, I8<>, V128<>, I8<>>)) {
} else {
XEASSERTALWAYS();
// TODO(benvanik): try out hlide's version:
// mov eax, 0x80808003
// xor al, i.src2.cvt8()
// vmovd xmm0, eax
// vpshufb xmm0, i.src1, xmm0
// vmovd i.dest.reg().cvt32(), xmm0
// e.mov(e.eax, 0x80808003);
// e.xor(e.al, i.src2);
// e.and(e.al, 15);
// e.vmovd(e.xmm0, e.eax);
// e.vpshufb(e.xmm0, i.src1, e.xmm0);
// e.vmovd(i.dest.reg().cvt32(), e.xmm0);
}
}
};
@ -4444,14 +4445,13 @@ EMITTER(EXTRACT_I16, MATCH(I<OPCODE_EXTRACT, I16<>, V128<>, I8<>>)) {
e.vpextrw(i.dest.reg().cvt32(), i.src1, VEC128_W(i.src2.constant()));
} else {
// TODO(benvanik): try out hlide's version:
// xor eax, eax
// mov al, i.src2 // eax = [i, 0, 0, 0]
// xor eax, 0x80800203
// imul eax, eax, 0x00000202 // [i*2, i*2, 0, 0] supposedly that 0<= i < 8
// add eax,0x80800100 // [i*2+0b00, i*2+0b01, 0x80, 0x80]
// vmovd xmm0, eax
// vpshufb xmm0, i.src1, xmm0
// vmovd i.dest.reg().cvt32(), xmm0
// e.mov(e.eax, 7);
// e.and(e.al, i.src2); // eax = [i&7, 0, 0, 0]
// e.imul(e.eax, 0x00000202); // [(i&7)*2, (i&7)*2, 0, 0]
// e.xor(e.eax, 0x80800203); // [((i&7)*2)^3, ((i&7)*2)^2, 0x80, 0x80]
// e.vmovd(e.xmm0, e.eax);
// e.vpshufb(e.xmm0, i.src1, e.xmm0);
// e.vmovd(i.dest.reg().cvt32(), e.xmm0);
XEASSERTALWAYS();
}
}
@ -4468,13 +4468,13 @@ EMITTER(EXTRACT_I32, MATCH(I<OPCODE_EXTRACT, I32<>, V128<>, I8<>>)) {
e.vpextrd(i.dest, i.src1, VEC128_D(i.src2.constant()));
} else {
// TODO(benvanik): try out hlide's version:
// xor eax, eax
// mov al, i.src2 // eax = [i, 0, 0, 0]
// imul eax, eax, 0x04040404 // [i*4, i*4, i*4, i*4] supposedly that 0<= i < 4
// xor/add eax, 0x00010203 // [i*4+0b00, i*4+0b01, i*4+0b10, i*4+0b11]
// vmovd xmm0, eax
// vpshufb xmm0, i.src1, xmm0
// vmovd i.dest.reg().cvt32(), xmm0
// e.mov(e.eax, 3);
// e.and(e.al, i.src2); // eax = [(i&3), 0, 0, 0]
// e.imul(e.eax, 0x04040404); // [(i&3)*4, (i&3)*4, (i&3)*4, (i&3)*4]
// e.add(e.eax, 0x00010203); // [((i&3)*4)+3, ((i&3)*4)+2, ((i&3)*4)+1, ((i&3)*4)+0]
// e.vmovd(e.xmm0, e.eax);
// e.vpshufb(e.xmm0, i.src1, e.xmm0);
// e.vmovd(i.dest.reg().cvt32(), e.xmm0);
// Get the desired word in xmm0, then extract that.
e.xor(e.rax, e.rax);
e.mov(e.al, i.src2);
@ -4494,6 +4494,14 @@ EMITTER(EXTRACT_F32, MATCH(I<OPCODE_EXTRACT, F32<>, V128<>, I8<>>)) {
e.vextractps(i.dest, i.src1, VEC128_F(i.src2.constant()));
} else {
XEASSERTALWAYS();
// TODO(benvanik): try out hlide's version:
// e.mov(e.eax, 3);
// e.and(e.al, i.src2); // eax = [(i&3), 0, 0, 0]
// e.imul(e.eax, 0x04040404); // [(i&3)*4, (i&3)*4, (i&3)*4, (i&3)*4]
// e.add(e.eax, 0x00010203); // [((i&3)*4)+3, ((i&3)*4)+2, ((i&3)*4)+1, ((i&3)*4)+0]
// e.vmovd(e.xmm0, e.eax);
// e.vpshufb(e.xmm0, i.src1, e.xmm0);
// e.vmovd(i.dest, e.xmm0);
}
}
};