Lines Matching defs:Opcode
39 // First special line opcode - leave room for the standard opcodes.
44 // Minimum line offset in a special line info. opcode. This value
48 // Range of line offsets in a special line info. opcode.
291 // Standard opcode lengths
432 Opcode;
457 // If the line increment is out of range of a special opcode, we must encode
468 // Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
474 // Bias the opcode by the special opcode base.
479 // Try using a special opcode.
480 Opcode = Temp + AddrDelta * DWARF2_LINE_RANGE;
481 if (Opcode <= 255) {
482 OS << char(Opcode);
487 Opcode = Temp + (AddrDelta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
488 if (Opcode <= 255) {
490 OS << char(Opcode);
1664 uint8_t Opcode = dwarf::DW_CFA_advance_loc | AddrDelta;
1665 OS << Opcode;