Home
last modified time | relevance | path

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

/external/qemu/tcg/
Doptimize.c73 static void reset_all_temps(int nb_temps) in reset_all_temps() argument
76 for (i = 0; i < nb_temps; i++) { in reset_all_temps()
517 int i, nb_ops, op_index, nb_temps, nb_globals, nb_call_args; in tcg_constant_folding() local
529 nb_temps = s->nb_temps; in tcg_constant_folding()
531 reset_all_temps(nb_temps); in tcg_constant_folding()
967 reset_all_temps(nb_temps); in tcg_constant_folding()
1060 reset_all_temps(nb_temps); in tcg_constant_folding()
1074 reset_all_temps(nb_temps); in tcg_constant_folding()
1141 reset_all_temps(nb_temps); in tcg_constant_folding()
Dtcg.c361 s->nb_temps = s->nb_globals; in tcg_func_start()
518 idx = s->nb_temps; in tcg_temp_new_internal()
521 tcg_temp_alloc(s, s->nb_temps + 2); in tcg_temp_new_internal()
522 ts = &s->temps[s->nb_temps]; in tcg_temp_new_internal()
534 s->nb_temps += 2; in tcg_temp_new_internal()
538 tcg_temp_alloc(s, s->nb_temps + 1); in tcg_temp_new_internal()
539 ts = &s->temps[s->nb_temps]; in tcg_temp_new_internal()
545 s->nb_temps++; in tcg_temp_new_internal()
584 assert(idx >= s->nb_globals && idx < s->nb_temps); in tcg_temp_free_internal()
1007 for(i = s->nb_globals; i < s->nb_temps; i++) { in tcg_reg_alloc_start()
[all …]
Dtcg.h454 int nb_temps; member