MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / get_jit_opcode

Function get_jit_opcode

src/newcpu.cpp:5658–5674  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5656}
5657
5658static uae_u32 get_jit_opcode(void)
5659{
5660 uae_u32 opcode;
5661 if (currprefs.cpu_compatible) {
5662 opcode = get_word_020_prefetchf(m68k_getpc());
5663#ifdef HAVE_GET_WORD_UNSWAPPED
5664 opcode = do_byteswap_16(opcode);
5665#endif
5666 } else {
5667#ifdef HAVE_GET_WORD_UNSWAPPED
5668 opcode = do_get_mem_word_unswapped((uae_u16 *)get_real_address(m68k_getpc()));
5669#else
5670 opcode = x_get_iword(0);
5671#endif
5672 }
5673 return opcode;
5674}
5675
5676void exec_nostats (void)
5677{

Callers 2

exec_nostatsFunction · 0.85
execute_normalFunction · 0.85

Calls 5

get_word_020_prefetchfFunction · 0.85
m68k_getpcFunction · 0.85
do_byteswap_16Function · 0.85
get_real_addressFunction · 0.85

Tested by

no test coverage detected