Lines Matching defs:this_insn

628    struct vliw_insn_list *this_insn;
635 for (this_insn = this_chain->insn_list; this_insn; this_insn = this_insn->next)
637 if (this_insn->type == VLIW_LABEL_TYPE)
638 fprintf (stderr, "Label Value: %p\n", this_insn->sym);
639 else if (this_insn->type == VLIW_BRANCH_TYPE)
640 fprintf (stderr, "%s to %p\n", this_insn->insn->base->name, this_insn->sym);
641 else if (this_insn->type == VLIW_BRANCH_HAS_NOPS)
642 fprintf (stderr, "nop'd %s to %p\n", this_insn->insn->base->name, this_insn->sym);
643 else if (this_insn->type == VLIW_NOP_TYPE)
646 fprintf (stderr, " %s\n", this_insn->insn->base->name);
654 struct vliw_insn_list *this_insn;
658 for (this_insn = this_chain->insn_list;
659 this_insn;
660 this_insn = this_insn->next)
662 if (this_insn->type != VLIW_LABEL_TYPE)
845 struct vliw_insn_list *this_insn = NULL;
901 for (this_insn = vliw1->insn_list; this_insn; this_insn = this_insn->next)
903 if (this_insn->type == VLIW_LABEL_TYPE)
905 if ((temp_insn = frv_find_in_vliw (VLIW_BRANCH_TYPE, vliw2, this_insn->sym)) != NULL)
908 vliw1 = frv_tomcat_shuffle (VLIW_SINGLE_NOP, vliw2, this_insn);
919 for (this_insn = vliw1->insn_list; this_insn; this_insn = this_insn->next)
922 while (this_insn
923 && (this_insn->type == VLIW_LABEL_TYPE
924 || this_insn->type == VLIW_NOP_TYPE
925 || this_insn->type == VLIW_BRANCH_HAS_NOPS))
926 this_insn = this_insn->next;
928 if (!this_insn)
934 if (frv_is_branch_insn (this_insn->insn))
936 if ((temp_insn = frv_find_in_vliw (VLIW_LABEL_TYPE, vliw1, this_insn->sym)) != NULL)
939 this_insn->snop_frag->fr_subtype = NOP_KEEP;
940 this_insn->dnop_frag->fr_subtype = NOP_KEEP;
941 vliw1 = frv_tomcat_shuffle (VLIW_DOUBLE_THEN_SINGLE_NOP, vliw1, this_insn);