Searched refs:gen_code_buf (Results 1 – 3 of 3) sorted by relevance
/external/qemu/tcg/ |
D | tcg.c | 2455 static inline int tcg_gen_code_common(TCGContext *s, uint8_t *gen_code_buf, in tcg_gen_code_common() argument 2501 s->code_buf = gen_code_buf; in tcg_gen_code_common() 2502 s->code_ptr = gen_code_buf; in tcg_gen_code_common() 2570 if (search_pc >= 0 && search_pc < s->code_ptr - gen_code_buf) { in tcg_gen_code_common() 2584 int tcg_gen_code(TCGContext *s, uint8_t *gen_code_buf) in tcg_gen_code() argument 2600 tcg_gen_code_common(s, gen_code_buf, -1); in tcg_gen_code() 2603 flush_icache_range((uintptr_t)gen_code_buf, (uintptr_t)s->code_ptr); in tcg_gen_code() 2605 return s->code_ptr - gen_code_buf; in tcg_gen_code() 2612 int tcg_gen_code_search_pc(TCGContext *s, uint8_t *gen_code_buf, long offset) in tcg_gen_code_search_pc() argument 2614 return tcg_gen_code_common(s, gen_code_buf, offset); in tcg_gen_code_search_pc()
|
D | tcg.h | 559 int tcg_gen_code(TCGContext *s, uint8_t *gen_code_buf); 560 int tcg_gen_code_search_pc(TCGContext *s, uint8_t *gen_code_buf, long offset);
|
/external/qemu/ |
D | translate-all.c | 140 uint8_t *gen_code_buf; in cpu_gen_code() local 156 gen_code_buf = tb->tc_ptr; in cpu_gen_code() 177 gen_code_size = tcg_gen_code(s, gen_code_buf); in cpu_gen_code()
|