Home | History | Annotate | Download | only in tcg

Lines Matching refs:gen_code_buf

2021 static inline int tcg_gen_code_common(TCGContext *s, uint8_t *gen_code_buf,
2068 s->code_buf = gen_code_buf;
2069 s->code_ptr = gen_code_buf;
2162 if (search_pc >= 0 && search_pc < s->code_ptr - gen_code_buf) {
2174 int tcg_gen_code(TCGContext *s, uint8_t *gen_code_buf)
2197 tcg_gen_code_common(s, gen_code_buf, -1);
2200 flush_icache_range((unsigned long)gen_code_buf,
2202 return s->code_ptr - gen_code_buf;
2206 offset bytes from the start of the TB. The contents of gen_code_buf must
2209 int tcg_gen_code_search_pc(TCGContext *s, uint8_t *gen_code_buf, long offset)
2211 return tcg_gen_code_common(s, gen_code_buf, offset);