Lines Matching refs:fake_jump
645 struct instruction *last_orig_insn, *last_new_insn, *insn, *fake_jump = NULL; in handle_group_alt() local
662 fake_jump = malloc(sizeof(*fake_jump)); in handle_group_alt()
663 if (!fake_jump) { in handle_group_alt()
667 memset(fake_jump, 0, sizeof(*fake_jump)); in handle_group_alt()
668 INIT_LIST_HEAD(&fake_jump->alts); in handle_group_alt()
669 clear_insn_state(&fake_jump->state); in handle_group_alt()
671 fake_jump->sec = special_alt->new_sec; in handle_group_alt()
672 fake_jump->offset = -1; in handle_group_alt()
673 fake_jump->type = INSN_JUMP_UNCONDITIONAL; in handle_group_alt()
674 fake_jump->jump_dest = list_next_entry(last_orig_insn, list); in handle_group_alt()
675 fake_jump->ignore = true; in handle_group_alt()
679 if (!fake_jump) { in handle_group_alt()
685 *new_insn = fake_jump; in handle_group_alt()
708 if (!fake_jump) { in handle_group_alt()
713 insn->jump_dest = fake_jump; in handle_group_alt()
729 if (fake_jump) in handle_group_alt()
730 list_add(&fake_jump->list, &last_new_insn->list); in handle_group_alt()