diff options
author | Richard Henderson | 2013-01-24 01:44:37 +0100 |
---|---|---|
committer | Richard Henderson | 2013-02-19 00:52:05 +0100 |
commit | bc4b43dc2fe88712ad921c05fc1ab9ebc4cb6778 (patch) | |
tree | 125552316f32948a4db967277e9e6520e9f35c3a /target-i386/helper.c | |
parent | target-i386: Implement BEXTR (diff) | |
download | qemu-bc4b43dc2fe88712ad921c05fc1ab9ebc4cb6778.tar.gz qemu-bc4b43dc2fe88712ad921c05fc1ab9ebc4cb6778.tar.xz qemu-bc4b43dc2fe88712ad921c05fc1ab9ebc4cb6778.zip |
target-i386: Implement BLSR, BLSMSK, BLSI
Do all of group 17 at one time for ease.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-i386/helper.c')
-rw-r--r-- | target-i386/helper.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index 4bf9db7f7d..74d600f483 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -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 |