Home
last modified time | relevance | path

Searched refs:DebugKind (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DDriver.cpp542 return DebugKind::None; in parseDebugKind()
544 return DebugKind::Full; in parseDebugKind()
546 DebugKind Debug = StringSwitch<DebugKind>(A->getValue()) in parseDebugKind()
556 if (Debug == DebugKind::FastLink) { in parseDebugKind()
558 return DebugKind::Full; in parseDebugKind()
560 if (Debug == DebugKind::Unknown) { in parseDebugKind()
562 return DebugKind::None; in parseDebugKind()
1020 DebugKind Debug = parseDebugKind(Args); in link()
1021 if (Debug == DebugKind::Full || Debug == DebugKind::Dwarf || in link()
1022 Debug == DebugKind::GHash) { in link()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.cpp580 switch (DebugKind) { in CreateCompileUnit()
1950 if (DebugKind <= codegenoptions::DebugLineTablesOnly) in completeType()
1963 if (DebugKind > codegenoptions::LimitedDebugInfo || in completeType()
2025 if (DebugKind <= codegenoptions::DebugLineTablesOnly) in completeClass()
2057 if (DebugKind > codegenoptions::LimitedDebugInfo) in shouldOmitDefinition()
2802 if (DebugKind <= codegenoptions::DebugLineTablesOnly) in completeTemplateDefinition()
2808 if (DebugKind <= codegenoptions::DebugLineTablesOnly) in completeUnusedClass()
3117 if (DebugKind >= codegenoptions::LimitedDebugInfo) { in collectFunctionDeclProps()
3619 if (DebugKind <= codegenoptions::DebugLineTablesOnly) in EmitLexicalBlockStart()
3633 if (DebugKind <= codegenoptions::DebugLineTablesOnly) in EmitLexicalBlockEnd()
[all …]
H A DCGDebugInfo.h58 const codegenoptions::DebugInfoKind DebugKind; variable