Searched defs:gen_code_buf (Results 1 - 2 of 2) sorted by relevance

/vbox/src/recompiler/
H A Dtranslate-all.c70 uint8_t *gen_code_buf; local
91 gen_code_buf = tb->tc_ptr;
108 gen_code_size = tcg_gen_code(s, gen_code_buf);
/vbox/src/recompiler/tcg/
H A Dtcg.c2005 static inline int tcg_gen_code_common(TCGContext *s, uint8_t *gen_code_buf, argument
2042 s->code_buf = gen_code_buf;
2043 s->code_ptr = gen_code_buf;
2116 if (search_pc >= 0 && search_pc < s->code_ptr - gen_code_buf) {
2128 int tcg_gen_code(TCGContext *s, uint8_t *gen_code_buf) argument
2144 tcg_gen_code_common(s, gen_code_buf, -1);
2147 flush_icache_range((uintptr_t)gen_code_buf,
2149 return s->code_ptr - gen_code_buf;
2153 offset bytes from the start of the TB. The contents of gen_code_buf must
2156 int tcg_gen_code_search_pc(TCGContext *s, uint8_t *gen_code_buf, intptr_ argument
[all...]

Completed in 46 milliseconds