/Users/buildslave/jenkins/workspace/coverage/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
Line | Count | Source (jump to first uncovered line) |
1 | | //===-- CppModuleConfiguration.cpp ----------------------------------------===// |
2 | | // |
3 | | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | | // See https://llvm.org/LICENSE.txt for license information. |
5 | | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | | // |
7 | | //===----------------------------------------------------------------------===// |
8 | | |
9 | | #include "CppModuleConfiguration.h" |
10 | | |
11 | | #include "ClangHost.h" |
12 | | #include "lldb/Host/FileSystem.h" |
13 | | #include "llvm/TargetParser/Triple.h" |
14 | | #include <optional> |
15 | | |
16 | | using namespace lldb_private; |
17 | | |
18 | 23.2k | bool CppModuleConfiguration::SetOncePath::TrySet(llvm::StringRef path) { |
19 | | // Setting for the first time always works. |
20 | 23.2k | if (m_first) { |
21 | 1.11k | m_path = path.str(); |
22 | 1.11k | m_valid = true; |
23 | 1.11k | m_first = false; |
24 | 1.11k | return true; |
25 | 1.11k | } |
26 | | // Changing the path to the same value is fine. |
27 | 22.1k | if (m_path == path) |
28 | 22.1k | return true; |
29 | | |
30 | | // Changing the path after it was already set is not allowed. |
31 | 0 | m_valid = false; |
32 | 0 | return false; |
33 | 22.1k | } |
34 | | |
35 | | static llvm::SmallVector<std::string, 2> |
36 | 16.8k | getTargetIncludePaths(const llvm::Triple &triple) { |
37 | 16.8k | llvm::SmallVector<std::string, 2> paths; |
38 | 16.8k | if (!triple.str().empty()) { |
39 | 16.8k | paths.push_back("/usr/include/" + triple.str()); |
40 | 16.8k | if (!triple.getArchName().empty() || |
41 | 16.8k | triple.getOSAndEnvironmentName().empty()0 ) |
42 | 16.8k | paths.push_back(("/usr/include/" + triple.getArchName() + "-" + |
43 | 16.8k | triple.getOSAndEnvironmentName()) |
44 | 16.8k | .str()); |
45 | 16.8k | } |
46 | 16.8k | return paths; |
47 | 16.8k | } |
48 | | |
49 | | /// Returns the include path matching the given pattern for the given file |
50 | | /// path (or std::nullopt if the path doesn't match the pattern). |
51 | | static std::optional<llvm::StringRef> |
52 | 50.5k | guessIncludePath(llvm::StringRef path_to_file, llvm::StringRef pattern) { |
53 | 50.5k | if (pattern.empty()) |
54 | 0 | return std::nullopt; |
55 | 50.5k | size_t pos = path_to_file.find(pattern); |
56 | 50.5k | if (pos == llvm::StringRef::npos) |
57 | 40.3k | return std::nullopt; |
58 | | |
59 | 10.2k | return path_to_file.substr(0, pos + pattern.size()); |
60 | 50.5k | } |
61 | | |
62 | | bool CppModuleConfiguration::analyzeFile(const FileSpec &f, |
63 | 23.3k | const llvm::Triple &triple) { |
64 | 23.3k | using namespace llvm::sys::path; |
65 | | // Convert to slashes to make following operations simpler. |
66 | 23.3k | std::string dir_buffer = convert_to_slash(f.GetDirectory().GetStringRef()); |
67 | 23.3k | llvm::StringRef posix_dir(dir_buffer); |
68 | | |
69 | | // Check for /c++/vX/ that is used by libc++. |
70 | 23.3k | static llvm::Regex libcpp_regex(R"regex(/c[+][+]/v[0-9]/)regex"); |
71 | | // If the path is in the libc++ include directory use it as the found libc++ |
72 | | // path. Ignore subdirectories such as /c++/v1/experimental as those don't |
73 | | // need to be specified in the header search. |
74 | 23.3k | if (libcpp_regex.match(f.GetPath()) && |
75 | 23.3k | parent_path(posix_dir, Style::posix).endswith("c++")11.1k ) { |
76 | 6.49k | if (!m_std_inc.TrySet(posix_dir)) |
77 | 0 | return false; |
78 | 6.49k | if (triple.str().empty()) |
79 | 17 | return true; |
80 | | |
81 | 6.47k | posix_dir.consume_back("c++/v1"); |
82 | | // Check if this is a target-specific libc++ include directory. |
83 | 6.47k | return m_std_target_inc.TrySet( |
84 | 6.47k | (posix_dir + triple.str() + "/c++/v1").str()); |
85 | 6.49k | } |
86 | | |
87 | 16.8k | std::optional<llvm::StringRef> inc_path; |
88 | | // Target specific paths contains /usr/include, so we check them first |
89 | 33.7k | for (auto &path : getTargetIncludePaths(triple)) { |
90 | 33.7k | if ((inc_path = guessIncludePath(posix_dir, path))) |
91 | 1 | return m_c_target_inc.TrySet(*inc_path); |
92 | 33.7k | } |
93 | 16.8k | if ((inc_path = guessIncludePath(posix_dir, "/usr/include"))) |
94 | 10.2k | return m_c_inc.TrySet(*inc_path); |
95 | | |
96 | | // File wasn't interesting, continue analyzing. |
97 | 6.60k | return true; |
98 | 16.8k | } |
99 | | |
100 | | /// Utility function for just appending two paths. |
101 | 1.11k | static std::string MakePath(llvm::StringRef lhs, llvm::StringRef rhs) { |
102 | 1.11k | llvm::SmallString<256> result(lhs); |
103 | 1.11k | llvm::sys::path::append(result, rhs); |
104 | 1.11k | return std::string(result); |
105 | 1.11k | } |
106 | | |
107 | 384 | bool CppModuleConfiguration::hasValidConfig() { |
108 | | // We need to have a C and C++ include dir for a valid configuration. |
109 | 384 | if (!m_c_inc.Valid() || !m_std_inc.Valid()375 ) |
110 | 13 | return false; |
111 | | |
112 | | // Do some basic sanity checks on the directories that we don't activate |
113 | | // the module when it's clear that it's not usable. |
114 | 371 | const std::vector<std::string> files_to_check = { |
115 | | // * Check that the C library contains at least one random C standard |
116 | | // library header. |
117 | 371 | MakePath(m_c_inc.Get(), "stdio.h"), |
118 | | // * Without a libc++ modulemap file we can't have a 'std' module that |
119 | | // could be imported. |
120 | 371 | MakePath(m_std_inc.Get(), "module.modulemap"), |
121 | | // * Check for a random libc++ header (vector in this case) that has to |
122 | | // exist in a working libc++ setup. |
123 | 371 | MakePath(m_std_inc.Get(), "vector"), |
124 | 371 | }; |
125 | | |
126 | 1.09k | for (llvm::StringRef file_to_check : files_to_check) { |
127 | 1.09k | if (!FileSystem::Instance().Exists(file_to_check)) |
128 | 8 | return false; |
129 | 1.09k | } |
130 | | |
131 | 363 | return true; |
132 | 371 | } |
133 | | |
134 | | CppModuleConfiguration::CppModuleConfiguration( |
135 | 384 | const FileSpecList &support_files, const llvm::Triple &triple) { |
136 | | // Analyze all files we were given to build the configuration. |
137 | 384 | bool error = !llvm::all_of(support_files, |
138 | 384 | std::bind(&CppModuleConfiguration::analyzeFile, |
139 | 384 | this, std::placeholders::_1, triple)); |
140 | | // If we have a valid configuration at this point, set the |
141 | | // include directories and module list that should be used. |
142 | 384 | if (!error && hasValidConfig()) { |
143 | | // Calculate the resource directory for LLDB. |
144 | 363 | llvm::SmallString<256> resource_dir; |
145 | 363 | llvm::sys::path::append(resource_dir, GetClangResourceDir().GetPath(), |
146 | 363 | "include"); |
147 | 363 | m_resource_inc = std::string(resource_dir.str()); |
148 | | |
149 | | // This order matches the way Clang orders these directories. |
150 | 363 | m_include_dirs = {m_std_inc.Get().str(), m_resource_inc, |
151 | 363 | m_c_inc.Get().str()}; |
152 | 363 | if (m_c_target_inc.Valid()) |
153 | 1 | m_include_dirs.push_back(m_c_target_inc.Get().str()); |
154 | 363 | if (m_std_target_inc.Valid()) |
155 | 356 | m_include_dirs.push_back(m_std_target_inc.Get().str()); |
156 | 363 | m_imported_modules = {"std"}; |
157 | 363 | } |
158 | 384 | } |