blob: 30811bb6be709599212db3fbda2135480c162086 [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
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000113 SmallString<256> Result(ModuleCachePath);
Douglas Gregore434ec72012-01-29 17:08:11 +0000114 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
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000124 SmallString<256> Result(ModuleCachePath);
Douglas Gregore434ec72012-01-29 17:08:11 +0000125 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.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000140 SmallString<128> FrameworkDirName;
Douglas Gregore434ec72012-01-29 17:08:11 +0000141 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.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000170 SmallString<128> NestedModuleMapDirName;
Douglas Gregore434ec72012-01-29 17:08:11 +0000171 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,
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000207 Module **SuggestedModule,
208 bool &InUserSpecifiedSystemFramework) const {
209 InUserSpecifiedSystemFramework = false;
210
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000211 SmallString<1024> TmpDir;
Chris Lattnerafded5b2007-12-17 08:13:48 +0000212 if (isNormalDir()) {
213 // Concatenate the requested file onto the directory.
Eli Friedmana6e023c2011-07-08 20:17:28 +0000214 TmpDir = getDir()->getName();
215 llvm::sys::path::append(TmpDir, Filename);
Manuel Klimek74124942011-04-26 21:50:03 +0000216 if (SearchPath != NULL) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000217 StringRef SearchPathRef(getDir()->getName());
Manuel Klimek74124942011-04-26 21:50:03 +0000218 SearchPath->clear();
219 SearchPath->append(SearchPathRef.begin(), SearchPathRef.end());
220 }
221 if (RelativePath != NULL) {
222 RelativePath->clear();
223 RelativePath->append(Filename.begin(), Filename.end());
224 }
Douglas Gregora30cfe52011-11-11 19:10:28 +0000225
226 // If we have a module map that might map this header, load it and
227 // check whether we'll have a suggestion for a module.
228 if (SuggestedModule && HS.hasModuleMap(TmpDir, getDir())) {
229 const FileEntry *File = HS.getFileMgr().getFile(TmpDir.str(),
230 /*openFile=*/false);
231 if (!File)
232 return File;
233
234 // If there is a module that corresponds to this header,
235 // suggest it.
Douglas Gregor5e3f9222011-12-08 17:01:29 +0000236 *SuggestedModule = HS.findModuleForHeader(File);
Douglas Gregora30cfe52011-11-11 19:10:28 +0000237 return File;
238 }
239
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000240 return HS.getFileMgr().getFile(TmpDir.str(), /*openFile=*/true);
Chris Lattnerafded5b2007-12-17 08:13:48 +0000241 }
Mike Stump1eb44332009-09-09 15:08:12 +0000242
Chris Lattnerafded5b2007-12-17 08:13:48 +0000243 if (isFramework())
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000244 return DoFrameworkLookup(Filename, HS, SearchPath, RelativePath,
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000245 SuggestedModule, InUserSpecifiedSystemFramework);
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Chris Lattnerb09e71f2007-12-17 08:17:39 +0000247 assert(isHeaderMap() && "Unknown directory lookup");
Manuel Klimek74124942011-04-26 21:50:03 +0000248 const FileEntry * const Result = getHeaderMap()->LookupFile(
249 Filename, HS.getFileMgr());
250 if (Result) {
251 if (SearchPath != NULL) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000252 StringRef SearchPathRef(getName());
Manuel Klimek74124942011-04-26 21:50:03 +0000253 SearchPath->clear();
254 SearchPath->append(SearchPathRef.begin(), SearchPathRef.end());
255 }
256 if (RelativePath != NULL) {
257 RelativePath->clear();
258 RelativePath->append(Filename.begin(), Filename.end());
259 }
260 }
261 return Result;
Chris Lattnerdf772332007-12-17 07:52:39 +0000262}
263
264
Chris Lattnerafded5b2007-12-17 08:13:48 +0000265/// DoFrameworkLookup - Do a lookup of the specified file in the current
266/// DirectoryLookup, which is a framework directory.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000267const FileEntry *DirectoryLookup::DoFrameworkLookup(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000268 StringRef Filename,
Manuel Klimek74124942011-04-26 21:50:03 +0000269 HeaderSearch &HS,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000270 SmallVectorImpl<char> *SearchPath,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000271 SmallVectorImpl<char> *RelativePath,
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000272 Module **SuggestedModule,
273 bool &InUserSpecifiedSystemFramework) const
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000274{
Chris Lattnerafded5b2007-12-17 08:13:48 +0000275 FileManager &FileMgr = HS.getFileMgr();
Mike Stump1eb44332009-09-09 15:08:12 +0000276
Reid Spencer5f016e22007-07-11 17:01:13 +0000277 // Framework names must have a '/' in the filename.
Chris Lattnera1394812010-01-10 01:35:12 +0000278 size_t SlashPos = Filename.find('/');
Chris Lattner5f9e2722011-07-23 10:55:15 +0000279 if (SlashPos == StringRef::npos) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000280
Chris Lattnerafded5b2007-12-17 08:13:48 +0000281 // Find out if this is the home for the specified framework, by checking
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000282 // HeaderSearch. Possible answers are yes/no and unknown.
283 HeaderSearch::FrameworkCacheEntry &CacheEntry =
Chris Lattnera1394812010-01-10 01:35:12 +0000284 HS.LookupFrameworkCache(Filename.substr(0, SlashPos));
Mike Stump1eb44332009-09-09 15:08:12 +0000285
Chris Lattnerafded5b2007-12-17 08:13:48 +0000286 // If it is known and in some other directory, fail.
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000287 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDir())
Reid Spencer5f016e22007-07-11 17:01:13 +0000288 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Chris Lattnerafded5b2007-12-17 08:13:48 +0000290 // Otherwise, construct the path to this framework dir.
Mike Stump1eb44332009-09-09 15:08:12 +0000291
Reid Spencer5f016e22007-07-11 17:01:13 +0000292 // FrameworkName = "/System/Library/Frameworks/"
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000293 SmallString<1024> FrameworkName;
Chris Lattnerafded5b2007-12-17 08:13:48 +0000294 FrameworkName += getFrameworkDir()->getName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000295 if (FrameworkName.empty() || FrameworkName.back() != '/')
296 FrameworkName.push_back('/');
Mike Stump1eb44332009-09-09 15:08:12 +0000297
Reid Spencer5f016e22007-07-11 17:01:13 +0000298 // FrameworkName = "/System/Library/Frameworks/Cocoa"
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000299 StringRef ModuleName(Filename.begin(), SlashPos);
300 FrameworkName += ModuleName;
Mike Stump1eb44332009-09-09 15:08:12 +0000301
Reid Spencer5f016e22007-07-11 17:01:13 +0000302 // FrameworkName = "/System/Library/Frameworks/Cocoa.framework/"
303 FrameworkName += ".framework/";
Mike Stump1eb44332009-09-09 15:08:12 +0000304
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000305 // If the cache entry was unresolved, populate it now.
306 if (CacheEntry.Directory == 0) {
Chris Lattnerafded5b2007-12-17 08:13:48 +0000307 HS.IncrementFrameworkLookupCount();
Mike Stump1eb44332009-09-09 15:08:12 +0000308
Reid Spencer5f016e22007-07-11 17:01:13 +0000309 // If the framework dir doesn't exist, we fail.
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000310 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
311 if (Dir == 0) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000312
Reid Spencer5f016e22007-07-11 17:01:13 +0000313 // Otherwise, if it does, remember that this is the right direntry for this
314 // framework.
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000315 CacheEntry.Directory = getFrameworkDir();
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000316
317 // If this is a user search directory, check if the framework has been
318 // user-specified as a system framework.
319 if (getDirCharacteristic() == SrcMgr::C_User) {
320 SmallString<1024> SystemFrameworkMarker(FrameworkName);
321 SystemFrameworkMarker += ".system_framework";
322 if (llvm::sys::fs::exists(SystemFrameworkMarker.str())) {
323 CacheEntry.IsUserSpecifiedSystemFramework = true;
324 }
325 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000326 }
Mike Stump1eb44332009-09-09 15:08:12 +0000327
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000328 // Set the 'user-specified system framework' flag.
329 InUserSpecifiedSystemFramework = CacheEntry.IsUserSpecifiedSystemFramework;
330
Manuel Klimek74124942011-04-26 21:50:03 +0000331 if (RelativePath != NULL) {
332 RelativePath->clear();
333 RelativePath->append(Filename.begin()+SlashPos+1, Filename.end());
334 }
335
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000336 // If we're allowed to look for modules, try to load or create the module
337 // corresponding to this framework.
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000338 Module *Module = 0;
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000339 if (SuggestedModule) {
340 if (const DirectoryEntry *FrameworkDir
Douglas Gregora1f1fad2012-01-27 19:52:33 +0000341 = FileMgr.getDirectory(FrameworkName)) {
342 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User;
Douglas Gregore434ec72012-01-29 17:08:11 +0000343 Module = HS.loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
Douglas Gregora1f1fad2012-01-27 19:52:33 +0000344 }
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000345 }
346
Reid Spencer5f016e22007-07-11 17:01:13 +0000347 // Check "/System/Library/Frameworks/Cocoa.framework/Headers/file.h"
348 unsigned OrigSize = FrameworkName.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000349
Reid Spencer5f016e22007-07-11 17:01:13 +0000350 FrameworkName += "Headers/";
Manuel Klimek74124942011-04-26 21:50:03 +0000351
352 if (SearchPath != NULL) {
353 SearchPath->clear();
354 // Without trailing '/'.
355 SearchPath->append(FrameworkName.begin(), FrameworkName.end()-1);
356 }
357
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000358 // Determine whether this is the module we're building or not.
Douglas Gregor09833922011-12-06 17:31:28 +0000359 bool AutomaticImport = Module;
Chris Lattnera1394812010-01-10 01:35:12 +0000360 FrameworkName.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000361 if (const FileEntry *FE = FileMgr.getFile(FrameworkName.str(),
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000362 /*openFile=*/!AutomaticImport)) {
363 if (AutomaticImport)
Douglas Gregor09833922011-12-06 17:31:28 +0000364 *SuggestedModule = HS.findModuleForHeader(FE);
Reid Spencer5f016e22007-07-11 17:01:13 +0000365 return FE;
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000366 }
Mike Stump1eb44332009-09-09 15:08:12 +0000367
Reid Spencer5f016e22007-07-11 17:01:13 +0000368 // Check "/System/Library/Frameworks/Cocoa.framework/PrivateHeaders/file.h"
369 const char *Private = "Private";
Mike Stump1eb44332009-09-09 15:08:12 +0000370 FrameworkName.insert(FrameworkName.begin()+OrigSize, Private,
Reid Spencer5f016e22007-07-11 17:01:13 +0000371 Private+strlen(Private));
Manuel Klimek74124942011-04-26 21:50:03 +0000372 if (SearchPath != NULL)
373 SearchPath->insert(SearchPath->begin()+OrigSize, Private,
374 Private+strlen(Private));
375
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000376 const FileEntry *FE = FileMgr.getFile(FrameworkName.str(),
377 /*openFile=*/!AutomaticImport);
378 if (FE && AutomaticImport)
Douglas Gregor09833922011-12-06 17:31:28 +0000379 *SuggestedModule = HS.findModuleForHeader(FE);
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000380 return FE;
Reid Spencer5f016e22007-07-11 17:01:13 +0000381}
382
Douglas Gregordc58aa72012-01-30 06:01:29 +0000383void HeaderSearch::setTarget(const TargetInfo &Target) {
384 ModMap.setTarget(Target);
385}
386
Chris Lattnerdf772332007-12-17 07:52:39 +0000387
Chris Lattnerafded5b2007-12-17 08:13:48 +0000388//===----------------------------------------------------------------------===//
389// Header File Location.
390//===----------------------------------------------------------------------===//
391
392
James Dennett853519c2012-06-20 00:56:32 +0000393/// LookupFile - Given a "foo" or \<foo> reference, look up the indicated file,
Reid Spencer5f016e22007-07-11 17:01:13 +0000394/// return null on failure. isAngled indicates whether the file reference is
James Dennett853519c2012-06-20 00:56:32 +0000395/// for system \#include's or not (i.e. using <> instead of ""). CurFileEnt, if
396/// non-null, indicates where the \#including file is, in case a relative search
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000397/// is needed.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000398const FileEntry *HeaderSearch::LookupFile(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000399 StringRef Filename,
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000400 bool isAngled,
401 const DirectoryLookup *FromDir,
402 const DirectoryLookup *&CurDir,
403 const FileEntry *CurFileEnt,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000404 SmallVectorImpl<char> *SearchPath,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000405 SmallVectorImpl<char> *RelativePath,
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000406 Module **SuggestedModule,
Douglas Gregor1c2e9332011-11-20 17:46:46 +0000407 bool SkipCache)
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000408{
409 if (SuggestedModule)
Douglas Gregorc69c42e2011-11-17 22:44:56 +0000410 *SuggestedModule = 0;
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000411
Reid Spencer5f016e22007-07-11 17:01:13 +0000412 // If 'Filename' is absolute, check to see if it exists and no searching.
Michael J. Spencer256053b2010-12-17 21:22:22 +0000413 if (llvm::sys::path::is_absolute(Filename)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000414 CurDir = 0;
415
416 // If this was an #include_next "/absolute/file", fail.
417 if (FromDir) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000418
Manuel Klimek74124942011-04-26 21:50:03 +0000419 if (SearchPath != NULL)
420 SearchPath->clear();
421 if (RelativePath != NULL) {
422 RelativePath->clear();
423 RelativePath->append(Filename.begin(), Filename.end());
424 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000425 // Otherwise, just return the file.
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000426 return FileMgr.getFile(Filename, /*openFile=*/true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000427 }
Mike Stump1eb44332009-09-09 15:08:12 +0000428
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000429 // Unless disabled, check to see if the file is in the #includer's
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000430 // directory. This has to be based on CurFileEnt, not CurDir, because
431 // CurFileEnt could be a #include of a subdirectory (#include "foo/bar.h") and
Chris Lattnerdf772332007-12-17 07:52:39 +0000432 // a subsequent include of "baz.h" should resolve to "whatever/foo/baz.h".
433 // This search is not done for <> headers.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000434 if (CurFileEnt && !isAngled && !NoCurDirSearch) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000435 SmallString<1024> TmpDir;
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000436 // Concatenate the requested file onto the directory.
437 // FIXME: Portability. Filename concatenation should be in sys::Path.
438 TmpDir += CurFileEnt->getDir()->getName();
439 TmpDir.push_back('/');
440 TmpDir.append(Filename.begin(), Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000441 if (const FileEntry *FE = FileMgr.getFile(TmpDir.str(),/*openFile=*/true)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000442 // Leave CurDir unset.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000443 // This file is a system header or C++ unfriendly if the old file is.
444 //
445 // Note that the temporary 'DirInfo' is required here, as either call to
446 // getFileInfo could resize the vector and we don't want to rely on order
447 // of evaluation.
448 unsigned DirInfo = getFileInfo(CurFileEnt).DirInfo;
Chris Lattnerc9dde4f2008-02-25 21:38:21 +0000449 getFileInfo(FE).DirInfo = DirInfo;
Manuel Klimek74124942011-04-26 21:50:03 +0000450 if (SearchPath != NULL) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000451 StringRef SearchPathRef(CurFileEnt->getDir()->getName());
Manuel Klimek74124942011-04-26 21:50:03 +0000452 SearchPath->clear();
453 SearchPath->append(SearchPathRef.begin(), SearchPathRef.end());
454 }
455 if (RelativePath != NULL) {
456 RelativePath->clear();
457 RelativePath->append(Filename.begin(), Filename.end());
458 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000459 return FE;
460 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000461 }
Mike Stump1eb44332009-09-09 15:08:12 +0000462
Reid Spencer5f016e22007-07-11 17:01:13 +0000463 CurDir = 0;
464
465 // If this is a system #include, ignore the user #include locs.
Nico Weber74a5fd82011-05-24 04:31:14 +0000466 unsigned i = isAngled ? AngledDirIdx : 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000467
Reid Spencer5f016e22007-07-11 17:01:13 +0000468 // If this is a #include_next request, start searching after the directory the
469 // file was found in.
470 if (FromDir)
471 i = FromDir-&SearchDirs[0];
Mike Stump1eb44332009-09-09 15:08:12 +0000472
Chris Lattner9960ae82007-07-22 07:28:00 +0000473 // Cache all of the lookups performed by this method. Many headers are
474 // multiply included, and the "pragma once" optimization prevents them from
475 // being relex/pp'd, but they would still have to search through a
476 // (potentially huge) series of SearchDirs to find it.
477 std::pair<unsigned, unsigned> &CacheLookup =
Chris Lattnera1394812010-01-10 01:35:12 +0000478 LookupFileCache.GetOrCreateValue(Filename).getValue();
Chris Lattner9960ae82007-07-22 07:28:00 +0000479
480 // If the entry has been previously looked up, the first value will be
481 // non-zero. If the value is equal to i (the start point of our search), then
482 // this is a matching hit.
Douglas Gregor1c2e9332011-11-20 17:46:46 +0000483 if (!SkipCache && CacheLookup.first == i+1) {
Chris Lattner9960ae82007-07-22 07:28:00 +0000484 // Skip querying potentially lots of directories for this lookup.
485 i = CacheLookup.second;
486 } else {
487 // Otherwise, this is the first query, or the previous query didn't match
488 // our search start. We will fill in our found location below, so prime the
489 // start point value.
490 CacheLookup.first = i+1;
491 }
Mike Stump1eb44332009-09-09 15:08:12 +0000492
Reid Spencer5f016e22007-07-11 17:01:13 +0000493 // Check each directory in sequence to see if it contains this file.
494 for (; i != SearchDirs.size(); ++i) {
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000495 bool InUserSpecifiedSystemFramework = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000496 const FileEntry *FE =
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000497 SearchDirs[i].LookupFile(Filename, *this, SearchPath, RelativePath,
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000498 SuggestedModule, InUserSpecifiedSystemFramework);
Chris Lattnerafded5b2007-12-17 08:13:48 +0000499 if (!FE) continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000500
Chris Lattnerafded5b2007-12-17 08:13:48 +0000501 CurDir = &SearchDirs[i];
Mike Stump1eb44332009-09-09 15:08:12 +0000502
Chris Lattnerafded5b2007-12-17 08:13:48 +0000503 // This file is a system header or C++ unfriendly if the dir is.
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000504 HeaderFileInfo &HFI = getFileInfo(FE);
505 HFI.DirInfo = CurDir->getDirCharacteristic();
Mike Stump1eb44332009-09-09 15:08:12 +0000506
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000507 // If the directory characteristic is User but this framework was
508 // user-specified to be treated as a system framework, promote the
509 // characteristic.
510 if (HFI.DirInfo == SrcMgr::C_User && InUserSpecifiedSystemFramework)
511 HFI.DirInfo = SrcMgr::C_System;
512
Richard Smithf122a132012-06-13 20:27:03 +0000513 // If the filename matches a known system header prefix, override
514 // whether the file is a system header.
Richard Trieu4ef2f6a2012-06-13 20:52:36 +0000515 for (unsigned j = SystemHeaderPrefixes.size(); j; --j) {
516 if (Filename.startswith(SystemHeaderPrefixes[j-1].first)) {
517 HFI.DirInfo = SystemHeaderPrefixes[j-1].second ? SrcMgr::C_System
Richard Smithf122a132012-06-13 20:27:03 +0000518 : SrcMgr::C_User;
519 break;
520 }
521 }
522
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000523 // If this file is found in a header map and uses the framework style of
524 // includes, then this header is part of a framework we're building.
525 if (CurDir->isIndexHeaderMap()) {
526 size_t SlashPos = Filename.find('/');
527 if (SlashPos != StringRef::npos) {
528 HFI.IndexHeaderMapHeader = 1;
529 HFI.Framework = getUniqueFrameworkName(StringRef(Filename.begin(),
530 SlashPos));
531 }
532 }
533
Chris Lattnerafded5b2007-12-17 08:13:48 +0000534 // Remember this location for the next lookup we do.
535 CacheLookup.second = i;
536 return FE;
Reid Spencer5f016e22007-07-11 17:01:13 +0000537 }
Mike Stump1eb44332009-09-09 15:08:12 +0000538
Douglas Gregor2c7b7802011-07-30 06:28:34 +0000539 // If we are including a file with a quoted include "foo.h" from inside
540 // a header in a framework that is currently being built, and we couldn't
541 // resolve "foo.h" any other way, change the include to <Foo/foo.h>, where
542 // "Foo" is the name of the framework in which the including header was found.
543 if (CurFileEnt && !isAngled && Filename.find('/') == StringRef::npos) {
544 HeaderFileInfo &IncludingHFI = getFileInfo(CurFileEnt);
545 if (IncludingHFI.IndexHeaderMapHeader) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000546 SmallString<128> ScratchFilename;
Douglas Gregor2c7b7802011-07-30 06:28:34 +0000547 ScratchFilename += IncludingHFI.Framework;
548 ScratchFilename += '/';
549 ScratchFilename += Filename;
550
551 const FileEntry *Result = LookupFile(ScratchFilename, /*isAngled=*/true,
552 FromDir, CurDir, CurFileEnt,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000553 SearchPath, RelativePath,
554 SuggestedModule);
Douglas Gregor2c7b7802011-07-30 06:28:34 +0000555 std::pair<unsigned, unsigned> &CacheLookup
556 = LookupFileCache.GetOrCreateValue(Filename).getValue();
557 CacheLookup.second
558 = LookupFileCache.GetOrCreateValue(ScratchFilename).getValue().second;
559 return Result;
560 }
561 }
562
Chris Lattner9960ae82007-07-22 07:28:00 +0000563 // Otherwise, didn't find it. Remember we didn't find this.
564 CacheLookup.second = SearchDirs.size();
Reid Spencer5f016e22007-07-11 17:01:13 +0000565 return 0;
566}
567
568/// LookupSubframeworkHeader - Look up a subframework for the specified
James Dennett853519c2012-06-20 00:56:32 +0000569/// \#include file. For example, if \#include'ing <HIToolbox/HIToolbox.h> from
Reid Spencer5f016e22007-07-11 17:01:13 +0000570/// within ".../Carbon.framework/Headers/Carbon.h", check to see if HIToolbox
571/// is a subframework within Carbon.framework. If so, return the FileEntry
572/// for the designated file, otherwise return null.
573const FileEntry *HeaderSearch::
Chris Lattner5f9e2722011-07-23 10:55:15 +0000574LookupSubframeworkHeader(StringRef Filename,
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000575 const FileEntry *ContextFileEnt,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000576 SmallVectorImpl<char> *SearchPath,
577 SmallVectorImpl<char> *RelativePath) {
Chris Lattner9415a0c2008-02-01 05:34:02 +0000578 assert(ContextFileEnt && "No context file?");
Mike Stump1eb44332009-09-09 15:08:12 +0000579
Reid Spencer5f016e22007-07-11 17:01:13 +0000580 // Framework names must have a '/' in the filename. Find it.
Douglas Gregorefda0e82011-12-09 16:48:01 +0000581 // FIXME: Should we permit '\' on Windows?
Chris Lattnera1394812010-01-10 01:35:12 +0000582 size_t SlashPos = Filename.find('/');
Chris Lattner5f9e2722011-07-23 10:55:15 +0000583 if (SlashPos == StringRef::npos) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000584
Reid Spencer5f016e22007-07-11 17:01:13 +0000585 // Look up the base framework name of the ContextFileEnt.
586 const char *ContextName = ContextFileEnt->getName();
Mike Stump1eb44332009-09-09 15:08:12 +0000587
Reid Spencer5f016e22007-07-11 17:01:13 +0000588 // If the context info wasn't a framework, couldn't be a subframework.
Douglas Gregorefda0e82011-12-09 16:48:01 +0000589 const unsigned DotFrameworkLen = 10;
590 const char *FrameworkPos = strstr(ContextName, ".framework");
591 if (FrameworkPos == 0 ||
592 (FrameworkPos[DotFrameworkLen] != '/' &&
593 FrameworkPos[DotFrameworkLen] != '\\'))
Reid Spencer5f016e22007-07-11 17:01:13 +0000594 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000595
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000596 SmallString<1024> FrameworkName(ContextName, FrameworkPos+DotFrameworkLen+1);
Reid Spencer5f016e22007-07-11 17:01:13 +0000597
598 // Append Frameworks/HIToolbox.framework/
599 FrameworkName += "Frameworks/";
Chris Lattnera1394812010-01-10 01:35:12 +0000600 FrameworkName.append(Filename.begin(), Filename.begin()+SlashPos);
Reid Spencer5f016e22007-07-11 17:01:13 +0000601 FrameworkName += ".framework/";
602
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000603 llvm::StringMapEntry<FrameworkCacheEntry> &CacheLookup =
Chris Lattner65382272010-11-21 09:55:08 +0000604 FrameworkMap.GetOrCreateValue(Filename.substr(0, SlashPos));
Mike Stump1eb44332009-09-09 15:08:12 +0000605
Reid Spencer5f016e22007-07-11 17:01:13 +0000606 // Some other location?
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000607 if (CacheLookup.getValue().Directory &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000608 CacheLookup.getKeyLength() == FrameworkName.size() &&
609 memcmp(CacheLookup.getKeyData(), &FrameworkName[0],
610 CacheLookup.getKeyLength()) != 0)
611 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000612
Reid Spencer5f016e22007-07-11 17:01:13 +0000613 // Cache subframework.
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000614 if (CacheLookup.getValue().Directory == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000615 ++NumSubFrameworkLookups;
Mike Stump1eb44332009-09-09 15:08:12 +0000616
Reid Spencer5f016e22007-07-11 17:01:13 +0000617 // If the framework dir doesn't exist, we fail.
Chris Lattner39b49bc2010-11-23 08:35:12 +0000618 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
Reid Spencer5f016e22007-07-11 17:01:13 +0000619 if (Dir == 0) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000620
Reid Spencer5f016e22007-07-11 17:01:13 +0000621 // Otherwise, if it does, remember that this is the right direntry for this
622 // framework.
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000623 CacheLookup.getValue().Directory = Dir;
Reid Spencer5f016e22007-07-11 17:01:13 +0000624 }
Mike Stump1eb44332009-09-09 15:08:12 +0000625
Reid Spencer5f016e22007-07-11 17:01:13 +0000626 const FileEntry *FE = 0;
627
Manuel Klimek74124942011-04-26 21:50:03 +0000628 if (RelativePath != NULL) {
629 RelativePath->clear();
630 RelativePath->append(Filename.begin()+SlashPos+1, Filename.end());
631 }
632
Reid Spencer5f016e22007-07-11 17:01:13 +0000633 // Check ".../Frameworks/HIToolbox.framework/Headers/HIToolbox.h"
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000634 SmallString<1024> HeadersFilename(FrameworkName);
Reid Spencer5f016e22007-07-11 17:01:13 +0000635 HeadersFilename += "Headers/";
Manuel Klimek74124942011-04-26 21:50:03 +0000636 if (SearchPath != NULL) {
637 SearchPath->clear();
638 // Without trailing '/'.
639 SearchPath->append(HeadersFilename.begin(), HeadersFilename.end()-1);
640 }
641
Chris Lattnera1394812010-01-10 01:35:12 +0000642 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000643 if (!(FE = FileMgr.getFile(HeadersFilename.str(), /*openFile=*/true))) {
Mike Stump1eb44332009-09-09 15:08:12 +0000644
Reid Spencer5f016e22007-07-11 17:01:13 +0000645 // Check ".../Frameworks/HIToolbox.framework/PrivateHeaders/HIToolbox.h"
646 HeadersFilename = FrameworkName;
647 HeadersFilename += "PrivateHeaders/";
Manuel Klimek74124942011-04-26 21:50:03 +0000648 if (SearchPath != NULL) {
649 SearchPath->clear();
650 // Without trailing '/'.
651 SearchPath->append(HeadersFilename.begin(), HeadersFilename.end()-1);
652 }
653
Chris Lattnera1394812010-01-10 01:35:12 +0000654 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000655 if (!(FE = FileMgr.getFile(HeadersFilename.str(), /*openFile=*/true)))
Reid Spencer5f016e22007-07-11 17:01:13 +0000656 return 0;
657 }
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Reid Spencer5f016e22007-07-11 17:01:13 +0000659 // This file is a system header or C++ unfriendly if the old file is.
Ted Kremenekca63fa02008-02-24 03:55:14 +0000660 //
Chris Lattnerc9dde4f2008-02-25 21:38:21 +0000661 // Note that the temporary 'DirInfo' is required here, as either call to
662 // getFileInfo could resize the vector and we don't want to rely on order
663 // of evaluation.
664 unsigned DirInfo = getFileInfo(ContextFileEnt).DirInfo;
665 getFileInfo(FE).DirInfo = DirInfo;
Reid Spencer5f016e22007-07-11 17:01:13 +0000666 return FE;
667}
668
Chandler Carruthcb381ea2011-12-09 01:33:57 +0000669/// \brief Helper static function to normalize a path for injection into
670/// a synthetic header.
671/*static*/ std::string
672HeaderSearch::NormalizeDashIncludePath(StringRef File, FileManager &FileMgr) {
673 // Implicit include paths should be resolved relative to the current
674 // working directory first, and then use the regular header search
675 // mechanism. The proper way to handle this is to have the
676 // predefines buffer located at the current working directory, but
677 // it has no file entry. For now, workaround this by using an
678 // absolute path if we find the file here, and otherwise letting
679 // header search handle it.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000680 SmallString<128> Path(File);
Chandler Carruthcb381ea2011-12-09 01:33:57 +0000681 llvm::sys::fs::make_absolute(Path);
682 bool exists;
683 if (llvm::sys::fs::exists(Path.str(), exists) || !exists)
684 Path = File;
685 else if (exists)
686 FileMgr.getFile(File);
687
688 return Lexer::Stringify(Path.str());
689}
690
Reid Spencer5f016e22007-07-11 17:01:13 +0000691//===----------------------------------------------------------------------===//
692// File Info Management.
693//===----------------------------------------------------------------------===//
694
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000695/// \brief Merge the header file info provided by \p OtherHFI into the current
696/// header file info (\p HFI)
697static void mergeHeaderFileInfo(HeaderFileInfo &HFI,
698 const HeaderFileInfo &OtherHFI) {
699 HFI.isImport |= OtherHFI.isImport;
700 HFI.isPragmaOnce |= OtherHFI.isPragmaOnce;
701 HFI.NumIncludes += OtherHFI.NumIncludes;
702
703 if (!HFI.ControllingMacro && !HFI.ControllingMacroID) {
704 HFI.ControllingMacro = OtherHFI.ControllingMacro;
705 HFI.ControllingMacroID = OtherHFI.ControllingMacroID;
706 }
707
708 if (OtherHFI.External) {
709 HFI.DirInfo = OtherHFI.DirInfo;
710 HFI.External = OtherHFI.External;
711 HFI.IndexHeaderMapHeader = OtherHFI.IndexHeaderMapHeader;
712 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000713
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000714 if (HFI.Framework.empty())
715 HFI.Framework = OtherHFI.Framework;
716
717 HFI.Resolved = true;
718}
719
Steve Naroff83d63c72009-04-24 20:03:17 +0000720/// getFileInfo - Return the HeaderFileInfo structure for the specified
Reid Spencer5f016e22007-07-11 17:01:13 +0000721/// FileEntry.
Steve Naroff83d63c72009-04-24 20:03:17 +0000722HeaderFileInfo &HeaderSearch::getFileInfo(const FileEntry *FE) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000723 if (FE->getUID() >= FileInfo.size())
724 FileInfo.resize(FE->getUID()+1);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000725
726 HeaderFileInfo &HFI = FileInfo[FE->getUID()];
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000727 if (ExternalSource && !HFI.Resolved)
728 mergeHeaderFileInfo(HFI, ExternalSource->GetHeaderFileInfo(FE));
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000729 return HFI;
Mike Stump1eb44332009-09-09 15:08:12 +0000730}
Reid Spencer5f016e22007-07-11 17:01:13 +0000731
Douglas Gregordd3e5542011-05-04 00:14:37 +0000732bool HeaderSearch::isFileMultipleIncludeGuarded(const FileEntry *File) {
733 // Check if we've ever seen this file as a header.
734 if (File->getUID() >= FileInfo.size())
735 return false;
736
737 // Resolve header file info from the external source, if needed.
738 HeaderFileInfo &HFI = FileInfo[File->getUID()];
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000739 if (ExternalSource && !HFI.Resolved)
740 mergeHeaderFileInfo(HFI, ExternalSource->GetHeaderFileInfo(File));
Douglas Gregordd3e5542011-05-04 00:14:37 +0000741
742 return HFI.isPragmaOnce || HFI.ControllingMacro || HFI.ControllingMacroID;
743}
744
Steve Naroff83d63c72009-04-24 20:03:17 +0000745void HeaderSearch::setHeaderFileInfoForUID(HeaderFileInfo HFI, unsigned UID) {
746 if (UID >= FileInfo.size())
747 FileInfo.resize(UID+1);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000748 HFI.Resolved = true;
Steve Naroff83d63c72009-04-24 20:03:17 +0000749 FileInfo[UID] = HFI;
750}
751
Reid Spencer5f016e22007-07-11 17:01:13 +0000752bool HeaderSearch::ShouldEnterIncludeFile(const FileEntry *File, bool isImport){
753 ++NumIncluded; // Count # of attempted #includes.
754
755 // Get information about this file.
Steve Naroff83d63c72009-04-24 20:03:17 +0000756 HeaderFileInfo &FileInfo = getFileInfo(File);
Mike Stump1eb44332009-09-09 15:08:12 +0000757
Reid Spencer5f016e22007-07-11 17:01:13 +0000758 // If this is a #import directive, check that we have not already imported
759 // this header.
760 if (isImport) {
761 // If this has already been imported, don't import it again.
762 FileInfo.isImport = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000763
Reid Spencer5f016e22007-07-11 17:01:13 +0000764 // Has this already been #import'ed or #include'd?
765 if (FileInfo.NumIncludes) return false;
766 } else {
767 // Otherwise, if this is a #include of a file that was previously #import'd
768 // or if this is the second #include of a #pragma once file, ignore it.
769 if (FileInfo.isImport)
770 return false;
771 }
Mike Stump1eb44332009-09-09 15:08:12 +0000772
Reid Spencer5f016e22007-07-11 17:01:13 +0000773 // Next, check to see if the file is wrapped with #ifndef guards. If so, and
774 // if the macro that guards it is defined, we know the #include has no effect.
Mike Stump1eb44332009-09-09 15:08:12 +0000775 if (const IdentifierInfo *ControllingMacro
Douglas Gregor8c5a7602009-04-25 23:30:02 +0000776 = FileInfo.getControllingMacro(ExternalLookup))
777 if (ControllingMacro->hasMacroDefinition()) {
778 ++NumMultiIncludeFileOptzn;
779 return false;
780 }
Mike Stump1eb44332009-09-09 15:08:12 +0000781
Reid Spencer5f016e22007-07-11 17:01:13 +0000782 // Increment the number of times this file has been included.
783 ++FileInfo.NumIncludes;
Mike Stump1eb44332009-09-09 15:08:12 +0000784
Reid Spencer5f016e22007-07-11 17:01:13 +0000785 return true;
786}
787
Ted Kremenekd1194fb2011-07-26 23:46:11 +0000788size_t HeaderSearch::getTotalMemory() const {
789 return SearchDirs.capacity()
Ted Kremenekeabea452011-07-27 18:41:18 +0000790 + llvm::capacity_in_bytes(FileInfo)
791 + llvm::capacity_in_bytes(HeaderMaps)
Ted Kremenekd1194fb2011-07-26 23:46:11 +0000792 + LookupFileCache.getAllocator().getTotalMemory()
793 + FrameworkMap.getAllocator().getTotalMemory();
794}
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000795
796StringRef HeaderSearch::getUniqueFrameworkName(StringRef Framework) {
797 return FrameworkNames.GetOrCreateValue(Framework).getKey();
798}
Douglas Gregora30cfe52011-11-11 19:10:28 +0000799
800bool HeaderSearch::hasModuleMap(StringRef FileName,
801 const DirectoryEntry *Root) {
802 llvm::SmallVector<const DirectoryEntry *, 2> FixUpDirectories;
803
804 StringRef DirName = FileName;
805 do {
806 // Get the parent directory name.
807 DirName = llvm::sys::path::parent_path(DirName);
808 if (DirName.empty())
809 return false;
810
811 // Determine whether this directory exists.
812 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
813 if (!Dir)
814 return false;
815
Douglas Gregorcf70d782011-11-12 00:05:07 +0000816 // Try to load the module map file in this directory.
Douglas Gregor26697972011-11-12 00:22:19 +0000817 switch (loadModuleMapFile(Dir)) {
818 case LMM_NewlyLoaded:
819 case LMM_AlreadyLoaded:
Douglas Gregorcf70d782011-11-12 00:05:07 +0000820 // Success. All of the directories we stepped through inherit this module
821 // map file.
Douglas Gregora30cfe52011-11-11 19:10:28 +0000822 for (unsigned I = 0, N = FixUpDirectories.size(); I != N; ++I)
823 DirectoryHasModuleMap[FixUpDirectories[I]] = true;
824
825 return true;
Douglas Gregor26697972011-11-12 00:22:19 +0000826
827 case LMM_NoDirectory:
828 case LMM_InvalidModuleMap:
829 break;
Douglas Gregora30cfe52011-11-11 19:10:28 +0000830 }
Douglas Gregora30cfe52011-11-11 19:10:28 +0000831
Douglas Gregorcf70d782011-11-12 00:05:07 +0000832 // If we hit the top of our search, we're done.
833 if (Dir == Root)
834 return false;
835
Douglas Gregora30cfe52011-11-11 19:10:28 +0000836 // Keep track of all of the directories we checked, so we can mark them as
837 // having module maps if we eventually do find a module map.
838 FixUpDirectories.push_back(Dir);
839 } while (true);
Douglas Gregora30cfe52011-11-11 19:10:28 +0000840}
841
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000842Module *HeaderSearch::findModuleForHeader(const FileEntry *File) {
Douglas Gregor51f564f2011-12-31 04:05:44 +0000843 if (Module *Mod = ModMap.findModuleForHeader(File))
844 return Mod;
Douglas Gregor65f3b5e2011-11-11 22:18:48 +0000845
Douglas Gregorc69c42e2011-11-17 22:44:56 +0000846 return 0;
Douglas Gregora30cfe52011-11-11 19:10:28 +0000847}
848
Douglas Gregordb1cde72011-11-16 00:09:06 +0000849bool HeaderSearch::loadModuleMapFile(const FileEntry *File) {
850 const DirectoryEntry *Dir = File->getDir();
851
852 llvm::DenseMap<const DirectoryEntry *, bool>::iterator KnownDir
853 = DirectoryHasModuleMap.find(Dir);
854 if (KnownDir != DirectoryHasModuleMap.end())
855 return !KnownDir->second;
856
857 bool Result = ModMap.parseModuleMapFile(File);
Douglas Gregor4813442c2011-12-07 21:25:07 +0000858 if (!Result && llvm::sys::path::filename(File->getName()) == "module.map") {
859 // If the file we loaded was a module.map, look for the corresponding
860 // module_private.map.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000861 SmallString<128> PrivateFilename(Dir->getName());
Douglas Gregor4813442c2011-12-07 21:25:07 +0000862 llvm::sys::path::append(PrivateFilename, "module_private.map");
863 if (const FileEntry *PrivateFile = FileMgr.getFile(PrivateFilename))
864 Result = ModMap.parseModuleMapFile(PrivateFile);
865 }
866
867 DirectoryHasModuleMap[Dir] = !Result;
Douglas Gregordb1cde72011-11-16 00:09:06 +0000868 return Result;
869}
870
Douglas Gregore434ec72012-01-29 17:08:11 +0000871Module *HeaderSearch::loadFrameworkModule(StringRef Name,
872 const DirectoryEntry *Dir,
873 bool IsSystem) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000874 if (Module *Module = ModMap.findModule(Name))
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000875 return Module;
876
877 // Try to load a module map file.
878 switch (loadModuleMapFile(Dir)) {
879 case LMM_InvalidModuleMap:
880 break;
881
882 case LMM_AlreadyLoaded:
883 case LMM_NoDirectory:
884 return 0;
885
886 case LMM_NewlyLoaded:
887 return ModMap.findModule(Name);
888 }
Douglas Gregora8c6fea2012-01-13 22:31:52 +0000889
890 // The top-level framework directory, from which we'll infer a framework
891 // module.
892 const DirectoryEntry *TopFrameworkDir = Dir;
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000893
Douglas Gregora8c6fea2012-01-13 22:31:52 +0000894 // The path from the module we're actually looking for back to the top-level
895 // framework name.
896 llvm::SmallVector<StringRef, 2> SubmodulePath;
897 SubmodulePath.push_back(Name);
898
899 // Walk the directory structure to find any enclosing frameworks.
900 StringRef DirName = Dir->getName();
901 do {
902 // Get the parent directory name.
903 DirName = llvm::sys::path::parent_path(DirName);
904 if (DirName.empty())
905 break;
906
907 // Determine whether this directory exists.
908 Dir = FileMgr.getDirectory(DirName);
909 if (!Dir)
910 break;
911
912 // If this is a framework directory, then we're a subframework of this
913 // framework.
914 if (llvm::sys::path::extension(DirName) == ".framework") {
915 SubmodulePath.push_back(llvm::sys::path::stem(DirName));
916 TopFrameworkDir = Dir;
917 }
918 } while (true);
919
920 // Try to infer a module map from the top-level framework directory.
921 Module *Result = ModMap.inferFrameworkModule(SubmodulePath.back(),
Douglas Gregora1f1fad2012-01-27 19:52:33 +0000922 TopFrameworkDir,
923 IsSystem,
Douglas Gregora8c6fea2012-01-13 22:31:52 +0000924 /*Parent=*/0);
925
926 // Follow the submodule path to find the requested (sub)framework module
927 // within the top-level framework module.
928 SubmodulePath.pop_back();
929 while (!SubmodulePath.empty() && Result) {
930 Result = ModMap.lookupModuleQualified(SubmodulePath.back(), Result);
931 SubmodulePath.pop_back();
932 }
933 return Result;
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000934}
935
Douglas Gregordb1cde72011-11-16 00:09:06 +0000936
Douglas Gregor26697972011-11-12 00:22:19 +0000937HeaderSearch::LoadModuleMapResult
938HeaderSearch::loadModuleMapFile(StringRef DirName) {
Douglas Gregorcf70d782011-11-12 00:05:07 +0000939 if (const DirectoryEntry *Dir = FileMgr.getDirectory(DirName))
940 return loadModuleMapFile(Dir);
941
Douglas Gregor26697972011-11-12 00:22:19 +0000942 return LMM_NoDirectory;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000943}
944
Douglas Gregor26697972011-11-12 00:22:19 +0000945HeaderSearch::LoadModuleMapResult
946HeaderSearch::loadModuleMapFile(const DirectoryEntry *Dir) {
Douglas Gregorcf70d782011-11-12 00:05:07 +0000947 llvm::DenseMap<const DirectoryEntry *, bool>::iterator KnownDir
948 = DirectoryHasModuleMap.find(Dir);
949 if (KnownDir != DirectoryHasModuleMap.end())
Douglas Gregor26697972011-11-12 00:22:19 +0000950 return KnownDir->second? LMM_AlreadyLoaded : LMM_InvalidModuleMap;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000951
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000952 SmallString<128> ModuleMapFileName;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000953 ModuleMapFileName += Dir->getName();
Douglas Gregor587986e2011-12-07 02:23:45 +0000954 unsigned ModuleMapDirNameLen = ModuleMapFileName.size();
Douglas Gregorcf70d782011-11-12 00:05:07 +0000955 llvm::sys::path::append(ModuleMapFileName, "module.map");
956 if (const FileEntry *ModuleMapFile = FileMgr.getFile(ModuleMapFileName)) {
957 // We have found a module map file. Try to parse it.
Douglas Gregor587986e2011-12-07 02:23:45 +0000958 if (ModMap.parseModuleMapFile(ModuleMapFile)) {
959 // No suitable module map.
960 DirectoryHasModuleMap[Dir] = false;
961 return LMM_InvalidModuleMap;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000962 }
Douglas Gregor587986e2011-12-07 02:23:45 +0000963
964 // This directory has a module map.
965 DirectoryHasModuleMap[Dir] = true;
966
967 // Check whether there is a private module map that we need to load as well.
968 ModuleMapFileName.erase(ModuleMapFileName.begin() + ModuleMapDirNameLen,
969 ModuleMapFileName.end());
970 llvm::sys::path::append(ModuleMapFileName, "module_private.map");
971 if (const FileEntry *PrivateModuleMapFile
972 = FileMgr.getFile(ModuleMapFileName)) {
973 if (ModMap.parseModuleMapFile(PrivateModuleMapFile)) {
974 // No suitable module map.
975 DirectoryHasModuleMap[Dir] = false;
976 return LMM_InvalidModuleMap;
977 }
978 }
979
980 return LMM_NewlyLoaded;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000981 }
982
983 // No suitable module map.
984 DirectoryHasModuleMap[Dir] = false;
Douglas Gregor26697972011-11-12 00:22:19 +0000985 return LMM_InvalidModuleMap;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000986}
Douglas Gregora30cfe52011-11-11 19:10:28 +0000987
Douglas Gregorc5b2e582012-01-29 18:15:03 +0000988void HeaderSearch::collectAllModules(llvm::SmallVectorImpl<Module *> &Modules) {
989 Modules.clear();
990
991 // Load module maps for each of the header search directories.
992 for (unsigned Idx = 0, N = SearchDirs.size(); Idx != N; ++Idx) {
993 if (SearchDirs[Idx].isFramework()) {
994 llvm::error_code EC;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000995 SmallString<128> DirNative;
Douglas Gregorc5b2e582012-01-29 18:15:03 +0000996 llvm::sys::path::native(SearchDirs[Idx].getFrameworkDir()->getName(),
997 DirNative);
998
999 // Search each of the ".framework" directories to load them as modules.
1000 bool IsSystem = SearchDirs[Idx].getDirCharacteristic() != SrcMgr::C_User;
1001 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
1002 Dir != DirEnd && !EC; Dir.increment(EC)) {
1003 if (llvm::sys::path::extension(Dir->path()) != ".framework")
1004 continue;
1005
1006 const DirectoryEntry *FrameworkDir = FileMgr.getDirectory(Dir->path());
1007 if (!FrameworkDir)
1008 continue;
1009
1010 // Load this framework module.
1011 loadFrameworkModule(llvm::sys::path::stem(Dir->path()), FrameworkDir,
1012 IsSystem);
1013 }
1014 continue;
1015 }
1016
1017 // FIXME: Deal with header maps.
1018 if (SearchDirs[Idx].isHeaderMap())
1019 continue;
1020
1021 // Try to load a module map file for the search directory.
1022 loadModuleMapFile(SearchDirs[Idx].getDir());
1023
1024 // Try to load module map files for immediate subdirectories of this search
1025 // directory.
1026 llvm::error_code EC;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001027 SmallString<128> DirNative;
Douglas Gregorc5b2e582012-01-29 18:15:03 +00001028 llvm::sys::path::native(SearchDirs[Idx].getDir()->getName(), DirNative);
1029 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
1030 Dir != DirEnd && !EC; Dir.increment(EC)) {
1031 loadModuleMapFile(Dir->path());
1032 }
1033 }
1034
1035 // Populate the list of modules.
1036 for (ModuleMap::module_iterator M = ModMap.module_begin(),
1037 MEnd = ModMap.module_end();
1038 M != MEnd; ++M) {
1039 Modules.push_back(M->getValue());
1040 }
1041}