aboutsummaryrefslogtreecommitdiff
path: root/target-i386/cpu.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2013-01-23 16:44:37 -0800
committerRichard Henderson <rth@twiddle.net>2013-02-18 15:52:05 -0800
commitbc4b43dc2fe88712ad921c05fc1ab9ebc4cb6778 (patch)
tree125552316f32948a4db967277e9e6520e9f35c3a /target-i386/cpu.h
parentc7ab7565bc6d52cc140230aa4d0533d13d89c8b1 (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/cpu.h')
-rw-r--r--target-i386/cpu.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h
index 1fa9dc8267..960676bebd 100644
--- a/target-i386/cpu.h
+++ b/target-i386/cpu.h
@@ -636,6 +636,11 @@ typedef enum {
CC_OP_SARL,
CC_OP_SARQ,
+ CC_OP_BMILGB, /* Z,S via CC_DST, C = SRC==0; O=0; P,A undefined */
+ CC_OP_BMILGW,
+ CC_OP_BMILGL,
+ CC_OP_BMILGQ,
+
CC_OP_NB,
} CCOp;