add vmovsd, vmovss

This commit is contained in:
MITSUNARI Shigeo 2016-07-09 17:30:21 +09:00
parent b6fe81bf84
commit ac26e3a19c
5 changed files with 41 additions and 17 deletions

View file

@ -24,6 +24,7 @@ enum {
T_MUST_EVEX = 1 << 23,
T_B32 = 1 << 24, // m32bcst
T_B64 = 1 << 25, // m64bcst
T_M_K = 1 << 26, // mem{k}
T_XXX
};
@ -124,5 +125,9 @@ std::string type2String(int type)
if (!str.empty()) str += " | ";
str += "T_B64";
}
if (type & T_M_K) {
if (!str.empty()) str += " | ";
str += "T_M_K";
}
return str;
}