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

/external/qemu/
H A Dtranslate-op.c48 typedef int (*dyngen_code_func)(uint8_t *gen_code_buf,
72 int dyngen_code(uint8_t *gen_code_buf, argument
76 return (*_dyngen_code)(gen_code_buf, label_offsets, jmp_offsets, opc_buf, opparam_buf, gen_labels);
H A Dtranslate-all.c102 uint8_t *gen_code_buf; local
118 gen_code_buf = tb->tc_ptr;
139 gen_code_size = tcg_gen_code(s, gen_code_buf);
/external/qemu/tcg/
H A Dtcg.c2021 static inline int tcg_gen_code_common(TCGContext *s, uint8_t *gen_code_buf, argument
2059 s->code_buf = gen_code_buf;
2060 s->code_ptr = gen_code_buf;
2153 if (search_pc >= 0 && search_pc < s->code_ptr - gen_code_buf) {
2165 int tcg_gen_code(TCGContext *s, uint8_t *gen_code_buf) argument
2188 tcg_gen_code_common(s, gen_code_buf, -1);
2191 flush_icache_range((unsigned long)gen_code_buf,
2193 return s->code_ptr - gen_code_buf;
2197 offset bytes from the start of the TB. The contents of gen_code_buf must
2200 int tcg_gen_code_search_pc(TCGContext *s, uint8_t *gen_code_buf, lon argument
[all...]

Completed in 72 milliseconds