Searched refs:DebugKind (Results 1 – 3 of 3) sorted by relevance
808 enum class DebugKind { enum819 static DebugKind parseDebugKind(const opt::InputArgList &args) { in parseDebugKind()822 return DebugKind::None; in parseDebugKind()824 return DebugKind::Full; in parseDebugKind()826 DebugKind debug = StringSwitch<DebugKind>(a->getValue()) in parseDebugKind()827 .CaseLower("none", DebugKind::None) in parseDebugKind()828 .CaseLower("full", DebugKind::Full) in parseDebugKind()829 .CaseLower("fastlink", DebugKind::FastLink) in parseDebugKind()831 .CaseLower("ghash", DebugKind::GHash) in parseDebugKind()832 .CaseLower("noghash", DebugKind::NoGHash) in parseDebugKind()[all …]
72 : CGM(CGM), DebugKind(CGM.getCodeGenOpts().getDebugInfo()), in CGDebugInfo()597 switch (DebugKind) { in CreateCompileUnit()1888 if (DebugKind == codegenoptions::DebugInfoConstructor) in CreateCXXMemberFunction()2377 if (DebugKind <= codegenoptions::DebugLineTablesOnly) in completeType()2390 if (DebugKind > codegenoptions::LimitedDebugInfo || in completeType()2452 if (DebugKind <= codegenoptions::DebugLineTablesOnly) in completeClass()2491 static bool shouldOmitDefinition(codegenoptions::DebugInfoKind DebugKind, in shouldOmitDefinition() argument2504 if (DebugKind == codegenoptions::DebugLineTablesOnly) in shouldOmitDefinition()2507 if (DebugKind > codegenoptions::LimitedDebugInfo || in shouldOmitDefinition()2543 if ((DebugKind == codegenoptions::DebugInfoConstructor) && in shouldOmitDefinition()[all …]
59 const codegenoptions::DebugInfoKind DebugKind; variable