]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
Update llvm/clang to r242221.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Lex / HeaderSearchOptions.h
1 //===--- HeaderSearchOptions.h ----------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_CLANG_LEX_HEADERSEARCHOPTIONS_H
11 #define LLVM_CLANG_LEX_HEADERSEARCHOPTIONS_H
12
13 #include "clang/Basic/LLVM.h"
14 #include "llvm/ADT/IntrusiveRefCntPtr.h"
15 #include "llvm/ADT/SetVector.h"
16 #include "llvm/ADT/StringRef.h"
17 #include <string>
18 #include <vector>
19
20 namespace clang {
21
22 namespace frontend {
23   /// IncludeDirGroup - Identifiers the group a include entry belongs to, which
24   /// represents its relative positive in the search list.  A \#include of a ""
25   /// path starts at the -iquote group, then searches the Angled group, then
26   /// searches the system group, etc.
27   enum IncludeDirGroup {
28     Quoted = 0,     ///< '\#include ""' paths, added by 'gcc -iquote'.
29     Angled,         ///< Paths for '\#include <>' added by '-I'.
30     IndexHeaderMap, ///< Like Angled, but marks header maps used when
31                        ///  building frameworks.
32     System,         ///< Like Angled, but marks system directories.
33     ExternCSystem,  ///< Like System, but headers are implicitly wrapped in
34                     ///  extern "C".
35     CSystem,        ///< Like System, but only used for C.
36     CXXSystem,      ///< Like System, but only used for C++.
37     ObjCSystem,     ///< Like System, but only used for ObjC.
38     ObjCXXSystem,   ///< Like System, but only used for ObjC++.
39     After           ///< Like System, but searched after the system directories.
40   };
41 }
42
43 /// HeaderSearchOptions - Helper class for storing options related to the
44 /// initialization of the HeaderSearch object.
45 class HeaderSearchOptions : public RefCountedBase<HeaderSearchOptions> {
46 public:
47   struct Entry {
48     std::string Path;
49     frontend::IncludeDirGroup Group;
50     unsigned IsFramework : 1;
51     
52     /// IgnoreSysRoot - This is false if an absolute path should be treated
53     /// relative to the sysroot, or true if it should always be the absolute
54     /// path.
55     unsigned IgnoreSysRoot : 1;
56
57     Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework,
58           bool ignoreSysRoot)
59       : Path(path), Group(group), IsFramework(isFramework),
60         IgnoreSysRoot(ignoreSysRoot) {}
61   };
62
63   struct SystemHeaderPrefix {
64     /// A prefix to be matched against paths in \#include directives.
65     std::string Prefix;
66
67     /// True if paths beginning with this prefix should be treated as system
68     /// headers.
69     bool IsSystemHeader;
70
71     SystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader)
72       : Prefix(Prefix), IsSystemHeader(IsSystemHeader) {}
73   };
74
75   /// If non-empty, the directory to use as a "virtual system root" for include
76   /// paths.
77   std::string Sysroot;
78
79   /// User specified include entries.
80   std::vector<Entry> UserEntries;
81
82   /// User-specified system header prefixes.
83   std::vector<SystemHeaderPrefix> SystemHeaderPrefixes;
84
85   /// The directory which holds the compiler resource files (builtin includes,
86   /// etc.).
87   std::string ResourceDir;
88
89   /// \brief The directory used for the module cache.
90   std::string ModuleCachePath;
91
92   /// \brief The directory used for a user build.
93   std::string ModuleUserBuildPath;
94
95   /// \brief Whether we should disable the use of the hash string within the
96   /// module cache.
97   ///
98   /// Note: Only used for testing!
99   unsigned DisableModuleHash : 1;
100
101   /// \brief Implicit module maps.  This option is enabld by default when
102   /// modules is enabled.
103   unsigned ImplicitModuleMaps : 1;
104
105   /// \brief Set the 'home directory' of a module map file to the current
106   /// working directory (or the home directory of the module map file that
107   /// contained the 'extern module' directive importing this module map file
108   /// if any) rather than the directory containing the module map file.
109   //
110   /// The home directory is where we look for files named in the module map
111   /// file.
112   unsigned ModuleMapFileHomeIsCwd : 1;
113
114   /// \brief The interval (in seconds) between pruning operations.
115   ///
116   /// This operation is expensive, because it requires Clang to walk through
117   /// the directory structure of the module cache, stat()'ing and removing
118   /// files.
119   ///
120   /// The default value is large, e.g., the operation runs once a week.
121   unsigned ModuleCachePruneInterval;
122
123   /// \brief The time (in seconds) after which an unused module file will be
124   /// considered unused and will, therefore, be pruned.
125   ///
126   /// When the module cache is pruned, any module file that has not been
127   /// accessed in this many seconds will be removed. The default value is
128   /// large, e.g., a month, to avoid forcing infrequently-used modules to be
129   /// regenerated often.
130   unsigned ModuleCachePruneAfter;
131
132   /// \brief The time in seconds when the build session started.
133   ///
134   /// This time is used by other optimizations in header search and module
135   /// loading.
136   uint64_t BuildSessionTimestamp;
137
138   /// \brief The set of macro names that should be ignored for the purposes
139   /// of computing the module hash.
140   llvm::SetVector<std::string> ModulesIgnoreMacros;
141
142   /// \brief The set of user-provided virtual filesystem overlay files.
143   std::vector<std::string> VFSOverlayFiles;
144
145   /// Include the compiler builtin includes.
146   unsigned UseBuiltinIncludes : 1;
147
148   /// Include the system standard include search directories.
149   unsigned UseStandardSystemIncludes : 1;
150
151   /// Include the system standard C++ library include search directories.
152   unsigned UseStandardCXXIncludes : 1;
153
154   /// Use libc++ instead of the default libstdc++.
155   unsigned UseLibcxx : 1;
156
157   /// Whether header search information should be output as for -v.
158   unsigned Verbose : 1;
159
160   /// \brief If true, skip verifying input files used by modules if the
161   /// module was already verified during this build session (see
162   /// \c BuildSessionTimestamp).
163   unsigned ModulesValidateOncePerBuildSession : 1;
164
165   /// \brief Whether to validate system input files when a module is loaded.
166   unsigned ModulesValidateSystemHeaders : 1;
167
168 public:
169   HeaderSearchOptions(StringRef _Sysroot = "/")
170     : Sysroot(_Sysroot), DisableModuleHash(0), ImplicitModuleMaps(0),
171       ModuleMapFileHomeIsCwd(0),
172       ModuleCachePruneInterval(7*24*60*60),
173       ModuleCachePruneAfter(31*24*60*60),
174       BuildSessionTimestamp(0),
175       UseBuiltinIncludes(true),
176       UseStandardSystemIncludes(true), UseStandardCXXIncludes(true),
177       UseLibcxx(false), Verbose(false),
178       ModulesValidateOncePerBuildSession(false),
179       ModulesValidateSystemHeaders(false) {}
180
181   /// AddPath - Add the \p Path path to the specified \p Group list.
182   void AddPath(StringRef Path, frontend::IncludeDirGroup Group,
183                bool IsFramework, bool IgnoreSysRoot) {
184     UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot);
185   }
186
187   /// AddSystemHeaderPrefix - Override whether \#include directives naming a
188   /// path starting with \p Prefix should be considered as naming a system
189   /// header.
190   void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) {
191     SystemHeaderPrefixes.emplace_back(Prefix, IsSystemHeader);
192   }
193
194   void AddVFSOverlayFile(StringRef Name) {
195     VFSOverlayFiles.push_back(Name);
196   }
197 };
198
199 } // end namespace clang
200
201 #endif