Lines Matching defs:Opcode
38 // First special line opcode - leave room for the standard opcodes.
43 // Minimum line offset in a special line info. opcode. This value
47 // Range of line offsets in a special line info. opcode.
252 // Standard opcode lengths
351 uint64_t Temp, Opcode;
376 // If the line increment is out of range of a special opcode, we must encode
387 // Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
393 // Bias the opcode by the special opcode base.
398 // Try using a special opcode.
399 Opcode = Temp + AddrDelta * DWARF2_LINE_RANGE;
400 if (Opcode <= 255) {
401 OS << char(Opcode);
406 Opcode = Temp + (AddrDelta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
407 if (Opcode <= 255) {
409 OS << char(Opcode);
1442 uint8_t Opcode = dwarf::DW_CFA_advance_loc | AddrDelta;
1443 OS << Opcode;