Changeset 17265 in vbox for trunk/src/recompiler_new/translate-all.c
- Timestamp:
- Mar 3, 2009 9:49:57 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/translate-all.c
r15920 r17265 1 1 /* 2 2 * Host code generation 3 * 3 * 4 4 * Copyright (c) 2003 Fabrice Bellard 5 5 * … … 87 87 88 88 /* return non zero if the very first instruction is invalid so that 89 the virtual CPU can trigger an exception. 89 the virtual CPU can trigger an exception. 90 90 91 91 '*gen_code_size_ptr' contains the size of the generated code (host … … 134 134 s->tb_next = tb->tb_next; 135 135 #endif 136 136 137 137 #ifdef CONFIG_PROFILER 138 138 s->tb_count++; … … 152 152 RAWEx_ProfileStop(env, STATS_QEMU_COMPILATION); 153 153 #endif 154 154 155 155 #ifdef DEBUG_DISAS 156 156 if (loglevel & CPU_LOG_TB_OUT_ASM) { … … 164 164 } 165 165 166 /* The cpu state corresponding to 'searched_pc' is restored. 166 /* The cpu state corresponding to 'searched_pc' is restored. 167 167 */ 168 int cpu_restore_state(TranslationBlock *tb, 168 int cpu_restore_state(TranslationBlock *tb, 169 169 CPUState *env, unsigned long searched_pc, 170 170 void *puc) … … 195 195 if (searched_pc < tc_ptr) 196 196 return -1; 197 197 198 198 s->tb_next_offset = tb->tb_next_offset; 199 199 #ifdef USE_DIRECT_JUMP
Note:
See TracChangeset
for help on using the changeset viewer.