[NFC][AArch64] Explicitly define undefined bits for instructions (#122129)
[llvm-project.git] / lldb / source / Plugins / ExpressionParser / Clang / CppModuleConfiguration.h
blob7be0ce6c7ae579f36df0d169d23cfb171b3ba78a
1 //===-- CppModuleConfiguration.h --------------------------------*- C++ -*-===//
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 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CPPMODULECONFIGURATION_H
10 #define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CPPMODULECONFIGURATION_H
12 #include <lldb/Utility/FileSpecList.h>
13 #include <llvm/Support/Regex.h>
15 namespace lldb_private {
17 /// A Clang configuration when importing C++ modules.
18 ///
19 /// This class computes a list of include paths and module names that can be
20 /// imported given a list of source files. Currently only used when importing
21 /// the 'std' module and its dependencies.
22 class CppModuleConfiguration {
23 /// Utility class for a path that can only be set once.
24 class SetOncePath {
25 std::string m_path;
26 bool m_valid = false;
27 /// True iff this path hasn't been set yet.
28 bool m_first = true;
30 public:
31 /// Try setting the path. Returns true if the path was set and false if
32 /// the path was already set.
33 [[nodiscard]] bool TrySet(llvm::StringRef path);
34 /// Return the path if there is one.
35 llvm::StringRef Get() const {
36 assert(m_valid && "Called Get() on an invalid SetOncePath?");
37 return m_path;
39 /// Returns true iff this path was set exactly once so far.
40 bool Valid() const { return m_valid; }
43 /// If valid, the include path used for the std module.
44 SetOncePath m_std_inc;
45 /// If valid, the per-target include path used for the std module.
46 /// This is an optional path only required on some systems.
47 SetOncePath m_std_target_inc;
48 /// If valid, the include path to the C library (e.g. /usr/include).
49 SetOncePath m_c_inc;
50 /// If valid, the include path to target-specific C library files
51 /// (e.g. /usr/include/x86_64-linux-gnu).
52 /// This is an optional path only required on some systems.
53 SetOncePath m_c_target_inc;
54 /// The Clang resource include path for this configuration.
55 std::string m_resource_inc;
57 std::vector<std::string> m_include_dirs;
58 std::vector<std::string> m_imported_modules;
60 /// Analyze a given source file to build the current configuration.
61 /// Returns false iff there was a fatal error that makes analyzing any
62 /// further files pointless as the configuration is now invalid.
63 bool analyzeFile(const FileSpec &f, const llvm::Triple &triple);
65 public:
66 /// Creates a configuration by analyzing the given list of used source files.
67 /// The triple (if valid) is used to search for target-specific include paths.
68 explicit CppModuleConfiguration(const FileSpecList &support_files,
69 const llvm::Triple &triple);
70 /// Creates an empty and invalid configuration.
71 CppModuleConfiguration() = default;
73 /// Returns true iff this is a valid configuration that can be used to
74 /// load and compile modules.
75 bool hasValidConfig();
77 /// Returns a list of include directories that should be used when using this
78 /// configuration (e.g. {"/usr/include", "/usr/include/c++/v1"}).
79 llvm::ArrayRef<std::string> GetIncludeDirs() const { return m_include_dirs; }
81 /// Returns a list of (top level) modules that should be imported when using
82 /// this configuration (e.g. {"std"}).
83 llvm::ArrayRef<std::string> GetImportedModules() const {
84 return m_imported_modules;
88 } // namespace lldb_private
90 #endif