HomeSort by relevance Sort by last modified time
    Searched refs:tpc2gpc (Results 1 - 3 of 3) sorted by null

  /external/qemu/
exec-all.h 169 target_ulong* tpc2gpc; member in struct:TranslationBlock
170 /* Number of pairs (pc_tb, pc_guest) in tpc2gpc array. */
205 return (tb->tpc2gpc != NULL && pair < tb->tpc2gpc_pairs) ?
206 tb->tpc2gpc[pair * 2] : 0;
216 return (tb->tpc2gpc != NULL && pair < tb->tpc2gpc_pairs) ?
217 tb->tpc2gpc[pair * 2 + 1] : 0;
223 * translated PC in tb's tpc2gpc array.
228 if (tb->tpc2gpc != NULL && tb->tpc2gpc_pairs != 0) {
232 if (tb_pc < tb->tpc2gpc[0]) {
237 if (tb_pc < tb->tpc2gpc[m])
    [all...]
translate-all.c 148 tb->tpc2gpc =
150 if (tb->tpc2gpc != NULL) {
151 memcpy(tb->tpc2gpc, gen_opc_tpc2gpc_ptr,
exec.c 640 env->tb_jmp_cache[tb_to_clean]->tpc2gpc != NULL) {
641 qemu_free(env->tb_jmp_cache[tb_to_clean]->tpc2gpc);
642 env->tb_jmp_cache[tb_to_clean]->tpc2gpc = NULL;
838 if (tb->tpc2gpc != NULL) {
839 qemu_free(tb->tpc2gpc);
840 tb->tpc2gpc = NULL;
    [all...]

Completed in 47 milliseconds