Lines Matching defs:alt
1177 * This is a special case where an alt instruction
1451 * If the original instruction is a jump, make the alt entry an effective nop
1483 struct alternative *alt;
1532 alt = malloc(sizeof(*alt));
1533 if (!alt) {
1539 alt->insn = new_insn;
1540 alt->skip_orig = special_alt->skip_orig;
1542 list_add_tail(&alt->list, &orig_insn->alts);
1557 struct alternative *alt;
1588 alt = malloc(sizeof(*alt));
1589 if (!alt) {
1594 alt->insn = dest_insn;
1595 list_add_tail(&alt->list, &insn->alts);
2864 struct alternative *alt;
2951 list_for_each_entry(alt, &insn->alts, list) {
2952 if (alt->skip_orig)
2955 ret = validate_branch(file, func, alt->insn, state);
2958 BT_FUNC("(alt)", insn);
3163 struct alternative *alt;
3166 list_for_each_entry(alt, &insn->alts, list) {
3167 if (alt->skip_orig)
3170 ret = validate_entry(file, alt->insn);
3173 BT_FUNC("(alt)", insn);