add vmovsd, vmovss
This commit is contained in:
parent
b6fe81bf84
commit
ac26e3a19c
5 changed files with 41 additions and 17 deletions
|
@ -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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue