Home | History | Annotate | Download | only in MC

Lines Matching defs:Length

210       0, // length of DW_LNS_copy
211 1, // length of DW_LNS_advance_pc
212 1, // length of DW_LNS_advance_line
213 1, // length of DW_LNS_set_file
214 1, // length of DW_LNS_set_column
215 0, // length of DW_LNS_negate_stmt
216 0, // length of DW_LNS_set_basic_block
217 0, // length of DW_LNS_const_add_pc
218 1, // length of DW_LNS_fixed_advance_pc
219 0, // length of DW_LNS_set_prologue_end
220 0, // length of DW_LNS_set_epilogue_begin
260 // The first 4 bytes is the total length of the information for this
261 // compilation unit (not including these 4 bytes for the length).
271 // Length of the prologue, is the next 4 bytes. Which is the start of the
273 // total length, the 2 bytes for the version, and these 4 bytes for the
274 // length of the prologue.
287 for (char Length : StandardOpcodeLengths)
288 MCOS->EmitIntValue(Length, 1);
431 // Scale the address delta by the minimum instruction length.
568 // This will be the length of the .debug_aranges section, first account for
570 int Length = 4 + 2 + 4 + 1 + 1;
576 int Pad = 2 * AddrSize - (Length & (2 * AddrSize - 1));
579 Length += Pad;
583 Length += 2 * AddrSize * Sections.size();
585 Length += 2 * AddrSize;
589 // The 4 byte length not including the 4 byte value for the length.
590 MCOS->EmitIntValue(Length - 4, 4);
641 // expression to calculate the length in the header.
648 // The 4 byte total length of the information for this compilation unit, not
650 const MCExpr *Length = MakeStartMinusEndExpr(*MCOS, *InfoStart, *InfoEnd, 4);
651 emitAbsValue(*MCOS, Length, 4);
1179 // range-start range-length compact-unwind-enc personality-func lsda
1214 // Range Length
1267 // Length
1268 const MCExpr *Length =
1270 emitAbsValue(Streamer, Length, 4);
1319 // Augmentation Data Length (optional)
1380 // Length
1381 const MCExpr *Length = MakeStartMinusEndExpr(Streamer, *fdeStart, *fdeEnd, 0);
1382 emitAbsValue(Streamer, Length, 4);
1412 // Augmentation Data Length
1554 // Scale the address delta by the minimum instruction length.