Lines Matching refs:alt
1572 struct alternative *alt; in add_special_section_alts() local
1621 alt = malloc(sizeof(*alt)); in add_special_section_alts()
1622 if (!alt) { in add_special_section_alts()
1628 alt->insn = new_insn; in add_special_section_alts()
1629 alt->skip_orig = special_alt->skip_orig; in add_special_section_alts()
1631 list_add_tail(&alt->list, &orig_insn->alts); in add_special_section_alts()
1652 struct alternative *alt; in add_jump_table() local
1683 alt = malloc(sizeof(*alt)); in add_jump_table()
1684 if (!alt) { in add_jump_table()
1689 alt->insn = dest_insn; in add_jump_table()
1690 list_add_tail(&alt->list, &insn->alts); in add_jump_table()
3031 struct alternative *alt; in validate_branch() local
3118 list_for_each_entry(alt, &insn->alts, list) { in validate_branch()
3119 if (alt->skip_orig) in validate_branch()
3122 ret = validate_branch(file, func, alt->insn, state); in validate_branch()
3330 struct alternative *alt; in validate_entry() local
3333 list_for_each_entry(alt, &insn->alts, list) { in validate_entry()
3334 if (alt->skip_orig) in validate_entry()
3337 ret = validate_entry(file, alt->insn); in validate_entry()