Lines Matching defs:insn
47 struct instruction *insn;
76 FOR_EACH_PTR(bb->insns, insn) {
77 if (!insn->bb)
79 switch(insn->opcode) {
81 if (insn->src->type == PSEUDO_SYM) {
82 printf("%s store(%s)", s, show_ident(insn->src->sym->ident));
88 if (insn->src->type == PSEUDO_SYM) {
89 printf("%s load(%s)", s, show_ident(insn->src->sym->ident));
99 } END_FOR_EACH_PTR(insn);
123 struct instruction *insn;
134 FOR_EACH_PTR(bb->insns, insn) {
135 if (!insn->bb)
137 if (insn->opcode == OP_CALL &&
138 internal == !(insn->func->sym->ctype.modifiers & MOD_EXTERN)) {
142 if (insn->func->type == PSEUDO_SYM) {
143 for (sym = insn->func->sym->ident->symbols;
153 insn->pos.line, insn->pos.line, insn->pos.pos);
157 bb, show_pseudo(insn->func),
158 insn->pos.line, insn->pos.line, insn->pos.pos);
161 } END_FOR_EACH_PTR(insn);