OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TB_JMP_PAGE_BITS
(Results
1 - 2
of
2
) sorted by null
/external/qemu/
cpu-defs.h
67
/* Only the bottom
TB_JMP_PAGE_BITS
of the jump cache hash bits vary for
70
#define
TB_JMP_PAGE_BITS
(TB_JMP_CACHE_BITS / 2)
71
#define TB_JMP_PAGE_SIZE (1 <<
TB_JMP_PAGE_BITS
)
exec-all.h
180
tmp = pc ^ (pc >> (TARGET_PAGE_BITS -
TB_JMP_PAGE_BITS
));
181
return (tmp >> (TARGET_PAGE_BITS -
TB_JMP_PAGE_BITS
)) & TB_JMP_PAGE_MASK;
187
tmp = pc ^ (pc >> (TARGET_PAGE_BITS -
TB_JMP_PAGE_BITS
));
188
return (((tmp >> (TARGET_PAGE_BITS -
TB_JMP_PAGE_BITS
)) & TB_JMP_PAGE_MASK)
Completed in 150 milliseconds