Lines Matching refs:alt
1872 * If the original instruction is a jump, make the alt entry an effective nop
1927 struct alternative *alt;
1975 alt = malloc(sizeof(*alt));
1976 if (!alt) {
1982 alt->insn = new_insn;
1983 alt->skip_orig = special_alt->skip_orig;
1985 alt->next = orig_insn->alts;
1986 orig_insn->alts = alt;
2010 struct alternative *alt;
2039 alt = malloc(sizeof(*alt));
2040 if (!alt) {
2045 alt->insn = dest_insn;
2046 alt->next = insn->alts;
2047 insn->alts = alt;
3546 struct alternative *alt;
3647 for (alt = insn->alts; alt; alt = alt->next) {
3648 if (alt->skip_orig)
3651 ret = validate_branch(file, func, alt->insn, state);
3653 BT_INSN(insn, "(alt)");
3846 struct alternative *alt;
3849 for (alt = insn->alts; alt; alt = alt->next) {
3850 if (alt->skip_orig)
3853 ret = validate_unret(file, alt->insn);
3855 BT_INSN(insn, "(alt)");