mirror of
https://github.com/herumi/xbyak.git
synced 2025-06-03 09:07:42 +00:00
RAO_INT supports APX
This commit is contained in:
parent
26840492c3
commit
a7b02ac80d
4 changed files with 47 additions and 14 deletions
|
@ -860,14 +860,14 @@ void put()
|
|||
const char *prefix;
|
||||
} tbl[] = {
|
||||
{ "aadd", "" },
|
||||
{ "aand", " | T_66" },
|
||||
{ "aor", " | T_F2" },
|
||||
{ "axor", " | T_F3" },
|
||||
{ "aand", "|T_66" },
|
||||
{ "aor", "|T_F2" },
|
||||
{ "axor", "|T_F3" },
|
||||
};
|
||||
for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) {
|
||||
const Tbl *p = &tbl[i];
|
||||
printf("void %s(const Address& addr, const Reg32e ®) { ", p->name);
|
||||
printf("opMR(addr, reg, T_0F38%s, 0x0FC); }\n", p->prefix);
|
||||
printf("opMR(addr, reg, T_0F38%s, 0x0FC, T_APX%s); }\n", p->prefix, p->prefix);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue