Lines Matching refs:mnemonic

1643 intel_float_operand (const char *mnemonic)  in intel_float_operand()  argument
1649 if (mnemonic[0] != 'f') in intel_float_operand()
1652 switch (mnemonic[1]) in intel_float_operand()
1660 if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e')) in intel_float_operand()
1664 if (mnemonic[2] != 'o' /* fnop */) in intel_float_operand()
1668 if (mnemonic[2] == 's') in intel_float_operand()
1672 if (mnemonic[2] == 'a') in intel_float_operand()
1674 if (mnemonic[2] == 't') in intel_float_operand()
1676 switch (mnemonic[3]) in intel_float_operand()
1687 if (mnemonic[2] == 'r' || mnemonic[2] == 's') in intel_float_operand()
1704 char mnemonic[MAX_MNEM_SIZE]; local
1718 line = parse_insn (line, mnemonic);
1722 line = parse_operands (line, mnemonic);
1729 && ((strcmp (mnemonic, "extrq") == 0)
1730 || (strcmp (mnemonic, "insertq") == 0)))
1749 && (strcmp (mnemonic, "bound") != 0)
1750 && (strcmp (mnemonic, "invlpga") != 0)
1761 || strcmp (mnemonic, "movabs") != 0))
1938 parse_insn (char *line, char *mnemonic) in parse_insn() argument
1951 mnem_p = mnemonic; in parse_insn()
1955 if (mnem_p >= mnemonic + MAX_MNEM_SIZE) in parse_insn()
1982 current_templates = hash_find (op_hash, mnemonic); in parse_insn()
2031 if (intel_syntax && (intel_float_operand (mnemonic) & 2)) in parse_insn()
2038 current_templates = hash_find (op_hash, mnemonic); in parse_insn()
2046 current_templates = hash_find (op_hash, mnemonic); in parse_insn()
2054 if (intel_float_operand (mnemonic) == 1) in parse_insn()
2059 current_templates = hash_find (op_hash, mnemonic); in parse_insn()
2157 parse_operands (char *l, const char *mnemonic) in parse_operands() argument
2237 intel_float_operand (mnemonic)); in parse_operands()