Lines Matching defs:this_insn

643    struct vliw_insn_list *this_insn;
650 for (this_insn = this_chain->insn_list; this_insn; this_insn = this_insn->next)
652 if (this_insn->type == VLIW_LABEL_TYPE)
653 fprintf (stderr, "Label Value: %p\n", this_insn->sym);
654 else if (this_insn->type == VLIW_BRANCH_TYPE)
655 fprintf (stderr, "%s to %p\n", this_insn->insn->base->name, this_insn->sym);
656 else if (this_insn->type == VLIW_BRANCH_HAS_NOPS)
657 fprintf (stderr, "nop'd %s to %p\n", this_insn->insn->base->name, this_insn->sym);
658 else if (this_insn->type == VLIW_NOP_TYPE)
661 fprintf (stderr, " %s\n", this_insn->insn->base->name);
672 struct vliw_insn_list *this_insn;
676 for (this_insn = this_chain->insn_list;
677 this_insn;
678 this_insn = this_insn->next)
680 if (this_insn->type != VLIW_LABEL_TYPE)
869 struct vliw_insn_list *this_insn = NULL;
924 struct vliw_insn_list *this_insn;
927 for (this_insn = vliw1->insn_list; this_insn; this_insn = this_insn->next)
929 if (this_insn->type == VLIW_LABEL_TYPE)
931 if ((temp_insn = frv_find_in_vliw (VLIW_BRANCH_TYPE, vliw2, this_insn->sym)) != NULL)
934 vliw1 = frv_tomcat_shuffle (VLIW_SINGLE_NOP, vliw2, this_insn);
945 for (this_insn = vliw1->insn_list; this_insn; this_insn = this_insn->next)
948 while (this_insn
949 && (this_insn->type == VLIW_LABEL_TYPE
950 || this_insn->type == VLIW_NOP_TYPE
951 || this_insn->type == VLIW_BRANCH_HAS_NOPS))
952 this_insn = this_insn->next;
954 if (!this_insn)
960 if (frv_is_branch_insn (this_insn->insn))
962 if ((temp_insn = frv_find_in_vliw (VLIW_LABEL_TYPE, vliw1, this_insn->sym)) != NULL)
965 this_insn->snop_frag->fr_subtype = NOP_KEEP;
966 this_insn->dnop_frag->fr_subtype = NOP_KEEP;
967 vliw1 = frv_tomcat_shuffle (VLIW_DOUBLE_THEN_SINGLE_NOP, vliw1, this_insn);