Home | History | Annotate | Download | only in config

Lines Matching defs:args

1061 mem_fmt (char *args[],		/* args[0]->opcode mnemonic, args[1-3]->operands.  */
1088 parse_memop (&instr, args[i], oP->format);
1091 parse_regop (&regop, args[i], opdesc);
1308 reg_fmt (char *args[], /* args[0]->opcode mnemonic, args[1-3]->operands. */
1320 parse_regop (&regop, args[1], oP->operand[0]);
1343 parse_regop (&regop, args[2], oP->operand[1]);
1365 parse_regop (&regop, args[3], oP->operand[2]);
1381 args[0] is untouched. args[1] points to first operand, etc. All args:
1390 char *args[]) /* Output arg: pointers to operands placed in args[1-3].
1391 Must accommodate 4 entries (args[0-3]). */
1405 args[1] = p;
1425 args[++n] = to; /* Start next argument. */
1443 args[0] points to opcode, other entries point to operands. All strings:
1453 char *args[]) /* Output arg: pointers to opcode and operands placed here.
1460 args[0] = iP;
1466 if (args[0] == iP)
1476 return (get_args (iP, args));
1596 char *args[4];
1612 memset (args, '\0', sizeof (args));
1614 n_ops = i_scan (textP, args);
1620 if (!strcmp (args[0], "ldconst"))
1622 n_ops = parse_ldconst (args);
1628 n = strlen (args[0]) - 1;
1632 if (args[0][n - 1] == '.' && (args[0][n] == 't' || args[0][n] == 'f'))
1638 bp_bits = (args[0][n] == 't') ? BP_TAKEN : BP_NOT_TAKEN;
1639 args[0][n - 1] = '\0'; /* Strip suffix from opcode mnemonic */
1645 oP = (struct i960_opcode *) hash_find (op_hash, args[0]);
1647 as_bad (_("invalid opcode, \"%s\"."), args[0]);
1657 ctrl_fmt (args[1], oP->opcode | bp_bits, oP->num_ops);
1660 ctrl_fmt (args[1], BNO | bp_bits, 1);
1664 cobr_fmt (args, oP->opcode | bp_bits, oP);
1669 reg_fmt (args, oP);
1672 if (args[0][0] == 'c' && args[0][1] == 'a')
1676 mem_fmt (args, oP, 1);
1686 mem_fmt (args, oP, 0);
1694 get_cdisp (args[1], "CTRL", oP->opcode, 24, 0, 1);
2140 char *args[]) /* args[1]->1st operand, args[2]->2nd operand. */
2152 callP = symbol_find_or_make (args[1]);
2160 if ((n_ops == 1) || !strcmp (args[1], args[2]))
2168 balP = symbol_find_or_make (args[2]);
2193 char *args[]) /* args[1]->1st operand, args[2]->2nd operand. */
2205 parse_expr (args[2], &exp);
2215 symP = symbol_find_or_make (args[1]);
2235 char *args[4];
2251 n_ops = get_args (p, args);
2259 s_sysproc (n_ops, args);
2262 s_leafproc (n_ops, args);