Home
last modified time | relevance | path

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

/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFCompileUnit.cpp963 …const char *producer_cstr = die->GetAttributeValueAsString(m_dwarf2Data, this, DW_AT_producer, NUL… in ParseProducerInfo() local
964 if (producer_cstr) in ParseProducerInfo()
967 if (llvm_gcc_regex.Execute (producer_cstr)) in ParseProducerInfo()
971 else if (strstr(producer_cstr, "clang")) in ParseProducerInfo()
975 if (g_clang_version_regex.Execute (producer_cstr, &regex_match)) in ParseProducerInfo()
978 if (regex_match.GetMatchAtIndex (producer_cstr, 1, str)) in ParseProducerInfo()
980 if (regex_match.GetMatchAtIndex (producer_cstr, 2, str)) in ParseProducerInfo()
982 if (regex_match.GetMatchAtIndex (producer_cstr, 3, str)) in ParseProducerInfo()
987 else if (strstr(producer_cstr, "GNU")) in ParseProducerInfo()