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

  /external/qemu/include/exec/
cpu-defs.h 68 /* Only the bottom TB_JMP_PAGE_BITS of the jump cache hash bits vary for
71 #define TB_JMP_PAGE_BITS (TB_JMP_CACHE_BITS / 2)
72 #define TB_JMP_PAGE_SIZE (1 << TB_JMP_PAGE_BITS)
exec-all.h 209 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
210 return (tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK;
216 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
217 return (((tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK)

Completed in 130 milliseconds