Commit bf0880614547dfeaed77cde6f37f081eec3b626e
1 parent
f9e92e97
native FPU support in code copy mode
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@650 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
3 additions
and
1 deletions
exec-all.h
... | ... | @@ -152,7 +152,9 @@ typedef struct TranslationBlock { |
152 | 152 | uint16_t size; /* size of target code for this block (1 <= |
153 | 153 | size <= TARGET_PAGE_SIZE) */ |
154 | 154 | uint16_t cflags; /* compile flags */ |
155 | -#define CF_CODE_COPY 0x0001 /* block was generated in code copy mode */ | |
155 | +#define CF_CODE_COPY 0x0001 /* block was generated in code copy mode */ | |
156 | +#define CF_TB_FP_USED 0x0002 /* fp ops are used in the TB */ | |
157 | +#define CF_FP_USED 0x0004 /* fp ops are used in the TB or in a chained TB */ | |
156 | 158 | |
157 | 159 | uint8_t *tc_ptr; /* pointer to the translated code */ |
158 | 160 | struct TranslationBlock *hash_next; /* next matching tb for virtual address */ | ... | ... |