]> Git Repo - qemu.git/blobdiff - target-i386/cpu.h
converted condition code supprot to TCG - converted shift ops to TCG
[qemu.git] / target-i386 / cpu.h
index 5c3e7cbadbcc19462fd0e156f7f2cbd6542b7a86..eb784b4a2a61a2c865b006362d92fc2494147b6c 100644 (file)
@@ -476,6 +476,7 @@ typedef struct CPUX86State {
     /* temporaries if we cannot store them in host registers */
     target_ulong t0, t1, t2;
 #endif
+    target_ulong t3;
 
     /* standard registers */
     target_ulong regs[CPU_NB_REGS];
@@ -727,6 +728,13 @@ static inline int cpu_mmu_index (CPUState *env)
     return (env->hflags & HF_CPL_MASK) == 3 ? 1 : 0;
 }
 
+typedef struct CCTable {
+    int (*compute_all)(void); /* return all the flags */
+    int (*compute_c)(void);  /* return the C flag */
+} CCTable;
+
+extern CCTable cc_table[];
+
 #include "cpu-all.h"
 
 #include "svm.h"
This page took 0.023671 seconds and 4 git commands to generate.