]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h
Update Makefiles and other build glue for llvm/clang 3.7.0, as of trunk
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Lex / ModuleMap.h
1 //===--- ModuleMap.h - Describe the layout of modules -----------*- 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 // This file defines the ModuleMap interface, which describes the layout of a
11 // module as it relates to headers.
12 //
13 //===----------------------------------------------------------------------===//
14
15
16 #ifndef LLVM_CLANG_LEX_MODULEMAP_H
17 #define LLVM_CLANG_LEX_MODULEMAP_H
18
19 #include "clang/Basic/LangOptions.h"
20 #include "clang/Basic/Module.h"
21 #include "clang/Basic/SourceManager.h"
22 #include "llvm/ADT/DenseMap.h"
23 #include "llvm/ADT/IntrusiveRefCntPtr.h"
24 #include "llvm/ADT/SmallVector.h"
25 #include "llvm/ADT/StringMap.h"
26 #include "llvm/ADT/StringRef.h"
27 #include <string>
28
29 namespace clang {
30   
31 class DirectoryEntry;
32 class FileEntry;
33 class FileManager;
34 class DiagnosticConsumer;
35 class DiagnosticsEngine;
36 class HeaderSearch;
37 class ModuleMapParser;
38   
39 class ModuleMap {
40   SourceManager &SourceMgr;
41   DiagnosticsEngine &Diags;
42   const LangOptions &LangOpts;
43   const TargetInfo *Target;
44   HeaderSearch &HeaderInfo;
45   
46   /// \brief The directory used for Clang-supplied, builtin include headers,
47   /// such as "stdint.h".
48   const DirectoryEntry *BuiltinIncludeDir;
49   
50   /// \brief Language options used to parse the module map itself.
51   ///
52   /// These are always simple C language options.
53   LangOptions MMapLangOpts;
54
55   // The module that we are building; related to \c LangOptions::CurrentModule.
56   Module *CompilingModule;
57
58 public:
59   // The module that the .cc source file is associated with.
60   Module *SourceModule;
61   std::string SourceModuleName;
62
63 private:
64   /// \brief The top-level modules that are known.
65   llvm::StringMap<Module *> Modules;
66
67   /// \brief The number of modules we have created in total.
68   unsigned NumCreatedModules;
69
70 public:
71   /// \brief Flags describing the role of a module header.
72   enum ModuleHeaderRole {
73     /// \brief This header is normally included in the module.
74     NormalHeader  = 0x0,
75     /// \brief This header is included but private.
76     PrivateHeader = 0x1,
77     /// \brief This header is part of the module (for layering purposes) but
78     /// should be textually included.
79     TextualHeader = 0x2,
80     // Caution: Adding an enumerator needs other changes.
81     // Adjust the number of bits for KnownHeader::Storage.
82     // Adjust the bitfield HeaderFileInfo::HeaderRole size.
83     // Adjust the HeaderFileInfoTrait::ReadData streaming.
84     // Adjust the HeaderFileInfoTrait::EmitData streaming.
85     // Adjust ModuleMap::addHeader.
86   };
87
88   /// \brief A header that is known to reside within a given module,
89   /// whether it was included or excluded.
90   class KnownHeader {
91     llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage;
92
93   public:
94     KnownHeader() : Storage(nullptr, NormalHeader) { }
95     KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { }
96
97     /// \brief Retrieve the module the header is stored in.
98     Module *getModule() const { return Storage.getPointer(); }
99
100     /// \brief The role of this header within the module.
101     ModuleHeaderRole getRole() const { return Storage.getInt(); }
102
103     /// \brief Whether this header is available in the module.
104     bool isAvailable() const {
105       return getModule()->isAvailable();
106     }
107
108     // \brief Whether this known header is valid (i.e., it has an
109     // associated module).
110     explicit operator bool() const {
111       return Storage.getPointer() != nullptr;
112     }
113   };
114
115   typedef llvm::SmallPtrSet<const FileEntry *, 1> AdditionalModMapsSet;
116
117 private:
118   typedef llvm::DenseMap<const FileEntry *, SmallVector<KnownHeader, 1> >
119   HeadersMap;
120
121   /// \brief Mapping from each header to the module that owns the contents of
122   /// that header.
123   HeadersMap Headers;
124   
125   /// \brief Mapping from directories with umbrella headers to the module
126   /// that is generated from the umbrella header.
127   ///
128   /// This mapping is used to map headers that haven't explicitly been named
129   /// in the module map over to the module that includes them via its umbrella
130   /// header.
131   llvm::DenseMap<const DirectoryEntry *, Module *> UmbrellaDirs;
132
133   /// \brief The set of attributes that can be attached to a module.
134   struct Attributes {
135     Attributes() : IsSystem(), IsExternC(), IsExhaustive() {}
136
137     /// \brief Whether this is a system module.
138     unsigned IsSystem : 1;
139
140     /// \brief Whether this is an extern "C" module.
141     unsigned IsExternC : 1;
142
143     /// \brief Whether this is an exhaustive set of configuration macros.
144     unsigned IsExhaustive : 1;
145   };
146
147   /// \brief A directory for which framework modules can be inferred.
148   struct InferredDirectory {
149     InferredDirectory() : InferModules() {}
150
151     /// \brief Whether to infer modules from this directory.
152     unsigned InferModules : 1;
153
154     /// \brief The attributes to use for inferred modules.
155     Attributes Attrs;
156
157     /// \brief If \c InferModules is non-zero, the module map file that allowed
158     /// inferred modules.  Otherwise, nullptr.
159     const FileEntry *ModuleMapFile;
160
161     /// \brief The names of modules that cannot be inferred within this
162     /// directory.
163     SmallVector<std::string, 2> ExcludedModules;
164   };
165
166   /// \brief A mapping from directories to information about inferring
167   /// framework modules from within those directories.
168   llvm::DenseMap<const DirectoryEntry *, InferredDirectory> InferredDirectories;
169
170   /// A mapping from an inferred module to the module map that allowed the
171   /// inference.
172   llvm::DenseMap<const Module *, const FileEntry *> InferredModuleAllowedBy;
173
174   llvm::DenseMap<const Module *, AdditionalModMapsSet> AdditionalModMaps;
175
176   /// \brief Describes whether we haved parsed a particular file as a module
177   /// map.
178   llvm::DenseMap<const FileEntry *, bool> ParsedModuleMap;
179
180   friend class ModuleMapParser;
181   
182   /// \brief Resolve the given export declaration into an actual export
183   /// declaration.
184   ///
185   /// \param Mod The module in which we're resolving the export declaration.
186   ///
187   /// \param Unresolved The export declaration to resolve.
188   ///
189   /// \param Complain Whether this routine should complain about unresolvable
190   /// exports.
191   ///
192   /// \returns The resolved export declaration, which will have a NULL pointer
193   /// if the export could not be resolved.
194   Module::ExportDecl 
195   resolveExport(Module *Mod, const Module::UnresolvedExportDecl &Unresolved,
196                 bool Complain) const;
197
198   /// \brief Resolve the given module id to an actual module.
199   ///
200   /// \param Id The module-id to resolve.
201   ///
202   /// \param Mod The module in which we're resolving the module-id.
203   ///
204   /// \param Complain Whether this routine should complain about unresolvable
205   /// module-ids.
206   ///
207   /// \returns The resolved module, or null if the module-id could not be
208   /// resolved.
209   Module *resolveModuleId(const ModuleId &Id, Module *Mod, bool Complain) const;
210
211   /// \brief Looks up the modules that \p File corresponds to.
212   ///
213   /// If \p File represents a builtin header within Clang's builtin include
214   /// directory, this also loads all of the module maps to see if it will get
215   /// associated with a specific module (e.g. in /usr/include).
216   HeadersMap::iterator findKnownHeader(const FileEntry *File);
217
218   /// \brief Searches for a module whose umbrella directory contains \p File.
219   ///
220   /// \param File The header to search for.
221   ///
222   /// \param IntermediateDirs On success, contains the set of directories
223   /// searched before finding \p File.
224   KnownHeader findHeaderInUmbrellaDirs(const FileEntry *File,
225                     SmallVectorImpl<const DirectoryEntry *> &IntermediateDirs);
226
227   /// \brief A convenience method to determine if \p File is (possibly nested)
228   /// in an umbrella directory.
229   bool isHeaderInUmbrellaDirs(const FileEntry *File) {
230     SmallVector<const DirectoryEntry *, 2> IntermediateDirs;
231     return static_cast<bool>(findHeaderInUmbrellaDirs(File, IntermediateDirs));
232   }
233
234   Module *inferFrameworkModule(StringRef ModuleName,
235                                const DirectoryEntry *FrameworkDir,
236                                Attributes Attrs, Module *Parent);
237
238 public:
239   /// \brief Construct a new module map.
240   ///
241   /// \param SourceMgr The source manager used to find module files and headers.
242   /// This source manager should be shared with the header-search mechanism,
243   /// since they will refer to the same headers.
244   ///
245   /// \param Diags A diagnostic engine used for diagnostics.
246   ///
247   /// \param LangOpts Language options for this translation unit.
248   ///
249   /// \param Target The target for this translation unit.
250   ModuleMap(SourceManager &SourceMgr, DiagnosticsEngine &Diags,
251             const LangOptions &LangOpts, const TargetInfo *Target,
252             HeaderSearch &HeaderInfo);
253
254   /// \brief Destroy the module map.
255   ///
256   ~ModuleMap();
257
258   /// \brief Set the target information.
259   void setTarget(const TargetInfo &Target);
260
261   /// \brief Set the directory that contains Clang-supplied include
262   /// files, such as our stdarg.h or tgmath.h.
263   void setBuiltinIncludeDir(const DirectoryEntry *Dir) {
264     BuiltinIncludeDir = Dir;
265   }
266
267   /// \brief Retrieve the module that owns the given header file, if any.
268   ///
269   /// \param File The header file that is likely to be included.
270   ///
271   /// \param RequestingModule Specifies the module the header is intended to be
272   /// used from.  Used to disambiguate if a header is present in multiple
273   /// modules.
274   ///
275   /// \returns The module KnownHeader, which provides the module that owns the
276   /// given header file.  The KnownHeader is default constructed to indicate
277   /// that no module owns this header file.
278   KnownHeader findModuleForHeader(const FileEntry *File,
279                                   Module *RequestingModule = nullptr);
280
281   /// \brief Reports errors if a module must not include a specific file.
282   ///
283   /// \param RequestingModule The module including a file.
284   ///
285   /// \param FilenameLoc The location of the inclusion's filename.
286   ///
287   /// \param Filename The included filename as written.
288   ///
289   /// \param File The included file.
290   void diagnoseHeaderInclusion(Module *RequestingModule,
291                                SourceLocation FilenameLoc, StringRef Filename,
292                                const FileEntry *File);
293
294   /// \brief Determine whether the given header is part of a module
295   /// marked 'unavailable'.
296   bool isHeaderInUnavailableModule(const FileEntry *Header) const;
297
298   /// \brief Determine whether the given header is unavailable as part
299   /// of the specified module.
300   bool isHeaderUnavailableInModule(const FileEntry *Header,
301                                    const Module *RequestingModule) const;
302
303   /// \brief Retrieve a module with the given name.
304   ///
305   /// \param Name The name of the module to look up.
306   ///
307   /// \returns The named module, if known; otherwise, returns null.
308   Module *findModule(StringRef Name) const;
309
310   /// \brief Retrieve a module with the given name using lexical name lookup,
311   /// starting at the given context.
312   ///
313   /// \param Name The name of the module to look up.
314   ///
315   /// \param Context The module context, from which we will perform lexical
316   /// name lookup.
317   ///
318   /// \returns The named module, if known; otherwise, returns null.
319   Module *lookupModuleUnqualified(StringRef Name, Module *Context) const;
320
321   /// \brief Retrieve a module with the given name within the given context,
322   /// using direct (qualified) name lookup.
323   ///
324   /// \param Name The name of the module to look up.
325   /// 
326   /// \param Context The module for which we will look for a submodule. If
327   /// null, we will look for a top-level module.
328   ///
329   /// \returns The named submodule, if known; otherwose, returns null.
330   Module *lookupModuleQualified(StringRef Name, Module *Context) const;
331   
332   /// \brief Find a new module or submodule, or create it if it does not already
333   /// exist.
334   ///
335   /// \param Name The name of the module to find or create.
336   ///
337   /// \param Parent The module that will act as the parent of this submodule,
338   /// or NULL to indicate that this is a top-level module.
339   ///
340   /// \param IsFramework Whether this is a framework module.
341   ///
342   /// \param IsExplicit Whether this is an explicit submodule.
343   ///
344   /// \returns The found or newly-created module, along with a boolean value
345   /// that will be true if the module is newly-created.
346   std::pair<Module *, bool> findOrCreateModule(StringRef Name, Module *Parent,
347                                                bool IsFramework,
348                                                bool IsExplicit);
349
350   /// \brief Infer the contents of a framework module map from the given
351   /// framework directory.
352   Module *inferFrameworkModule(StringRef ModuleName, 
353                                const DirectoryEntry *FrameworkDir,
354                                bool IsSystem, Module *Parent);
355   
356   /// \brief Retrieve the module map file containing the definition of the given
357   /// module.
358   ///
359   /// \param Module The module whose module map file will be returned, if known.
360   ///
361   /// \returns The file entry for the module map file containing the given
362   /// module, or NULL if the module definition was inferred.
363   const FileEntry *getContainingModuleMapFile(const Module *Module) const;
364
365   /// \brief Get the module map file that (along with the module name) uniquely
366   /// identifies this module.
367   ///
368   /// The particular module that \c Name refers to may depend on how the module
369   /// was found in header search. However, the combination of \c Name and
370   /// this module map will be globally unique for top-level modules. In the case
371   /// of inferred modules, returns the module map that allowed the inference
372   /// (e.g. contained 'module *'). Otherwise, returns
373   /// getContainingModuleMapFile().
374   const FileEntry *getModuleMapFileForUniquing(const Module *M) const;
375
376   void setInferredModuleAllowedBy(Module *M, const FileEntry *ModuleMap);
377
378   /// \brief Get any module map files other than getModuleMapFileForUniquing(M)
379   /// that define submodules of a top-level module \p M. This is cheaper than
380   /// getting the module map file for each submodule individually, since the
381   /// expected number of results is very small.
382   AdditionalModMapsSet *getAdditionalModuleMapFiles(const Module *M) {
383     auto I = AdditionalModMaps.find(M);
384     if (I == AdditionalModMaps.end())
385       return nullptr;
386     return &I->second;
387   }
388
389   void addAdditionalModuleMapFile(const Module *M, const FileEntry *ModuleMap) {
390     AdditionalModMaps[M].insert(ModuleMap);
391   }
392
393   /// \brief Resolve all of the unresolved exports in the given module.
394   ///
395   /// \param Mod The module whose exports should be resolved.
396   ///
397   /// \param Complain Whether to emit diagnostics for failures.
398   ///
399   /// \returns true if any errors were encountered while resolving exports,
400   /// false otherwise.
401   bool resolveExports(Module *Mod, bool Complain);
402
403   /// \brief Resolve all of the unresolved uses in the given module.
404   ///
405   /// \param Mod The module whose uses should be resolved.
406   ///
407   /// \param Complain Whether to emit diagnostics for failures.
408   ///
409   /// \returns true if any errors were encountered while resolving uses,
410   /// false otherwise.
411   bool resolveUses(Module *Mod, bool Complain);
412
413   /// \brief Resolve all of the unresolved conflicts in the given module.
414   ///
415   /// \param Mod The module whose conflicts should be resolved.
416   ///
417   /// \param Complain Whether to emit diagnostics for failures.
418   ///
419   /// \returns true if any errors were encountered while resolving conflicts,
420   /// false otherwise.
421   bool resolveConflicts(Module *Mod, bool Complain);
422
423   /// \brief Infers the (sub)module based on the given source location and
424   /// source manager.
425   ///
426   /// \param Loc The location within the source that we are querying, along
427   /// with its source manager.
428   ///
429   /// \returns The module that owns this source location, or null if no
430   /// module owns this source location.
431   Module *inferModuleFromLocation(FullSourceLoc Loc);
432   
433   /// \brief Sets the umbrella header of the given module to the given
434   /// header.
435   void setUmbrellaHeader(Module *Mod, const FileEntry *UmbrellaHeader,
436                          Twine NameAsWritten);
437
438   /// \brief Sets the umbrella directory of the given module to the given
439   /// directory.
440   void setUmbrellaDir(Module *Mod, const DirectoryEntry *UmbrellaDir,
441                       Twine NameAsWritten);
442
443   /// \brief Adds this header to the given module.
444   /// \param Role The role of the header wrt the module.
445   void addHeader(Module *Mod, Module::Header Header,
446                  ModuleHeaderRole Role);
447
448   /// \brief Marks this header as being excluded from the given module.
449   void excludeHeader(Module *Mod, Module::Header Header);
450
451   /// \brief Parse the given module map file, and record any modules we 
452   /// encounter.
453   ///
454   /// \param File The file to be parsed.
455   ///
456   /// \param IsSystem Whether this module map file is in a system header
457   /// directory, and therefore should be considered a system module.
458   ///
459   /// \param HomeDir The directory in which relative paths within this module
460   ///        map file will be resolved.
461   ///
462   /// \returns true if an error occurred, false otherwise.
463   bool parseModuleMapFile(const FileEntry *File, bool IsSystem,
464                           const DirectoryEntry *HomeDir);
465     
466   /// \brief Dump the contents of the module map, for debugging purposes.
467   void dump();
468   
469   typedef llvm::StringMap<Module *>::const_iterator module_iterator;
470   module_iterator module_begin() const { return Modules.begin(); }
471   module_iterator module_end()   const { return Modules.end(); }
472 };
473   
474 }
475 #endif