diff options
author | Richard Henderson <rth@twiddle.net> | 2013-01-23 16:44:37 -0800 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2013-02-18 15:52:05 -0800 |
commit | bc4b43dc2fe88712ad921c05fc1ab9ebc4cb6778 (patch) | |
tree | 125552316f32948a4db967277e9e6520e9f35c3a /target-i386/helper.c | |
parent | c7ab7565bc6d52cc140230aa4d0533d13d89c8b1 (diff) |
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 |