Home
last modified time | relevance | path

Searched refs:BinaryAnnotationsOpCode (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/DebugInfo/CodeView/
DSymbolDumper.cpp447 case BinaryAnnotationsOpCode::Invalid: in visitInlineSiteSym()
449 case BinaryAnnotationsOpCode::CodeOffset: in visitInlineSiteSym()
450 case BinaryAnnotationsOpCode::ChangeCodeOffset: in visitInlineSiteSym()
451 case BinaryAnnotationsOpCode::ChangeCodeLength: in visitInlineSiteSym()
454 case BinaryAnnotationsOpCode::ChangeCodeOffsetBase: in visitInlineSiteSym()
455 case BinaryAnnotationsOpCode::ChangeLineEndDelta: in visitInlineSiteSym()
456 case BinaryAnnotationsOpCode::ChangeRangeKind: in visitInlineSiteSym()
457 case BinaryAnnotationsOpCode::ChangeColumnStart: in visitInlineSiteSym()
458 case BinaryAnnotationsOpCode::ChangeColumnEnd: in visitInlineSiteSym()
461 case BinaryAnnotationsOpCode::ChangeLineOffset: in visitInlineSiteSym()
[all …]
/external/llvm/lib/MC/
DMCCodeView.cpp229 static bool compressAnnotation(BinaryAnnotationsOpCode Annotation, in compressAnnotation()
316 compressAnnotation(BinaryAnnotationsOpCode::ChangeCodeLength, Buffer); in encodeInlineLineTable()
328 compressAnnotation(BinaryAnnotationsOpCode::ChangeFile, Buffer); in encodeInlineLineTable()
340 compressAnnotation(BinaryAnnotationsOpCode::ChangeLineOffset, Buffer); in encodeInlineLineTable()
347 compressAnnotation(BinaryAnnotationsOpCode::ChangeCodeOffsetAndLineOffset, in encodeInlineLineTable()
352 compressAnnotation(BinaryAnnotationsOpCode::ChangeLineOffset, Buffer); in encodeInlineLineTable()
354 compressAnnotation(BinaryAnnotationsOpCode::ChangeCodeOffset, Buffer); in encodeInlineLineTable()
377 compressAnnotation(BinaryAnnotationsOpCode::ChangeCodeLength, Buffer); in encodeInlineLineTable()
/external/llvm/include/llvm/DebugInfo/CodeView/
DSymbolRecord.h259 BinaryAnnotationsOpCode OpCode;
362 Result.OpCode = static_cast<BinaryAnnotationsOpCode>(Op); in ParseCurrentAnnotation()
364 case BinaryAnnotationsOpCode::Invalid: in ParseCurrentAnnotation()
368 case BinaryAnnotationsOpCode::CodeOffset: in ParseCurrentAnnotation()
372 case BinaryAnnotationsOpCode::ChangeCodeOffsetBase: in ParseCurrentAnnotation()
376 case BinaryAnnotationsOpCode::ChangeCodeOffset: in ParseCurrentAnnotation()
380 case BinaryAnnotationsOpCode::ChangeCodeLength: in ParseCurrentAnnotation()
384 case BinaryAnnotationsOpCode::ChangeFile: in ParseCurrentAnnotation()
388 case BinaryAnnotationsOpCode::ChangeLineEndDelta: in ParseCurrentAnnotation()
392 case BinaryAnnotationsOpCode::ChangeRangeKind: in ParseCurrentAnnotation()
[all …]
DCodeView.h450 enum class BinaryAnnotationsOpCode : uint32_t { enum