Lines Matching defs:opcode

290   /* The opcode base.  */
293 /* Remember array with the standard opcode length (-1 to account for
294 the opcode with value zero not being mentioned). */
676 /* Apply the "operation advance" from a special opcode or
700 unsigned int opcode;
704 /* Read the opcode. */
705 opcode = *linep++;
707 /* Is this a special opcode? */
708 if (likely (opcode >= opcode_base))
713 /* Yes. Handling this is quite easy since the opcode value
716 opcode = (desired line increment - line_base)
720 + (opcode - opcode_base) % line_range);
724 advance_pc ((opcode - opcode_base) / line_range);
735 else if (opcode == 0)
737 /* This an extended opcode. */
747 /* The sub-opcode. */
748 opcode = *linep++;
750 switch (opcode)
841 if (unlikely (standard_opcode_lengths[opcode] != 1))
874 else if (opcode <= DW_LNS_set_isa)
876 /* This is a known standard opcode. */
877 switch (opcode)
881 if (unlikely (standard_opcode_lengths[opcode] != 0))
897 if (unlikely (standard_opcode_lengths[opcode] != 1))
909 if (unlikely (standard_opcode_lengths[opcode] != 1))
920 if (unlikely (standard_opcode_lengths[opcode] != 1))
931 if (unlikely (standard_opcode_lengths[opcode] != 1))
942 if (unlikely (standard_opcode_lengths[opcode] != 0))
950 if (unlikely (standard_opcode_lengths[opcode] != 0))
958 if (unlikely (standard_opcode_lengths[opcode] != 0))
970 if (unlikely (standard_opcode_lengths[opcode] != 1)
980 if (unlikely (standard_opcode_lengths[opcode] != 0))
988 if (unlikely (standard_opcode_lengths[opcode] != 0))
996 if (unlikely (standard_opcode_lengths[opcode] != 1))
1007 /* This is a new opcode the generator but not we know about.
1009 everything. Read all the parameters for this opcode. */
1010 for (int n = standard_opcode_lengths[opcode]; n > 0; --n)
1017 /* Next round, ignore this opcode. */