Home
last modified time | relevance | path

Searched refs:tb_ptr (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/tcg/
H A Dtci.c75 static void tci_args_l(uint32_t insn, const void *tb_ptr, void **l0) in tci_args_l() argument
78 *l0 = diff ? (void *)tb_ptr + diff : NULL; in tci_args_l()
86 static void tci_args_nl(uint32_t insn, const void *tb_ptr, in tci_args_nl() argument
90 *l1 = sextract32(insn, 12, 20) + (void *)tb_ptr; in tci_args_nl()
93 static void tci_args_rl(uint32_t insn, const void *tb_ptr, in tci_args_rl() argument
97 *l1 = sextract32(insn, 12, 20) + (void *)tb_ptr; in tci_args_rl()
279 MemOpIdx oi, const void *tb_ptr) in tci_qemu_ld() argument
282 uintptr_t ra = (uintptr_t)tb_ptr; in tci_qemu_ld()
305 MemOpIdx oi, const void *tb_ptr) in tci_qemu_st() argument
308 uintptr_t ra = (uintptr_t)tb_ptr; in tci_qemu_st()
[all …]
/openbmc/qemu/include/tcg/
H A Dtcg.h967 uintptr_t tcg_qemu_tb_exec(CPUArchState *env, const void *tb_ptr);
969 typedef uintptr_t tcg_prologue_fn(CPUArchState *env, const void *tb_ptr);
/openbmc/qemu/accel/tcg/
H A Dcpu-exec.c431 const void *tb_ptr = itb->tc.ptr; in cpu_tb_exec() local
438 ret = tcg_qemu_tb_exec(cpu_env(cpu), tb_ptr); in cpu_tb_exec()