blob: 428af8648b9474ed35056879b05b30ef36ff9248 [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"
Chris Lattnerc7229c32007-10-07 08:58:51 +000016#include "clang/Basic/FileManager.h"
17#include "clang/Basic/IdentifierTable.h"
Michael J. Spencer32bef4e2011-01-10 02:34:13 +000018#include "llvm/Support/FileSystem.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000019#include "llvm/Support/Path.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/ADT/SmallString.h"
Chris Lattner3daed522009-03-02 22:20:04 +000021#include <cstdio>
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23
Douglas Gregor8c5a7602009-04-25 23:30:02 +000024const IdentifierInfo *
25HeaderFileInfo::getControllingMacro(ExternalIdentifierLookup *External) {
26 if (ControllingMacro)
27 return ControllingMacro;
28
29 if (!ControllingMacroID || !External)
30 return 0;
31
32 ControllingMacro = External->GetIdentifier(ControllingMacroID);
33 return ControllingMacro;
34}
35
Chris Lattner39b49bc2010-11-23 08:35:12 +000036HeaderSearch::HeaderSearch(FileManager &FM)
37 : FileMgr(FM), FrameworkMap(64) {
Reid Spencer5f016e22007-07-11 17:01:13 +000038 SystemDirIdx = 0;
39 NoCurDirSearch = false;
Mike Stump1eb44332009-09-09 15:08:12 +000040
Douglas Gregor8c5a7602009-04-25 23:30:02 +000041 ExternalLookup = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000042 NumIncluded = 0;
43 NumMultiIncludeFileOptzn = 0;
44 NumFrameworkLookups = NumSubFrameworkLookups = 0;
45}
46
Chris Lattner822da612007-12-17 06:36:45 +000047HeaderSearch::~HeaderSearch() {
48 // Delete headermaps.
49 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
50 delete HeaderMaps[i].second;
51}
Mike Stump1eb44332009-09-09 15:08:12 +000052
Reid Spencer5f016e22007-07-11 17:01:13 +000053void HeaderSearch::PrintStats() {
54 fprintf(stderr, "\n*** HeaderSearch Stats:\n");
55 fprintf(stderr, "%d files tracked.\n", (int)FileInfo.size());
56 unsigned NumOnceOnlyFiles = 0, MaxNumIncludes = 0, NumSingleIncludedFiles = 0;
57 for (unsigned i = 0, e = FileInfo.size(); i != e; ++i) {
58 NumOnceOnlyFiles += FileInfo[i].isImport;
59 if (MaxNumIncludes < FileInfo[i].NumIncludes)
60 MaxNumIncludes = FileInfo[i].NumIncludes;
61 NumSingleIncludedFiles += FileInfo[i].NumIncludes == 1;
62 }
63 fprintf(stderr, " %d #import/#pragma once files.\n", NumOnceOnlyFiles);
64 fprintf(stderr, " %d included exactly once.\n", NumSingleIncludedFiles);
65 fprintf(stderr, " %d max times a file is included.\n", MaxNumIncludes);
Mike Stump1eb44332009-09-09 15:08:12 +000066
Reid Spencer5f016e22007-07-11 17:01:13 +000067 fprintf(stderr, " %d #include/#include_next/#import.\n", NumIncluded);
68 fprintf(stderr, " %d #includes skipped due to"
69 " the multi-include optimization.\n", NumMultiIncludeFileOptzn);
Mike Stump1eb44332009-09-09 15:08:12 +000070
Reid Spencer5f016e22007-07-11 17:01:13 +000071 fprintf(stderr, "%d framework lookups.\n", NumFrameworkLookups);
72 fprintf(stderr, "%d subframework lookups.\n", NumSubFrameworkLookups);
73}
74
Chris Lattner822da612007-12-17 06:36:45 +000075/// CreateHeaderMap - This method returns a HeaderMap for the specified
76/// FileEntry, uniquing them through the the 'HeaderMaps' datastructure.
Chris Lattner1bfd4a62007-12-17 18:34:53 +000077const HeaderMap *HeaderSearch::CreateHeaderMap(const FileEntry *FE) {
Chris Lattner822da612007-12-17 06:36:45 +000078 // We expect the number of headermaps to be small, and almost always empty.
Chris Lattnerdf772332007-12-17 07:52:39 +000079 // If it ever grows, use of a linear search should be re-evaluated.
Chris Lattner822da612007-12-17 06:36:45 +000080 if (!HeaderMaps.empty()) {
81 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
Chris Lattnerdf772332007-12-17 07:52:39 +000082 // Pointer equality comparison of FileEntries works because they are
83 // already uniqued by inode.
Mike Stump1eb44332009-09-09 15:08:12 +000084 if (HeaderMaps[i].first == FE)
Chris Lattner822da612007-12-17 06:36:45 +000085 return HeaderMaps[i].second;
86 }
Mike Stump1eb44332009-09-09 15:08:12 +000087
Chris Lattner39b49bc2010-11-23 08:35:12 +000088 if (const HeaderMap *HM = HeaderMap::Create(FE, FileMgr)) {
Chris Lattner822da612007-12-17 06:36:45 +000089 HeaderMaps.push_back(std::make_pair(FE, HM));
90 return HM;
91 }
Mike Stump1eb44332009-09-09 15:08:12 +000092
Chris Lattner822da612007-12-17 06:36:45 +000093 return 0;
94}
95
Chris Lattnerdf772332007-12-17 07:52:39 +000096//===----------------------------------------------------------------------===//
97// File lookup within a DirectoryLookup scope
98//===----------------------------------------------------------------------===//
99
Chris Lattner3af66a92007-12-17 17:57:27 +0000100/// getName - Return the directory or filename corresponding to this lookup
101/// object.
102const char *DirectoryLookup::getName() const {
103 if (isNormalDir())
104 return getDir()->getName();
105 if (isFramework())
106 return getFrameworkDir()->getName();
107 assert(isHeaderMap() && "Unknown DirectoryLookup");
108 return getHeaderMap()->getFileName();
109}
110
111
Chris Lattnerdf772332007-12-17 07:52:39 +0000112/// LookupFile - Lookup the specified file in this search path, returning it
113/// if it exists or returning null if not.
Chris Lattnera1394812010-01-10 01:35:12 +0000114const FileEntry *DirectoryLookup::LookupFile(llvm::StringRef Filename,
Chris Lattnerafded5b2007-12-17 08:13:48 +0000115 HeaderSearch &HS) const {
Chris Lattnerdf772332007-12-17 07:52:39 +0000116 llvm::SmallString<1024> TmpDir;
Chris Lattnerafded5b2007-12-17 08:13:48 +0000117 if (isNormalDir()) {
118 // Concatenate the requested file onto the directory.
119 // FIXME: Portability. Filename concatenation should be in sys::Path.
120 TmpDir += getDir()->getName();
121 TmpDir.push_back('/');
Chris Lattnera1394812010-01-10 01:35:12 +0000122 TmpDir.append(Filename.begin(), Filename.end());
Chris Lattner39b49bc2010-11-23 08:35:12 +0000123 return HS.getFileMgr().getFile(TmpDir.str());
Chris Lattnerafded5b2007-12-17 08:13:48 +0000124 }
Mike Stump1eb44332009-09-09 15:08:12 +0000125
Chris Lattnerafded5b2007-12-17 08:13:48 +0000126 if (isFramework())
Chris Lattnera1394812010-01-10 01:35:12 +0000127 return DoFrameworkLookup(Filename, HS);
Mike Stump1eb44332009-09-09 15:08:12 +0000128
Chris Lattnerb09e71f2007-12-17 08:17:39 +0000129 assert(isHeaderMap() && "Unknown directory lookup");
Chris Lattner39b49bc2010-11-23 08:35:12 +0000130 return getHeaderMap()->LookupFile(Filename, HS.getFileMgr());
Chris Lattnerdf772332007-12-17 07:52:39 +0000131}
132
133
Chris Lattnerafded5b2007-12-17 08:13:48 +0000134/// DoFrameworkLookup - Do a lookup of the specified file in the current
135/// DirectoryLookup, which is a framework directory.
Chris Lattnera1394812010-01-10 01:35:12 +0000136const FileEntry *DirectoryLookup::DoFrameworkLookup(llvm::StringRef Filename,
Chris Lattnerafded5b2007-12-17 08:13:48 +0000137 HeaderSearch &HS) const {
138 FileManager &FileMgr = HS.getFileMgr();
Mike Stump1eb44332009-09-09 15:08:12 +0000139
Reid Spencer5f016e22007-07-11 17:01:13 +0000140 // Framework names must have a '/' in the filename.
Chris Lattnera1394812010-01-10 01:35:12 +0000141 size_t SlashPos = Filename.find('/');
142 if (SlashPos == llvm::StringRef::npos) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000143
Chris Lattnerafded5b2007-12-17 08:13:48 +0000144 // Find out if this is the home for the specified framework, by checking
145 // HeaderSearch. Possible answer are yes/no and unknown.
Mike Stump1eb44332009-09-09 15:08:12 +0000146 const DirectoryEntry *&FrameworkDirCache =
Chris Lattnera1394812010-01-10 01:35:12 +0000147 HS.LookupFrameworkCache(Filename.substr(0, SlashPos));
Mike Stump1eb44332009-09-09 15:08:12 +0000148
Chris Lattnerafded5b2007-12-17 08:13:48 +0000149 // If it is known and in some other directory, fail.
150 if (FrameworkDirCache && FrameworkDirCache != getFrameworkDir())
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000152
Chris Lattnerafded5b2007-12-17 08:13:48 +0000153 // Otherwise, construct the path to this framework dir.
Mike Stump1eb44332009-09-09 15:08:12 +0000154
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 // FrameworkName = "/System/Library/Frameworks/"
156 llvm::SmallString<1024> FrameworkName;
Chris Lattnerafded5b2007-12-17 08:13:48 +0000157 FrameworkName += getFrameworkDir()->getName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000158 if (FrameworkName.empty() || FrameworkName.back() != '/')
159 FrameworkName.push_back('/');
Mike Stump1eb44332009-09-09 15:08:12 +0000160
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 // FrameworkName = "/System/Library/Frameworks/Cocoa"
Chris Lattnera1394812010-01-10 01:35:12 +0000162 FrameworkName.append(Filename.begin(), Filename.begin()+SlashPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000163
Reid Spencer5f016e22007-07-11 17:01:13 +0000164 // FrameworkName = "/System/Library/Frameworks/Cocoa.framework/"
165 FrameworkName += ".framework/";
Mike Stump1eb44332009-09-09 15:08:12 +0000166
Chris Lattnerafded5b2007-12-17 08:13:48 +0000167 // If the cache entry is still unresolved, query to see if the cache entry is
168 // still unresolved. If so, check its existence now.
169 if (FrameworkDirCache == 0) {
170 HS.IncrementFrameworkLookupCount();
Mike Stump1eb44332009-09-09 15:08:12 +0000171
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 // If the framework dir doesn't exist, we fail.
Chris Lattnerafded5b2007-12-17 08:13:48 +0000173 // FIXME: It's probably more efficient to query this with FileMgr.getDir.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000174 bool Exists;
175 if (llvm::sys::fs::exists(FrameworkName.str(), Exists) || !Exists)
Reid Spencer5f016e22007-07-11 17:01:13 +0000176 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000177
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 // Otherwise, if it does, remember that this is the right direntry for this
179 // framework.
Chris Lattnerafded5b2007-12-17 08:13:48 +0000180 FrameworkDirCache = getFrameworkDir();
Reid Spencer5f016e22007-07-11 17:01:13 +0000181 }
Mike Stump1eb44332009-09-09 15:08:12 +0000182
Reid Spencer5f016e22007-07-11 17:01:13 +0000183 // Check "/System/Library/Frameworks/Cocoa.framework/Headers/file.h"
184 unsigned OrigSize = FrameworkName.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000185
Reid Spencer5f016e22007-07-11 17:01:13 +0000186 FrameworkName += "Headers/";
Chris Lattnera1394812010-01-10 01:35:12 +0000187 FrameworkName.append(Filename.begin()+SlashPos+1, Filename.end());
Chris Lattner39b49bc2010-11-23 08:35:12 +0000188 if (const FileEntry *FE = FileMgr.getFile(FrameworkName.str()))
Reid Spencer5f016e22007-07-11 17:01:13 +0000189 return FE;
Mike Stump1eb44332009-09-09 15:08:12 +0000190
Reid Spencer5f016e22007-07-11 17:01:13 +0000191 // Check "/System/Library/Frameworks/Cocoa.framework/PrivateHeaders/file.h"
192 const char *Private = "Private";
Mike Stump1eb44332009-09-09 15:08:12 +0000193 FrameworkName.insert(FrameworkName.begin()+OrigSize, Private,
Reid Spencer5f016e22007-07-11 17:01:13 +0000194 Private+strlen(Private));
Chris Lattner39b49bc2010-11-23 08:35:12 +0000195 return FileMgr.getFile(FrameworkName.str());
Reid Spencer5f016e22007-07-11 17:01:13 +0000196}
197
Chris Lattnerdf772332007-12-17 07:52:39 +0000198
Chris Lattnerafded5b2007-12-17 08:13:48 +0000199//===----------------------------------------------------------------------===//
200// Header File Location.
201//===----------------------------------------------------------------------===//
202
203
Reid Spencer5f016e22007-07-11 17:01:13 +0000204/// LookupFile - Given a "foo" or <foo> reference, look up the indicated file,
205/// return null on failure. isAngled indicates whether the file reference is
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000206/// for system #include's or not (i.e. using <> instead of ""). CurFileEnt, if
207/// non-null, indicates where the #including file is, in case a relative search
208/// is needed.
Chris Lattnera1394812010-01-10 01:35:12 +0000209const FileEntry *HeaderSearch::LookupFile(llvm::StringRef Filename,
Reid Spencer5f016e22007-07-11 17:01:13 +0000210 bool isAngled,
211 const DirectoryLookup *FromDir,
212 const DirectoryLookup *&CurDir,
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000213 const FileEntry *CurFileEnt) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000214 // If 'Filename' is absolute, check to see if it exists and no searching.
Michael J. Spencer256053b2010-12-17 21:22:22 +0000215 if (llvm::sys::path::is_absolute(Filename)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000216 CurDir = 0;
217
218 // If this was an #include_next "/absolute/file", fail.
219 if (FromDir) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000220
Reid Spencer5f016e22007-07-11 17:01:13 +0000221 // Otherwise, just return the file.
Chris Lattner39b49bc2010-11-23 08:35:12 +0000222 return FileMgr.getFile(Filename);
Reid Spencer5f016e22007-07-11 17:01:13 +0000223 }
Mike Stump1eb44332009-09-09 15:08:12 +0000224
Reid Spencer5f016e22007-07-11 17:01:13 +0000225 // Step #0, unless disabled, check to see if the file is in the #includer's
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000226 // directory. This has to be based on CurFileEnt, not CurDir, because
227 // CurFileEnt could be a #include of a subdirectory (#include "foo/bar.h") and
Chris Lattnerdf772332007-12-17 07:52:39 +0000228 // a subsequent include of "baz.h" should resolve to "whatever/foo/baz.h".
229 // This search is not done for <> headers.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000230 if (CurFileEnt && !isAngled && !NoCurDirSearch) {
231 llvm::SmallString<1024> TmpDir;
232 // Concatenate the requested file onto the directory.
233 // FIXME: Portability. Filename concatenation should be in sys::Path.
234 TmpDir += CurFileEnt->getDir()->getName();
235 TmpDir.push_back('/');
236 TmpDir.append(Filename.begin(), Filename.end());
Chris Lattner39b49bc2010-11-23 08:35:12 +0000237 if (const FileEntry *FE = FileMgr.getFile(TmpDir.str())) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000238 // Leave CurDir unset.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000239 // This file is a system header or C++ unfriendly if the old file is.
240 //
241 // Note that the temporary 'DirInfo' is required here, as either call to
242 // getFileInfo could resize the vector and we don't want to rely on order
243 // of evaluation.
244 unsigned DirInfo = getFileInfo(CurFileEnt).DirInfo;
Chris Lattnerc9dde4f2008-02-25 21:38:21 +0000245 getFileInfo(FE).DirInfo = DirInfo;
Reid Spencer5f016e22007-07-11 17:01:13 +0000246 return FE;
247 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000248 }
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Reid Spencer5f016e22007-07-11 17:01:13 +0000250 CurDir = 0;
251
252 // If this is a system #include, ignore the user #include locs.
253 unsigned i = isAngled ? SystemDirIdx : 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000254
Reid Spencer5f016e22007-07-11 17:01:13 +0000255 // If this is a #include_next request, start searching after the directory the
256 // file was found in.
257 if (FromDir)
258 i = FromDir-&SearchDirs[0];
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Chris Lattner9960ae82007-07-22 07:28:00 +0000260 // Cache all of the lookups performed by this method. Many headers are
261 // multiply included, and the "pragma once" optimization prevents them from
262 // being relex/pp'd, but they would still have to search through a
263 // (potentially huge) series of SearchDirs to find it.
264 std::pair<unsigned, unsigned> &CacheLookup =
Chris Lattnera1394812010-01-10 01:35:12 +0000265 LookupFileCache.GetOrCreateValue(Filename).getValue();
Chris Lattner9960ae82007-07-22 07:28:00 +0000266
267 // If the entry has been previously looked up, the first value will be
268 // non-zero. If the value is equal to i (the start point of our search), then
269 // this is a matching hit.
270 if (CacheLookup.first == i+1) {
271 // Skip querying potentially lots of directories for this lookup.
272 i = CacheLookup.second;
273 } else {
274 // Otherwise, this is the first query, or the previous query didn't match
275 // our search start. We will fill in our found location below, so prime the
276 // start point value.
277 CacheLookup.first = i+1;
278 }
Mike Stump1eb44332009-09-09 15:08:12 +0000279
Reid Spencer5f016e22007-07-11 17:01:13 +0000280 // Check each directory in sequence to see if it contains this file.
281 for (; i != SearchDirs.size(); ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +0000282 const FileEntry *FE =
Chris Lattnera1394812010-01-10 01:35:12 +0000283 SearchDirs[i].LookupFile(Filename, *this);
Chris Lattnerafded5b2007-12-17 08:13:48 +0000284 if (!FE) continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000285
Chris Lattnerafded5b2007-12-17 08:13:48 +0000286 CurDir = &SearchDirs[i];
Mike Stump1eb44332009-09-09 15:08:12 +0000287
Chris Lattnerafded5b2007-12-17 08:13:48 +0000288 // This file is a system header or C++ unfriendly if the dir is.
289 getFileInfo(FE).DirInfo = CurDir->getDirCharacteristic();
Mike Stump1eb44332009-09-09 15:08:12 +0000290
Chris Lattnerafded5b2007-12-17 08:13:48 +0000291 // Remember this location for the next lookup we do.
292 CacheLookup.second = i;
293 return FE;
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 }
Mike Stump1eb44332009-09-09 15:08:12 +0000295
Chris Lattner9960ae82007-07-22 07:28:00 +0000296 // Otherwise, didn't find it. Remember we didn't find this.
297 CacheLookup.second = SearchDirs.size();
Reid Spencer5f016e22007-07-11 17:01:13 +0000298 return 0;
299}
300
301/// LookupSubframeworkHeader - Look up a subframework for the specified
302/// #include file. For example, if #include'ing <HIToolbox/HIToolbox.h> from
303/// within ".../Carbon.framework/Headers/Carbon.h", check to see if HIToolbox
304/// is a subframework within Carbon.framework. If so, return the FileEntry
305/// for the designated file, otherwise return null.
306const FileEntry *HeaderSearch::
Chris Lattnera1394812010-01-10 01:35:12 +0000307LookupSubframeworkHeader(llvm::StringRef Filename,
Reid Spencer5f016e22007-07-11 17:01:13 +0000308 const FileEntry *ContextFileEnt) {
Chris Lattner9415a0c2008-02-01 05:34:02 +0000309 assert(ContextFileEnt && "No context file?");
Mike Stump1eb44332009-09-09 15:08:12 +0000310
Reid Spencer5f016e22007-07-11 17:01:13 +0000311 // Framework names must have a '/' in the filename. Find it.
Chris Lattnera1394812010-01-10 01:35:12 +0000312 size_t SlashPos = Filename.find('/');
313 if (SlashPos == llvm::StringRef::npos) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000314
Reid Spencer5f016e22007-07-11 17:01:13 +0000315 // Look up the base framework name of the ContextFileEnt.
316 const char *ContextName = ContextFileEnt->getName();
Mike Stump1eb44332009-09-09 15:08:12 +0000317
Reid Spencer5f016e22007-07-11 17:01:13 +0000318 // If the context info wasn't a framework, couldn't be a subframework.
319 const char *FrameworkPos = strstr(ContextName, ".framework/");
320 if (FrameworkPos == 0)
321 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000322
323 llvm::SmallString<1024> FrameworkName(ContextName,
Reid Spencer5f016e22007-07-11 17:01:13 +0000324 FrameworkPos+strlen(".framework/"));
325
326 // Append Frameworks/HIToolbox.framework/
327 FrameworkName += "Frameworks/";
Chris Lattnera1394812010-01-10 01:35:12 +0000328 FrameworkName.append(Filename.begin(), Filename.begin()+SlashPos);
Reid Spencer5f016e22007-07-11 17:01:13 +0000329 FrameworkName += ".framework/";
330
331 llvm::StringMapEntry<const DirectoryEntry *> &CacheLookup =
Chris Lattner65382272010-11-21 09:55:08 +0000332 FrameworkMap.GetOrCreateValue(Filename.substr(0, SlashPos));
Mike Stump1eb44332009-09-09 15:08:12 +0000333
Reid Spencer5f016e22007-07-11 17:01:13 +0000334 // Some other location?
335 if (CacheLookup.getValue() &&
336 CacheLookup.getKeyLength() == FrameworkName.size() &&
337 memcmp(CacheLookup.getKeyData(), &FrameworkName[0],
338 CacheLookup.getKeyLength()) != 0)
339 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000340
Reid Spencer5f016e22007-07-11 17:01:13 +0000341 // Cache subframework.
342 if (CacheLookup.getValue() == 0) {
343 ++NumSubFrameworkLookups;
Mike Stump1eb44332009-09-09 15:08:12 +0000344
Reid Spencer5f016e22007-07-11 17:01:13 +0000345 // If the framework dir doesn't exist, we fail.
Chris Lattner39b49bc2010-11-23 08:35:12 +0000346 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
Reid Spencer5f016e22007-07-11 17:01:13 +0000347 if (Dir == 0) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000348
Reid Spencer5f016e22007-07-11 17:01:13 +0000349 // Otherwise, if it does, remember that this is the right direntry for this
350 // framework.
351 CacheLookup.setValue(Dir);
352 }
Mike Stump1eb44332009-09-09 15:08:12 +0000353
Reid Spencer5f016e22007-07-11 17:01:13 +0000354 const FileEntry *FE = 0;
355
356 // Check ".../Frameworks/HIToolbox.framework/Headers/HIToolbox.h"
357 llvm::SmallString<1024> HeadersFilename(FrameworkName);
358 HeadersFilename += "Headers/";
Chris Lattnera1394812010-01-10 01:35:12 +0000359 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Chris Lattner39b49bc2010-11-23 08:35:12 +0000360 if (!(FE = FileMgr.getFile(HeadersFilename.str()))) {
Mike Stump1eb44332009-09-09 15:08:12 +0000361
Reid Spencer5f016e22007-07-11 17:01:13 +0000362 // Check ".../Frameworks/HIToolbox.framework/PrivateHeaders/HIToolbox.h"
363 HeadersFilename = FrameworkName;
364 HeadersFilename += "PrivateHeaders/";
Chris Lattnera1394812010-01-10 01:35:12 +0000365 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Chris Lattner39b49bc2010-11-23 08:35:12 +0000366 if (!(FE = FileMgr.getFile(HeadersFilename.str())))
Reid Spencer5f016e22007-07-11 17:01:13 +0000367 return 0;
368 }
Mike Stump1eb44332009-09-09 15:08:12 +0000369
Reid Spencer5f016e22007-07-11 17:01:13 +0000370 // This file is a system header or C++ unfriendly if the old file is.
Ted Kremenekca63fa02008-02-24 03:55:14 +0000371 //
Chris Lattnerc9dde4f2008-02-25 21:38:21 +0000372 // Note that the temporary 'DirInfo' is required here, as either call to
373 // getFileInfo could resize the vector and we don't want to rely on order
374 // of evaluation.
375 unsigned DirInfo = getFileInfo(ContextFileEnt).DirInfo;
376 getFileInfo(FE).DirInfo = DirInfo;
Reid Spencer5f016e22007-07-11 17:01:13 +0000377 return FE;
378}
379
380//===----------------------------------------------------------------------===//
381// File Info Management.
382//===----------------------------------------------------------------------===//
383
384
Steve Naroff83d63c72009-04-24 20:03:17 +0000385/// getFileInfo - Return the HeaderFileInfo structure for the specified
Reid Spencer5f016e22007-07-11 17:01:13 +0000386/// FileEntry.
Steve Naroff83d63c72009-04-24 20:03:17 +0000387HeaderFileInfo &HeaderSearch::getFileInfo(const FileEntry *FE) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000388 if (FE->getUID() >= FileInfo.size())
389 FileInfo.resize(FE->getUID()+1);
390 return FileInfo[FE->getUID()];
Mike Stump1eb44332009-09-09 15:08:12 +0000391}
Reid Spencer5f016e22007-07-11 17:01:13 +0000392
Steve Naroff83d63c72009-04-24 20:03:17 +0000393void HeaderSearch::setHeaderFileInfoForUID(HeaderFileInfo HFI, unsigned UID) {
394 if (UID >= FileInfo.size())
395 FileInfo.resize(UID+1);
396 FileInfo[UID] = HFI;
397}
398
Reid Spencer5f016e22007-07-11 17:01:13 +0000399/// ShouldEnterIncludeFile - Mark the specified file as a target of of a
400/// #include, #include_next, or #import directive. Return false if #including
401/// the file will have no effect or true if we should include it.
402bool HeaderSearch::ShouldEnterIncludeFile(const FileEntry *File, bool isImport){
403 ++NumIncluded; // Count # of attempted #includes.
404
405 // Get information about this file.
Steve Naroff83d63c72009-04-24 20:03:17 +0000406 HeaderFileInfo &FileInfo = getFileInfo(File);
Mike Stump1eb44332009-09-09 15:08:12 +0000407
Reid Spencer5f016e22007-07-11 17:01:13 +0000408 // If this is a #import directive, check that we have not already imported
409 // this header.
410 if (isImport) {
411 // If this has already been imported, don't import it again.
412 FileInfo.isImport = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000413
Reid Spencer5f016e22007-07-11 17:01:13 +0000414 // Has this already been #import'ed or #include'd?
415 if (FileInfo.NumIncludes) return false;
416 } else {
417 // Otherwise, if this is a #include of a file that was previously #import'd
418 // or if this is the second #include of a #pragma once file, ignore it.
419 if (FileInfo.isImport)
420 return false;
421 }
Mike Stump1eb44332009-09-09 15:08:12 +0000422
Reid Spencer5f016e22007-07-11 17:01:13 +0000423 // Next, check to see if the file is wrapped with #ifndef guards. If so, and
424 // if the macro that guards it is defined, we know the #include has no effect.
Mike Stump1eb44332009-09-09 15:08:12 +0000425 if (const IdentifierInfo *ControllingMacro
Douglas Gregor8c5a7602009-04-25 23:30:02 +0000426 = FileInfo.getControllingMacro(ExternalLookup))
427 if (ControllingMacro->hasMacroDefinition()) {
428 ++NumMultiIncludeFileOptzn;
429 return false;
430 }
Mike Stump1eb44332009-09-09 15:08:12 +0000431
Reid Spencer5f016e22007-07-11 17:01:13 +0000432 // Increment the number of times this file has been included.
433 ++FileInfo.NumIncludes;
Mike Stump1eb44332009-09-09 15:08:12 +0000434
Reid Spencer5f016e22007-07-11 17:01:13 +0000435 return true;
436}
437
438