OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:current_tb
(Results
1 - 4
of
4
) sorted by null
/external/qemu/
cpu-defs.h
141
struct TranslationBlock *
current_tb
; /* currently executing TB */ \
exec.c
947
TranslationBlock *
current_tb
= NULL;
local
985
current_tb
= NULL;
988
current_tb
= tb_find_pc(env->mem_io_pc);
991
if (
current_tb
== tb &&
992
(
current_tb
->cflags & CF_COUNT_MASK) != 1) {
1000
cpu_restore_state(
current_tb
, env,
1010
saved_tb = env->
current_tb
;
1011
env->
current_tb
= NULL;
1015
env->
current_tb
= saved_tb;
1016
if (env->interrupt_request && env->
current_tb
)
1078
TranslationBlock *
current_tb
= NULL;
local
[
all
...]
cpu-exec.c
110
env->
current_tb
= tb;
267
env->
current_tb
= NULL;
611
env->
current_tb
= tb;
615
infinite loop and becomes env->
current_tb
. Avoid
618
env->
current_tb
= NULL;
620
while (env->
current_tb
) {
629
env->
current_tb
= NULL;
[
all
...]
exec-all.h
417
if (!env->
current_tb
)
Completed in 252 milliseconds