aboutsummaryrefslogtreecommitdiffhomepage
path: root/gen
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2024-10-14 12:24:47 +0900
committerMITSUNARI Shigeo <[email protected]>2024-10-14 12:24:47 +0900
commit21e80948eec08c3ccd0eef8654441cba55ae75f7 (patch)
treed1a44b14cfc482f351b8d093badb26f6c34bd37c /gen
parent5582082d7b925a29298881c2ba457cec5c0eb8f1 (diff)
downloadxbyak-21e80948eec08c3ccd0eef8654441cba55ae75f7.tar.gz
xbyak-21e80948eec08c3ccd0eef8654441cba55ae75f7.zip
tweak vmovd
Diffstat (limited to 'gen')
-rw-r--r--gen/gen_code.cpp34
1 files changed, 2 insertions, 32 deletions
diff --git a/gen/gen_code.cpp b/gen/gen_code.cpp
index e72df50..df4e5b9 100644
--- a/gen/gen_code.cpp
+++ b/gen/gen_code.cpp
@@ -1734,8 +1734,8 @@ void put()
}
// mov
{
- printf("void vmovd(const Xmm& x, const Operand& op) { if (!op.isREG(32) && !op.isMEM()) XBYAK_THROW(ERR_BAD_COMBINATION) opAVX_X_X_XM(x, xm0, op, T_0F | T_66 | T_W0 | T_EVEX | T_N4, 0x6E); }\n");
- printf("void vmovd(const Operand& op, const Xmm& x) { if (!op.isREG(32) && !op.isMEM()) XBYAK_THROW(ERR_BAD_COMBINATION) opAVX_X_X_XM(x, xm0, op, T_0F | T_66 | T_W0 | T_EVEX | T_N4, 0x7E); }\n");
+ puts("void vmovd(const Xmm& x, const Operand& op, PreferredEncoding encoding = DefaultEncoding) { opVmovd(x, op, false, encoding); }");
+ puts("void vmovd(const Operand& op, const Xmm& x, PreferredEncoding encoding = DefaultEncoding) { opVmovd(x, op, true, encoding); }");
printf("void vmovq(const Xmm& x, const Address& addr) { uint64_t type; uint8_t code; if (x.getIdx() < 16) { type = T_0F | T_F3; code = 0x7E; } else { type = T_0F | T_66 | T_EVEX | T_EW1 | T_N8; code = 0x6E; } opAVX_X_X_XM(x, xm0, addr, type, code); }\n");
printf("void vmovq(const Address& addr, const Xmm& x) { opAVX_X_X_XM(x, xm0, addr, T_0F | T_66 | T_EVEX | T_EW1 | T_N8, x.getIdx() < 16 ? 0xD6 : 0x7E); }\n");
@@ -1900,36 +1900,6 @@ void put()
printf("void %s(const Xmm& x1, const Xmm& x2, const Operand& op, PreferredEncoding encoding = DefaultEncoding) { opEncoding(x1, x2, op, %s, 0x%02X, encoding); }\n", p->name, s.c_str(), p->code);
}
}
- // avx-vnni-int8
- // avx-vnni-int16
-#if 0
- {
- const struct Tbl {
- uint8_t code;
- const char *name;
- uint64_t type;
- } tbl[] = {
-// { 0x50, "vpdpbssd", T_F2 | T_0F38 | T_W0 | T_YMM },
-// { 0x51, "vpdpbssds", T_F2 | T_0F38 | T_W0 | T_YMM },
-// { 0x50, "vpdpbsud", T_F3 | T_0F38 | T_W0 | T_YMM },
-// { 0x51, "vpdpbsuds", T_F3 | T_0F38 | T_W0 | T_YMM },
-// { 0x50, "vpdpbuud", T_0F38 | T_W0 | T_YMM },
-// { 0x51, "vpdpbuuds", T_0F38 | T_W0 | T_YMM },
-
-// { 0xD2, "vpdpwsud", T_F3 | T_0F38 | T_W0 | T_YMM },
-// { 0xD3, "vpdpwsuds", T_F3 | T_0F38 | T_W0 | T_YMM },
-// { 0xD2, "vpdpwusd", T_66 | T_0F38 | T_W0 | T_YMM },
-// { 0xD3, "vpdpwusds", T_66 | T_0F38 | T_W0 | T_YMM },
-// { 0xD2, "vpdpwuud", T_0F38 | T_W0 | T_YMM },
-// { 0xD3, "vpdpwuuds", T_0F38 | T_W0 | T_YMM },
- };
- for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) {
- const Tbl *p = &tbl[i];
- std::string s = type2String(p->type);
- printf("void %s(const Xmm& x1, const Xmm& x2, const Operand& op) { opAVX_X_X_XM(x1, x2, op, %s, 0x%02X); }\n", p->name, s.c_str(), p->code);
- }
- }
-#endif
}
void put32()