blob: e3a6c52ff4debc5caf55b12d6ce03ecf5e1c9ddf [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- HeaderSearch.cpp - Resolve Header File Locations ---===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the DirectoryLookup and HeaderSearch interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Reid Spencer5f016e22007-07-11 17:01:13 +000014#include "clang/Lex/HeaderSearch.h"
Chris Lattner822da612007-12-17 06:36:45 +000015#include "clang/Lex/HeaderMap.h"
Chandler Carruthcb381ea2011-12-09 01:33:57 +000016#include "clang/Lex/Lexer.h"
Douglas Gregora30cfe52011-11-11 19:10:28 +000017#include "clang/Basic/Diagnostic.h"
Chris Lattnerc7229c32007-10-07 08:58:51 +000018#include "clang/Basic/FileManager.h"
19#include "clang/Basic/IdentifierTable.h"
Michael J. Spencer32bef4e2011-01-10 02:34:13 +000020#include "llvm/Support/FileSystem.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000021#include "llvm/Support/Path.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "llvm/ADT/SmallString.h"
Ted Kremenekeabea452011-07-27 18:41:18 +000023#include "llvm/Support/Capacity.h"
Chris Lattner3daed522009-03-02 22:20:04 +000024#include <cstdio>
Reid Spencer5f016e22007-07-11 17:01:13 +000025using namespace clang;
26
Douglas Gregor8c5a7602009-04-25 23:30:02 +000027const IdentifierInfo *
28HeaderFileInfo::getControllingMacro(ExternalIdentifierLookup *External) {
29 if (ControllingMacro)
30 return ControllingMacro;
31
32 if (!ControllingMacroID || !External)
33 return 0;
34
35 ControllingMacro = External->GetIdentifier(ControllingMacroID);
36 return ControllingMacro;
37}
38
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000039ExternalHeaderFileInfoSource::~ExternalHeaderFileInfoSource() {}
40
Douglas Gregor51f564f2011-12-31 04:05:44 +000041HeaderSearch::HeaderSearch(FileManager &FM, DiagnosticsEngine &Diags,
Douglas Gregordc58aa72012-01-30 06:01:29 +000042 const LangOptions &LangOpts,
43 const TargetInfo *Target)
Douglas Gregora30cfe52011-11-11 19:10:28 +000044 : FileMgr(FM), Diags(Diags), FrameworkMap(64),
Douglas Gregordc58aa72012-01-30 06:01:29 +000045 ModMap(FileMgr, *Diags.getClient(), LangOpts, Target)
Douglas Gregor8e238062011-11-11 00:35:06 +000046{
Nico Weber74a5fd82011-05-24 04:31:14 +000047 AngledDirIdx = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000048 SystemDirIdx = 0;
49 NoCurDirSearch = false;
Mike Stump1eb44332009-09-09 15:08:12 +000050
Douglas Gregor8c5a7602009-04-25 23:30:02 +000051 ExternalLookup = 0;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000052 ExternalSource = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000053 NumIncluded = 0;
54 NumMultiIncludeFileOptzn = 0;
55 NumFrameworkLookups = NumSubFrameworkLookups = 0;
56}
57
Chris Lattner822da612007-12-17 06:36:45 +000058HeaderSearch::~HeaderSearch() {
59 // Delete headermaps.
60 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
61 delete HeaderMaps[i].second;
62}
Mike Stump1eb44332009-09-09 15:08:12 +000063
Reid Spencer5f016e22007-07-11 17:01:13 +000064void HeaderSearch::PrintStats() {
65 fprintf(stderr, "\n*** HeaderSearch Stats:\n");
66 fprintf(stderr, "%d files tracked.\n", (int)FileInfo.size());
67 unsigned NumOnceOnlyFiles = 0, MaxNumIncludes = 0, NumSingleIncludedFiles = 0;
68 for (unsigned i = 0, e = FileInfo.size(); i != e; ++i) {
69 NumOnceOnlyFiles += FileInfo[i].isImport;
70 if (MaxNumIncludes < FileInfo[i].NumIncludes)
71 MaxNumIncludes = FileInfo[i].NumIncludes;
72 NumSingleIncludedFiles += FileInfo[i].NumIncludes == 1;
73 }
74 fprintf(stderr, " %d #import/#pragma once files.\n", NumOnceOnlyFiles);
75 fprintf(stderr, " %d included exactly once.\n", NumSingleIncludedFiles);
76 fprintf(stderr, " %d max times a file is included.\n", MaxNumIncludes);
Mike Stump1eb44332009-09-09 15:08:12 +000077
Reid Spencer5f016e22007-07-11 17:01:13 +000078 fprintf(stderr, " %d #include/#include_next/#import.\n", NumIncluded);
79 fprintf(stderr, " %d #includes skipped due to"
80 " the multi-include optimization.\n", NumMultiIncludeFileOptzn);
Mike Stump1eb44332009-09-09 15:08:12 +000081
Reid Spencer5f016e22007-07-11 17:01:13 +000082 fprintf(stderr, "%d framework lookups.\n", NumFrameworkLookups);
83 fprintf(stderr, "%d subframework lookups.\n", NumSubFrameworkLookups);
84}
85
Chris Lattner822da612007-12-17 06:36:45 +000086/// CreateHeaderMap - This method returns a HeaderMap for the specified
87/// FileEntry, uniquing them through the the 'HeaderMaps' datastructure.
Chris Lattner1bfd4a62007-12-17 18:34:53 +000088const HeaderMap *HeaderSearch::CreateHeaderMap(const FileEntry *FE) {
Chris Lattner822da612007-12-17 06:36:45 +000089 // We expect the number of headermaps to be small, and almost always empty.
Chris Lattnerdf772332007-12-17 07:52:39 +000090 // If it ever grows, use of a linear search should be re-evaluated.
Chris Lattner822da612007-12-17 06:36:45 +000091 if (!HeaderMaps.empty()) {
92 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
Chris Lattnerdf772332007-12-17 07:52:39 +000093 // Pointer equality comparison of FileEntries works because they are
94 // already uniqued by inode.
Mike Stump1eb44332009-09-09 15:08:12 +000095 if (HeaderMaps[i].first == FE)
Chris Lattner822da612007-12-17 06:36:45 +000096 return HeaderMaps[i].second;
97 }
Mike Stump1eb44332009-09-09 15:08:12 +000098
Chris Lattner39b49bc2010-11-23 08:35:12 +000099 if (const HeaderMap *HM = HeaderMap::Create(FE, FileMgr)) {
Chris Lattner822da612007-12-17 06:36:45 +0000100 HeaderMaps.push_back(std::make_pair(FE, HM));
101 return HM;
102 }
Mike Stump1eb44332009-09-09 15:08:12 +0000103
Chris Lattner822da612007-12-17 06:36:45 +0000104 return 0;
105}
106
Douglas Gregore434ec72012-01-29 17:08:11 +0000107std::string HeaderSearch::getModuleFileName(Module *Module) {
Douglas Gregor9a6da692011-09-12 20:41:59 +0000108 // If we don't have a module cache path, we can't do anything.
Douglas Gregore434ec72012-01-29 17:08:11 +0000109 if (ModuleCachePath.empty())
110 return std::string();
111
112
113 llvm::SmallString<256> Result(ModuleCachePath);
114 llvm::sys::path::append(Result, Module->getTopLevelModule()->Name + ".pcm");
115 return Result.str().str();
116}
117
118std::string HeaderSearch::getModuleFileName(StringRef ModuleName) {
119 // If we don't have a module cache path, we can't do anything.
120 if (ModuleCachePath.empty())
121 return std::string();
Douglas Gregor6e975c42011-09-13 23:15:45 +0000122
Douglas Gregore434ec72012-01-29 17:08:11 +0000123
124 llvm::SmallString<256> Result(ModuleCachePath);
125 llvm::sys::path::append(Result, ModuleName + ".pcm");
126 return Result.str().str();
127}
128
129Module *HeaderSearch::lookupModule(StringRef ModuleName, bool AllowSearch) {
Douglas Gregorcf70d782011-11-12 00:05:07 +0000130 // Look in the module map to determine if there is a module by this name.
Douglas Gregore434ec72012-01-29 17:08:11 +0000131 Module *Module = ModMap.findModule(ModuleName);
132 if (Module || !AllowSearch)
133 return Module;
134
135 // Look through the various header search paths to load any avai;able module
136 // maps, searching for a module map that describes this module.
137 for (unsigned Idx = 0, N = SearchDirs.size(); Idx != N; ++Idx) {
138 if (SearchDirs[Idx].isFramework()) {
139 // Search for or infer a module map for a framework.
140 llvm::SmallString<128> FrameworkDirName;
141 FrameworkDirName += SearchDirs[Idx].getFrameworkDir()->getName();
142 llvm::sys::path::append(FrameworkDirName, ModuleName + ".framework");
143 if (const DirectoryEntry *FrameworkDir
144 = FileMgr.getDirectory(FrameworkDirName)) {
145 bool IsSystem
146 = SearchDirs[Idx].getDirCharacteristic() != SrcMgr::C_User;
147 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
Douglas Gregorcf70d782011-11-12 00:05:07 +0000148 if (Module)
149 break;
150 }
Douglas Gregore434ec72012-01-29 17:08:11 +0000151 }
152
153 // FIXME: Figure out how header maps and module maps will work together.
154
155 // Only deal with normal search directories.
156 if (!SearchDirs[Idx].isNormalDir())
157 continue;
158
159 // Search for a module map file in this directory.
160 if (loadModuleMapFile(SearchDirs[Idx].getDir()) == LMM_NewlyLoaded) {
161 // We just loaded a module map file; check whether the module is
162 // available now.
163 Module = ModMap.findModule(ModuleName);
164 if (Module)
165 break;
166 }
167
168 // Search for a module map in a subdirectory with the same name as the
169 // module.
170 llvm::SmallString<128> NestedModuleMapDirName;
171 NestedModuleMapDirName = SearchDirs[Idx].getDir()->getName();
172 llvm::sys::path::append(NestedModuleMapDirName, ModuleName);
173 if (loadModuleMapFile(NestedModuleMapDirName) == LMM_NewlyLoaded) {
174 // If we just loaded a module map file, look for the module again.
175 Module = ModMap.findModule(ModuleName);
176 if (Module)
177 break;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000178 }
179 }
Douglas Gregore434ec72012-01-29 17:08:11 +0000180
181 return Module;
Douglas Gregor9a6da692011-09-12 20:41:59 +0000182}
183
Chris Lattnerdf772332007-12-17 07:52:39 +0000184//===----------------------------------------------------------------------===//
185// File lookup within a DirectoryLookup scope
186//===----------------------------------------------------------------------===//
187
Chris Lattner3af66a92007-12-17 17:57:27 +0000188/// getName - Return the directory or filename corresponding to this lookup
189/// object.
190const char *DirectoryLookup::getName() const {
191 if (isNormalDir())
192 return getDir()->getName();
193 if (isFramework())
194 return getFrameworkDir()->getName();
195 assert(isHeaderMap() && "Unknown DirectoryLookup");
196 return getHeaderMap()->getFileName();
197}
198
199
Chris Lattnerdf772332007-12-17 07:52:39 +0000200/// LookupFile - Lookup the specified file in this search path, returning it
201/// if it exists or returning null if not.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000202const FileEntry *DirectoryLookup::LookupFile(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000203 StringRef Filename,
Manuel Klimek74124942011-04-26 21:50:03 +0000204 HeaderSearch &HS,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000205 SmallVectorImpl<char> *SearchPath,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000206 SmallVectorImpl<char> *RelativePath,
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000207 Module **SuggestedModule) const {
Chris Lattnerdf772332007-12-17 07:52:39 +0000208 llvm::SmallString<1024> TmpDir;
Chris Lattnerafded5b2007-12-17 08:13:48 +0000209 if (isNormalDir()) {
210 // Concatenate the requested file onto the directory.
Eli Friedmana6e023c2011-07-08 20:17:28 +0000211 TmpDir = getDir()->getName();
212 llvm::sys::path::append(TmpDir, Filename);
Manuel Klimek74124942011-04-26 21:50:03 +0000213 if (SearchPath != NULL) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000214 StringRef SearchPathRef(getDir()->getName());
Manuel Klimek74124942011-04-26 21:50:03 +0000215 SearchPath->clear();
216 SearchPath->append(SearchPathRef.begin(), SearchPathRef.end());
217 }
218 if (RelativePath != NULL) {
219 RelativePath->clear();
220 RelativePath->append(Filename.begin(), Filename.end());
221 }
Douglas Gregora30cfe52011-11-11 19:10:28 +0000222
223 // If we have a module map that might map this header, load it and
224 // check whether we'll have a suggestion for a module.
225 if (SuggestedModule && HS.hasModuleMap(TmpDir, getDir())) {
226 const FileEntry *File = HS.getFileMgr().getFile(TmpDir.str(),
227 /*openFile=*/false);
228 if (!File)
229 return File;
230
231 // If there is a module that corresponds to this header,
232 // suggest it.
Douglas Gregor5e3f9222011-12-08 17:01:29 +0000233 *SuggestedModule = HS.findModuleForHeader(File);
Douglas Gregora30cfe52011-11-11 19:10:28 +0000234 return File;
235 }
236
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000237 return HS.getFileMgr().getFile(TmpDir.str(), /*openFile=*/true);
Chris Lattnerafded5b2007-12-17 08:13:48 +0000238 }
Mike Stump1eb44332009-09-09 15:08:12 +0000239
Chris Lattnerafded5b2007-12-17 08:13:48 +0000240 if (isFramework())
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000241 return DoFrameworkLookup(Filename, HS, SearchPath, RelativePath,
Douglas Gregor5e3f9222011-12-08 17:01:29 +0000242 SuggestedModule);
Mike Stump1eb44332009-09-09 15:08:12 +0000243
Chris Lattnerb09e71f2007-12-17 08:17:39 +0000244 assert(isHeaderMap() && "Unknown directory lookup");
Manuel Klimek74124942011-04-26 21:50:03 +0000245 const FileEntry * const Result = getHeaderMap()->LookupFile(
246 Filename, HS.getFileMgr());
247 if (Result) {
248 if (SearchPath != NULL) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000249 StringRef SearchPathRef(getName());
Manuel Klimek74124942011-04-26 21:50:03 +0000250 SearchPath->clear();
251 SearchPath->append(SearchPathRef.begin(), SearchPathRef.end());
252 }
253 if (RelativePath != NULL) {
254 RelativePath->clear();
255 RelativePath->append(Filename.begin(), Filename.end());
256 }
257 }
258 return Result;
Chris Lattnerdf772332007-12-17 07:52:39 +0000259}
260
261
Chris Lattnerafded5b2007-12-17 08:13:48 +0000262/// DoFrameworkLookup - Do a lookup of the specified file in the current
263/// DirectoryLookup, which is a framework directory.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000264const FileEntry *DirectoryLookup::DoFrameworkLookup(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000265 StringRef Filename,
Manuel Klimek74124942011-04-26 21:50:03 +0000266 HeaderSearch &HS,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000267 SmallVectorImpl<char> *SearchPath,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000268 SmallVectorImpl<char> *RelativePath,
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000269 Module **SuggestedModule) const
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000270{
Chris Lattnerafded5b2007-12-17 08:13:48 +0000271 FileManager &FileMgr = HS.getFileMgr();
Mike Stump1eb44332009-09-09 15:08:12 +0000272
Reid Spencer5f016e22007-07-11 17:01:13 +0000273 // Framework names must have a '/' in the filename.
Chris Lattnera1394812010-01-10 01:35:12 +0000274 size_t SlashPos = Filename.find('/');
Chris Lattner5f9e2722011-07-23 10:55:15 +0000275 if (SlashPos == StringRef::npos) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000276
Chris Lattnerafded5b2007-12-17 08:13:48 +0000277 // Find out if this is the home for the specified framework, by checking
278 // HeaderSearch. Possible answer are yes/no and unknown.
Mike Stump1eb44332009-09-09 15:08:12 +0000279 const DirectoryEntry *&FrameworkDirCache =
Chris Lattnera1394812010-01-10 01:35:12 +0000280 HS.LookupFrameworkCache(Filename.substr(0, SlashPos));
Mike Stump1eb44332009-09-09 15:08:12 +0000281
Chris Lattnerafded5b2007-12-17 08:13:48 +0000282 // If it is known and in some other directory, fail.
283 if (FrameworkDirCache && FrameworkDirCache != getFrameworkDir())
Reid Spencer5f016e22007-07-11 17:01:13 +0000284 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000285
Chris Lattnerafded5b2007-12-17 08:13:48 +0000286 // Otherwise, construct the path to this framework dir.
Mike Stump1eb44332009-09-09 15:08:12 +0000287
Reid Spencer5f016e22007-07-11 17:01:13 +0000288 // FrameworkName = "/System/Library/Frameworks/"
289 llvm::SmallString<1024> FrameworkName;
Chris Lattnerafded5b2007-12-17 08:13:48 +0000290 FrameworkName += getFrameworkDir()->getName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000291 if (FrameworkName.empty() || FrameworkName.back() != '/')
292 FrameworkName.push_back('/');
Mike Stump1eb44332009-09-09 15:08:12 +0000293
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 // FrameworkName = "/System/Library/Frameworks/Cocoa"
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000295 StringRef ModuleName(Filename.begin(), SlashPos);
296 FrameworkName += ModuleName;
Mike Stump1eb44332009-09-09 15:08:12 +0000297
Reid Spencer5f016e22007-07-11 17:01:13 +0000298 // FrameworkName = "/System/Library/Frameworks/Cocoa.framework/"
299 FrameworkName += ".framework/";
Mike Stump1eb44332009-09-09 15:08:12 +0000300
Chris Lattnerafded5b2007-12-17 08:13:48 +0000301 // If the cache entry is still unresolved, query to see if the cache entry is
302 // still unresolved. If so, check its existence now.
303 if (FrameworkDirCache == 0) {
304 HS.IncrementFrameworkLookupCount();
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Reid Spencer5f016e22007-07-11 17:01:13 +0000306 // If the framework dir doesn't exist, we fail.
Chris Lattnerafded5b2007-12-17 08:13:48 +0000307 // FIXME: It's probably more efficient to query this with FileMgr.getDir.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000308 bool Exists;
309 if (llvm::sys::fs::exists(FrameworkName.str(), Exists) || !Exists)
Reid Spencer5f016e22007-07-11 17:01:13 +0000310 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000311
Reid Spencer5f016e22007-07-11 17:01:13 +0000312 // Otherwise, if it does, remember that this is the right direntry for this
313 // framework.
Chris Lattnerafded5b2007-12-17 08:13:48 +0000314 FrameworkDirCache = getFrameworkDir();
Reid Spencer5f016e22007-07-11 17:01:13 +0000315 }
Mike Stump1eb44332009-09-09 15:08:12 +0000316
Manuel Klimek74124942011-04-26 21:50:03 +0000317 if (RelativePath != NULL) {
318 RelativePath->clear();
319 RelativePath->append(Filename.begin()+SlashPos+1, Filename.end());
320 }
321
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000322 // If we're allowed to look for modules, try to load or create the module
323 // corresponding to this framework.
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000324 Module *Module = 0;
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000325 if (SuggestedModule) {
326 if (const DirectoryEntry *FrameworkDir
Douglas Gregora1f1fad2012-01-27 19:52:33 +0000327 = FileMgr.getDirectory(FrameworkName)) {
328 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User;
Douglas Gregore434ec72012-01-29 17:08:11 +0000329 Module = HS.loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
Douglas Gregora1f1fad2012-01-27 19:52:33 +0000330 }
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000331 }
332
Reid Spencer5f016e22007-07-11 17:01:13 +0000333 // Check "/System/Library/Frameworks/Cocoa.framework/Headers/file.h"
334 unsigned OrigSize = FrameworkName.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Reid Spencer5f016e22007-07-11 17:01:13 +0000336 FrameworkName += "Headers/";
Manuel Klimek74124942011-04-26 21:50:03 +0000337
338 if (SearchPath != NULL) {
339 SearchPath->clear();
340 // Without trailing '/'.
341 SearchPath->append(FrameworkName.begin(), FrameworkName.end()-1);
342 }
343
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000344 // Determine whether this is the module we're building or not.
Douglas Gregor09833922011-12-06 17:31:28 +0000345 bool AutomaticImport = Module;
Chris Lattnera1394812010-01-10 01:35:12 +0000346 FrameworkName.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000347 if (const FileEntry *FE = FileMgr.getFile(FrameworkName.str(),
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000348 /*openFile=*/!AutomaticImport)) {
349 if (AutomaticImport)
Douglas Gregor09833922011-12-06 17:31:28 +0000350 *SuggestedModule = HS.findModuleForHeader(FE);
Reid Spencer5f016e22007-07-11 17:01:13 +0000351 return FE;
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000352 }
Mike Stump1eb44332009-09-09 15:08:12 +0000353
Reid Spencer5f016e22007-07-11 17:01:13 +0000354 // Check "/System/Library/Frameworks/Cocoa.framework/PrivateHeaders/file.h"
355 const char *Private = "Private";
Mike Stump1eb44332009-09-09 15:08:12 +0000356 FrameworkName.insert(FrameworkName.begin()+OrigSize, Private,
Reid Spencer5f016e22007-07-11 17:01:13 +0000357 Private+strlen(Private));
Manuel Klimek74124942011-04-26 21:50:03 +0000358 if (SearchPath != NULL)
359 SearchPath->insert(SearchPath->begin()+OrigSize, Private,
360 Private+strlen(Private));
361
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000362 const FileEntry *FE = FileMgr.getFile(FrameworkName.str(),
363 /*openFile=*/!AutomaticImport);
364 if (FE && AutomaticImport)
Douglas Gregor09833922011-12-06 17:31:28 +0000365 *SuggestedModule = HS.findModuleForHeader(FE);
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000366 return FE;
Reid Spencer5f016e22007-07-11 17:01:13 +0000367}
368
Douglas Gregordc58aa72012-01-30 06:01:29 +0000369void HeaderSearch::setTarget(const TargetInfo &Target) {
370 ModMap.setTarget(Target);
371}
372
Chris Lattnerdf772332007-12-17 07:52:39 +0000373
Chris Lattnerafded5b2007-12-17 08:13:48 +0000374//===----------------------------------------------------------------------===//
375// Header File Location.
376//===----------------------------------------------------------------------===//
377
378
Reid Spencer5f016e22007-07-11 17:01:13 +0000379/// LookupFile - Given a "foo" or <foo> reference, look up the indicated file,
380/// return null on failure. isAngled indicates whether the file reference is
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000381/// for system #include's or not (i.e. using <> instead of ""). CurFileEnt, if
382/// non-null, indicates where the #including file is, in case a relative search
383/// is needed.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000384const FileEntry *HeaderSearch::LookupFile(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000385 StringRef Filename,
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000386 bool isAngled,
387 const DirectoryLookup *FromDir,
388 const DirectoryLookup *&CurDir,
389 const FileEntry *CurFileEnt,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000390 SmallVectorImpl<char> *SearchPath,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000391 SmallVectorImpl<char> *RelativePath,
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000392 Module **SuggestedModule,
Douglas Gregor1c2e9332011-11-20 17:46:46 +0000393 bool SkipCache)
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000394{
395 if (SuggestedModule)
Douglas Gregorc69c42e2011-11-17 22:44:56 +0000396 *SuggestedModule = 0;
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000397
Reid Spencer5f016e22007-07-11 17:01:13 +0000398 // If 'Filename' is absolute, check to see if it exists and no searching.
Michael J. Spencer256053b2010-12-17 21:22:22 +0000399 if (llvm::sys::path::is_absolute(Filename)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000400 CurDir = 0;
401
402 // If this was an #include_next "/absolute/file", fail.
403 if (FromDir) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000404
Manuel Klimek74124942011-04-26 21:50:03 +0000405 if (SearchPath != NULL)
406 SearchPath->clear();
407 if (RelativePath != NULL) {
408 RelativePath->clear();
409 RelativePath->append(Filename.begin(), Filename.end());
410 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000411 // Otherwise, just return the file.
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000412 return FileMgr.getFile(Filename, /*openFile=*/true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000413 }
Mike Stump1eb44332009-09-09 15:08:12 +0000414
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000415 // Unless disabled, check to see if the file is in the #includer's
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000416 // directory. This has to be based on CurFileEnt, not CurDir, because
417 // CurFileEnt could be a #include of a subdirectory (#include "foo/bar.h") and
Chris Lattnerdf772332007-12-17 07:52:39 +0000418 // a subsequent include of "baz.h" should resolve to "whatever/foo/baz.h".
419 // This search is not done for <> headers.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000420 if (CurFileEnt && !isAngled && !NoCurDirSearch) {
421 llvm::SmallString<1024> TmpDir;
422 // Concatenate the requested file onto the directory.
423 // FIXME: Portability. Filename concatenation should be in sys::Path.
424 TmpDir += CurFileEnt->getDir()->getName();
425 TmpDir.push_back('/');
426 TmpDir.append(Filename.begin(), Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000427 if (const FileEntry *FE = FileMgr.getFile(TmpDir.str(),/*openFile=*/true)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000428 // Leave CurDir unset.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000429 // This file is a system header or C++ unfriendly if the old file is.
430 //
431 // Note that the temporary 'DirInfo' is required here, as either call to
432 // getFileInfo could resize the vector and we don't want to rely on order
433 // of evaluation.
434 unsigned DirInfo = getFileInfo(CurFileEnt).DirInfo;
Chris Lattnerc9dde4f2008-02-25 21:38:21 +0000435 getFileInfo(FE).DirInfo = DirInfo;
Manuel Klimek74124942011-04-26 21:50:03 +0000436 if (SearchPath != NULL) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000437 StringRef SearchPathRef(CurFileEnt->getDir()->getName());
Manuel Klimek74124942011-04-26 21:50:03 +0000438 SearchPath->clear();
439 SearchPath->append(SearchPathRef.begin(), SearchPathRef.end());
440 }
441 if (RelativePath != NULL) {
442 RelativePath->clear();
443 RelativePath->append(Filename.begin(), Filename.end());
444 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000445 return FE;
446 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000447 }
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Reid Spencer5f016e22007-07-11 17:01:13 +0000449 CurDir = 0;
450
451 // If this is a system #include, ignore the user #include locs.
Nico Weber74a5fd82011-05-24 04:31:14 +0000452 unsigned i = isAngled ? AngledDirIdx : 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000453
Reid Spencer5f016e22007-07-11 17:01:13 +0000454 // If this is a #include_next request, start searching after the directory the
455 // file was found in.
456 if (FromDir)
457 i = FromDir-&SearchDirs[0];
Mike Stump1eb44332009-09-09 15:08:12 +0000458
Chris Lattner9960ae82007-07-22 07:28:00 +0000459 // Cache all of the lookups performed by this method. Many headers are
460 // multiply included, and the "pragma once" optimization prevents them from
461 // being relex/pp'd, but they would still have to search through a
462 // (potentially huge) series of SearchDirs to find it.
463 std::pair<unsigned, unsigned> &CacheLookup =
Chris Lattnera1394812010-01-10 01:35:12 +0000464 LookupFileCache.GetOrCreateValue(Filename).getValue();
Chris Lattner9960ae82007-07-22 07:28:00 +0000465
466 // If the entry has been previously looked up, the first value will be
467 // non-zero. If the value is equal to i (the start point of our search), then
468 // this is a matching hit.
Douglas Gregor1c2e9332011-11-20 17:46:46 +0000469 if (!SkipCache && CacheLookup.first == i+1) {
Chris Lattner9960ae82007-07-22 07:28:00 +0000470 // Skip querying potentially lots of directories for this lookup.
471 i = CacheLookup.second;
472 } else {
473 // Otherwise, this is the first query, or the previous query didn't match
474 // our search start. We will fill in our found location below, so prime the
475 // start point value.
476 CacheLookup.first = i+1;
477 }
Mike Stump1eb44332009-09-09 15:08:12 +0000478
Reid Spencer5f016e22007-07-11 17:01:13 +0000479 // Check each directory in sequence to see if it contains this file.
480 for (; i != SearchDirs.size(); ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +0000481 const FileEntry *FE =
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000482 SearchDirs[i].LookupFile(Filename, *this, SearchPath, RelativePath,
Douglas Gregor5e3f9222011-12-08 17:01:29 +0000483 SuggestedModule);
Chris Lattnerafded5b2007-12-17 08:13:48 +0000484 if (!FE) continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000485
Chris Lattnerafded5b2007-12-17 08:13:48 +0000486 CurDir = &SearchDirs[i];
Mike Stump1eb44332009-09-09 15:08:12 +0000487
Chris Lattnerafded5b2007-12-17 08:13:48 +0000488 // This file is a system header or C++ unfriendly if the dir is.
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000489 HeaderFileInfo &HFI = getFileInfo(FE);
490 HFI.DirInfo = CurDir->getDirCharacteristic();
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000492 // If this file is found in a header map and uses the framework style of
493 // includes, then this header is part of a framework we're building.
494 if (CurDir->isIndexHeaderMap()) {
495 size_t SlashPos = Filename.find('/');
496 if (SlashPos != StringRef::npos) {
497 HFI.IndexHeaderMapHeader = 1;
498 HFI.Framework = getUniqueFrameworkName(StringRef(Filename.begin(),
499 SlashPos));
500 }
501 }
502
Chris Lattnerafded5b2007-12-17 08:13:48 +0000503 // Remember this location for the next lookup we do.
504 CacheLookup.second = i;
505 return FE;
Reid Spencer5f016e22007-07-11 17:01:13 +0000506 }
Mike Stump1eb44332009-09-09 15:08:12 +0000507
Douglas Gregor2c7b7802011-07-30 06:28:34 +0000508 // If we are including a file with a quoted include "foo.h" from inside
509 // a header in a framework that is currently being built, and we couldn't
510 // resolve "foo.h" any other way, change the include to <Foo/foo.h>, where
511 // "Foo" is the name of the framework in which the including header was found.
512 if (CurFileEnt && !isAngled && Filename.find('/') == StringRef::npos) {
513 HeaderFileInfo &IncludingHFI = getFileInfo(CurFileEnt);
514 if (IncludingHFI.IndexHeaderMapHeader) {
515 llvm::SmallString<128> ScratchFilename;
516 ScratchFilename += IncludingHFI.Framework;
517 ScratchFilename += '/';
518 ScratchFilename += Filename;
519
520 const FileEntry *Result = LookupFile(ScratchFilename, /*isAngled=*/true,
521 FromDir, CurDir, CurFileEnt,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000522 SearchPath, RelativePath,
523 SuggestedModule);
Douglas Gregor2c7b7802011-07-30 06:28:34 +0000524 std::pair<unsigned, unsigned> &CacheLookup
525 = LookupFileCache.GetOrCreateValue(Filename).getValue();
526 CacheLookup.second
527 = LookupFileCache.GetOrCreateValue(ScratchFilename).getValue().second;
528 return Result;
529 }
530 }
531
Chris Lattner9960ae82007-07-22 07:28:00 +0000532 // Otherwise, didn't find it. Remember we didn't find this.
533 CacheLookup.second = SearchDirs.size();
Reid Spencer5f016e22007-07-11 17:01:13 +0000534 return 0;
535}
536
537/// LookupSubframeworkHeader - Look up a subframework for the specified
538/// #include file. For example, if #include'ing <HIToolbox/HIToolbox.h> from
539/// within ".../Carbon.framework/Headers/Carbon.h", check to see if HIToolbox
540/// is a subframework within Carbon.framework. If so, return the FileEntry
541/// for the designated file, otherwise return null.
542const FileEntry *HeaderSearch::
Chris Lattner5f9e2722011-07-23 10:55:15 +0000543LookupSubframeworkHeader(StringRef Filename,
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000544 const FileEntry *ContextFileEnt,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000545 SmallVectorImpl<char> *SearchPath,
546 SmallVectorImpl<char> *RelativePath) {
Chris Lattner9415a0c2008-02-01 05:34:02 +0000547 assert(ContextFileEnt && "No context file?");
Mike Stump1eb44332009-09-09 15:08:12 +0000548
Reid Spencer5f016e22007-07-11 17:01:13 +0000549 // Framework names must have a '/' in the filename. Find it.
Douglas Gregorefda0e82011-12-09 16:48:01 +0000550 // FIXME: Should we permit '\' on Windows?
Chris Lattnera1394812010-01-10 01:35:12 +0000551 size_t SlashPos = Filename.find('/');
Chris Lattner5f9e2722011-07-23 10:55:15 +0000552 if (SlashPos == StringRef::npos) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000553
Reid Spencer5f016e22007-07-11 17:01:13 +0000554 // Look up the base framework name of the ContextFileEnt.
555 const char *ContextName = ContextFileEnt->getName();
Mike Stump1eb44332009-09-09 15:08:12 +0000556
Reid Spencer5f016e22007-07-11 17:01:13 +0000557 // If the context info wasn't a framework, couldn't be a subframework.
Douglas Gregorefda0e82011-12-09 16:48:01 +0000558 const unsigned DotFrameworkLen = 10;
559 const char *FrameworkPos = strstr(ContextName, ".framework");
560 if (FrameworkPos == 0 ||
561 (FrameworkPos[DotFrameworkLen] != '/' &&
562 FrameworkPos[DotFrameworkLen] != '\\'))
Reid Spencer5f016e22007-07-11 17:01:13 +0000563 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000564
565 llvm::SmallString<1024> FrameworkName(ContextName,
Douglas Gregorefda0e82011-12-09 16:48:01 +0000566 FrameworkPos+DotFrameworkLen+1);
Reid Spencer5f016e22007-07-11 17:01:13 +0000567
568 // Append Frameworks/HIToolbox.framework/
569 FrameworkName += "Frameworks/";
Chris Lattnera1394812010-01-10 01:35:12 +0000570 FrameworkName.append(Filename.begin(), Filename.begin()+SlashPos);
Reid Spencer5f016e22007-07-11 17:01:13 +0000571 FrameworkName += ".framework/";
572
573 llvm::StringMapEntry<const DirectoryEntry *> &CacheLookup =
Chris Lattner65382272010-11-21 09:55:08 +0000574 FrameworkMap.GetOrCreateValue(Filename.substr(0, SlashPos));
Mike Stump1eb44332009-09-09 15:08:12 +0000575
Reid Spencer5f016e22007-07-11 17:01:13 +0000576 // Some other location?
577 if (CacheLookup.getValue() &&
578 CacheLookup.getKeyLength() == FrameworkName.size() &&
579 memcmp(CacheLookup.getKeyData(), &FrameworkName[0],
580 CacheLookup.getKeyLength()) != 0)
581 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000582
Reid Spencer5f016e22007-07-11 17:01:13 +0000583 // Cache subframework.
584 if (CacheLookup.getValue() == 0) {
585 ++NumSubFrameworkLookups;
Mike Stump1eb44332009-09-09 15:08:12 +0000586
Reid Spencer5f016e22007-07-11 17:01:13 +0000587 // If the framework dir doesn't exist, we fail.
Chris Lattner39b49bc2010-11-23 08:35:12 +0000588 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
Reid Spencer5f016e22007-07-11 17:01:13 +0000589 if (Dir == 0) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000590
Reid Spencer5f016e22007-07-11 17:01:13 +0000591 // Otherwise, if it does, remember that this is the right direntry for this
592 // framework.
593 CacheLookup.setValue(Dir);
594 }
Mike Stump1eb44332009-09-09 15:08:12 +0000595
Reid Spencer5f016e22007-07-11 17:01:13 +0000596 const FileEntry *FE = 0;
597
Manuel Klimek74124942011-04-26 21:50:03 +0000598 if (RelativePath != NULL) {
599 RelativePath->clear();
600 RelativePath->append(Filename.begin()+SlashPos+1, Filename.end());
601 }
602
Reid Spencer5f016e22007-07-11 17:01:13 +0000603 // Check ".../Frameworks/HIToolbox.framework/Headers/HIToolbox.h"
604 llvm::SmallString<1024> HeadersFilename(FrameworkName);
605 HeadersFilename += "Headers/";
Manuel Klimek74124942011-04-26 21:50:03 +0000606 if (SearchPath != NULL) {
607 SearchPath->clear();
608 // Without trailing '/'.
609 SearchPath->append(HeadersFilename.begin(), HeadersFilename.end()-1);
610 }
611
Chris Lattnera1394812010-01-10 01:35:12 +0000612 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000613 if (!(FE = FileMgr.getFile(HeadersFilename.str(), /*openFile=*/true))) {
Mike Stump1eb44332009-09-09 15:08:12 +0000614
Reid Spencer5f016e22007-07-11 17:01:13 +0000615 // Check ".../Frameworks/HIToolbox.framework/PrivateHeaders/HIToolbox.h"
616 HeadersFilename = FrameworkName;
617 HeadersFilename += "PrivateHeaders/";
Manuel Klimek74124942011-04-26 21:50:03 +0000618 if (SearchPath != NULL) {
619 SearchPath->clear();
620 // Without trailing '/'.
621 SearchPath->append(HeadersFilename.begin(), HeadersFilename.end()-1);
622 }
623
Chris Lattnera1394812010-01-10 01:35:12 +0000624 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000625 if (!(FE = FileMgr.getFile(HeadersFilename.str(), /*openFile=*/true)))
Reid Spencer5f016e22007-07-11 17:01:13 +0000626 return 0;
627 }
Mike Stump1eb44332009-09-09 15:08:12 +0000628
Reid Spencer5f016e22007-07-11 17:01:13 +0000629 // This file is a system header or C++ unfriendly if the old file is.
Ted Kremenekca63fa02008-02-24 03:55:14 +0000630 //
Chris Lattnerc9dde4f2008-02-25 21:38:21 +0000631 // Note that the temporary 'DirInfo' is required here, as either call to
632 // getFileInfo could resize the vector and we don't want to rely on order
633 // of evaluation.
634 unsigned DirInfo = getFileInfo(ContextFileEnt).DirInfo;
635 getFileInfo(FE).DirInfo = DirInfo;
Reid Spencer5f016e22007-07-11 17:01:13 +0000636 return FE;
637}
638
Chandler Carruthcb381ea2011-12-09 01:33:57 +0000639/// \brief Helper static function to normalize a path for injection into
640/// a synthetic header.
641/*static*/ std::string
642HeaderSearch::NormalizeDashIncludePath(StringRef File, FileManager &FileMgr) {
643 // Implicit include paths should be resolved relative to the current
644 // working directory first, and then use the regular header search
645 // mechanism. The proper way to handle this is to have the
646 // predefines buffer located at the current working directory, but
647 // it has no file entry. For now, workaround this by using an
648 // absolute path if we find the file here, and otherwise letting
649 // header search handle it.
650 llvm::SmallString<128> Path(File);
651 llvm::sys::fs::make_absolute(Path);
652 bool exists;
653 if (llvm::sys::fs::exists(Path.str(), exists) || !exists)
654 Path = File;
655 else if (exists)
656 FileMgr.getFile(File);
657
658 return Lexer::Stringify(Path.str());
659}
660
Reid Spencer5f016e22007-07-11 17:01:13 +0000661//===----------------------------------------------------------------------===//
662// File Info Management.
663//===----------------------------------------------------------------------===//
664
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000665/// \brief Merge the header file info provided by \p OtherHFI into the current
666/// header file info (\p HFI)
667static void mergeHeaderFileInfo(HeaderFileInfo &HFI,
668 const HeaderFileInfo &OtherHFI) {
669 HFI.isImport |= OtherHFI.isImport;
670 HFI.isPragmaOnce |= OtherHFI.isPragmaOnce;
671 HFI.NumIncludes += OtherHFI.NumIncludes;
672
673 if (!HFI.ControllingMacro && !HFI.ControllingMacroID) {
674 HFI.ControllingMacro = OtherHFI.ControllingMacro;
675 HFI.ControllingMacroID = OtherHFI.ControllingMacroID;
676 }
677
678 if (OtherHFI.External) {
679 HFI.DirInfo = OtherHFI.DirInfo;
680 HFI.External = OtherHFI.External;
681 HFI.IndexHeaderMapHeader = OtherHFI.IndexHeaderMapHeader;
682 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000683
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000684 if (HFI.Framework.empty())
685 HFI.Framework = OtherHFI.Framework;
686
687 HFI.Resolved = true;
688}
689
Steve Naroff83d63c72009-04-24 20:03:17 +0000690/// getFileInfo - Return the HeaderFileInfo structure for the specified
Reid Spencer5f016e22007-07-11 17:01:13 +0000691/// FileEntry.
Steve Naroff83d63c72009-04-24 20:03:17 +0000692HeaderFileInfo &HeaderSearch::getFileInfo(const FileEntry *FE) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000693 if (FE->getUID() >= FileInfo.size())
694 FileInfo.resize(FE->getUID()+1);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000695
696 HeaderFileInfo &HFI = FileInfo[FE->getUID()];
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000697 if (ExternalSource && !HFI.Resolved)
698 mergeHeaderFileInfo(HFI, ExternalSource->GetHeaderFileInfo(FE));
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000699 return HFI;
Mike Stump1eb44332009-09-09 15:08:12 +0000700}
Reid Spencer5f016e22007-07-11 17:01:13 +0000701
Douglas Gregordd3e5542011-05-04 00:14:37 +0000702bool HeaderSearch::isFileMultipleIncludeGuarded(const FileEntry *File) {
703 // Check if we've ever seen this file as a header.
704 if (File->getUID() >= FileInfo.size())
705 return false;
706
707 // Resolve header file info from the external source, if needed.
708 HeaderFileInfo &HFI = FileInfo[File->getUID()];
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000709 if (ExternalSource && !HFI.Resolved)
710 mergeHeaderFileInfo(HFI, ExternalSource->GetHeaderFileInfo(File));
Douglas Gregordd3e5542011-05-04 00:14:37 +0000711
712 return HFI.isPragmaOnce || HFI.ControllingMacro || HFI.ControllingMacroID;
713}
714
Steve Naroff83d63c72009-04-24 20:03:17 +0000715void HeaderSearch::setHeaderFileInfoForUID(HeaderFileInfo HFI, unsigned UID) {
716 if (UID >= FileInfo.size())
717 FileInfo.resize(UID+1);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000718 HFI.Resolved = true;
Steve Naroff83d63c72009-04-24 20:03:17 +0000719 FileInfo[UID] = HFI;
720}
721
Reid Spencer5f016e22007-07-11 17:01:13 +0000722/// ShouldEnterIncludeFile - Mark the specified file as a target of of a
723/// #include, #include_next, or #import directive. Return false if #including
724/// the file will have no effect or true if we should include it.
725bool HeaderSearch::ShouldEnterIncludeFile(const FileEntry *File, bool isImport){
726 ++NumIncluded; // Count # of attempted #includes.
727
728 // Get information about this file.
Steve Naroff83d63c72009-04-24 20:03:17 +0000729 HeaderFileInfo &FileInfo = getFileInfo(File);
Mike Stump1eb44332009-09-09 15:08:12 +0000730
Reid Spencer5f016e22007-07-11 17:01:13 +0000731 // If this is a #import directive, check that we have not already imported
732 // this header.
733 if (isImport) {
734 // If this has already been imported, don't import it again.
735 FileInfo.isImport = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000736
Reid Spencer5f016e22007-07-11 17:01:13 +0000737 // Has this already been #import'ed or #include'd?
738 if (FileInfo.NumIncludes) return false;
739 } else {
740 // Otherwise, if this is a #include of a file that was previously #import'd
741 // or if this is the second #include of a #pragma once file, ignore it.
742 if (FileInfo.isImport)
743 return false;
744 }
Mike Stump1eb44332009-09-09 15:08:12 +0000745
Reid Spencer5f016e22007-07-11 17:01:13 +0000746 // Next, check to see if the file is wrapped with #ifndef guards. If so, and
747 // if the macro that guards it is defined, we know the #include has no effect.
Mike Stump1eb44332009-09-09 15:08:12 +0000748 if (const IdentifierInfo *ControllingMacro
Douglas Gregor8c5a7602009-04-25 23:30:02 +0000749 = FileInfo.getControllingMacro(ExternalLookup))
750 if (ControllingMacro->hasMacroDefinition()) {
751 ++NumMultiIncludeFileOptzn;
752 return false;
753 }
Mike Stump1eb44332009-09-09 15:08:12 +0000754
Reid Spencer5f016e22007-07-11 17:01:13 +0000755 // Increment the number of times this file has been included.
756 ++FileInfo.NumIncludes;
Mike Stump1eb44332009-09-09 15:08:12 +0000757
Reid Spencer5f016e22007-07-11 17:01:13 +0000758 return true;
759}
760
Ted Kremenekd1194fb2011-07-26 23:46:11 +0000761size_t HeaderSearch::getTotalMemory() const {
762 return SearchDirs.capacity()
Ted Kremenekeabea452011-07-27 18:41:18 +0000763 + llvm::capacity_in_bytes(FileInfo)
764 + llvm::capacity_in_bytes(HeaderMaps)
Ted Kremenekd1194fb2011-07-26 23:46:11 +0000765 + LookupFileCache.getAllocator().getTotalMemory()
766 + FrameworkMap.getAllocator().getTotalMemory();
767}
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000768
769StringRef HeaderSearch::getUniqueFrameworkName(StringRef Framework) {
770 return FrameworkNames.GetOrCreateValue(Framework).getKey();
771}
Douglas Gregora30cfe52011-11-11 19:10:28 +0000772
773bool HeaderSearch::hasModuleMap(StringRef FileName,
774 const DirectoryEntry *Root) {
775 llvm::SmallVector<const DirectoryEntry *, 2> FixUpDirectories;
776
777 StringRef DirName = FileName;
778 do {
779 // Get the parent directory name.
780 DirName = llvm::sys::path::parent_path(DirName);
781 if (DirName.empty())
782 return false;
783
784 // Determine whether this directory exists.
785 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
786 if (!Dir)
787 return false;
788
Douglas Gregorcf70d782011-11-12 00:05:07 +0000789 // Try to load the module map file in this directory.
Douglas Gregor26697972011-11-12 00:22:19 +0000790 switch (loadModuleMapFile(Dir)) {
791 case LMM_NewlyLoaded:
792 case LMM_AlreadyLoaded:
Douglas Gregorcf70d782011-11-12 00:05:07 +0000793 // Success. All of the directories we stepped through inherit this module
794 // map file.
Douglas Gregora30cfe52011-11-11 19:10:28 +0000795 for (unsigned I = 0, N = FixUpDirectories.size(); I != N; ++I)
796 DirectoryHasModuleMap[FixUpDirectories[I]] = true;
797
798 return true;
Douglas Gregor26697972011-11-12 00:22:19 +0000799
800 case LMM_NoDirectory:
801 case LMM_InvalidModuleMap:
802 break;
Douglas Gregora30cfe52011-11-11 19:10:28 +0000803 }
Douglas Gregora30cfe52011-11-11 19:10:28 +0000804
Douglas Gregorcf70d782011-11-12 00:05:07 +0000805 // If we hit the top of our search, we're done.
806 if (Dir == Root)
807 return false;
808
Douglas Gregora30cfe52011-11-11 19:10:28 +0000809 // Keep track of all of the directories we checked, so we can mark them as
810 // having module maps if we eventually do find a module map.
811 FixUpDirectories.push_back(Dir);
812 } while (true);
Douglas Gregora30cfe52011-11-11 19:10:28 +0000813}
814
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000815Module *HeaderSearch::findModuleForHeader(const FileEntry *File) {
Douglas Gregor51f564f2011-12-31 04:05:44 +0000816 if (Module *Mod = ModMap.findModuleForHeader(File))
817 return Mod;
Douglas Gregor65f3b5e2011-11-11 22:18:48 +0000818
Douglas Gregorc69c42e2011-11-17 22:44:56 +0000819 return 0;
Douglas Gregora30cfe52011-11-11 19:10:28 +0000820}
821
Douglas Gregordb1cde72011-11-16 00:09:06 +0000822bool HeaderSearch::loadModuleMapFile(const FileEntry *File) {
823 const DirectoryEntry *Dir = File->getDir();
824
825 llvm::DenseMap<const DirectoryEntry *, bool>::iterator KnownDir
826 = DirectoryHasModuleMap.find(Dir);
827 if (KnownDir != DirectoryHasModuleMap.end())
828 return !KnownDir->second;
829
830 bool Result = ModMap.parseModuleMapFile(File);
Douglas Gregor4813442c2011-12-07 21:25:07 +0000831 if (!Result && llvm::sys::path::filename(File->getName()) == "module.map") {
832 // If the file we loaded was a module.map, look for the corresponding
833 // module_private.map.
834 llvm::SmallString<128> PrivateFilename(Dir->getName());
835 llvm::sys::path::append(PrivateFilename, "module_private.map");
836 if (const FileEntry *PrivateFile = FileMgr.getFile(PrivateFilename))
837 Result = ModMap.parseModuleMapFile(PrivateFile);
838 }
839
840 DirectoryHasModuleMap[Dir] = !Result;
Douglas Gregordb1cde72011-11-16 00:09:06 +0000841 return Result;
842}
843
Douglas Gregore434ec72012-01-29 17:08:11 +0000844Module *HeaderSearch::loadFrameworkModule(StringRef Name,
845 const DirectoryEntry *Dir,
846 bool IsSystem) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000847 if (Module *Module = ModMap.findModule(Name))
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000848 return Module;
849
850 // Try to load a module map file.
851 switch (loadModuleMapFile(Dir)) {
852 case LMM_InvalidModuleMap:
853 break;
854
855 case LMM_AlreadyLoaded:
856 case LMM_NoDirectory:
857 return 0;
858
859 case LMM_NewlyLoaded:
860 return ModMap.findModule(Name);
861 }
Douglas Gregora8c6fea2012-01-13 22:31:52 +0000862
863 // The top-level framework directory, from which we'll infer a framework
864 // module.
865 const DirectoryEntry *TopFrameworkDir = Dir;
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000866
Douglas Gregora8c6fea2012-01-13 22:31:52 +0000867 // The path from the module we're actually looking for back to the top-level
868 // framework name.
869 llvm::SmallVector<StringRef, 2> SubmodulePath;
870 SubmodulePath.push_back(Name);
871
872 // Walk the directory structure to find any enclosing frameworks.
873 StringRef DirName = Dir->getName();
874 do {
875 // Get the parent directory name.
876 DirName = llvm::sys::path::parent_path(DirName);
877 if (DirName.empty())
878 break;
879
880 // Determine whether this directory exists.
881 Dir = FileMgr.getDirectory(DirName);
882 if (!Dir)
883 break;
884
885 // If this is a framework directory, then we're a subframework of this
886 // framework.
887 if (llvm::sys::path::extension(DirName) == ".framework") {
888 SubmodulePath.push_back(llvm::sys::path::stem(DirName));
889 TopFrameworkDir = Dir;
890 }
891 } while (true);
892
893 // Try to infer a module map from the top-level framework directory.
894 Module *Result = ModMap.inferFrameworkModule(SubmodulePath.back(),
Douglas Gregora1f1fad2012-01-27 19:52:33 +0000895 TopFrameworkDir,
896 IsSystem,
Douglas Gregora8c6fea2012-01-13 22:31:52 +0000897 /*Parent=*/0);
898
899 // Follow the submodule path to find the requested (sub)framework module
900 // within the top-level framework module.
901 SubmodulePath.pop_back();
902 while (!SubmodulePath.empty() && Result) {
903 Result = ModMap.lookupModuleQualified(SubmodulePath.back(), Result);
904 SubmodulePath.pop_back();
905 }
906 return Result;
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000907}
908
Douglas Gregordb1cde72011-11-16 00:09:06 +0000909
Douglas Gregor26697972011-11-12 00:22:19 +0000910HeaderSearch::LoadModuleMapResult
911HeaderSearch::loadModuleMapFile(StringRef DirName) {
Douglas Gregorcf70d782011-11-12 00:05:07 +0000912 if (const DirectoryEntry *Dir = FileMgr.getDirectory(DirName))
913 return loadModuleMapFile(Dir);
914
Douglas Gregor26697972011-11-12 00:22:19 +0000915 return LMM_NoDirectory;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000916}
917
Douglas Gregor26697972011-11-12 00:22:19 +0000918HeaderSearch::LoadModuleMapResult
919HeaderSearch::loadModuleMapFile(const DirectoryEntry *Dir) {
Douglas Gregorcf70d782011-11-12 00:05:07 +0000920 llvm::DenseMap<const DirectoryEntry *, bool>::iterator KnownDir
921 = DirectoryHasModuleMap.find(Dir);
922 if (KnownDir != DirectoryHasModuleMap.end())
Douglas Gregor26697972011-11-12 00:22:19 +0000923 return KnownDir->second? LMM_AlreadyLoaded : LMM_InvalidModuleMap;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000924
925 llvm::SmallString<128> ModuleMapFileName;
926 ModuleMapFileName += Dir->getName();
Douglas Gregor587986e2011-12-07 02:23:45 +0000927 unsigned ModuleMapDirNameLen = ModuleMapFileName.size();
Douglas Gregorcf70d782011-11-12 00:05:07 +0000928 llvm::sys::path::append(ModuleMapFileName, "module.map");
929 if (const FileEntry *ModuleMapFile = FileMgr.getFile(ModuleMapFileName)) {
930 // We have found a module map file. Try to parse it.
Douglas Gregor587986e2011-12-07 02:23:45 +0000931 if (ModMap.parseModuleMapFile(ModuleMapFile)) {
932 // No suitable module map.
933 DirectoryHasModuleMap[Dir] = false;
934 return LMM_InvalidModuleMap;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000935 }
Douglas Gregor587986e2011-12-07 02:23:45 +0000936
937 // This directory has a module map.
938 DirectoryHasModuleMap[Dir] = true;
939
940 // Check whether there is a private module map that we need to load as well.
941 ModuleMapFileName.erase(ModuleMapFileName.begin() + ModuleMapDirNameLen,
942 ModuleMapFileName.end());
943 llvm::sys::path::append(ModuleMapFileName, "module_private.map");
944 if (const FileEntry *PrivateModuleMapFile
945 = FileMgr.getFile(ModuleMapFileName)) {
946 if (ModMap.parseModuleMapFile(PrivateModuleMapFile)) {
947 // No suitable module map.
948 DirectoryHasModuleMap[Dir] = false;
949 return LMM_InvalidModuleMap;
950 }
951 }
952
953 return LMM_NewlyLoaded;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000954 }
955
956 // No suitable module map.
957 DirectoryHasModuleMap[Dir] = false;
Douglas Gregor26697972011-11-12 00:22:19 +0000958 return LMM_InvalidModuleMap;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000959}
Douglas Gregora30cfe52011-11-11 19:10:28 +0000960
Douglas Gregorc5b2e582012-01-29 18:15:03 +0000961void HeaderSearch::collectAllModules(llvm::SmallVectorImpl<Module *> &Modules) {
962 Modules.clear();
963
964 // Load module maps for each of the header search directories.
965 for (unsigned Idx = 0, N = SearchDirs.size(); Idx != N; ++Idx) {
966 if (SearchDirs[Idx].isFramework()) {
967 llvm::error_code EC;
968 llvm::SmallString<128> DirNative;
969 llvm::sys::path::native(SearchDirs[Idx].getFrameworkDir()->getName(),
970 DirNative);
971
972 // Search each of the ".framework" directories to load them as modules.
973 bool IsSystem = SearchDirs[Idx].getDirCharacteristic() != SrcMgr::C_User;
974 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
975 Dir != DirEnd && !EC; Dir.increment(EC)) {
976 if (llvm::sys::path::extension(Dir->path()) != ".framework")
977 continue;
978
979 const DirectoryEntry *FrameworkDir = FileMgr.getDirectory(Dir->path());
980 if (!FrameworkDir)
981 continue;
982
983 // Load this framework module.
984 loadFrameworkModule(llvm::sys::path::stem(Dir->path()), FrameworkDir,
985 IsSystem);
986 }
987 continue;
988 }
989
990 // FIXME: Deal with header maps.
991 if (SearchDirs[Idx].isHeaderMap())
992 continue;
993
994 // Try to load a module map file for the search directory.
995 loadModuleMapFile(SearchDirs[Idx].getDir());
996
997 // Try to load module map files for immediate subdirectories of this search
998 // directory.
999 llvm::error_code EC;
1000 llvm::SmallString<128> DirNative;
1001 llvm::sys::path::native(SearchDirs[Idx].getDir()->getName(), DirNative);
1002 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
1003 Dir != DirEnd && !EC; Dir.increment(EC)) {
1004 loadModuleMapFile(Dir->path());
1005 }
1006 }
1007
1008 // Populate the list of modules.
1009 for (ModuleMap::module_iterator M = ModMap.module_begin(),
1010 MEnd = ModMap.module_end();
1011 M != MEnd; ++M) {
1012 Modules.push_back(M->getValue());
1013 }
1014}
1015