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

/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DDriver.cpp651 enum class DebugKind { Unknown, None, Full, FastLink, GHash, Dwarf, Symtab }; class in namespace:lld
653 static DebugKind parseDebugKind(const opt::InputArgList &args) {
656 return DebugKind::None;
658 return DebugKind::Full;
660 DebugKind debug = StringSwitch<DebugKind>(a->getValue())
661 .CaseLower("none", DebugKind::None)
662 .CaseLower("full", DebugKind::Full)
663 .CaseLower("fastlink", DebugKind::FastLink)
665 .CaseLower("ghash", DebugKind
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp67 : CGM(CGM), DebugKind(CGM.getCodeGenOpts().getDebugInfo()),
262 bool UseQualifiedName = DebugKind == codegenoptions::DebugLineTablesOnly &&
595 switch (DebugKind) {
1722 if (DebugKind == codegenoptions::DebugInfoConstructor)
2181 if (DebugKind <= codegenoptions::DebugLineTablesOnly)
2194 if (DebugKind > codegenoptions::LimitedDebugInfo ||
2256 if (DebugKind <= codegenoptions::DebugLineTablesOnly)
2278 static bool shouldOmitDefinition(codegenoptions::DebugInfoKind DebugKind, argument
2288 if (DebugKind > codegenoptions::LimitedDebugInfo)
2315 if (DebugKind
[all...]
H A DCGDebugInfo.h60 const codegenoptions::DebugInfoKind DebugKind; member in class:clang::DynamicInitKind::CGDebugInfo

Completed in 74 milliseconds