diff options
author | Richard Henderson <rth@twiddle.net> | 2013-01-23 18:17:33 -0800 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2013-02-19 23:05:18 -0800 |
commit | cd7f97cafdd80d6bd4950ccfdcd9acb7850184b2 (patch) | |
tree | 92ee2c5da0c290d7b1fd967c432eed58963319d7 /target-i386/cpu.h | |
parent | e2c3c2c551bccd843135eab1ba202f8d2f86800b (diff) |
target-i386: Implement ADX extension
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 960676bebd..e0443d8917 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -641,6 +641,10 @@ typedef enum { CC_OP_BMILGL, CC_OP_BMILGQ, + CC_OP_ADCX, /* CC_DST = C, CC_SRC = rest. */ + CC_OP_ADOX, /* CC_DST = O, CC_SRC = rest. */ + CC_OP_ADCOX, /* CC_DST = C, CC_SRC2 = O, CC_SRC = rest. */ + CC_OP_NB, } CCOp; |