Home | History | Annotate | Download | only in MC

Lines Matching refs:Opcode

35 // First special line opcode - leave room for the standard opcodes.
40 // Minimum line offset in a special line info. opcode. This value
44 // Range of line offsets in a special line info. opcode.
249 // Standard opcode lengths
346 uint64_t Temp, Opcode;
371 // If the line increment is out of range of a special opcode, we must encode
385 // Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
391 // Bias the opcode by the special opcode base.
396 // Try using a special opcode.
397 Opcode = Temp + AddrDelta * DWARF2_LINE_RANGE;
398 if (Opcode <= 255) {
399 OS << char(Opcode);
404 Opcode = Temp + (AddrDelta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
405 if (Opcode <= 255) {
407 OS << char(Opcode);
1073 uint8_t Opcode = dwarf::DW_CFA_advance_loc | AddrDelta;
1074 OS << Opcode;