Lines Matching refs:allocated_regs

1879 /* sync a temporary to memory. 'allocated_regs' is used in case a
1881 static inline void temp_sync(TCGContext *s, int temp, TCGRegSet allocated_regs)
1890 allocated_regs);
1908 /* save a temporary to memory. 'allocated_regs' is used in case a
1910 static inline void temp_save(TCGContext *s, int temp, TCGRegSet allocated_regs)
1917 temp_sync(s, temp, allocated_regs);
1923 modified be the following code. 'allocated_regs' is used in case a
1925 static void save_globals(TCGContext *s, TCGRegSet allocated_regs)
1930 temp_save(s, i, allocated_regs);
1935 read by the following code. 'allocated_regs' is used in case a
1937 static void sync_globals(TCGContext *s, TCGRegSet allocated_regs)
1946 temp_sync(s, i, allocated_regs);
1953 static void tcg_reg_alloc_bb_end(TCGContext *s, TCGRegSet allocated_regs)
1961 temp_save(s, i, allocated_regs);
1973 save_globals(s, allocated_regs);
2011 TCGRegSet allocated_regs;
2015 tcg_regset_set(allocated_regs, s->reserved_regs);
2027 ts->reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2074 tcg_regset_set_reg(allocated_regs, ts->reg);
2075 ots->reg = tcg_reg_alloc(s, oarg_ct->u.regs, allocated_regs);
2093 TCGRegSet allocated_regs;
2110 tcg_regset_set(allocated_regs, s->reserved_regs);
2117 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2131 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2162 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2167 tcg_regset_set_reg(allocated_regs, reg);
2179 tcg_reg_alloc_bb_end(s, allocated_regs);
2192 sync_globals(s, allocated_regs);
2196 tcg_regset_set(allocated_regs, s->reserved_regs);
2211 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2213 tcg_regset_set_reg(allocated_regs, reg);
2267 TCGRegSet allocated_regs;
2325 tcg_regset_set(allocated_regs, s->reserved_regs);
2344 tcg_regset_set_reg(allocated_regs, reg);
2355 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2358 tcg_regset_set_reg(allocated_regs, reg);
2362 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2366 tcg_regset_set_reg(allocated_regs, reg);
2372 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2375 tcg_regset_set_reg(allocated_regs, reg);
2401 sync_globals(s, allocated_regs);
2403 save_globals(s, allocated_regs);