Lines Matching refs:cflags

159     uint32_t cflags = cpu->tcg_cflags;  in curr_cflags()  local
169 cflags |= CF_NO_GOTO_TB | CF_NO_GOTO_PTR | CF_SINGLE_STEP | 1; in curr_cflags()
171 cflags |= CF_NO_GOTO_TB | 1; in curr_cflags()
173 cflags |= CF_NO_GOTO_TB; in curr_cflags()
176 return cflags; in curr_cflags()
185 uint32_t cflags; member
197 tb_cflags(tb) == desc->cflags) { in tb_lookup_cmp()
227 uint32_t cflags) in tb_htable_lookup() argument
236 desc.cflags = cflags; in tb_htable_lookup()
243 h = tb_hash_func(phys_pc, (cflags & CF_PCREL ? 0 : pc), in tb_htable_lookup()
244 flags, cs_base, cflags); in tb_htable_lookup()
251 uint32_t cflags) in tb_lookup() argument
258 tcg_debug_assert(!(cflags & CF_INVALID)); in tb_lookup()
268 tb_cflags(tb) == cflags)) { in tb_lookup()
272 tb = tb_htable_lookup(cpu, pc, cs_base, flags, cflags); in tb_lookup()
297 tb->flags, tb->cflags, lookup_symbol(pc)); in log_cpu_exec()
321 uint32_t *cflags) in check_for_breakpoints_slow() argument
381 *cflags = (*cflags & ~CF_COUNT_MASK) | CF_NO_GOTO_TB | CF_BP_PAGE | 1; in check_for_breakpoints_slow()
387 uint32_t *cflags) in check_for_breakpoints() argument
390 check_for_breakpoints_slow(cpu, pc, cflags); in check_for_breakpoints()
407 uint32_t flags, cflags; in HELPER() local
419 cflags = curr_cflags(cpu); in HELPER()
420 if (check_for_breakpoints(cpu, pc, &cflags)) { in HELPER()
424 tb = tb_lookup(cpu, pc, cs_base, flags, cflags); in HELPER()
574 uint32_t flags, cflags; in cpu_exec_step_atomic() local
585 cflags = curr_cflags(cpu); in cpu_exec_step_atomic()
587 cflags &= ~CF_PARALLEL; in cpu_exec_step_atomic()
589 cflags |= CF_NO_GOTO_TB | CF_NO_GOTO_PTR | 1; in cpu_exec_step_atomic()
597 tb = tb_lookup(cpu, pc, cs_base, flags, cflags); in cpu_exec_step_atomic()
600 tb = tb_gen_code(cpu, pc, cs_base, flags, cflags); in cpu_exec_step_atomic()
649 if (tb_next->cflags & CF_INVALID) { in tb_add_jump()
944 cpu->cflags_next_tb = (tb->cflags & ~CF_COUNT_MASK) | insns_left; in cpu_loop_exec_tb()
965 uint32_t flags, cflags; in cpu_exec_loop() local
976 cflags = cpu->cflags_next_tb; in cpu_exec_loop()
977 if (cflags == -1) { in cpu_exec_loop()
978 cflags = curr_cflags(cpu); in cpu_exec_loop()
983 if (check_for_breakpoints(cpu, pc, &cflags)) { in cpu_exec_loop()
987 tb = tb_lookup(cpu, pc, cs_base, flags, cflags); in cpu_exec_loop()
993 tb = tb_gen_code(cpu, pc, cs_base, flags, cflags); in cpu_exec_loop()