blob: bb4ff60480fe29f15ab63a624a90c2947a03cbda [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
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000036ExternalHeaderFileInfoSource::~ExternalHeaderFileInfoSource() {}
37
Chris Lattner39b49bc2010-11-23 08:35:12 +000038HeaderSearch::HeaderSearch(FileManager &FM)
39 : FileMgr(FM), FrameworkMap(64) {
Reid Spencer5f016e22007-07-11 17:01:13 +000040 SystemDirIdx = 0;
41 NoCurDirSearch = false;
Mike Stump1eb44332009-09-09 15:08:12 +000042
Douglas Gregor8c5a7602009-04-25 23:30:02 +000043 ExternalLookup = 0;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000044 ExternalSource = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000045 NumIncluded = 0;
46 NumMultiIncludeFileOptzn = 0;
47 NumFrameworkLookups = NumSubFrameworkLookups = 0;
48}
49
Chris Lattner822da612007-12-17 06:36:45 +000050HeaderSearch::~HeaderSearch() {
51 // Delete headermaps.
52 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
53 delete HeaderMaps[i].second;
54}
Mike Stump1eb44332009-09-09 15:08:12 +000055
Reid Spencer5f016e22007-07-11 17:01:13 +000056void HeaderSearch::PrintStats() {
57 fprintf(stderr, "\n*** HeaderSearch Stats:\n");
58 fprintf(stderr, "%d files tracked.\n", (int)FileInfo.size());
59 unsigned NumOnceOnlyFiles = 0, MaxNumIncludes = 0, NumSingleIncludedFiles = 0;
60 for (unsigned i = 0, e = FileInfo.size(); i != e; ++i) {
61 NumOnceOnlyFiles += FileInfo[i].isImport;
62 if (MaxNumIncludes < FileInfo[i].NumIncludes)
63 MaxNumIncludes = FileInfo[i].NumIncludes;
64 NumSingleIncludedFiles += FileInfo[i].NumIncludes == 1;
65 }
66 fprintf(stderr, " %d #import/#pragma once files.\n", NumOnceOnlyFiles);
67 fprintf(stderr, " %d included exactly once.\n", NumSingleIncludedFiles);
68 fprintf(stderr, " %d max times a file is included.\n", MaxNumIncludes);
Mike Stump1eb44332009-09-09 15:08:12 +000069
Reid Spencer5f016e22007-07-11 17:01:13 +000070 fprintf(stderr, " %d #include/#include_next/#import.\n", NumIncluded);
71 fprintf(stderr, " %d #includes skipped due to"
72 " the multi-include optimization.\n", NumMultiIncludeFileOptzn);
Mike Stump1eb44332009-09-09 15:08:12 +000073
Reid Spencer5f016e22007-07-11 17:01:13 +000074 fprintf(stderr, "%d framework lookups.\n", NumFrameworkLookups);
75 fprintf(stderr, "%d subframework lookups.\n", NumSubFrameworkLookups);
76}
77
Chris Lattner822da612007-12-17 06:36:45 +000078/// CreateHeaderMap - This method returns a HeaderMap for the specified
79/// FileEntry, uniquing them through the the 'HeaderMaps' datastructure.
Chris Lattner1bfd4a62007-12-17 18:34:53 +000080const HeaderMap *HeaderSearch::CreateHeaderMap(const FileEntry *FE) {
Chris Lattner822da612007-12-17 06:36:45 +000081 // We expect the number of headermaps to be small, and almost always empty.
Chris Lattnerdf772332007-12-17 07:52:39 +000082 // If it ever grows, use of a linear search should be re-evaluated.
Chris Lattner822da612007-12-17 06:36:45 +000083 if (!HeaderMaps.empty()) {
84 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
Chris Lattnerdf772332007-12-17 07:52:39 +000085 // Pointer equality comparison of FileEntries works because they are
86 // already uniqued by inode.
Mike Stump1eb44332009-09-09 15:08:12 +000087 if (HeaderMaps[i].first == FE)
Chris Lattner822da612007-12-17 06:36:45 +000088 return HeaderMaps[i].second;
89 }
Mike Stump1eb44332009-09-09 15:08:12 +000090
Chris Lattner39b49bc2010-11-23 08:35:12 +000091 if (const HeaderMap *HM = HeaderMap::Create(FE, FileMgr)) {
Chris Lattner822da612007-12-17 06:36:45 +000092 HeaderMaps.push_back(std::make_pair(FE, HM));
93 return HM;
94 }
Mike Stump1eb44332009-09-09 15:08:12 +000095
Chris Lattner822da612007-12-17 06:36:45 +000096 return 0;
97}
98
Chris Lattnerdf772332007-12-17 07:52:39 +000099//===----------------------------------------------------------------------===//
100// File lookup within a DirectoryLookup scope
101//===----------------------------------------------------------------------===//
102
Chris Lattner3af66a92007-12-17 17:57:27 +0000103/// getName - Return the directory or filename corresponding to this lookup
104/// object.
105const char *DirectoryLookup::getName() const {
106 if (isNormalDir())
107 return getDir()->getName();
108 if (isFramework())
109 return getFrameworkDir()->getName();
110 assert(isHeaderMap() && "Unknown DirectoryLookup");
111 return getHeaderMap()->getFileName();
112}
113
114
Chris Lattnerdf772332007-12-17 07:52:39 +0000115/// LookupFile - Lookup the specified file in this search path, returning it
116/// if it exists or returning null if not.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000117const FileEntry *DirectoryLookup::LookupFile(
118 llvm::StringRef Filename,
119 HeaderSearch &HS, llvm::SmallVectorImpl<char> *RawPath) const {
Chris Lattnerdf772332007-12-17 07:52:39 +0000120 llvm::SmallString<1024> TmpDir;
Chris Lattnerafded5b2007-12-17 08:13:48 +0000121 if (isNormalDir()) {
122 // Concatenate the requested file onto the directory.
123 // FIXME: Portability. Filename concatenation should be in sys::Path.
124 TmpDir += getDir()->getName();
125 TmpDir.push_back('/');
Chris Lattnera1394812010-01-10 01:35:12 +0000126 TmpDir.append(Filename.begin(), Filename.end());
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000127 if (RawPath != NULL)
128 *RawPath = TmpDir;
Chris Lattner39b49bc2010-11-23 08:35:12 +0000129 return HS.getFileMgr().getFile(TmpDir.str());
Chris Lattnerafded5b2007-12-17 08:13:48 +0000130 }
Mike Stump1eb44332009-09-09 15:08:12 +0000131
Chris Lattnerafded5b2007-12-17 08:13:48 +0000132 if (isFramework())
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000133 return DoFrameworkLookup(Filename, HS, RawPath);
Mike Stump1eb44332009-09-09 15:08:12 +0000134
Chris Lattnerb09e71f2007-12-17 08:17:39 +0000135 assert(isHeaderMap() && "Unknown directory lookup");
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000136 return getHeaderMap()->LookupFile(Filename, HS.getFileMgr(), RawPath);
Chris Lattnerdf772332007-12-17 07:52:39 +0000137}
138
139
Chris Lattnerafded5b2007-12-17 08:13:48 +0000140/// DoFrameworkLookup - Do a lookup of the specified file in the current
141/// DirectoryLookup, which is a framework directory.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000142const FileEntry *DirectoryLookup::DoFrameworkLookup(
143 llvm::StringRef Filename,
144 HeaderSearch &HS, llvm::SmallVectorImpl<char> *RawPath) const {
Chris Lattnerafded5b2007-12-17 08:13:48 +0000145 FileManager &FileMgr = HS.getFileMgr();
Mike Stump1eb44332009-09-09 15:08:12 +0000146
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 // Framework names must have a '/' in the filename.
Chris Lattnera1394812010-01-10 01:35:12 +0000148 size_t SlashPos = Filename.find('/');
149 if (SlashPos == llvm::StringRef::npos) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000150
Chris Lattnerafded5b2007-12-17 08:13:48 +0000151 // Find out if this is the home for the specified framework, by checking
152 // HeaderSearch. Possible answer are yes/no and unknown.
Mike Stump1eb44332009-09-09 15:08:12 +0000153 const DirectoryEntry *&FrameworkDirCache =
Chris Lattnera1394812010-01-10 01:35:12 +0000154 HS.LookupFrameworkCache(Filename.substr(0, SlashPos));
Mike Stump1eb44332009-09-09 15:08:12 +0000155
Chris Lattnerafded5b2007-12-17 08:13:48 +0000156 // If it is known and in some other directory, fail.
157 if (FrameworkDirCache && FrameworkDirCache != getFrameworkDir())
Reid Spencer5f016e22007-07-11 17:01:13 +0000158 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000159
Chris Lattnerafded5b2007-12-17 08:13:48 +0000160 // Otherwise, construct the path to this framework dir.
Mike Stump1eb44332009-09-09 15:08:12 +0000161
Reid Spencer5f016e22007-07-11 17:01:13 +0000162 // FrameworkName = "/System/Library/Frameworks/"
163 llvm::SmallString<1024> FrameworkName;
Chris Lattnerafded5b2007-12-17 08:13:48 +0000164 FrameworkName += getFrameworkDir()->getName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000165 if (FrameworkName.empty() || FrameworkName.back() != '/')
166 FrameworkName.push_back('/');
Mike Stump1eb44332009-09-09 15:08:12 +0000167
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 // FrameworkName = "/System/Library/Frameworks/Cocoa"
Chris Lattnera1394812010-01-10 01:35:12 +0000169 FrameworkName.append(Filename.begin(), Filename.begin()+SlashPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000170
Reid Spencer5f016e22007-07-11 17:01:13 +0000171 // FrameworkName = "/System/Library/Frameworks/Cocoa.framework/"
172 FrameworkName += ".framework/";
Mike Stump1eb44332009-09-09 15:08:12 +0000173
Chris Lattnerafded5b2007-12-17 08:13:48 +0000174 // If the cache entry is still unresolved, query to see if the cache entry is
175 // still unresolved. If so, check its existence now.
176 if (FrameworkDirCache == 0) {
177 HS.IncrementFrameworkLookupCount();
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 // If the framework dir doesn't exist, we fail.
Chris Lattnerafded5b2007-12-17 08:13:48 +0000180 // FIXME: It's probably more efficient to query this with FileMgr.getDir.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000181 bool Exists;
182 if (llvm::sys::fs::exists(FrameworkName.str(), Exists) || !Exists)
Reid Spencer5f016e22007-07-11 17:01:13 +0000183 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000184
Reid Spencer5f016e22007-07-11 17:01:13 +0000185 // Otherwise, if it does, remember that this is the right direntry for this
186 // framework.
Chris Lattnerafded5b2007-12-17 08:13:48 +0000187 FrameworkDirCache = getFrameworkDir();
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 }
Mike Stump1eb44332009-09-09 15:08:12 +0000189
Reid Spencer5f016e22007-07-11 17:01:13 +0000190 // Check "/System/Library/Frameworks/Cocoa.framework/Headers/file.h"
191 unsigned OrigSize = FrameworkName.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000192
Reid Spencer5f016e22007-07-11 17:01:13 +0000193 FrameworkName += "Headers/";
Chris Lattnera1394812010-01-10 01:35:12 +0000194 FrameworkName.append(Filename.begin()+SlashPos+1, Filename.end());
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000195 if (const FileEntry *FE = FileMgr.getFile(FrameworkName.str())) {
196 if (RawPath != NULL)
197 *RawPath = FrameworkName;
Reid Spencer5f016e22007-07-11 17:01:13 +0000198 return FE;
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000199 }
Mike Stump1eb44332009-09-09 15:08:12 +0000200
Reid Spencer5f016e22007-07-11 17:01:13 +0000201 // Check "/System/Library/Frameworks/Cocoa.framework/PrivateHeaders/file.h"
202 const char *Private = "Private";
Mike Stump1eb44332009-09-09 15:08:12 +0000203 FrameworkName.insert(FrameworkName.begin()+OrigSize, Private,
Reid Spencer5f016e22007-07-11 17:01:13 +0000204 Private+strlen(Private));
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000205 if (RawPath != NULL)
206 *RawPath = FrameworkName;
Chris Lattner39b49bc2010-11-23 08:35:12 +0000207 return FileMgr.getFile(FrameworkName.str());
Reid Spencer5f016e22007-07-11 17:01:13 +0000208}
209
Chris Lattnerdf772332007-12-17 07:52:39 +0000210
Chris Lattnerafded5b2007-12-17 08:13:48 +0000211//===----------------------------------------------------------------------===//
212// Header File Location.
213//===----------------------------------------------------------------------===//
214
215
Reid Spencer5f016e22007-07-11 17:01:13 +0000216/// LookupFile - Given a "foo" or <foo> reference, look up the indicated file,
217/// return null on failure. isAngled indicates whether the file reference is
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000218/// for system #include's or not (i.e. using <> instead of ""). CurFileEnt, if
219/// non-null, indicates where the #including file is, in case a relative search
220/// is needed.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000221const FileEntry *HeaderSearch::LookupFile(
222 llvm::StringRef Filename,
223 bool isAngled,
224 const DirectoryLookup *FromDir,
225 const DirectoryLookup *&CurDir,
226 const FileEntry *CurFileEnt,
227 llvm::SmallVectorImpl<char> *RawPath) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000228 // If 'Filename' is absolute, check to see if it exists and no searching.
Michael J. Spencer256053b2010-12-17 21:22:22 +0000229 if (llvm::sys::path::is_absolute(Filename)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000230 CurDir = 0;
231
232 // If this was an #include_next "/absolute/file", fail.
233 if (FromDir) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000234
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000235 if (RawPath != NULL)
236 llvm::Twine(Filename).toVector(*RawPath);
Reid Spencer5f016e22007-07-11 17:01:13 +0000237 // Otherwise, just return the file.
Chris Lattner39b49bc2010-11-23 08:35:12 +0000238 return FileMgr.getFile(Filename);
Reid Spencer5f016e22007-07-11 17:01:13 +0000239 }
Mike Stump1eb44332009-09-09 15:08:12 +0000240
Reid Spencer5f016e22007-07-11 17:01:13 +0000241 // Step #0, unless disabled, check to see if the file is in the #includer's
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000242 // directory. This has to be based on CurFileEnt, not CurDir, because
243 // CurFileEnt could be a #include of a subdirectory (#include "foo/bar.h") and
Chris Lattnerdf772332007-12-17 07:52:39 +0000244 // a subsequent include of "baz.h" should resolve to "whatever/foo/baz.h".
245 // This search is not done for <> headers.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000246 if (CurFileEnt && !isAngled && !NoCurDirSearch) {
247 llvm::SmallString<1024> TmpDir;
248 // Concatenate the requested file onto the directory.
249 // FIXME: Portability. Filename concatenation should be in sys::Path.
250 TmpDir += CurFileEnt->getDir()->getName();
251 TmpDir.push_back('/');
252 TmpDir.append(Filename.begin(), Filename.end());
Chris Lattner39b49bc2010-11-23 08:35:12 +0000253 if (const FileEntry *FE = FileMgr.getFile(TmpDir.str())) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000254 // Leave CurDir unset.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000255 // This file is a system header or C++ unfriendly if the old file is.
256 //
257 // Note that the temporary 'DirInfo' is required here, as either call to
258 // getFileInfo could resize the vector and we don't want to rely on order
259 // of evaluation.
260 unsigned DirInfo = getFileInfo(CurFileEnt).DirInfo;
Chris Lattnerc9dde4f2008-02-25 21:38:21 +0000261 getFileInfo(FE).DirInfo = DirInfo;
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000262 if (RawPath != NULL)
263 *RawPath = TmpDir;
Reid Spencer5f016e22007-07-11 17:01:13 +0000264 return FE;
265 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000266 }
Mike Stump1eb44332009-09-09 15:08:12 +0000267
Reid Spencer5f016e22007-07-11 17:01:13 +0000268 CurDir = 0;
269
270 // If this is a system #include, ignore the user #include locs.
271 unsigned i = isAngled ? SystemDirIdx : 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000272
Reid Spencer5f016e22007-07-11 17:01:13 +0000273 // If this is a #include_next request, start searching after the directory the
274 // file was found in.
275 if (FromDir)
276 i = FromDir-&SearchDirs[0];
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Chris Lattner9960ae82007-07-22 07:28:00 +0000278 // Cache all of the lookups performed by this method. Many headers are
279 // multiply included, and the "pragma once" optimization prevents them from
280 // being relex/pp'd, but they would still have to search through a
281 // (potentially huge) series of SearchDirs to find it.
282 std::pair<unsigned, unsigned> &CacheLookup =
Chris Lattnera1394812010-01-10 01:35:12 +0000283 LookupFileCache.GetOrCreateValue(Filename).getValue();
Chris Lattner9960ae82007-07-22 07:28:00 +0000284
285 // If the entry has been previously looked up, the first value will be
286 // non-zero. If the value is equal to i (the start point of our search), then
287 // this is a matching hit.
288 if (CacheLookup.first == i+1) {
289 // Skip querying potentially lots of directories for this lookup.
290 i = CacheLookup.second;
291 } else {
292 // Otherwise, this is the first query, or the previous query didn't match
293 // our search start. We will fill in our found location below, so prime the
294 // start point value.
295 CacheLookup.first = i+1;
296 }
Mike Stump1eb44332009-09-09 15:08:12 +0000297
Reid Spencer5f016e22007-07-11 17:01:13 +0000298 // Check each directory in sequence to see if it contains this file.
299 for (; i != SearchDirs.size(); ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +0000300 const FileEntry *FE =
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000301 SearchDirs[i].LookupFile(Filename, *this, RawPath);
Chris Lattnerafded5b2007-12-17 08:13:48 +0000302 if (!FE) continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000303
Chris Lattnerafded5b2007-12-17 08:13:48 +0000304 CurDir = &SearchDirs[i];
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Chris Lattnerafded5b2007-12-17 08:13:48 +0000306 // This file is a system header or C++ unfriendly if the dir is.
307 getFileInfo(FE).DirInfo = CurDir->getDirCharacteristic();
Mike Stump1eb44332009-09-09 15:08:12 +0000308
Chris Lattnerafded5b2007-12-17 08:13:48 +0000309 // Remember this location for the next lookup we do.
310 CacheLookup.second = i;
311 return FE;
Reid Spencer5f016e22007-07-11 17:01:13 +0000312 }
Mike Stump1eb44332009-09-09 15:08:12 +0000313
Chris Lattner9960ae82007-07-22 07:28:00 +0000314 // Otherwise, didn't find it. Remember we didn't find this.
315 CacheLookup.second = SearchDirs.size();
Reid Spencer5f016e22007-07-11 17:01:13 +0000316 return 0;
317}
318
319/// LookupSubframeworkHeader - Look up a subframework for the specified
320/// #include file. For example, if #include'ing <HIToolbox/HIToolbox.h> from
321/// within ".../Carbon.framework/Headers/Carbon.h", check to see if HIToolbox
322/// is a subframework within Carbon.framework. If so, return the FileEntry
323/// for the designated file, otherwise return null.
324const FileEntry *HeaderSearch::
Chris Lattnera1394812010-01-10 01:35:12 +0000325LookupSubframeworkHeader(llvm::StringRef Filename,
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000326 const FileEntry *ContextFileEnt,
327 llvm::SmallVectorImpl<char> *RawPath) {
Chris Lattner9415a0c2008-02-01 05:34:02 +0000328 assert(ContextFileEnt && "No context file?");
Mike Stump1eb44332009-09-09 15:08:12 +0000329
Reid Spencer5f016e22007-07-11 17:01:13 +0000330 // Framework names must have a '/' in the filename. Find it.
Chris Lattnera1394812010-01-10 01:35:12 +0000331 size_t SlashPos = Filename.find('/');
332 if (SlashPos == llvm::StringRef::npos) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000333
Reid Spencer5f016e22007-07-11 17:01:13 +0000334 // Look up the base framework name of the ContextFileEnt.
335 const char *ContextName = ContextFileEnt->getName();
Mike Stump1eb44332009-09-09 15:08:12 +0000336
Reid Spencer5f016e22007-07-11 17:01:13 +0000337 // If the context info wasn't a framework, couldn't be a subframework.
338 const char *FrameworkPos = strstr(ContextName, ".framework/");
339 if (FrameworkPos == 0)
340 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000341
342 llvm::SmallString<1024> FrameworkName(ContextName,
Reid Spencer5f016e22007-07-11 17:01:13 +0000343 FrameworkPos+strlen(".framework/"));
344
345 // Append Frameworks/HIToolbox.framework/
346 FrameworkName += "Frameworks/";
Chris Lattnera1394812010-01-10 01:35:12 +0000347 FrameworkName.append(Filename.begin(), Filename.begin()+SlashPos);
Reid Spencer5f016e22007-07-11 17:01:13 +0000348 FrameworkName += ".framework/";
349
350 llvm::StringMapEntry<const DirectoryEntry *> &CacheLookup =
Chris Lattner65382272010-11-21 09:55:08 +0000351 FrameworkMap.GetOrCreateValue(Filename.substr(0, SlashPos));
Mike Stump1eb44332009-09-09 15:08:12 +0000352
Reid Spencer5f016e22007-07-11 17:01:13 +0000353 // Some other location?
354 if (CacheLookup.getValue() &&
355 CacheLookup.getKeyLength() == FrameworkName.size() &&
356 memcmp(CacheLookup.getKeyData(), &FrameworkName[0],
357 CacheLookup.getKeyLength()) != 0)
358 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000359
Reid Spencer5f016e22007-07-11 17:01:13 +0000360 // Cache subframework.
361 if (CacheLookup.getValue() == 0) {
362 ++NumSubFrameworkLookups;
Mike Stump1eb44332009-09-09 15:08:12 +0000363
Reid Spencer5f016e22007-07-11 17:01:13 +0000364 // If the framework dir doesn't exist, we fail.
Chris Lattner39b49bc2010-11-23 08:35:12 +0000365 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
Reid Spencer5f016e22007-07-11 17:01:13 +0000366 if (Dir == 0) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000367
Reid Spencer5f016e22007-07-11 17:01:13 +0000368 // Otherwise, if it does, remember that this is the right direntry for this
369 // framework.
370 CacheLookup.setValue(Dir);
371 }
Mike Stump1eb44332009-09-09 15:08:12 +0000372
Reid Spencer5f016e22007-07-11 17:01:13 +0000373 const FileEntry *FE = 0;
374
375 // Check ".../Frameworks/HIToolbox.framework/Headers/HIToolbox.h"
376 llvm::SmallString<1024> HeadersFilename(FrameworkName);
377 HeadersFilename += "Headers/";
Chris Lattnera1394812010-01-10 01:35:12 +0000378 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Chris Lattner39b49bc2010-11-23 08:35:12 +0000379 if (!(FE = FileMgr.getFile(HeadersFilename.str()))) {
Mike Stump1eb44332009-09-09 15:08:12 +0000380
Reid Spencer5f016e22007-07-11 17:01:13 +0000381 // Check ".../Frameworks/HIToolbox.framework/PrivateHeaders/HIToolbox.h"
382 HeadersFilename = FrameworkName;
383 HeadersFilename += "PrivateHeaders/";
Chris Lattnera1394812010-01-10 01:35:12 +0000384 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Chris Lattner39b49bc2010-11-23 08:35:12 +0000385 if (!(FE = FileMgr.getFile(HeadersFilename.str())))
Reid Spencer5f016e22007-07-11 17:01:13 +0000386 return 0;
387 }
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000388 if (RawPath != NULL)
389 *RawPath = HeadersFilename;
Mike Stump1eb44332009-09-09 15:08:12 +0000390
Reid Spencer5f016e22007-07-11 17:01:13 +0000391 // This file is a system header or C++ unfriendly if the old file is.
Ted Kremenekca63fa02008-02-24 03:55:14 +0000392 //
Chris Lattnerc9dde4f2008-02-25 21:38:21 +0000393 // Note that the temporary 'DirInfo' is required here, as either call to
394 // getFileInfo could resize the vector and we don't want to rely on order
395 // of evaluation.
396 unsigned DirInfo = getFileInfo(ContextFileEnt).DirInfo;
397 getFileInfo(FE).DirInfo = DirInfo;
Reid Spencer5f016e22007-07-11 17:01:13 +0000398 return FE;
399}
400
401//===----------------------------------------------------------------------===//
402// File Info Management.
403//===----------------------------------------------------------------------===//
404
405
Steve Naroff83d63c72009-04-24 20:03:17 +0000406/// getFileInfo - Return the HeaderFileInfo structure for the specified
Reid Spencer5f016e22007-07-11 17:01:13 +0000407/// FileEntry.
Steve Naroff83d63c72009-04-24 20:03:17 +0000408HeaderFileInfo &HeaderSearch::getFileInfo(const FileEntry *FE) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000409 if (FE->getUID() >= FileInfo.size())
410 FileInfo.resize(FE->getUID()+1);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000411
412 HeaderFileInfo &HFI = FileInfo[FE->getUID()];
413 if (ExternalSource && !HFI.Resolved) {
414 HFI = ExternalSource->GetHeaderFileInfo(FE);
415 HFI.Resolved = true;
416 }
417 return HFI;
Mike Stump1eb44332009-09-09 15:08:12 +0000418}
Reid Spencer5f016e22007-07-11 17:01:13 +0000419
Steve Naroff83d63c72009-04-24 20:03:17 +0000420void HeaderSearch::setHeaderFileInfoForUID(HeaderFileInfo HFI, unsigned UID) {
421 if (UID >= FileInfo.size())
422 FileInfo.resize(UID+1);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000423 HFI.Resolved = true;
Steve Naroff83d63c72009-04-24 20:03:17 +0000424 FileInfo[UID] = HFI;
425}
426
Reid Spencer5f016e22007-07-11 17:01:13 +0000427/// ShouldEnterIncludeFile - Mark the specified file as a target of of a
428/// #include, #include_next, or #import directive. Return false if #including
429/// the file will have no effect or true if we should include it.
430bool HeaderSearch::ShouldEnterIncludeFile(const FileEntry *File, bool isImport){
431 ++NumIncluded; // Count # of attempted #includes.
432
433 // Get information about this file.
Steve Naroff83d63c72009-04-24 20:03:17 +0000434 HeaderFileInfo &FileInfo = getFileInfo(File);
Mike Stump1eb44332009-09-09 15:08:12 +0000435
Reid Spencer5f016e22007-07-11 17:01:13 +0000436 // If this is a #import directive, check that we have not already imported
437 // this header.
438 if (isImport) {
439 // If this has already been imported, don't import it again.
440 FileInfo.isImport = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000441
Reid Spencer5f016e22007-07-11 17:01:13 +0000442 // Has this already been #import'ed or #include'd?
443 if (FileInfo.NumIncludes) return false;
444 } else {
445 // Otherwise, if this is a #include of a file that was previously #import'd
446 // or if this is the second #include of a #pragma once file, ignore it.
447 if (FileInfo.isImport)
448 return false;
449 }
Mike Stump1eb44332009-09-09 15:08:12 +0000450
Reid Spencer5f016e22007-07-11 17:01:13 +0000451 // Next, check to see if the file is wrapped with #ifndef guards. If so, and
452 // if the macro that guards it is defined, we know the #include has no effect.
Mike Stump1eb44332009-09-09 15:08:12 +0000453 if (const IdentifierInfo *ControllingMacro
Douglas Gregor8c5a7602009-04-25 23:30:02 +0000454 = FileInfo.getControllingMacro(ExternalLookup))
455 if (ControllingMacro->hasMacroDefinition()) {
456 ++NumMultiIncludeFileOptzn;
457 return false;
458 }
Mike Stump1eb44332009-09-09 15:08:12 +0000459
Reid Spencer5f016e22007-07-11 17:01:13 +0000460 // Increment the number of times this file has been included.
461 ++FileInfo.NumIncludes;
Mike Stump1eb44332009-09-09 15:08:12 +0000462
Reid Spencer5f016e22007-07-11 17:01:13 +0000463 return true;
464}
465
466