zturner created this revision. zturner added reviewers: labath, davide. Herald added a subscriber: mgorny.
The idea is to move the discovery of the clang resource directory into a more appropriate place, such as the clang expression parser. By continuing with this pattern we can isolate all clang interactions to the clang expression parser. There is a little edge case here in that there is a public enumeration which is used in conjunction with `SBHostOS` to get a generic LLDB directory. So as not to break the public API, I just special case this particular value of the enumeration and don't pass it through to Host, rather passing it through to the clang expression parser plugin. I'm not able to test this on OSX, so I expect there may be some easy to fix up compilation errors. Davide, would you mind helping me out with that? https://reviews.llvm.org/D47384 Files: lldb/include/lldb/Host/HostInfoBase.h lldb/include/lldb/Host/macosx/HostInfoMacOSX.h lldb/include/lldb/Host/posix/HostInfoPosix.h lldb/source/API/SBHostOS.cpp lldb/source/Host/common/HostInfoBase.cpp lldb/source/Host/macosx/HostInfoMacOSX.mm lldb/source/Host/posix/HostInfoPosix.cpp lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp lldb/source/Plugins/ExpressionParser/Clang/ClangHost.h lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp lldb/unittests/Host/HostInfoTest.cpp
Index: lldb/unittests/Host/HostInfoTest.cpp =================================================================== --- lldb/unittests/Host/HostInfoTest.cpp +++ lldb/unittests/Host/HostInfoTest.cpp @@ -52,54 +52,50 @@ #ifdef __APPLE__ -struct HostInfoMacOSXTest : public HostInfoMacOSX { - static std::string ComputeClangDir(std::string lldb_shlib_path, - bool verify = false) { - FileSpec clang_dir; - FileSpec lldb_shlib_spec(lldb_shlib_path, false); - ComputeClangDirectory(lldb_shlib_spec, clang_dir, verify); - return clang_dir.GetPath(); - } -}; - +static std::string ComputeClangDir(std::string lldb_shlib_path, + bool verify = false) { + FileSpec clang_dir; + FileSpec lldb_shlib_spec(lldb_shlib_path, false); + ComputeClangDirectory(lldb_shlib_spec, clang_dir, verify); + return clang_dir.GetPath(); +} TEST_F(HostInfoTest, MacOSX) { // This returns whatever the POSIX fallback returns. std::string posix = "/usr/lib/liblldb.dylib"; - EXPECT_FALSE(HostInfoMacOSXTest::ComputeClangDir(posix).empty()); + EXPECT_FALSE(ComputeClangDir(posix).empty()); std::string build = "/lldb-macosx-x86_64/Library/Frameworks/LLDB.framework/Versions/A"; std::string build_clang = "/lldb-macosx-x86_64/Library/Frameworks/LLDB.framework/Resources/Clang"; - EXPECT_EQ(HostInfoMacOSXTest::ComputeClangDir(build), build_clang); + EXPECT_EQ(ComputeClangDir(build), build_clang); std::string xcode = "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A"; std::string xcode_clang = "/Applications/Xcode.app/Contents/Developer/Toolchains/" "XcodeDefault.xctoolchain/usr/lib/swift/clang"; - EXPECT_EQ(HostInfoMacOSXTest::ComputeClangDir(xcode), xcode_clang); + EXPECT_EQ(ComputeClangDir(xcode), xcode_clang); std::string toolchain = "/Applications/Xcode.app/Contents/Developer/Toolchains/" "Swift-4.1-development-snapshot.xctoolchain/System/Library/" "PrivateFrameworks/LLDB.framework"; std::string toolchain_clang = "/Applications/Xcode.app/Contents/Developer/Toolchains/" "Swift-4.1-development-snapshot.xctoolchain/usr/lib/swift/clang"; - EXPECT_EQ(HostInfoMacOSXTest::ComputeClangDir(toolchain), toolchain_clang); + EXPECT_EQ(ComputeClangDir(toolchain), toolchain_clang); std::string cltools = "/Library/Developer/CommandLineTools/Library/" "PrivateFrameworks/LLDB.framework"; std::string cltools_clang = "/Library/Developer/CommandLineTools/Library/PrivateFrameworks/" "LLDB.framework/Resources/Clang"; - EXPECT_EQ(HostInfoMacOSXTest::ComputeClangDir(cltools), cltools_clang); - + EXPECT_EQ(ComputeClangDir(cltools), cltools_clang); // Test that a bogus path is detected. - EXPECT_NE(HostInfoMacOSXTest::ComputeClangDir(GetInputFilePath(xcode), true), - HostInfoMacOSXTest::ComputeClangDir(GetInputFilePath(xcode))); + EXPECT_NE(ComputeClangDir(GetInputFilePath(xcode), true), + ComputeClangDir(GetInputFilePath(xcode))); } #endif Index: lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp =================================================================== --- lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp +++ lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp @@ -25,6 +25,7 @@ #include "llvm/Support/Threading.h" // Project includes +#include "ClangHost.h" #include "ClangModulesDeclVendor.h" #include "lldb/Core/ModuleList.h" @@ -144,18 +145,6 @@ } } -static FileSpec GetResourceDir() { - static FileSpec g_cached_resource_dir; - - static llvm::once_flag g_once_flag; - - llvm::call_once(g_once_flag, []() { - HostInfo::GetLLDBPath(lldb::ePathTypeClangDir, g_cached_resource_dir); - }); - - return g_cached_resource_dir; -} - ClangModulesDeclVendor::ClangModulesDeclVendor() {} ClangModulesDeclVendor::~ClangModulesDeclVendor() {} @@ -610,7 +599,7 @@ } { - FileSpec clang_resource_dir = GetResourceDir(); + FileSpec clang_resource_dir = GetClangResourceDir(); if (llvm::sys::fs::is_directory(clang_resource_dir.GetPath())) { compiler_invocation_arguments.push_back("-resource-dir"); Index: lldb/source/Plugins/ExpressionParser/Clang/ClangHost.h =================================================================== --- /dev/null +++ lldb/source/Plugins/ExpressionParser/Clang/ClangHost.h @@ -0,0 +1,26 @@ +//===-- ClangHost.h ---------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef LLDB_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H +#define LLDB_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H + +namespace lldb_private { + +class FileSpec; + +#if defined(__APPLE__) +bool ComputeClangDirectory(FileSpec &lldb_shlib_spec, FileSpec &file_spec, + bool verify); +#endif + +FileSpec GetClangResourceDir(); + +} // namespace lldb_private + +#endif Index: lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp =================================================================== --- /dev/null +++ lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp @@ -0,0 +1,140 @@ +//===-- ClangHost.cpp -------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "ClangHost.h" + +#include "clang/Basic/Version.h" +#include "clang/Config/config.h" + +#include "llvm/ADT/StringRef.h" +#include "llvm/ADT/Twine.h" +#include "llvm/Support/FileSystem.h" +#include "llvm/Support/Threading.h" + +// Project includes +#if !defined(_WIN32) +#include "lldb/Host/posix/HostInfoPosix.h" +#endif +#include "lldb/Utility/FileSpec.h" +#include "lldb/Utility/Log.h" + +#include <string> + +using namespace lldb_private; + +#if defined(_WIN32) +static bool ComputeClangDirectory(FileSpec &file_spec) { return false; } +#else +static bool DefaultComputeClangDirectory(FileSpec &file_spec) { + return HostInfoPosix::ComputePathRelativeToLibrary( + file_spec, (llvm::Twine("/lib") + CLANG_LIBDIR_SUFFIX + "/clang/" + + CLANG_VERSION_STRING) + .str()); +} + +#if defined(__APPLE__) + +static bool VerifyClangPath(const llvm::Twine &clang_path) { + if (llvm::sys::fs::is_directory(clang_path)) return true; + Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); + if (log) + log->Printf( + "VerifyClangPath(): " + "failed to stat clang resource directory at \"%s\"", + clang_path.str().c_str()); + return false; +} + +bool lldb_private::ComputeClangDirectory(FileSpec &lldb_shlib_spec, + FileSpec &file_spec, bool verify) { + std::string raw_path = lldb_shlib_spec.GetPath(); + + auto rev_it = llvm::sys::path::rbegin(raw_path); + auto r_end = llvm::sys::path::rend(raw_path); + + // Check for a Posix-style build of LLDB. + while (rev_it != r_end) { + if (*rev_it == "LLDB.framework") break; + ++rev_it; + } + + if (rev_it == r_end) return DefaultComputeClangDirectory(file_spec); + + // Inside Xcode and in Xcode toolchains LLDB is always in lockstep + // with the Swift compiler, so it can reuse its Clang resource + // directory. This allows LLDB and the Swift compiler to share the + // same Clang module cache. + llvm::SmallString<256> clang_path; + const char *swift_clang_resource_dir = "usr/lib/swift/clang"; + auto parent = std::next(rev_it); + if (parent != r_end && *parent == "SharedFrameworks") { + // This is the top-level LLDB in the Xcode.app bundle. + // E.g., "Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A" + raw_path.resize(parent - r_end); + llvm::sys::path::append(clang_path, raw_path, + "Developer/Toolchains/XcodeDefault.xctoolchain", + swift_clang_resource_dir); + if (!verify || VerifyClangPath(clang_path)) { + file_spec.SetFile(clang_path.c_str(), true); + return true; + } + } else if (parent != r_end && *parent == "PrivateFrameworks" && + std::distance(parent, r_end) > 2) { + ++parent; + ++parent; + if (*parent == "System") { + // This is LLDB inside an Xcode toolchain. + // E.g., "Xcode.app/Contents/Developer/Toolchains/" \ + // "My.xctoolchain/System/Library/PrivateFrameworks/LLDB.framework" + raw_path.resize(parent - r_end); + llvm::sys::path::append(clang_path, raw_path, swift_clang_resource_dir); + if (!verify || VerifyClangPath(clang_path)) { + file_spec.SetFile(clang_path.c_str(), true); + return true; + } + raw_path = lldb_shlib_spec.GetPath(); + } + raw_path.resize(rev_it - r_end); + } else { + raw_path.resize(rev_it - r_end); + } + + // Fall back to the Clang resource directory inside the framework. + raw_path.append("LLDB.framework/Resources/Clang"); + file_spec.SetFile(raw_path.c_str(), true); + return true; +} + +static bool ComputeClangDirectory(FileSpec &file_spec) { + FileSpec lldb_file_spec; + if (!HostInfo::GetLLDBPath(lldb::ePathTypeLLDBShlibDir, lldb_file_spec)) + return false; + return ComputeClangDirectory(lldb_file_spec, file_spec, true); +} +#else // __APPLE__ + +// All non-Apple posix systems. +static bool ComputeClangDirectory(FileSpec &file_spec) { + return DefaultComputeClangDirectory(file_spec); +} +#endif // __APPLE__ +#endif // _WIN32 + +FileSpec lldb_private::GetClangResourceDir() { + static FileSpec g_cached_resource_dir; + static llvm::once_flag g_once_flag; + llvm::call_once(g_once_flag, []() { + ::ComputeClangDirectory(g_cached_resource_dir); + Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); + if (log) + log->Printf("GetClangResourceDir() => '%s'", + g_cached_resource_dir.GetPath().c_str()); + }); + return g_cached_resource_dir; +} Index: lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt =================================================================== --- lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt +++ lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt @@ -11,6 +11,7 @@ ClangExpressionParser.cpp ClangExpressionVariable.cpp ClangFunctionCaller.cpp + ClangHost.cpp ClangModulesDeclVendor.cpp ClangPersistentVariables.cpp ClangUserExpression.cpp Index: lldb/source/Host/posix/HostInfoPosix.cpp =================================================================== --- lldb/source/Host/posix/HostInfoPosix.cpp +++ lldb/source/Host/posix/HostInfoPosix.cpp @@ -14,8 +14,6 @@ #include "lldb/Host/posix/HostInfoPosix.h" #include "lldb/Utility/Log.h" -#include "clang/Basic/Version.h" -#include "clang/Config/config.h" #include "llvm/ADT/SmallString.h" #include "llvm/ADT/Twine.h" #include "llvm/Support/Path.h" @@ -168,13 +166,6 @@ return ComputePathRelativeToLibrary(file_spec, "/bin"); } -bool HostInfoPosix::ComputeClangDirectory(FileSpec &file_spec) { - return ComputePathRelativeToLibrary( - file_spec, (llvm::Twine("/lib") + CLANG_LIBDIR_SUFFIX + "/clang/" + - CLANG_VERSION_STRING) - .str()); -} - bool HostInfoPosix::ComputeHeaderDirectory(FileSpec &file_spec) { FileSpec temp_file("/opt/local/include/lldb", false); file_spec.GetDirectory().SetCString(temp_file.GetPath().c_str()); Index: lldb/source/Host/macosx/HostInfoMacOSX.mm =================================================================== --- lldb/source/Host/macosx/HostInfoMacOSX.mm +++ lldb/source/Host/macosx/HostInfoMacOSX.mm @@ -227,86 +227,6 @@ #endif } -static bool VerifyClangPath(const llvm::Twine &clang_path) { - if (llvm::sys::fs::is_directory(clang_path)) - return true; - Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); - if (log) - log->Printf("HostInfoMacOSX::ComputeClangDirectory(): " - "failed to stat clang resource directory at \"%s\"", - clang_path.str().c_str()); - return false; -} - -bool HostInfoMacOSX::ComputeClangDirectory(FileSpec &file_spec) { - FileSpec lldb_file_spec; - if (!GetLLDBPath(lldb::ePathTypeLLDBShlibDir, lldb_file_spec)) - return false; - return ComputeClangDirectory(lldb_file_spec, file_spec, true); -} - -bool HostInfoMacOSX::ComputeClangDirectory(FileSpec &lldb_shlib_spec, - FileSpec &file_spec, bool verify) { - std::string raw_path = lldb_shlib_spec.GetPath(); - - auto rev_it = llvm::sys::path::rbegin(raw_path); - auto r_end = llvm::sys::path::rend(raw_path); - - // Check for a Posix-style build of LLDB. - while (rev_it != r_end) { - if (*rev_it == "LLDB.framework") - break; - ++rev_it; - } - - if (rev_it == r_end) - return HostInfoPosix::ComputeClangDirectory(file_spec); - - // Inside Xcode and in Xcode toolchains LLDB is always in lockstep - // with the Swift compiler, so it can reuse its Clang resource - // directory. This allows LLDB and the Swift compiler to share the - // same Clang module cache. - llvm::SmallString<256> clang_path; - const char *swift_clang_resource_dir = "usr/lib/swift/clang"; - auto parent = std::next(rev_it); - if (parent != r_end && *parent == "SharedFrameworks") { - // This is the top-level LLDB in the Xcode.app bundle. - // E.g., "Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A" - raw_path.resize(parent - r_end); - llvm::sys::path::append(clang_path, raw_path, - "Developer/Toolchains/XcodeDefault.xctoolchain", - swift_clang_resource_dir); - if (!verify || VerifyClangPath(clang_path)) { - file_spec.SetFile(clang_path.c_str(), true); - return true; - } - } else if (parent != r_end && *parent == "PrivateFrameworks" && - std::distance(parent, r_end) > 2) { - ++parent; - ++parent; - if (*parent == "System") { - // This is LLDB inside an Xcode toolchain. - // E.g., "Xcode.app/Contents/Developer/Toolchains/" \ - // "My.xctoolchain/System/Library/PrivateFrameworks/LLDB.framework" - raw_path.resize(parent - r_end); - llvm::sys::path::append(clang_path, raw_path, swift_clang_resource_dir); - if (!verify || VerifyClangPath(clang_path)) { - file_spec.SetFile(clang_path.c_str(), true); - return true; - } - raw_path = lldb_shlib_spec.GetPath(); - } - raw_path.resize(rev_it - r_end); - } else { - raw_path.resize(rev_it - r_end); - } - - // Fall back to the Clang resource directory inside the framework. - raw_path.append("LLDB.framework/Resources/Clang"); - file_spec.SetFile(raw_path.c_str(), true); - return true; -} - bool HostInfoMacOSX::ComputeSystemPluginsDirectory(FileSpec &file_spec) { FileSpec lldb_file_spec; if (!GetLLDBPath(lldb::ePathTypeLLDBShlibDir, lldb_file_spec)) Index: lldb/source/Host/common/HostInfoBase.cpp =================================================================== --- lldb/source/Host/common/HostInfoBase.cpp +++ lldb/source/Host/common/HostInfoBase.cpp @@ -114,6 +114,8 @@ bool HostInfoBase::GetLLDBPath(lldb::PathType type, FileSpec &file_spec) { file_spec.Clear(); + assert(type != lldb::ePathTypeClangDir); + #if defined(LLDB_DISABLE_PYTHON) if (type == lldb::ePathTypePythonDir) return false; @@ -176,21 +178,6 @@ if (success) result = &g_fields->m_lldb_python_dir; } break; - case lldb::ePathTypeClangDir: { - static llvm::once_flag g_once_flag; - static bool success = false; - llvm::call_once(g_once_flag, []() { - success = - HostInfo::ComputeClangDirectory(g_fields->m_lldb_clang_resource_dir); - Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); - if (log) - log->Printf( - "HostInfoBase::GetLLDBPath(ePathTypeClangResourceDir) => '%s'", - g_fields->m_lldb_clang_resource_dir.GetPath().c_str()); - }); - if (success) - result = &g_fields->m_lldb_clang_resource_dir; - } break; case lldb::ePathTypeLLDBSystemPlugins: { static llvm::once_flag g_once_flag; static bool success = false; @@ -251,6 +238,8 @@ if (success) result = &g_fields->m_lldb_global_tmp_dir; } break; + default: + llvm_unreachable("Unreachable!"); } if (!result) @@ -351,8 +340,6 @@ return false; } -bool HostInfoBase::ComputeClangDirectory(FileSpec &file_spec) { return false; } - bool HostInfoBase::ComputeUserPluginsDirectory(FileSpec &file_spec) { // TODO(zturner): Figure out how to compute the user plugins directory for // all platforms. Index: lldb/source/API/SBHostOS.cpp =================================================================== --- lldb/source/API/SBHostOS.cpp +++ lldb/source/API/SBHostOS.cpp @@ -17,6 +17,8 @@ #include "lldb/Utility/FileSpec.h" #include "lldb/Utility/Log.h" +#include "Plugins/ExpressionParser/Clang/ClangHost.h" + #include "llvm/ADT/SmallString.h" #include "llvm/Support/Path.h" @@ -41,8 +43,12 @@ SBFileSpec SBHostOS::GetLLDBPath(lldb::PathType path_type) { SBFileSpec sb_fspec; FileSpec fspec; - if (HostInfo::GetLLDBPath(path_type, fspec)) - sb_fspec.SetFileSpec(fspec); + bool Success = true; + if (path_type == ePathTypeClangDir) + fspec = GetClangResourceDir(); + else + Success = HostInfo::GetLLDBPath(path_type, fspec); + if (Success) sb_fspec.SetFileSpec(fspec); return sb_fspec; } Index: lldb/include/lldb/Host/posix/HostInfoPosix.h =================================================================== --- lldb/include/lldb/Host/posix/HostInfoPosix.h +++ lldb/include/lldb/Host/posix/HostInfoPosix.h @@ -33,13 +33,13 @@ static bool GetEnvironmentVar(const std::string &var_name, std::string &var); -protected: + static bool ComputePathRelativeToLibrary(FileSpec &file_spec, + llvm::StringRef dir); + + protected: static bool ComputeSupportExeDirectory(FileSpec &file_spec); static bool ComputeHeaderDirectory(FileSpec &file_spec); static bool ComputePythonDirectory(FileSpec &file_spec); - static bool ComputeClangDirectory(FileSpec &file_spec); - static bool ComputePathRelativeToLibrary(FileSpec &file_spec, - llvm::StringRef dir); }; } Index: lldb/include/lldb/Host/macosx/HostInfoMacOSX.h =================================================================== --- lldb/include/lldb/Host/macosx/HostInfoMacOSX.h +++ lldb/include/lldb/Host/macosx/HostInfoMacOSX.h @@ -37,9 +37,6 @@ ArchSpec &arch_64); static bool ComputeHeaderDirectory(FileSpec &file_spec); static bool ComputePythonDirectory(FileSpec &file_spec); - static bool ComputeClangDirectory(FileSpec &file_spec); - static bool ComputeClangDirectory(FileSpec &lldb_shlib_spec, - FileSpec &file_spec, bool verify); static bool ComputeSystemPluginsDirectory(FileSpec &file_spec); static bool ComputeUserPluginsDirectory(FileSpec &file_spec); }; Index: lldb/include/lldb/Host/HostInfoBase.h =================================================================== --- lldb/include/lldb/Host/HostInfoBase.h +++ lldb/include/lldb/Host/HostInfoBase.h @@ -98,7 +98,6 @@ static bool ComputeTempFileBaseDirectory(FileSpec &file_spec); static bool ComputeHeaderDirectory(FileSpec &file_spec); static bool ComputeSystemPluginsDirectory(FileSpec &file_spec); - static bool ComputeClangDirectory(FileSpec &file_spec); static bool ComputeUserPluginsDirectory(FileSpec &file_spec); static void ComputeHostArchitectureSupport(ArchSpec &arch_32,
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits