blob: fe4257a6dd5d390c41aef160e70c81e52958114c [file] [log] [blame]
Chris Lattner59a9ebd2006-10-18 05:34:33 +00001//===--- HeaderSearch.cpp - Resolve Header File Locations ---===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner59a9ebd2006-10-18 05:34:33 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the DirectoryLookup and HeaderSearch interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner59a9ebd2006-10-18 05:34:33 +000014#include "clang/Lex/HeaderSearch.h"
Chris Lattnerc4ba38e2007-12-17 06:36:45 +000015#include "clang/Lex/HeaderMap.h"
Chandler Carruthb0ffe502011-12-09 01:33:57 +000016#include "clang/Lex/Lexer.h"
Douglas Gregor718292f2011-11-11 19:10:28 +000017#include "clang/Basic/Diagnostic.h"
Chris Lattneref6b1362007-10-07 08:58:51 +000018#include "clang/Basic/FileManager.h"
19#include "clang/Basic/IdentifierTable.h"
Michael J. Spencerf6efe582011-01-10 02:34:13 +000020#include "llvm/Support/FileSystem.h"
Michael J. Spencer8aaf4992010-11-29 18:12:39 +000021#include "llvm/Support/Path.h"
Chris Lattner43fd42e2006-10-30 03:40:58 +000022#include "llvm/ADT/SmallString.h"
Ted Kremenekae63d102011-07-27 18:41:18 +000023#include "llvm/Support/Capacity.h"
Chris Lattnerc25d8a72009-03-02 22:20:04 +000024#include <cstdio>
Chris Lattner59a9ebd2006-10-18 05:34:33 +000025using namespace clang;
26
Douglas Gregor99734e72009-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 Gregor09b69892011-02-10 17:09:37 +000039ExternalHeaderFileInfoSource::~ExternalHeaderFileInfoSource() {}
40
Douglas Gregor1fb5c3a2011-12-31 04:05:44 +000041HeaderSearch::HeaderSearch(FileManager &FM, DiagnosticsEngine &Diags,
Douglas Gregor89929282012-01-30 06:01:29 +000042 const LangOptions &LangOpts,
43 const TargetInfo *Target)
Douglas Gregor718292f2011-11-11 19:10:28 +000044 : FileMgr(FM), Diags(Diags), FrameworkMap(64),
Douglas Gregor89929282012-01-30 06:01:29 +000045 ModMap(FileMgr, *Diags.getClient(), LangOpts, Target)
Douglas Gregor197ac202011-11-11 00:35:06 +000046{
Nico Weber3b1d1212011-05-24 04:31:14 +000047 AngledDirIdx = 0;
Chris Lattner641a0be2006-10-20 06:23:14 +000048 SystemDirIdx = 0;
49 NoCurDirSearch = false;
Mike Stump11289f42009-09-09 15:08:12 +000050
Douglas Gregor99734e72009-04-25 23:30:02 +000051 ExternalLookup = 0;
Douglas Gregor09b69892011-02-10 17:09:37 +000052 ExternalSource = 0;
Chris Lattner641a0be2006-10-20 06:23:14 +000053 NumIncluded = 0;
54 NumMultiIncludeFileOptzn = 0;
55 NumFrameworkLookups = NumSubFrameworkLookups = 0;
56}
57
Chris Lattnerc4ba38e2007-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 Stump11289f42009-09-09 15:08:12 +000063
Chris Lattner59a9ebd2006-10-18 05:34:33 +000064void HeaderSearch::PrintStats() {
Chris Lattner23b7eb62007-06-15 23:05:46 +000065 fprintf(stderr, "\n*** HeaderSearch Stats:\n");
66 fprintf(stderr, "%d files tracked.\n", (int)FileInfo.size());
Chris Lattner59a9ebd2006-10-18 05:34:33 +000067 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 }
Chris Lattner23b7eb62007-06-15 23:05:46 +000074 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 Stump11289f42009-09-09 15:08:12 +000077
Chris Lattner23b7eb62007-06-15 23:05:46 +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 Stump11289f42009-09-09 15:08:12 +000081
Chris Lattner23b7eb62007-06-15 23:05:46 +000082 fprintf(stderr, "%d framework lookups.\n", NumFrameworkLookups);
83 fprintf(stderr, "%d subframework lookups.\n", NumSubFrameworkLookups);
Chris Lattner59a9ebd2006-10-18 05:34:33 +000084}
85
Chris Lattnerc4ba38e2007-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 Lattner4ffe46c2007-12-17 18:34:53 +000088const HeaderMap *HeaderSearch::CreateHeaderMap(const FileEntry *FE) {
Chris Lattnerc4ba38e2007-12-17 06:36:45 +000089 // We expect the number of headermaps to be small, and almost always empty.
Chris Lattnerf62f7582007-12-17 07:52:39 +000090 // If it ever grows, use of a linear search should be re-evaluated.
Chris Lattnerc4ba38e2007-12-17 06:36:45 +000091 if (!HeaderMaps.empty()) {
92 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
Chris Lattnerf62f7582007-12-17 07:52:39 +000093 // Pointer equality comparison of FileEntries works because they are
94 // already uniqued by inode.
Mike Stump11289f42009-09-09 15:08:12 +000095 if (HeaderMaps[i].first == FE)
Chris Lattnerc4ba38e2007-12-17 06:36:45 +000096 return HeaderMaps[i].second;
97 }
Mike Stump11289f42009-09-09 15:08:12 +000098
Chris Lattner5159f612010-11-23 08:35:12 +000099 if (const HeaderMap *HM = HeaderMap::Create(FE, FileMgr)) {
Chris Lattnerc4ba38e2007-12-17 06:36:45 +0000100 HeaderMaps.push_back(std::make_pair(FE, HM));
101 return HM;
102 }
Mike Stump11289f42009-09-09 15:08:12 +0000103
Chris Lattnerc4ba38e2007-12-17 06:36:45 +0000104 return 0;
105}
106
Douglas Gregor279a6c32012-01-29 17:08:11 +0000107std::string HeaderSearch::getModuleFileName(Module *Module) {
Douglas Gregor1e44e022011-09-12 20:41:59 +0000108 // If we don't have a module cache path, we can't do anything.
Douglas Gregor279a6c32012-01-29 17:08:11 +0000109 if (ModuleCachePath.empty())
110 return std::string();
111
112
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000113 SmallString<256> Result(ModuleCachePath);
Douglas Gregor279a6c32012-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 Gregor1735f4e2011-09-13 23:15:45 +0000122
Douglas Gregor279a6c32012-01-29 17:08:11 +0000123
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000124 SmallString<256> Result(ModuleCachePath);
Douglas Gregor279a6c32012-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 Gregoraf28ec82011-11-12 00:05:07 +0000130 // Look in the module map to determine if there is a module by this name.
Douglas Gregor279a6c32012-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 Noblesmith2c1dd272012-02-05 02:13:05 +0000140 SmallString<128> FrameworkDirName;
Douglas Gregor279a6c32012-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 Gregoraf28ec82011-11-12 00:05:07 +0000148 if (Module)
149 break;
150 }
Douglas Gregor279a6c32012-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 Noblesmith2c1dd272012-02-05 02:13:05 +0000170 SmallString<128> NestedModuleMapDirName;
Douglas Gregor279a6c32012-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 Gregoraf28ec82011-11-12 00:05:07 +0000178 }
179 }
Douglas Gregor279a6c32012-01-29 17:08:11 +0000180
181 return Module;
Douglas Gregor1e44e022011-09-12 20:41:59 +0000182}
183
Chris Lattnerf62f7582007-12-17 07:52:39 +0000184//===----------------------------------------------------------------------===//
185// File lookup within a DirectoryLookup scope
186//===----------------------------------------------------------------------===//
187
Chris Lattner8d720d02007-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 Lattnerf62f7582007-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 Carruth3cc331a2011-03-16 18:34:36 +0000202const FileEntry *DirectoryLookup::LookupFile(
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000203 StringRef Filename,
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000204 HeaderSearch &HS,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000205 SmallVectorImpl<char> *SearchPath,
Douglas Gregor97eec242011-09-15 22:00:41 +0000206 SmallVectorImpl<char> *RelativePath,
Douglas Gregorde3ef502011-11-30 23:21:26 +0000207 Module **SuggestedModule) const {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000208 SmallString<1024> TmpDir;
Chris Lattner712e3872007-12-17 08:13:48 +0000209 if (isNormalDir()) {
210 // Concatenate the requested file onto the directory.
Eli Friedmanf7ca26a2011-07-08 20:17:28 +0000211 TmpDir = getDir()->getName();
212 llvm::sys::path::append(TmpDir, Filename);
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000213 if (SearchPath != NULL) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000214 StringRef SearchPathRef(getDir()->getName());
Manuel Klimek0c69fd22011-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 Gregor718292f2011-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 Gregor2537a362011-12-08 17:01:29 +0000233 *SuggestedModule = HS.findModuleForHeader(File);
Douglas Gregor718292f2011-11-11 19:10:28 +0000234 return File;
235 }
236
Argyrios Kyrtzidisd6278e32011-03-16 19:17:25 +0000237 return HS.getFileMgr().getFile(TmpDir.str(), /*openFile=*/true);
Chris Lattner712e3872007-12-17 08:13:48 +0000238 }
Mike Stump11289f42009-09-09 15:08:12 +0000239
Chris Lattner712e3872007-12-17 08:13:48 +0000240 if (isFramework())
Douglas Gregor97eec242011-09-15 22:00:41 +0000241 return DoFrameworkLookup(Filename, HS, SearchPath, RelativePath,
Douglas Gregor2537a362011-12-08 17:01:29 +0000242 SuggestedModule);
Mike Stump11289f42009-09-09 15:08:12 +0000243
Chris Lattner44bd21b2007-12-17 08:17:39 +0000244 assert(isHeaderMap() && "Unknown directory lookup");
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000245 const FileEntry * const Result = getHeaderMap()->LookupFile(
246 Filename, HS.getFileMgr());
247 if (Result) {
248 if (SearchPath != NULL) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000249 StringRef SearchPathRef(getName());
Manuel Klimek0c69fd22011-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 Lattnerf62f7582007-12-17 07:52:39 +0000259}
260
261
Chris Lattner712e3872007-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 Carruth3cc331a2011-03-16 18:34:36 +0000264const FileEntry *DirectoryLookup::DoFrameworkLookup(
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000265 StringRef Filename,
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000266 HeaderSearch &HS,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000267 SmallVectorImpl<char> *SearchPath,
Douglas Gregor97eec242011-09-15 22:00:41 +0000268 SmallVectorImpl<char> *RelativePath,
Douglas Gregorde3ef502011-11-30 23:21:26 +0000269 Module **SuggestedModule) const
Douglas Gregor97eec242011-09-15 22:00:41 +0000270{
Chris Lattner712e3872007-12-17 08:13:48 +0000271 FileManager &FileMgr = HS.getFileMgr();
Mike Stump11289f42009-09-09 15:08:12 +0000272
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000273 // Framework names must have a '/' in the filename.
Chris Lattnerd081f8c2010-01-10 01:35:12 +0000274 size_t SlashPos = Filename.find('/');
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000275 if (SlashPos == StringRef::npos) return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000276
Chris Lattner712e3872007-12-17 08:13:48 +0000277 // Find out if this is the home for the specified framework, by checking
Daniel Dunbar17138612012-04-05 17:09:40 +0000278 // HeaderSearch. Possible answers are yes/no and unknown.
279 HeaderSearch::FrameworkCacheEntry &CacheEntry =
Chris Lattnerd081f8c2010-01-10 01:35:12 +0000280 HS.LookupFrameworkCache(Filename.substr(0, SlashPos));
Mike Stump11289f42009-09-09 15:08:12 +0000281
Chris Lattner712e3872007-12-17 08:13:48 +0000282 // If it is known and in some other directory, fail.
Daniel Dunbar17138612012-04-05 17:09:40 +0000283 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDir())
Chris Lattner5ed76da2006-10-22 07:24:13 +0000284 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000285
Chris Lattner712e3872007-12-17 08:13:48 +0000286 // Otherwise, construct the path to this framework dir.
Mike Stump11289f42009-09-09 15:08:12 +0000287
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000288 // FrameworkName = "/System/Library/Frameworks/"
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000289 SmallString<1024> FrameworkName;
Chris Lattner712e3872007-12-17 08:13:48 +0000290 FrameworkName += getFrameworkDir()->getName();
Chris Lattnerb201d9b2006-10-30 05:09:49 +0000291 if (FrameworkName.empty() || FrameworkName.back() != '/')
292 FrameworkName.push_back('/');
Mike Stump11289f42009-09-09 15:08:12 +0000293
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000294 // FrameworkName = "/System/Library/Frameworks/Cocoa"
Douglas Gregor56c64012011-11-17 01:41:17 +0000295 StringRef ModuleName(Filename.begin(), SlashPos);
296 FrameworkName += ModuleName;
Mike Stump11289f42009-09-09 15:08:12 +0000297
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000298 // FrameworkName = "/System/Library/Frameworks/Cocoa.framework/"
299 FrameworkName += ".framework/";
Mike Stump11289f42009-09-09 15:08:12 +0000300
Daniel Dunbar17138612012-04-05 17:09:40 +0000301 // If the cache entry was unresolved, populate it now.
302 if (CacheEntry.Directory == 0) {
Chris Lattner712e3872007-12-17 08:13:48 +0000303 HS.IncrementFrameworkLookupCount();
Mike Stump11289f42009-09-09 15:08:12 +0000304
Chris Lattner5ed76da2006-10-22 07:24:13 +0000305 // If the framework dir doesn't exist, we fail.
Chris Lattner712e3872007-12-17 08:13:48 +0000306 // FIXME: It's probably more efficient to query this with FileMgr.getDir.
Daniel Dunbar328001a2012-04-05 17:09:11 +0000307 if (!llvm::sys::fs::exists(FrameworkName.str()))
Chris Lattner5ed76da2006-10-22 07:24:13 +0000308 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000309
Chris Lattner5ed76da2006-10-22 07:24:13 +0000310 // Otherwise, if it does, remember that this is the right direntry for this
311 // framework.
Daniel Dunbar17138612012-04-05 17:09:40 +0000312 CacheEntry.Directory = getFrameworkDir();
Chris Lattner5ed76da2006-10-22 07:24:13 +0000313 }
Mike Stump11289f42009-09-09 15:08:12 +0000314
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000315 if (RelativePath != NULL) {
316 RelativePath->clear();
317 RelativePath->append(Filename.begin()+SlashPos+1, Filename.end());
318 }
319
Douglas Gregor56c64012011-11-17 01:41:17 +0000320 // If we're allowed to look for modules, try to load or create the module
321 // corresponding to this framework.
Douglas Gregorde3ef502011-11-30 23:21:26 +0000322 Module *Module = 0;
Douglas Gregor56c64012011-11-17 01:41:17 +0000323 if (SuggestedModule) {
324 if (const DirectoryEntry *FrameworkDir
Douglas Gregora686e1b2012-01-27 19:52:33 +0000325 = FileMgr.getDirectory(FrameworkName)) {
326 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User;
Douglas Gregor279a6c32012-01-29 17:08:11 +0000327 Module = HS.loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
Douglas Gregora686e1b2012-01-27 19:52:33 +0000328 }
Douglas Gregor56c64012011-11-17 01:41:17 +0000329 }
330
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000331 // Check "/System/Library/Frameworks/Cocoa.framework/Headers/file.h"
Chris Lattnerb201d9b2006-10-30 05:09:49 +0000332 unsigned OrigSize = FrameworkName.size();
Mike Stump11289f42009-09-09 15:08:12 +0000333
Chris Lattnerb201d9b2006-10-30 05:09:49 +0000334 FrameworkName += "Headers/";
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000335
336 if (SearchPath != NULL) {
337 SearchPath->clear();
338 // Without trailing '/'.
339 SearchPath->append(FrameworkName.begin(), FrameworkName.end()-1);
340 }
341
Douglas Gregor56c64012011-11-17 01:41:17 +0000342 // Determine whether this is the module we're building or not.
Douglas Gregor356f3d42011-12-06 17:31:28 +0000343 bool AutomaticImport = Module;
Chris Lattnerd081f8c2010-01-10 01:35:12 +0000344 FrameworkName.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidisd6278e32011-03-16 19:17:25 +0000345 if (const FileEntry *FE = FileMgr.getFile(FrameworkName.str(),
Douglas Gregor97eec242011-09-15 22:00:41 +0000346 /*openFile=*/!AutomaticImport)) {
347 if (AutomaticImport)
Douglas Gregor356f3d42011-12-06 17:31:28 +0000348 *SuggestedModule = HS.findModuleForHeader(FE);
Chris Lattner577377e2006-10-20 04:55:45 +0000349 return FE;
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000350 }
Mike Stump11289f42009-09-09 15:08:12 +0000351
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000352 // Check "/System/Library/Frameworks/Cocoa.framework/PrivateHeaders/file.h"
Chris Lattnerb201d9b2006-10-30 05:09:49 +0000353 const char *Private = "Private";
Mike Stump11289f42009-09-09 15:08:12 +0000354 FrameworkName.insert(FrameworkName.begin()+OrigSize, Private,
Chris Lattnerb201d9b2006-10-30 05:09:49 +0000355 Private+strlen(Private));
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000356 if (SearchPath != NULL)
357 SearchPath->insert(SearchPath->begin()+OrigSize, Private,
358 Private+strlen(Private));
359
Douglas Gregor97eec242011-09-15 22:00:41 +0000360 const FileEntry *FE = FileMgr.getFile(FrameworkName.str(),
361 /*openFile=*/!AutomaticImport);
362 if (FE && AutomaticImport)
Douglas Gregor356f3d42011-12-06 17:31:28 +0000363 *SuggestedModule = HS.findModuleForHeader(FE);
Douglas Gregor97eec242011-09-15 22:00:41 +0000364 return FE;
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000365}
366
Douglas Gregor89929282012-01-30 06:01:29 +0000367void HeaderSearch::setTarget(const TargetInfo &Target) {
368 ModMap.setTarget(Target);
369}
370
Chris Lattnerf62f7582007-12-17 07:52:39 +0000371
Chris Lattner712e3872007-12-17 08:13:48 +0000372//===----------------------------------------------------------------------===//
373// Header File Location.
374//===----------------------------------------------------------------------===//
375
376
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000377/// LookupFile - Given a "foo" or <foo> reference, look up the indicated file,
378/// return null on failure. isAngled indicates whether the file reference is
Douglas Gregor618e64a2010-08-08 07:49:23 +0000379/// for system #include's or not (i.e. using <> instead of ""). CurFileEnt, if
380/// non-null, indicates where the #including file is, in case a relative search
381/// is needed.
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000382const FileEntry *HeaderSearch::LookupFile(
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000383 StringRef Filename,
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000384 bool isAngled,
385 const DirectoryLookup *FromDir,
386 const DirectoryLookup *&CurDir,
387 const FileEntry *CurFileEnt,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000388 SmallVectorImpl<char> *SearchPath,
Douglas Gregor97eec242011-09-15 22:00:41 +0000389 SmallVectorImpl<char> *RelativePath,
Douglas Gregorde3ef502011-11-30 23:21:26 +0000390 Module **SuggestedModule,
Douglas Gregor8ad31c22011-11-20 17:46:46 +0000391 bool SkipCache)
Douglas Gregor97eec242011-09-15 22:00:41 +0000392{
393 if (SuggestedModule)
Douglas Gregorc04f6442011-11-17 22:44:56 +0000394 *SuggestedModule = 0;
Douglas Gregor97eec242011-09-15 22:00:41 +0000395
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000396 // If 'Filename' is absolute, check to see if it exists and no searching.
Michael J. Spencerf28df4c2010-12-17 21:22:22 +0000397 if (llvm::sys::path::is_absolute(Filename)) {
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000398 CurDir = 0;
399
400 // If this was an #include_next "/absolute/file", fail.
401 if (FromDir) return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000402
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000403 if (SearchPath != NULL)
404 SearchPath->clear();
405 if (RelativePath != NULL) {
406 RelativePath->clear();
407 RelativePath->append(Filename.begin(), Filename.end());
408 }
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000409 // Otherwise, just return the file.
Argyrios Kyrtzidisd6278e32011-03-16 19:17:25 +0000410 return FileMgr.getFile(Filename, /*openFile=*/true);
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000411 }
Mike Stump11289f42009-09-09 15:08:12 +0000412
Douglas Gregor9f93e382011-07-28 04:45:53 +0000413 // Unless disabled, check to see if the file is in the #includer's
Douglas Gregor618e64a2010-08-08 07:49:23 +0000414 // directory. This has to be based on CurFileEnt, not CurDir, because
415 // CurFileEnt could be a #include of a subdirectory (#include "foo/bar.h") and
Chris Lattnerf62f7582007-12-17 07:52:39 +0000416 // a subsequent include of "baz.h" should resolve to "whatever/foo/baz.h".
417 // This search is not done for <> headers.
Douglas Gregor618e64a2010-08-08 07:49:23 +0000418 if (CurFileEnt && !isAngled && !NoCurDirSearch) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000419 SmallString<1024> TmpDir;
Douglas Gregor618e64a2010-08-08 07:49:23 +0000420 // Concatenate the requested file onto the directory.
421 // FIXME: Portability. Filename concatenation should be in sys::Path.
422 TmpDir += CurFileEnt->getDir()->getName();
423 TmpDir.push_back('/');
424 TmpDir.append(Filename.begin(), Filename.end());
Argyrios Kyrtzidisd6278e32011-03-16 19:17:25 +0000425 if (const FileEntry *FE = FileMgr.getFile(TmpDir.str(),/*openFile=*/true)) {
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000426 // Leave CurDir unset.
Douglas Gregor618e64a2010-08-08 07:49:23 +0000427 // This file is a system header or C++ unfriendly if the old file is.
428 //
429 // Note that the temporary 'DirInfo' is required here, as either call to
430 // getFileInfo could resize the vector and we don't want to rely on order
431 // of evaluation.
432 unsigned DirInfo = getFileInfo(CurFileEnt).DirInfo;
Chris Lattnerf5c619f2008-02-25 21:38:21 +0000433 getFileInfo(FE).DirInfo = DirInfo;
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000434 if (SearchPath != NULL) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000435 StringRef SearchPathRef(CurFileEnt->getDir()->getName());
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000436 SearchPath->clear();
437 SearchPath->append(SearchPathRef.begin(), SearchPathRef.end());
438 }
439 if (RelativePath != NULL) {
440 RelativePath->clear();
441 RelativePath->append(Filename.begin(), Filename.end());
442 }
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000443 return FE;
444 }
445 }
Mike Stump11289f42009-09-09 15:08:12 +0000446
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000447 CurDir = 0;
448
449 // If this is a system #include, ignore the user #include locs.
Nico Weber3b1d1212011-05-24 04:31:14 +0000450 unsigned i = isAngled ? AngledDirIdx : 0;
Mike Stump11289f42009-09-09 15:08:12 +0000451
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000452 // If this is a #include_next request, start searching after the directory the
453 // file was found in.
454 if (FromDir)
455 i = FromDir-&SearchDirs[0];
Mike Stump11289f42009-09-09 15:08:12 +0000456
Chris Lattnerd4275422007-07-22 07:28:00 +0000457 // Cache all of the lookups performed by this method. Many headers are
458 // multiply included, and the "pragma once" optimization prevents them from
459 // being relex/pp'd, but they would still have to search through a
460 // (potentially huge) series of SearchDirs to find it.
461 std::pair<unsigned, unsigned> &CacheLookup =
Chris Lattnerd081f8c2010-01-10 01:35:12 +0000462 LookupFileCache.GetOrCreateValue(Filename).getValue();
Chris Lattnerd4275422007-07-22 07:28:00 +0000463
464 // If the entry has been previously looked up, the first value will be
465 // non-zero. If the value is equal to i (the start point of our search), then
466 // this is a matching hit.
Douglas Gregor8ad31c22011-11-20 17:46:46 +0000467 if (!SkipCache && CacheLookup.first == i+1) {
Chris Lattnerd4275422007-07-22 07:28:00 +0000468 // Skip querying potentially lots of directories for this lookup.
469 i = CacheLookup.second;
470 } else {
471 // Otherwise, this is the first query, or the previous query didn't match
472 // our search start. We will fill in our found location below, so prime the
473 // start point value.
474 CacheLookup.first = i+1;
475 }
Mike Stump11289f42009-09-09 15:08:12 +0000476
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000477 // Check each directory in sequence to see if it contains this file.
478 for (; i != SearchDirs.size(); ++i) {
Mike Stump11289f42009-09-09 15:08:12 +0000479 const FileEntry *FE =
Douglas Gregor97eec242011-09-15 22:00:41 +0000480 SearchDirs[i].LookupFile(Filename, *this, SearchPath, RelativePath,
Douglas Gregor2537a362011-12-08 17:01:29 +0000481 SuggestedModule);
Chris Lattner712e3872007-12-17 08:13:48 +0000482 if (!FE) continue;
Mike Stump11289f42009-09-09 15:08:12 +0000483
Chris Lattner712e3872007-12-17 08:13:48 +0000484 CurDir = &SearchDirs[i];
Mike Stump11289f42009-09-09 15:08:12 +0000485
Chris Lattner712e3872007-12-17 08:13:48 +0000486 // This file is a system header or C++ unfriendly if the dir is.
Douglas Gregor9f93e382011-07-28 04:45:53 +0000487 HeaderFileInfo &HFI = getFileInfo(FE);
488 HFI.DirInfo = CurDir->getDirCharacteristic();
Mike Stump11289f42009-09-09 15:08:12 +0000489
Douglas Gregor9f93e382011-07-28 04:45:53 +0000490 // If this file is found in a header map and uses the framework style of
491 // includes, then this header is part of a framework we're building.
492 if (CurDir->isIndexHeaderMap()) {
493 size_t SlashPos = Filename.find('/');
494 if (SlashPos != StringRef::npos) {
495 HFI.IndexHeaderMapHeader = 1;
496 HFI.Framework = getUniqueFrameworkName(StringRef(Filename.begin(),
497 SlashPos));
498 }
499 }
500
Chris Lattner712e3872007-12-17 08:13:48 +0000501 // Remember this location for the next lookup we do.
502 CacheLookup.second = i;
503 return FE;
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000504 }
Mike Stump11289f42009-09-09 15:08:12 +0000505
Douglas Gregord8575e12011-07-30 06:28:34 +0000506 // If we are including a file with a quoted include "foo.h" from inside
507 // a header in a framework that is currently being built, and we couldn't
508 // resolve "foo.h" any other way, change the include to <Foo/foo.h>, where
509 // "Foo" is the name of the framework in which the including header was found.
510 if (CurFileEnt && !isAngled && Filename.find('/') == StringRef::npos) {
511 HeaderFileInfo &IncludingHFI = getFileInfo(CurFileEnt);
512 if (IncludingHFI.IndexHeaderMapHeader) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000513 SmallString<128> ScratchFilename;
Douglas Gregord8575e12011-07-30 06:28:34 +0000514 ScratchFilename += IncludingHFI.Framework;
515 ScratchFilename += '/';
516 ScratchFilename += Filename;
517
518 const FileEntry *Result = LookupFile(ScratchFilename, /*isAngled=*/true,
519 FromDir, CurDir, CurFileEnt,
Douglas Gregor97eec242011-09-15 22:00:41 +0000520 SearchPath, RelativePath,
521 SuggestedModule);
Douglas Gregord8575e12011-07-30 06:28:34 +0000522 std::pair<unsigned, unsigned> &CacheLookup
523 = LookupFileCache.GetOrCreateValue(Filename).getValue();
524 CacheLookup.second
525 = LookupFileCache.GetOrCreateValue(ScratchFilename).getValue().second;
526 return Result;
527 }
528 }
529
Chris Lattnerd4275422007-07-22 07:28:00 +0000530 // Otherwise, didn't find it. Remember we didn't find this.
531 CacheLookup.second = SearchDirs.size();
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000532 return 0;
533}
534
Chris Lattner63dd32b2006-10-20 04:42:40 +0000535/// LookupSubframeworkHeader - Look up a subframework for the specified
536/// #include file. For example, if #include'ing <HIToolbox/HIToolbox.h> from
537/// within ".../Carbon.framework/Headers/Carbon.h", check to see if HIToolbox
538/// is a subframework within Carbon.framework. If so, return the FileEntry
539/// for the designated file, otherwise return null.
540const FileEntry *HeaderSearch::
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000541LookupSubframeworkHeader(StringRef Filename,
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000542 const FileEntry *ContextFileEnt,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000543 SmallVectorImpl<char> *SearchPath,
544 SmallVectorImpl<char> *RelativePath) {
Chris Lattner12261882008-02-01 05:34:02 +0000545 assert(ContextFileEnt && "No context file?");
Mike Stump11289f42009-09-09 15:08:12 +0000546
Chris Lattner63dd32b2006-10-20 04:42:40 +0000547 // Framework names must have a '/' in the filename. Find it.
Douglas Gregor5ca04bd2011-12-09 16:48:01 +0000548 // FIXME: Should we permit '\' on Windows?
Chris Lattnerd081f8c2010-01-10 01:35:12 +0000549 size_t SlashPos = Filename.find('/');
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000550 if (SlashPos == StringRef::npos) return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000551
Chris Lattner63dd32b2006-10-20 04:42:40 +0000552 // Look up the base framework name of the ContextFileEnt.
Chris Lattner48043482006-10-27 05:12:36 +0000553 const char *ContextName = ContextFileEnt->getName();
Mike Stump11289f42009-09-09 15:08:12 +0000554
Chris Lattner63dd32b2006-10-20 04:42:40 +0000555 // If the context info wasn't a framework, couldn't be a subframework.
Douglas Gregor5ca04bd2011-12-09 16:48:01 +0000556 const unsigned DotFrameworkLen = 10;
557 const char *FrameworkPos = strstr(ContextName, ".framework");
558 if (FrameworkPos == 0 ||
559 (FrameworkPos[DotFrameworkLen] != '/' &&
560 FrameworkPos[DotFrameworkLen] != '\\'))
Chris Lattner63dd32b2006-10-20 04:42:40 +0000561 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000562
Daniel Dunbar17138612012-04-05 17:09:40 +0000563 SmallString<1024> FrameworkName(ContextName, FrameworkPos+DotFrameworkLen+1);
Chris Lattner5ed76da2006-10-22 07:24:13 +0000564
Chris Lattner63dd32b2006-10-20 04:42:40 +0000565 // Append Frameworks/HIToolbox.framework/
566 FrameworkName += "Frameworks/";
Chris Lattnerd081f8c2010-01-10 01:35:12 +0000567 FrameworkName.append(Filename.begin(), Filename.begin()+SlashPos);
Chris Lattner63dd32b2006-10-20 04:42:40 +0000568 FrameworkName += ".framework/";
Chris Lattner577377e2006-10-20 04:55:45 +0000569
Daniel Dunbar17138612012-04-05 17:09:40 +0000570 llvm::StringMapEntry<FrameworkCacheEntry> &CacheLookup =
Chris Lattner8afa6de2010-11-21 09:55:08 +0000571 FrameworkMap.GetOrCreateValue(Filename.substr(0, SlashPos));
Mike Stump11289f42009-09-09 15:08:12 +0000572
Chris Lattner5ed76da2006-10-22 07:24:13 +0000573 // Some other location?
Daniel Dunbar17138612012-04-05 17:09:40 +0000574 if (CacheLookup.getValue().Directory &&
Chris Lattner34d1f5a2007-02-08 19:08:49 +0000575 CacheLookup.getKeyLength() == FrameworkName.size() &&
576 memcmp(CacheLookup.getKeyData(), &FrameworkName[0],
577 CacheLookup.getKeyLength()) != 0)
Chris Lattner5ed76da2006-10-22 07:24:13 +0000578 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000579
Chris Lattner5ed76da2006-10-22 07:24:13 +0000580 // Cache subframework.
Daniel Dunbar17138612012-04-05 17:09:40 +0000581 if (CacheLookup.getValue().Directory == 0) {
Chris Lattner5ed76da2006-10-22 07:24:13 +0000582 ++NumSubFrameworkLookups;
Mike Stump11289f42009-09-09 15:08:12 +0000583
Chris Lattner5ed76da2006-10-22 07:24:13 +0000584 // If the framework dir doesn't exist, we fail.
Chris Lattner5159f612010-11-23 08:35:12 +0000585 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
Chris Lattner5ed76da2006-10-22 07:24:13 +0000586 if (Dir == 0) return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000587
Chris Lattner5ed76da2006-10-22 07:24:13 +0000588 // Otherwise, if it does, remember that this is the right direntry for this
589 // framework.
Daniel Dunbar17138612012-04-05 17:09:40 +0000590 CacheLookup.getValue().Directory = Dir;
Chris Lattner5ed76da2006-10-22 07:24:13 +0000591 }
Mike Stump11289f42009-09-09 15:08:12 +0000592
Chris Lattner577377e2006-10-20 04:55:45 +0000593 const FileEntry *FE = 0;
594
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000595 if (RelativePath != NULL) {
596 RelativePath->clear();
597 RelativePath->append(Filename.begin()+SlashPos+1, Filename.end());
598 }
599
Chris Lattner63dd32b2006-10-20 04:42:40 +0000600 // Check ".../Frameworks/HIToolbox.framework/Headers/HIToolbox.h"
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000601 SmallString<1024> HeadersFilename(FrameworkName);
Chris Lattner43fd42e2006-10-30 03:40:58 +0000602 HeadersFilename += "Headers/";
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000603 if (SearchPath != NULL) {
604 SearchPath->clear();
605 // Without trailing '/'.
606 SearchPath->append(HeadersFilename.begin(), HeadersFilename.end()-1);
607 }
608
Chris Lattnerd081f8c2010-01-10 01:35:12 +0000609 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidisd6278e32011-03-16 19:17:25 +0000610 if (!(FE = FileMgr.getFile(HeadersFilename.str(), /*openFile=*/true))) {
Mike Stump11289f42009-09-09 15:08:12 +0000611
Chris Lattner63dd32b2006-10-20 04:42:40 +0000612 // Check ".../Frameworks/HIToolbox.framework/PrivateHeaders/HIToolbox.h"
Chris Lattner43fd42e2006-10-30 03:40:58 +0000613 HeadersFilename = FrameworkName;
614 HeadersFilename += "PrivateHeaders/";
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000615 if (SearchPath != NULL) {
616 SearchPath->clear();
617 // Without trailing '/'.
618 SearchPath->append(HeadersFilename.begin(), HeadersFilename.end()-1);
619 }
620
Chris Lattnerd081f8c2010-01-10 01:35:12 +0000621 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidisd6278e32011-03-16 19:17:25 +0000622 if (!(FE = FileMgr.getFile(HeadersFilename.str(), /*openFile=*/true)))
Chris Lattner63dd32b2006-10-20 04:42:40 +0000623 return 0;
Chris Lattner63dd32b2006-10-20 04:42:40 +0000624 }
Mike Stump11289f42009-09-09 15:08:12 +0000625
Chris Lattner577377e2006-10-20 04:55:45 +0000626 // This file is a system header or C++ unfriendly if the old file is.
Ted Kremenek72be0682008-02-24 03:55:14 +0000627 //
Chris Lattnerf5c619f2008-02-25 21:38:21 +0000628 // Note that the temporary 'DirInfo' is required here, as either call to
629 // getFileInfo could resize the vector and we don't want to rely on order
630 // of evaluation.
631 unsigned DirInfo = getFileInfo(ContextFileEnt).DirInfo;
632 getFileInfo(FE).DirInfo = DirInfo;
Chris Lattner577377e2006-10-20 04:55:45 +0000633 return FE;
Chris Lattner63dd32b2006-10-20 04:42:40 +0000634}
635
Chandler Carruthb0ffe502011-12-09 01:33:57 +0000636/// \brief Helper static function to normalize a path for injection into
637/// a synthetic header.
638/*static*/ std::string
639HeaderSearch::NormalizeDashIncludePath(StringRef File, FileManager &FileMgr) {
640 // Implicit include paths should be resolved relative to the current
641 // working directory first, and then use the regular header search
642 // mechanism. The proper way to handle this is to have the
643 // predefines buffer located at the current working directory, but
644 // it has no file entry. For now, workaround this by using an
645 // absolute path if we find the file here, and otherwise letting
646 // header search handle it.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000647 SmallString<128> Path(File);
Chandler Carruthb0ffe502011-12-09 01:33:57 +0000648 llvm::sys::fs::make_absolute(Path);
649 bool exists;
650 if (llvm::sys::fs::exists(Path.str(), exists) || !exists)
651 Path = File;
652 else if (exists)
653 FileMgr.getFile(File);
654
655 return Lexer::Stringify(Path.str());
656}
657
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000658//===----------------------------------------------------------------------===//
659// File Info Management.
660//===----------------------------------------------------------------------===//
661
Douglas Gregor5d1bee22011-09-17 05:35:18 +0000662/// \brief Merge the header file info provided by \p OtherHFI into the current
663/// header file info (\p HFI)
664static void mergeHeaderFileInfo(HeaderFileInfo &HFI,
665 const HeaderFileInfo &OtherHFI) {
666 HFI.isImport |= OtherHFI.isImport;
667 HFI.isPragmaOnce |= OtherHFI.isPragmaOnce;
668 HFI.NumIncludes += OtherHFI.NumIncludes;
669
670 if (!HFI.ControllingMacro && !HFI.ControllingMacroID) {
671 HFI.ControllingMacro = OtherHFI.ControllingMacro;
672 HFI.ControllingMacroID = OtherHFI.ControllingMacroID;
673 }
674
675 if (OtherHFI.External) {
676 HFI.DirInfo = OtherHFI.DirInfo;
677 HFI.External = OtherHFI.External;
678 HFI.IndexHeaderMapHeader = OtherHFI.IndexHeaderMapHeader;
679 }
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000680
Douglas Gregor5d1bee22011-09-17 05:35:18 +0000681 if (HFI.Framework.empty())
682 HFI.Framework = OtherHFI.Framework;
683
684 HFI.Resolved = true;
685}
686
Steve Naroff3fa455a2009-04-24 20:03:17 +0000687/// getFileInfo - Return the HeaderFileInfo structure for the specified
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000688/// FileEntry.
Steve Naroff3fa455a2009-04-24 20:03:17 +0000689HeaderFileInfo &HeaderSearch::getFileInfo(const FileEntry *FE) {
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000690 if (FE->getUID() >= FileInfo.size())
691 FileInfo.resize(FE->getUID()+1);
Douglas Gregor09b69892011-02-10 17:09:37 +0000692
693 HeaderFileInfo &HFI = FileInfo[FE->getUID()];
Douglas Gregor5d1bee22011-09-17 05:35:18 +0000694 if (ExternalSource && !HFI.Resolved)
695 mergeHeaderFileInfo(HFI, ExternalSource->GetHeaderFileInfo(FE));
Douglas Gregor09b69892011-02-10 17:09:37 +0000696 return HFI;
Mike Stump11289f42009-09-09 15:08:12 +0000697}
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000698
Douglas Gregor37aa4932011-05-04 00:14:37 +0000699bool HeaderSearch::isFileMultipleIncludeGuarded(const FileEntry *File) {
700 // Check if we've ever seen this file as a header.
701 if (File->getUID() >= FileInfo.size())
702 return false;
703
704 // Resolve header file info from the external source, if needed.
705 HeaderFileInfo &HFI = FileInfo[File->getUID()];
Douglas Gregor5d1bee22011-09-17 05:35:18 +0000706 if (ExternalSource && !HFI.Resolved)
707 mergeHeaderFileInfo(HFI, ExternalSource->GetHeaderFileInfo(File));
Douglas Gregor37aa4932011-05-04 00:14:37 +0000708
709 return HFI.isPragmaOnce || HFI.ControllingMacro || HFI.ControllingMacroID;
710}
711
Steve Naroff3fa455a2009-04-24 20:03:17 +0000712void HeaderSearch::setHeaderFileInfoForUID(HeaderFileInfo HFI, unsigned UID) {
713 if (UID >= FileInfo.size())
714 FileInfo.resize(UID+1);
Douglas Gregor09b69892011-02-10 17:09:37 +0000715 HFI.Resolved = true;
Steve Naroff3fa455a2009-04-24 20:03:17 +0000716 FileInfo[UID] = HFI;
717}
718
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000719/// ShouldEnterIncludeFile - Mark the specified file as a target of of a
720/// #include, #include_next, or #import directive. Return false if #including
721/// the file will have no effect or true if we should include it.
722bool HeaderSearch::ShouldEnterIncludeFile(const FileEntry *File, bool isImport){
723 ++NumIncluded; // Count # of attempted #includes.
724
725 // Get information about this file.
Steve Naroff3fa455a2009-04-24 20:03:17 +0000726 HeaderFileInfo &FileInfo = getFileInfo(File);
Mike Stump11289f42009-09-09 15:08:12 +0000727
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000728 // If this is a #import directive, check that we have not already imported
729 // this header.
730 if (isImport) {
731 // If this has already been imported, don't import it again.
732 FileInfo.isImport = true;
Mike Stump11289f42009-09-09 15:08:12 +0000733
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000734 // Has this already been #import'ed or #include'd?
735 if (FileInfo.NumIncludes) return false;
736 } else {
737 // Otherwise, if this is a #include of a file that was previously #import'd
738 // or if this is the second #include of a #pragma once file, ignore it.
739 if (FileInfo.isImport)
740 return false;
741 }
Mike Stump11289f42009-09-09 15:08:12 +0000742
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000743 // Next, check to see if the file is wrapped with #ifndef guards. If so, and
744 // if the macro that guards it is defined, we know the #include has no effect.
Mike Stump11289f42009-09-09 15:08:12 +0000745 if (const IdentifierInfo *ControllingMacro
Douglas Gregor99734e72009-04-25 23:30:02 +0000746 = FileInfo.getControllingMacro(ExternalLookup))
747 if (ControllingMacro->hasMacroDefinition()) {
748 ++NumMultiIncludeFileOptzn;
749 return false;
750 }
Mike Stump11289f42009-09-09 15:08:12 +0000751
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000752 // Increment the number of times this file has been included.
753 ++FileInfo.NumIncludes;
Mike Stump11289f42009-09-09 15:08:12 +0000754
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000755 return true;
756}
757
Ted Kremenekfbcce6f2011-07-26 23:46:11 +0000758size_t HeaderSearch::getTotalMemory() const {
759 return SearchDirs.capacity()
Ted Kremenekae63d102011-07-27 18:41:18 +0000760 + llvm::capacity_in_bytes(FileInfo)
761 + llvm::capacity_in_bytes(HeaderMaps)
Ted Kremenekfbcce6f2011-07-26 23:46:11 +0000762 + LookupFileCache.getAllocator().getTotalMemory()
763 + FrameworkMap.getAllocator().getTotalMemory();
764}
Douglas Gregor9f93e382011-07-28 04:45:53 +0000765
766StringRef HeaderSearch::getUniqueFrameworkName(StringRef Framework) {
767 return FrameworkNames.GetOrCreateValue(Framework).getKey();
768}
Douglas Gregor718292f2011-11-11 19:10:28 +0000769
770bool HeaderSearch::hasModuleMap(StringRef FileName,
771 const DirectoryEntry *Root) {
772 llvm::SmallVector<const DirectoryEntry *, 2> FixUpDirectories;
773
774 StringRef DirName = FileName;
775 do {
776 // Get the parent directory name.
777 DirName = llvm::sys::path::parent_path(DirName);
778 if (DirName.empty())
779 return false;
780
781 // Determine whether this directory exists.
782 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
783 if (!Dir)
784 return false;
785
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000786 // Try to load the module map file in this directory.
Douglas Gregor80b69042011-11-12 00:22:19 +0000787 switch (loadModuleMapFile(Dir)) {
788 case LMM_NewlyLoaded:
789 case LMM_AlreadyLoaded:
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000790 // Success. All of the directories we stepped through inherit this module
791 // map file.
Douglas Gregor718292f2011-11-11 19:10:28 +0000792 for (unsigned I = 0, N = FixUpDirectories.size(); I != N; ++I)
793 DirectoryHasModuleMap[FixUpDirectories[I]] = true;
794
795 return true;
Douglas Gregor80b69042011-11-12 00:22:19 +0000796
797 case LMM_NoDirectory:
798 case LMM_InvalidModuleMap:
799 break;
Douglas Gregor718292f2011-11-11 19:10:28 +0000800 }
Douglas Gregor718292f2011-11-11 19:10:28 +0000801
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000802 // If we hit the top of our search, we're done.
803 if (Dir == Root)
804 return false;
805
Douglas Gregor718292f2011-11-11 19:10:28 +0000806 // Keep track of all of the directories we checked, so we can mark them as
807 // having module maps if we eventually do find a module map.
808 FixUpDirectories.push_back(Dir);
809 } while (true);
Douglas Gregor718292f2011-11-11 19:10:28 +0000810}
811
Douglas Gregorde3ef502011-11-30 23:21:26 +0000812Module *HeaderSearch::findModuleForHeader(const FileEntry *File) {
Douglas Gregor1fb5c3a2011-12-31 04:05:44 +0000813 if (Module *Mod = ModMap.findModuleForHeader(File))
814 return Mod;
Douglas Gregorab0c8a82011-11-11 22:18:48 +0000815
Douglas Gregorc04f6442011-11-17 22:44:56 +0000816 return 0;
Douglas Gregor718292f2011-11-11 19:10:28 +0000817}
818
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000819bool HeaderSearch::loadModuleMapFile(const FileEntry *File) {
820 const DirectoryEntry *Dir = File->getDir();
821
822 llvm::DenseMap<const DirectoryEntry *, bool>::iterator KnownDir
823 = DirectoryHasModuleMap.find(Dir);
824 if (KnownDir != DirectoryHasModuleMap.end())
825 return !KnownDir->second;
826
827 bool Result = ModMap.parseModuleMapFile(File);
Douglas Gregor80306772011-12-07 21:25:07 +0000828 if (!Result && llvm::sys::path::filename(File->getName()) == "module.map") {
829 // If the file we loaded was a module.map, look for the corresponding
830 // module_private.map.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000831 SmallString<128> PrivateFilename(Dir->getName());
Douglas Gregor80306772011-12-07 21:25:07 +0000832 llvm::sys::path::append(PrivateFilename, "module_private.map");
833 if (const FileEntry *PrivateFile = FileMgr.getFile(PrivateFilename))
834 Result = ModMap.parseModuleMapFile(PrivateFile);
835 }
836
837 DirectoryHasModuleMap[Dir] = !Result;
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000838 return Result;
839}
840
Douglas Gregor279a6c32012-01-29 17:08:11 +0000841Module *HeaderSearch::loadFrameworkModule(StringRef Name,
842 const DirectoryEntry *Dir,
843 bool IsSystem) {
Douglas Gregorde3ef502011-11-30 23:21:26 +0000844 if (Module *Module = ModMap.findModule(Name))
Douglas Gregor56c64012011-11-17 01:41:17 +0000845 return Module;
846
847 // Try to load a module map file.
848 switch (loadModuleMapFile(Dir)) {
849 case LMM_InvalidModuleMap:
850 break;
851
852 case LMM_AlreadyLoaded:
853 case LMM_NoDirectory:
854 return 0;
855
856 case LMM_NewlyLoaded:
857 return ModMap.findModule(Name);
858 }
Douglas Gregor3a5999b2012-01-13 22:31:52 +0000859
860 // The top-level framework directory, from which we'll infer a framework
861 // module.
862 const DirectoryEntry *TopFrameworkDir = Dir;
Douglas Gregor56c64012011-11-17 01:41:17 +0000863
Douglas Gregor3a5999b2012-01-13 22:31:52 +0000864 // The path from the module we're actually looking for back to the top-level
865 // framework name.
866 llvm::SmallVector<StringRef, 2> SubmodulePath;
867 SubmodulePath.push_back(Name);
868
869 // Walk the directory structure to find any enclosing frameworks.
870 StringRef DirName = Dir->getName();
871 do {
872 // Get the parent directory name.
873 DirName = llvm::sys::path::parent_path(DirName);
874 if (DirName.empty())
875 break;
876
877 // Determine whether this directory exists.
878 Dir = FileMgr.getDirectory(DirName);
879 if (!Dir)
880 break;
881
882 // If this is a framework directory, then we're a subframework of this
883 // framework.
884 if (llvm::sys::path::extension(DirName) == ".framework") {
885 SubmodulePath.push_back(llvm::sys::path::stem(DirName));
886 TopFrameworkDir = Dir;
887 }
888 } while (true);
889
890 // Try to infer a module map from the top-level framework directory.
891 Module *Result = ModMap.inferFrameworkModule(SubmodulePath.back(),
Douglas Gregora686e1b2012-01-27 19:52:33 +0000892 TopFrameworkDir,
893 IsSystem,
Douglas Gregor3a5999b2012-01-13 22:31:52 +0000894 /*Parent=*/0);
895
896 // Follow the submodule path to find the requested (sub)framework module
897 // within the top-level framework module.
898 SubmodulePath.pop_back();
899 while (!SubmodulePath.empty() && Result) {
900 Result = ModMap.lookupModuleQualified(SubmodulePath.back(), Result);
901 SubmodulePath.pop_back();
902 }
903 return Result;
Douglas Gregor56c64012011-11-17 01:41:17 +0000904}
905
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000906
Douglas Gregor80b69042011-11-12 00:22:19 +0000907HeaderSearch::LoadModuleMapResult
908HeaderSearch::loadModuleMapFile(StringRef DirName) {
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000909 if (const DirectoryEntry *Dir = FileMgr.getDirectory(DirName))
910 return loadModuleMapFile(Dir);
911
Douglas Gregor80b69042011-11-12 00:22:19 +0000912 return LMM_NoDirectory;
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000913}
914
Douglas Gregor80b69042011-11-12 00:22:19 +0000915HeaderSearch::LoadModuleMapResult
916HeaderSearch::loadModuleMapFile(const DirectoryEntry *Dir) {
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000917 llvm::DenseMap<const DirectoryEntry *, bool>::iterator KnownDir
918 = DirectoryHasModuleMap.find(Dir);
919 if (KnownDir != DirectoryHasModuleMap.end())
Douglas Gregor80b69042011-11-12 00:22:19 +0000920 return KnownDir->second? LMM_AlreadyLoaded : LMM_InvalidModuleMap;
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000921
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000922 SmallString<128> ModuleMapFileName;
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000923 ModuleMapFileName += Dir->getName();
Douglas Gregore7ab3662011-12-07 02:23:45 +0000924 unsigned ModuleMapDirNameLen = ModuleMapFileName.size();
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000925 llvm::sys::path::append(ModuleMapFileName, "module.map");
926 if (const FileEntry *ModuleMapFile = FileMgr.getFile(ModuleMapFileName)) {
927 // We have found a module map file. Try to parse it.
Douglas Gregore7ab3662011-12-07 02:23:45 +0000928 if (ModMap.parseModuleMapFile(ModuleMapFile)) {
929 // No suitable module map.
930 DirectoryHasModuleMap[Dir] = false;
931 return LMM_InvalidModuleMap;
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000932 }
Douglas Gregore7ab3662011-12-07 02:23:45 +0000933
934 // This directory has a module map.
935 DirectoryHasModuleMap[Dir] = true;
936
937 // Check whether there is a private module map that we need to load as well.
938 ModuleMapFileName.erase(ModuleMapFileName.begin() + ModuleMapDirNameLen,
939 ModuleMapFileName.end());
940 llvm::sys::path::append(ModuleMapFileName, "module_private.map");
941 if (const FileEntry *PrivateModuleMapFile
942 = FileMgr.getFile(ModuleMapFileName)) {
943 if (ModMap.parseModuleMapFile(PrivateModuleMapFile)) {
944 // No suitable module map.
945 DirectoryHasModuleMap[Dir] = false;
946 return LMM_InvalidModuleMap;
947 }
948 }
949
950 return LMM_NewlyLoaded;
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000951 }
952
953 // No suitable module map.
954 DirectoryHasModuleMap[Dir] = false;
Douglas Gregor80b69042011-11-12 00:22:19 +0000955 return LMM_InvalidModuleMap;
Douglas Gregoraf28ec82011-11-12 00:05:07 +0000956}
Douglas Gregor718292f2011-11-11 19:10:28 +0000957
Douglas Gregor07f43572012-01-29 18:15:03 +0000958void HeaderSearch::collectAllModules(llvm::SmallVectorImpl<Module *> &Modules) {
959 Modules.clear();
960
961 // Load module maps for each of the header search directories.
962 for (unsigned Idx = 0, N = SearchDirs.size(); Idx != N; ++Idx) {
963 if (SearchDirs[Idx].isFramework()) {
964 llvm::error_code EC;
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000965 SmallString<128> DirNative;
Douglas Gregor07f43572012-01-29 18:15:03 +0000966 llvm::sys::path::native(SearchDirs[Idx].getFrameworkDir()->getName(),
967 DirNative);
968
969 // Search each of the ".framework" directories to load them as modules.
970 bool IsSystem = SearchDirs[Idx].getDirCharacteristic() != SrcMgr::C_User;
971 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
972 Dir != DirEnd && !EC; Dir.increment(EC)) {
973 if (llvm::sys::path::extension(Dir->path()) != ".framework")
974 continue;
975
976 const DirectoryEntry *FrameworkDir = FileMgr.getDirectory(Dir->path());
977 if (!FrameworkDir)
978 continue;
979
980 // Load this framework module.
981 loadFrameworkModule(llvm::sys::path::stem(Dir->path()), FrameworkDir,
982 IsSystem);
983 }
984 continue;
985 }
986
987 // FIXME: Deal with header maps.
988 if (SearchDirs[Idx].isHeaderMap())
989 continue;
990
991 // Try to load a module map file for the search directory.
992 loadModuleMapFile(SearchDirs[Idx].getDir());
993
994 // Try to load module map files for immediate subdirectories of this search
995 // directory.
996 llvm::error_code EC;
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000997 SmallString<128> DirNative;
Douglas Gregor07f43572012-01-29 18:15:03 +0000998 llvm::sys::path::native(SearchDirs[Idx].getDir()->getName(), DirNative);
999 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
1000 Dir != DirEnd && !EC; Dir.increment(EC)) {
1001 loadModuleMapFile(Dir->path());
1002 }
1003 }
1004
1005 // Populate the list of modules.
1006 for (ModuleMap::module_iterator M = ModMap.module_begin(),
1007 MEnd = ModMap.module_end();
1008 M != MEnd; ++M) {
1009 Modules.push_back(M->getValue());
1010 }
1011}
1012