mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
target-i386: Implement BLSR, BLSMSK, BLSI
Do all of group 17 at one time for ease. Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
c7ab7565bc
commit
bc4b43dc2f
5 changed files with 95 additions and 1 deletions
|
@ -55,7 +55,7 @@ int cpu_x86_support_mca_broadcast(CPUX86State *env)
|
|||
/***********************************************************/
|
||||
/* x86 debug */
|
||||
|
||||
static const char *cc_op_str[] = {
|
||||
static const char *cc_op_str[CC_OP_NB] = {
|
||||
"DYNAMIC",
|
||||
"EFLAGS",
|
||||
|
||||
|
@ -108,6 +108,11 @@ static const char *cc_op_str[] = {
|
|||
"SARW",
|
||||
"SARL",
|
||||
"SARQ",
|
||||
|
||||
"BMILGB",
|
||||
"BMILGW",
|
||||
"BMILGL",
|
||||
"BMILGQ",
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue