blob: 20c114297b99955ba847b6d243cc7b5c62d89460 [file] [log] [blame]
Douglas Gregor5e306b12013-01-23 22:38:11 +00001//===--- GlobalModuleIndex.cpp - Global Module Index ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the GlobalModuleIndex class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "ASTReaderInternals.h"
Adrian Prantlbb165fb2015-06-20 18:53:08 +000015#include "clang/Frontend/PCHContainerOperations.h"
Douglas Gregor5e306b12013-01-23 22:38:11 +000016#include "clang/Basic/FileManager.h"
Ben Langmuirbeee15e2014-04-14 18:00:01 +000017#include "clang/Lex/HeaderSearch.h"
Douglas Gregor5e306b12013-01-23 22:38:11 +000018#include "clang/Serialization/ASTBitCodes.h"
19#include "clang/Serialization/GlobalModuleIndex.h"
Douglas Gregor603cd862013-03-22 18:50:14 +000020#include "clang/Serialization/Module.h"
Douglas Gregor5e306b12013-01-23 22:38:11 +000021#include "llvm/ADT/DenseMap.h"
22#include "llvm/ADT/MapVector.h"
23#include "llvm/ADT/SmallString.h"
24#include "llvm/ADT/StringExtras.h"
25#include "llvm/Bitcode/BitstreamReader.h"
26#include "llvm/Bitcode/BitstreamWriter.h"
Douglas Gregor8ec343c2013-01-23 22:45:24 +000027#include "llvm/Support/FileSystem.h"
Douglas Gregor5e306b12013-01-23 22:38:11 +000028#include "llvm/Support/LockFileManager.h"
29#include "llvm/Support/MemoryBuffer.h"
Justin Bognerbb094f02014-04-18 19:57:06 +000030#include "llvm/Support/OnDiskHashTable.h"
Rafael Espindola552c1692013-06-11 22:15:02 +000031#include "llvm/Support/Path.h"
NAKAMURA Takumif0add232013-01-25 01:47:07 +000032#include <cstdio>
Douglas Gregor5e306b12013-01-23 22:38:11 +000033using namespace clang;
34using namespace serialization;
35
36//----------------------------------------------------------------------------//
37// Shared constants
38//----------------------------------------------------------------------------//
39namespace {
40 enum {
41 /// \brief The block containing the index.
42 GLOBAL_INDEX_BLOCK_ID = llvm::bitc::FIRST_APPLICATION_BLOCKID
43 };
44
45 /// \brief Describes the record types in the index.
46 enum IndexRecordTypes {
47 /// \brief Contains version information and potentially other metadata,
48 /// used to determine if we can read this global index file.
Douglas Gregore060e572013-01-25 01:03:03 +000049 INDEX_METADATA,
Douglas Gregor5e306b12013-01-23 22:38:11 +000050 /// \brief Describes a module, including its file name and dependencies.
51 MODULE,
52 /// \brief The index for identifiers.
53 IDENTIFIER_INDEX
54 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +000055}
Douglas Gregor5e306b12013-01-23 22:38:11 +000056
57/// \brief The name of the global index file.
58static const char * const IndexFileName = "modules.idx";
59
60/// \brief The global index file version.
61static const unsigned CurrentVersion = 1;
62
63//----------------------------------------------------------------------------//
Douglas Gregore060e572013-01-25 01:03:03 +000064// Global module index reader.
65//----------------------------------------------------------------------------//
66
67namespace {
68
69/// \brief Trait used to read the identifier index from the on-disk hash
70/// table.
71class IdentifierIndexReaderTrait {
72public:
73 typedef StringRef external_key_type;
74 typedef StringRef internal_key_type;
75 typedef SmallVector<unsigned, 2> data_type;
Justin Bogner25463f12014-04-18 20:27:24 +000076 typedef unsigned hash_value_type;
77 typedef unsigned offset_type;
Douglas Gregore060e572013-01-25 01:03:03 +000078
79 static bool EqualKey(const internal_key_type& a, const internal_key_type& b) {
80 return a == b;
81 }
82
Justin Bogner25463f12014-04-18 20:27:24 +000083 static hash_value_type ComputeHash(const internal_key_type& a) {
Douglas Gregore060e572013-01-25 01:03:03 +000084 return llvm::HashString(a);
85 }
86
87 static std::pair<unsigned, unsigned>
88 ReadKeyDataLength(const unsigned char*& d) {
Justin Bogner57ba0b22014-03-28 22:03:24 +000089 using namespace llvm::support;
90 unsigned KeyLen = endian::readNext<uint16_t, little, unaligned>(d);
91 unsigned DataLen = endian::readNext<uint16_t, little, unaligned>(d);
Douglas Gregore060e572013-01-25 01:03:03 +000092 return std::make_pair(KeyLen, DataLen);
93 }
94
95 static const internal_key_type&
96 GetInternalKey(const external_key_type& x) { return x; }
97
98 static const external_key_type&
99 GetExternalKey(const internal_key_type& x) { return x; }
100
101 static internal_key_type ReadKey(const unsigned char* d, unsigned n) {
102 return StringRef((const char *)d, n);
103 }
104
105 static data_type ReadData(const internal_key_type& k,
106 const unsigned char* d,
107 unsigned DataLen) {
Justin Bogner57ba0b22014-03-28 22:03:24 +0000108 using namespace llvm::support;
Douglas Gregore060e572013-01-25 01:03:03 +0000109
110 data_type Result;
111 while (DataLen > 0) {
Justin Bogner57ba0b22014-03-28 22:03:24 +0000112 unsigned ID = endian::readNext<uint32_t, little, unaligned>(d);
Douglas Gregore060e572013-01-25 01:03:03 +0000113 Result.push_back(ID);
114 DataLen -= 4;
115 }
116
117 return Result;
118 }
119};
120
Justin Bognerbb094f02014-04-18 19:57:06 +0000121typedef llvm::OnDiskIterableChainedHashTable<IdentifierIndexReaderTrait>
Justin Bognerda4e6502014-04-14 16:34:29 +0000122 IdentifierIndexTable;
Douglas Gregore060e572013-01-25 01:03:03 +0000123
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000124}
Douglas Gregore060e572013-01-25 01:03:03 +0000125
David Blaikieafa10d32014-08-11 18:47:26 +0000126GlobalModuleIndex::GlobalModuleIndex(std::unique_ptr<llvm::MemoryBuffer> Buffer,
Douglas Gregore060e572013-01-25 01:03:03 +0000127 llvm::BitstreamCursor Cursor)
David Blaikieafa10d32014-08-11 18:47:26 +0000128 : Buffer(std::move(Buffer)), IdentifierIndex(), NumIdentifierLookups(),
129 NumIdentifierLookupHits() {
Douglas Gregore060e572013-01-25 01:03:03 +0000130 // Read the global index.
Douglas Gregore060e572013-01-25 01:03:03 +0000131 bool InGlobalIndexBlock = false;
132 bool Done = false;
Douglas Gregore060e572013-01-25 01:03:03 +0000133 while (!Done) {
134 llvm::BitstreamEntry Entry = Cursor.advance();
135
136 switch (Entry.Kind) {
137 case llvm::BitstreamEntry::Error:
138 return;
139
140 case llvm::BitstreamEntry::EndBlock:
141 if (InGlobalIndexBlock) {
142 InGlobalIndexBlock = false;
143 Done = true;
144 continue;
145 }
146 return;
147
148
149 case llvm::BitstreamEntry::Record:
150 // Entries in the global index block are handled below.
151 if (InGlobalIndexBlock)
152 break;
153
154 return;
155
156 case llvm::BitstreamEntry::SubBlock:
157 if (!InGlobalIndexBlock && Entry.ID == GLOBAL_INDEX_BLOCK_ID) {
158 if (Cursor.EnterSubBlock(GLOBAL_INDEX_BLOCK_ID))
159 return;
160
161 InGlobalIndexBlock = true;
162 } else if (Cursor.SkipBlock()) {
163 return;
164 }
165 continue;
166 }
167
168 SmallVector<uint64_t, 64> Record;
169 StringRef Blob;
170 switch ((IndexRecordTypes)Cursor.readRecord(Entry.ID, Record, &Blob)) {
171 case INDEX_METADATA:
172 // Make sure that the version matches.
173 if (Record.size() < 1 || Record[0] != CurrentVersion)
174 return;
175 break;
176
177 case MODULE: {
178 unsigned Idx = 0;
179 unsigned ID = Record[Idx++];
Douglas Gregor7029ce12013-03-19 00:28:20 +0000180
181 // Make room for this module's information.
182 if (ID == Modules.size())
183 Modules.push_back(ModuleInfo());
184 else
185 Modules.resize(ID + 1);
186
187 // Size/modification time for this module file at the time the
188 // global index was built.
189 Modules[ID].Size = Record[Idx++];
190 Modules[ID].ModTime = Record[Idx++];
Douglas Gregore060e572013-01-25 01:03:03 +0000191
192 // File name.
193 unsigned NameLen = Record[Idx++];
Douglas Gregor7029ce12013-03-19 00:28:20 +0000194 Modules[ID].FileName.assign(Record.begin() + Idx,
195 Record.begin() + Idx + NameLen);
Douglas Gregore060e572013-01-25 01:03:03 +0000196 Idx += NameLen;
197
198 // Dependencies
199 unsigned NumDeps = Record[Idx++];
Douglas Gregor7029ce12013-03-19 00:28:20 +0000200 Modules[ID].Dependencies.insert(Modules[ID].Dependencies.end(),
201 Record.begin() + Idx,
202 Record.begin() + Idx + NumDeps);
203 Idx += NumDeps;
Douglas Gregore060e572013-01-25 01:03:03 +0000204
Douglas Gregor7029ce12013-03-19 00:28:20 +0000205 // Make sure we're at the end of the record.
206 assert(Idx == Record.size() && "More module info?");
Douglas Gregor603cd862013-03-22 18:50:14 +0000207
208 // Record this module as an unresolved module.
Ben Langmuirbeee15e2014-04-14 18:00:01 +0000209 // FIXME: this doesn't work correctly for module names containing path
210 // separators.
211 StringRef ModuleName = llvm::sys::path::stem(Modules[ID].FileName);
212 // Remove the -<hash of ModuleMapPath>
213 ModuleName = ModuleName.rsplit('-').first;
214 UnresolvedModules[ModuleName] = ID;
Douglas Gregore060e572013-01-25 01:03:03 +0000215 break;
216 }
217
218 case IDENTIFIER_INDEX:
219 // Wire up the identifier index.
220 if (Record[0]) {
221 IdentifierIndex = IdentifierIndexTable::Create(
Justin Bognerda4e6502014-04-14 16:34:29 +0000222 (const unsigned char *)Blob.data() + Record[0],
223 (const unsigned char *)Blob.data() + sizeof(uint32_t),
224 (const unsigned char *)Blob.data(), IdentifierIndexReaderTrait());
Douglas Gregore060e572013-01-25 01:03:03 +0000225 }
226 break;
227 }
228 }
Douglas Gregore060e572013-01-25 01:03:03 +0000229}
230
Nico Webere68b8472014-04-25 19:45:23 +0000231GlobalModuleIndex::~GlobalModuleIndex() {
232 delete static_cast<IdentifierIndexTable *>(IdentifierIndex);
233}
Douglas Gregore060e572013-01-25 01:03:03 +0000234
235std::pair<GlobalModuleIndex *, GlobalModuleIndex::ErrorCode>
Douglas Gregor7029ce12013-03-19 00:28:20 +0000236GlobalModuleIndex::readIndex(StringRef Path) {
Douglas Gregore060e572013-01-25 01:03:03 +0000237 // Load the index file, if it's there.
238 llvm::SmallString<128> IndexPath;
239 IndexPath += Path;
240 llvm::sys::path::append(IndexPath, IndexFileName);
241
Rafael Espindola2d2b4202014-07-06 17:43:24 +0000242 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> BufferOrErr =
243 llvm::MemoryBuffer::getFile(IndexPath.c_str());
244 if (!BufferOrErr)
Craig Toppera13603a2014-05-22 05:54:18 +0000245 return std::make_pair(nullptr, EC_NotFound);
Rafael Espindola2d2b4202014-07-06 17:43:24 +0000246 std::unique_ptr<llvm::MemoryBuffer> Buffer = std::move(BufferOrErr.get());
Douglas Gregore060e572013-01-25 01:03:03 +0000247
Douglas Gregore060e572013-01-25 01:03:03 +0000248 /// \brief The main bitstream cursor for the main block.
Peter Collingbourne77c89b62016-11-08 04:17:11 +0000249 llvm::BitstreamCursor Cursor(*Buffer);
Douglas Gregore060e572013-01-25 01:03:03 +0000250
251 // Sniff for the signature.
252 if (Cursor.Read(8) != 'B' ||
253 Cursor.Read(8) != 'C' ||
254 Cursor.Read(8) != 'G' ||
255 Cursor.Read(8) != 'I') {
Craig Toppera13603a2014-05-22 05:54:18 +0000256 return std::make_pair(nullptr, EC_IOError);
Douglas Gregore060e572013-01-25 01:03:03 +0000257 }
Ahmed Charles9a16beb2014-03-07 19:33:25 +0000258
David Blaikieafa10d32014-08-11 18:47:26 +0000259 return std::make_pair(new GlobalModuleIndex(std::move(Buffer), Cursor),
Ahmed Charles9a16beb2014-03-07 19:33:25 +0000260 EC_None);
Douglas Gregore060e572013-01-25 01:03:03 +0000261}
262
Douglas Gregor7029ce12013-03-19 00:28:20 +0000263void
264GlobalModuleIndex::getKnownModules(SmallVectorImpl<ModuleFile *> &ModuleFiles) {
Douglas Gregore060e572013-01-25 01:03:03 +0000265 ModuleFiles.clear();
266 for (unsigned I = 0, N = Modules.size(); I != N; ++I) {
Douglas Gregor603cd862013-03-22 18:50:14 +0000267 if (ModuleFile *MF = Modules[I].File)
268 ModuleFiles.push_back(MF);
Douglas Gregore060e572013-01-25 01:03:03 +0000269 }
270}
271
272void GlobalModuleIndex::getModuleDependencies(
Douglas Gregor7029ce12013-03-19 00:28:20 +0000273 ModuleFile *File,
274 SmallVectorImpl<ModuleFile *> &Dependencies) {
Douglas Gregore060e572013-01-25 01:03:03 +0000275 // Look for information about this module file.
Douglas Gregor7029ce12013-03-19 00:28:20 +0000276 llvm::DenseMap<ModuleFile *, unsigned>::iterator Known
277 = ModulesByFile.find(File);
Douglas Gregore060e572013-01-25 01:03:03 +0000278 if (Known == ModulesByFile.end())
279 return;
280
281 // Record dependencies.
Douglas Gregor7029ce12013-03-19 00:28:20 +0000282 Dependencies.clear();
283 ArrayRef<unsigned> StoredDependencies = Modules[Known->second].Dependencies;
284 for (unsigned I = 0, N = StoredDependencies.size(); I != N; ++I) {
Douglas Gregor603cd862013-03-22 18:50:14 +0000285 if (ModuleFile *MF = Modules[I].File)
Douglas Gregor7029ce12013-03-19 00:28:20 +0000286 Dependencies.push_back(MF);
287 }
Douglas Gregore060e572013-01-25 01:03:03 +0000288}
289
Douglas Gregor7211ac12013-01-25 23:32:03 +0000290bool GlobalModuleIndex::lookupIdentifier(StringRef Name, HitSet &Hits) {
291 Hits.clear();
Douglas Gregore060e572013-01-25 01:03:03 +0000292
293 // If there's no identifier index, there is nothing we can do.
294 if (!IdentifierIndex)
295 return false;
296
297 // Look into the identifier index.
298 ++NumIdentifierLookups;
299 IdentifierIndexTable &Table
300 = *static_cast<IdentifierIndexTable *>(IdentifierIndex);
301 IdentifierIndexTable::iterator Known = Table.find(Name);
302 if (Known == Table.end()) {
303 return true;
304 }
305
306 SmallVector<unsigned, 2> ModuleIDs = *Known;
307 for (unsigned I = 0, N = ModuleIDs.size(); I != N; ++I) {
Douglas Gregor603cd862013-03-22 18:50:14 +0000308 if (ModuleFile *MF = Modules[ModuleIDs[I]].File)
309 Hits.insert(MF);
Douglas Gregore060e572013-01-25 01:03:03 +0000310 }
311
312 ++NumIdentifierLookupHits;
313 return true;
314}
315
Douglas Gregor603cd862013-03-22 18:50:14 +0000316bool GlobalModuleIndex::loadedModuleFile(ModuleFile *File) {
317 // Look for the module in the global module index based on the module name.
Ben Langmuirbeee15e2014-04-14 18:00:01 +0000318 StringRef Name = File->ModuleName;
Douglas Gregor603cd862013-03-22 18:50:14 +0000319 llvm::StringMap<unsigned>::iterator Known = UnresolvedModules.find(Name);
320 if (Known == UnresolvedModules.end()) {
321 return true;
Douglas Gregor7029ce12013-03-19 00:28:20 +0000322 }
323
Douglas Gregor603cd862013-03-22 18:50:14 +0000324 // Rectify this module with the global module index.
325 ModuleInfo &Info = Modules[Known->second];
326
327 // If the size and modification time match what we expected, record this
328 // module file.
329 bool Failed = true;
330 if (File->File->getSize() == Info.Size &&
331 File->File->getModificationTime() == Info.ModTime) {
332 Info.File = File;
333 ModulesByFile[File] = Known->second;
334
335 Failed = false;
Douglas Gregor7029ce12013-03-19 00:28:20 +0000336 }
337
Douglas Gregor603cd862013-03-22 18:50:14 +0000338 // One way or another, we have resolved this module file.
339 UnresolvedModules.erase(Known);
340 return Failed;
Douglas Gregor7029ce12013-03-19 00:28:20 +0000341}
342
Douglas Gregore060e572013-01-25 01:03:03 +0000343void GlobalModuleIndex::printStats() {
344 std::fprintf(stderr, "*** Global Module Index Statistics:\n");
345 if (NumIdentifierLookups) {
346 fprintf(stderr, " %u / %u identifier lookups succeeded (%f%%)\n",
347 NumIdentifierLookupHits, NumIdentifierLookups,
348 (double)NumIdentifierLookupHits*100.0/NumIdentifierLookups);
349 }
Douglas Gregore060e572013-01-25 01:03:03 +0000350 std::fprintf(stderr, "\n");
351}
352
Yaron Kerencdae9412016-01-29 19:38:18 +0000353LLVM_DUMP_METHOD void GlobalModuleIndex::dump() {
John Thompsona39baf12014-04-17 17:06:13 +0000354 llvm::errs() << "*** Global Module Index Dump:\n";
355 llvm::errs() << "Module files:\n";
John Thompson4f52d442014-04-17 18:17:36 +0000356 for (auto &MI : Modules) {
John Thompsona39baf12014-04-17 17:06:13 +0000357 llvm::errs() << "** " << MI.FileName << "\n";
358 if (MI.File)
359 MI.File->dump();
John Thompsonbcdcc922014-04-16 21:03:41 +0000360 else
John Thompsona39baf12014-04-17 17:06:13 +0000361 llvm::errs() << "\n";
John Thompsonbcdcc922014-04-16 21:03:41 +0000362 }
John Thompsona39baf12014-04-17 17:06:13 +0000363 llvm::errs() << "\n";
John Thompsonbcdcc922014-04-16 21:03:41 +0000364}
365
Douglas Gregore060e572013-01-25 01:03:03 +0000366//----------------------------------------------------------------------------//
Douglas Gregor5e306b12013-01-23 22:38:11 +0000367// Global module index writer.
368//----------------------------------------------------------------------------//
369
370namespace {
371 /// \brief Provides information about a specific module file.
372 struct ModuleFileInfo {
373 /// \brief The numberic ID for this module file.
374 unsigned ID;
375
376 /// \brief The set of modules on which this module depends. Each entry is
377 /// a module ID.
378 SmallVector<unsigned, 4> Dependencies;
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000379 ASTFileSignature Signature;
380 };
381
382 struct ImportedModuleFileInfo {
383 off_t StoredSize;
384 time_t StoredModTime;
385 ASTFileSignature StoredSignature;
386 ImportedModuleFileInfo(off_t Size, time_t ModTime, ASTFileSignature Sig)
387 : StoredSize(Size), StoredModTime(ModTime), StoredSignature(Sig) {}
Douglas Gregor5e306b12013-01-23 22:38:11 +0000388 };
389
390 /// \brief Builder that generates the global module index file.
391 class GlobalModuleIndexBuilder {
392 FileManager &FileMgr;
Adrian Prantlfb2398d2015-07-17 01:19:54 +0000393 const PCHContainerReader &PCHContainerRdr;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000394
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000395 /// Mapping from files to module file information.
Douglas Gregor5e306b12013-01-23 22:38:11 +0000396 typedef llvm::MapVector<const FileEntry *, ModuleFileInfo> ModuleFilesMap;
397
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000398 /// Information about each of the known module files.
Douglas Gregor5e306b12013-01-23 22:38:11 +0000399 ModuleFilesMap ModuleFiles;
400
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000401 /// \brief Mapping from the imported module file to the imported
402 /// information.
403 typedef std::multimap<const FileEntry *, ImportedModuleFileInfo>
404 ImportedModuleFilesMap;
405
406 /// \brief Information about each importing of a module file.
407 ImportedModuleFilesMap ImportedModuleFiles;
408
Douglas Gregor5e306b12013-01-23 22:38:11 +0000409 /// \brief Mapping from identifiers to the list of module file IDs that
410 /// consider this identifier to be interesting.
411 typedef llvm::StringMap<SmallVector<unsigned, 2> > InterestingIdentifierMap;
412
413 /// \brief A mapping from all interesting identifiers to the set of module
414 /// files in which those identifiers are considered interesting.
415 InterestingIdentifierMap InterestingIdentifiers;
416
417 /// \brief Write the block-info block for the global module index file.
418 void emitBlockInfoBlock(llvm::BitstreamWriter &Stream);
419
420 /// \brief Retrieve the module file information for the given file.
421 ModuleFileInfo &getModuleFileInfo(const FileEntry *File) {
422 llvm::MapVector<const FileEntry *, ModuleFileInfo>::iterator Known
423 = ModuleFiles.find(File);
424 if (Known != ModuleFiles.end())
425 return Known->second;
426
427 unsigned NewID = ModuleFiles.size();
428 ModuleFileInfo &Info = ModuleFiles[File];
429 Info.ID = NewID;
430 return Info;
431 }
432
433 public:
Adrian Prantlbb165fb2015-06-20 18:53:08 +0000434 explicit GlobalModuleIndexBuilder(
Adrian Prantlfb2398d2015-07-17 01:19:54 +0000435 FileManager &FileMgr, const PCHContainerReader &PCHContainerRdr)
436 : FileMgr(FileMgr), PCHContainerRdr(PCHContainerRdr) {}
Douglas Gregor5e306b12013-01-23 22:38:11 +0000437
438 /// \brief Load the contents of the given module file into the builder.
439 ///
440 /// \returns true if an error occurred, false otherwise.
441 bool loadModuleFile(const FileEntry *File);
442
443 /// \brief Write the index to the given bitstream.
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000444 /// \returns true if an error occurred, false otherwise.
445 bool writeIndex(llvm::BitstreamWriter &Stream);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000446 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000447}
Douglas Gregor5e306b12013-01-23 22:38:11 +0000448
449static void emitBlockID(unsigned ID, const char *Name,
450 llvm::BitstreamWriter &Stream,
451 SmallVectorImpl<uint64_t> &Record) {
452 Record.clear();
453 Record.push_back(ID);
454 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
455
456 // Emit the block name if present.
Craig Toppera13603a2014-05-22 05:54:18 +0000457 if (!Name || Name[0] == 0) return;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000458 Record.clear();
459 while (*Name)
460 Record.push_back(*Name++);
461 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
462}
463
464static void emitRecordID(unsigned ID, const char *Name,
465 llvm::BitstreamWriter &Stream,
466 SmallVectorImpl<uint64_t> &Record) {
467 Record.clear();
468 Record.push_back(ID);
469 while (*Name)
470 Record.push_back(*Name++);
471 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
472}
473
474void
475GlobalModuleIndexBuilder::emitBlockInfoBlock(llvm::BitstreamWriter &Stream) {
476 SmallVector<uint64_t, 64> Record;
Peter Collingbourned3a6c702016-11-01 01:18:57 +0000477 Stream.EnterBlockInfoBlock();
Douglas Gregor5e306b12013-01-23 22:38:11 +0000478
479#define BLOCK(X) emitBlockID(X ## _ID, #X, Stream, Record)
480#define RECORD(X) emitRecordID(X, #X, Stream, Record)
481 BLOCK(GLOBAL_INDEX_BLOCK);
Douglas Gregore060e572013-01-25 01:03:03 +0000482 RECORD(INDEX_METADATA);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000483 RECORD(MODULE);
484 RECORD(IDENTIFIER_INDEX);
485#undef RECORD
486#undef BLOCK
487
488 Stream.ExitBlock();
489}
490
Douglas Gregore060e572013-01-25 01:03:03 +0000491namespace {
Douglas Gregor5e306b12013-01-23 22:38:11 +0000492 class InterestingASTIdentifierLookupTrait
493 : public serialization::reader::ASTIdentifierLookupTraitBase {
494
495 public:
496 /// \brief The identifier and whether it is "interesting".
497 typedef std::pair<StringRef, bool> data_type;
498
499 data_type ReadData(const internal_key_type& k,
500 const unsigned char* d,
501 unsigned DataLen) {
502 // The first bit indicates whether this identifier is interesting.
503 // That's all we care about.
Justin Bogner57ba0b22014-03-28 22:03:24 +0000504 using namespace llvm::support;
505 unsigned RawID = endian::readNext<uint32_t, little, unaligned>(d);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000506 bool IsInteresting = RawID & 0x01;
507 return std::make_pair(k, IsInteresting);
508 }
509 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000510}
Douglas Gregor5e306b12013-01-23 22:38:11 +0000511
512bool GlobalModuleIndexBuilder::loadModuleFile(const FileEntry *File) {
513 // Open the module file.
Rafael Espindola6406f7b2014-08-26 19:54:40 +0000514
Benjamin Kramera8857962014-10-26 22:44:13 +0000515 auto Buffer = FileMgr.getBufferForFile(File, /*isVolatile=*/true);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000516 if (!Buffer) {
517 return true;
518 }
519
520 // Initialize the input stream
Peter Collingbourne77c89b62016-11-08 04:17:11 +0000521 llvm::BitstreamCursor InStream(PCHContainerRdr.ExtractPCH(**Buffer));
Douglas Gregor5e306b12013-01-23 22:38:11 +0000522
523 // Sniff for the signature.
524 if (InStream.Read(8) != 'C' ||
525 InStream.Read(8) != 'P' ||
526 InStream.Read(8) != 'C' ||
527 InStream.Read(8) != 'H') {
528 return true;
529 }
530
531 // Record this module file and assign it a unique ID (if it doesn't have
532 // one already).
533 unsigned ID = getModuleFileInfo(File).ID;
534
535 // Search for the blocks and records we care about.
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000536 enum { Other, ControlBlock, ASTBlock, DiagnosticOptionsBlock } State = Other;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000537 bool Done = false;
538 while (!Done) {
Douglas Gregore060e572013-01-25 01:03:03 +0000539 llvm::BitstreamEntry Entry = InStream.advance();
Douglas Gregor5e306b12013-01-23 22:38:11 +0000540 switch (Entry.Kind) {
541 case llvm::BitstreamEntry::Error:
Douglas Gregore060e572013-01-25 01:03:03 +0000542 Done = true;
543 continue;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000544
545 case llvm::BitstreamEntry::Record:
Douglas Gregore060e572013-01-25 01:03:03 +0000546 // In the 'other' state, just skip the record. We don't care.
547 if (State == Other) {
Douglas Gregor5e306b12013-01-23 22:38:11 +0000548 InStream.skipRecord(Entry.ID);
549 continue;
550 }
551
552 // Handle potentially-interesting records below.
553 break;
554
555 case llvm::BitstreamEntry::SubBlock:
Douglas Gregore060e572013-01-25 01:03:03 +0000556 if (Entry.ID == CONTROL_BLOCK_ID) {
Douglas Gregor5e306b12013-01-23 22:38:11 +0000557 if (InStream.EnterSubBlock(CONTROL_BLOCK_ID))
558 return true;
559
560 // Found the control block.
561 State = ControlBlock;
562 continue;
563 }
564
Douglas Gregore060e572013-01-25 01:03:03 +0000565 if (Entry.ID == AST_BLOCK_ID) {
Douglas Gregor5e306b12013-01-23 22:38:11 +0000566 if (InStream.EnterSubBlock(AST_BLOCK_ID))
567 return true;
568
569 // Found the AST block.
570 State = ASTBlock;
571 continue;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000572 }
573
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000574 if (Entry.ID == UNHASHED_CONTROL_BLOCK_ID) {
575 if (InStream.EnterSubBlock(UNHASHED_CONTROL_BLOCK_ID))
576 return true;
577
578 // Found the Diagnostic Options block.
579 State = DiagnosticOptionsBlock;
580 continue;
581 }
582
Douglas Gregor5e306b12013-01-23 22:38:11 +0000583 if (InStream.SkipBlock())
584 return true;
585
586 continue;
587
588 case llvm::BitstreamEntry::EndBlock:
Douglas Gregore060e572013-01-25 01:03:03 +0000589 State = Other;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000590 continue;
591 }
592
593 // Read the given record.
594 SmallVector<uint64_t, 64> Record;
595 StringRef Blob;
596 unsigned Code = InStream.readRecord(Entry.ID, Record, &Blob);
597
598 // Handle module dependencies.
599 if (State == ControlBlock && Code == IMPORTS) {
600 // Load each of the imported PCH files.
601 unsigned Idx = 0, N = Record.size();
602 while (Idx < N) {
603 // Read information about the AST file.
604
605 // Skip the imported kind
606 ++Idx;
607
608 // Skip the import location
609 ++Idx;
610
Douglas Gregor7029ce12013-03-19 00:28:20 +0000611 // Load stored size/modification time.
612 off_t StoredSize = (off_t)Record[Idx++];
613 time_t StoredModTime = (time_t)Record[Idx++];
614
Ben Langmuir487ea142014-10-23 18:05:36 +0000615 // Skip the stored signature.
616 // FIXME: we could read the signature out of the import and validate it.
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000617 ASTFileSignature StoredSignature = {
618 {{(uint32_t)Record[Idx++], (uint32_t)Record[Idx++],
619 (uint32_t)Record[Idx++], (uint32_t)Record[Idx++],
620 (uint32_t)Record[Idx++]}}};
Ben Langmuir487ea142014-10-23 18:05:36 +0000621
Boris Kolpackovd30446f2017-08-31 06:26:43 +0000622 // Skip the module name (currently this is only used for prebuilt
623 // modules while here we are only dealing with cached).
624 Idx += Record[Idx] + 1;
625
Douglas Gregor5e306b12013-01-23 22:38:11 +0000626 // Retrieve the imported file name.
627 unsigned Length = Record[Idx++];
628 SmallString<128> ImportedFile(Record.begin() + Idx,
629 Record.begin() + Idx + Length);
630 Idx += Length;
631
632 // Find the imported module file.
Douglas Gregordadd85d2013-02-08 21:27:45 +0000633 const FileEntry *DependsOnFile
634 = FileMgr.getFile(ImportedFile, /*openFile=*/false,
635 /*cacheFailure=*/false);
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000636
637 if (!DependsOnFile)
Douglas Gregor5e306b12013-01-23 22:38:11 +0000638 return true;
639
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000640 // Save the information in ImportedModuleFileInfo so we can verify after
641 // loading all pcms.
642 ImportedModuleFiles.insert(std::make_pair(
643 DependsOnFile, ImportedModuleFileInfo(StoredSize, StoredModTime,
644 StoredSignature)));
645
Douglas Gregor5e306b12013-01-23 22:38:11 +0000646 // Record the dependency.
647 unsigned DependsOnID = getModuleFileInfo(DependsOnFile).ID;
648 getModuleFileInfo(File).Dependencies.push_back(DependsOnID);
649 }
650
651 continue;
652 }
653
654 // Handle the identifier table
655 if (State == ASTBlock && Code == IDENTIFIER_TABLE && Record[0] > 0) {
Justin Bognerbb094f02014-04-18 19:57:06 +0000656 typedef llvm::OnDiskIterableChainedHashTable<
657 InterestingASTIdentifierLookupTrait> InterestingIdentifierTable;
Ahmed Charlesb8984322014-03-07 20:03:18 +0000658 std::unique_ptr<InterestingIdentifierTable> Table(
659 InterestingIdentifierTable::Create(
660 (const unsigned char *)Blob.data() + Record[0],
Justin Bognerda4e6502014-04-14 16:34:29 +0000661 (const unsigned char *)Blob.data() + sizeof(uint32_t),
Ahmed Charlesb8984322014-03-07 20:03:18 +0000662 (const unsigned char *)Blob.data()));
Douglas Gregor5e306b12013-01-23 22:38:11 +0000663 for (InterestingIdentifierTable::data_iterator D = Table->data_begin(),
664 DEnd = Table->data_end();
665 D != DEnd; ++D) {
666 std::pair<StringRef, bool> Ident = *D;
667 if (Ident.second)
668 InterestingIdentifiers[Ident.first].push_back(ID);
Douglas Gregore060e572013-01-25 01:03:03 +0000669 else
670 (void)InterestingIdentifiers[Ident.first];
Douglas Gregor5e306b12013-01-23 22:38:11 +0000671 }
672 }
673
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000674 // Get Signature.
675 if (State == DiagnosticOptionsBlock && Code == SIGNATURE)
676 getModuleFileInfo(File).Signature = {
677 {{(uint32_t)Record[0], (uint32_t)Record[1], (uint32_t)Record[2],
678 (uint32_t)Record[3], (uint32_t)Record[4]}}};
679
Douglas Gregor5e306b12013-01-23 22:38:11 +0000680 // We don't care about this record.
681 }
682
683 return false;
684}
685
686namespace {
687
688/// \brief Trait used to generate the identifier index as an on-disk hash
689/// table.
690class IdentifierIndexWriterTrait {
691public:
692 typedef StringRef key_type;
693 typedef StringRef key_type_ref;
694 typedef SmallVector<unsigned, 2> data_type;
695 typedef const SmallVector<unsigned, 2> &data_type_ref;
Justin Bogner25463f12014-04-18 20:27:24 +0000696 typedef unsigned hash_value_type;
697 typedef unsigned offset_type;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000698
Justin Bogner25463f12014-04-18 20:27:24 +0000699 static hash_value_type ComputeHash(key_type_ref Key) {
Douglas Gregor5e306b12013-01-23 22:38:11 +0000700 return llvm::HashString(Key);
701 }
702
703 std::pair<unsigned,unsigned>
704 EmitKeyDataLength(raw_ostream& Out, key_type_ref Key, data_type_ref Data) {
Justin Bognere1c147c2014-03-28 22:03:19 +0000705 using namespace llvm::support;
706 endian::Writer<little> LE(Out);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000707 unsigned KeyLen = Key.size();
708 unsigned DataLen = Data.size() * 4;
Justin Bognere1c147c2014-03-28 22:03:19 +0000709 LE.write<uint16_t>(KeyLen);
710 LE.write<uint16_t>(DataLen);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000711 return std::make_pair(KeyLen, DataLen);
712 }
713
714 void EmitKey(raw_ostream& Out, key_type_ref Key, unsigned KeyLen) {
715 Out.write(Key.data(), KeyLen);
716 }
717
718 void EmitData(raw_ostream& Out, key_type_ref Key, data_type_ref Data,
719 unsigned DataLen) {
Justin Bognere1c147c2014-03-28 22:03:19 +0000720 using namespace llvm::support;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000721 for (unsigned I = 0, N = Data.size(); I != N; ++I)
Justin Bognere1c147c2014-03-28 22:03:19 +0000722 endian::Writer<little>(Out).write<uint32_t>(Data[I]);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000723 }
724};
725
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000726}
Douglas Gregor5e306b12013-01-23 22:38:11 +0000727
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000728bool GlobalModuleIndexBuilder::writeIndex(llvm::BitstreamWriter &Stream) {
729 for (auto MapEntry : ImportedModuleFiles) {
730 auto *File = MapEntry.first;
731 ImportedModuleFileInfo &Info = MapEntry.second;
732 if (getModuleFileInfo(File).Signature) {
733 if (getModuleFileInfo(File).Signature != Info.StoredSignature)
734 // Verify Signature.
735 return true;
736 } else if (Info.StoredSize != File->getSize() ||
737 Info.StoredModTime != File->getModificationTime())
738 // Verify Size and ModTime.
739 return true;
740 }
741
Douglas Gregor5e306b12013-01-23 22:38:11 +0000742 using namespace llvm;
743
744 // Emit the file header.
745 Stream.Emit((unsigned)'B', 8);
746 Stream.Emit((unsigned)'C', 8);
747 Stream.Emit((unsigned)'G', 8);
748 Stream.Emit((unsigned)'I', 8);
749
750 // Write the block-info block, which describes the records in this bitcode
751 // file.
752 emitBlockInfoBlock(Stream);
753
754 Stream.EnterSubblock(GLOBAL_INDEX_BLOCK_ID, 3);
755
756 // Write the metadata.
757 SmallVector<uint64_t, 2> Record;
758 Record.push_back(CurrentVersion);
Douglas Gregore060e572013-01-25 01:03:03 +0000759 Stream.EmitRecord(INDEX_METADATA, Record);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000760
761 // Write the set of known module files.
762 for (ModuleFilesMap::iterator M = ModuleFiles.begin(),
763 MEnd = ModuleFiles.end();
764 M != MEnd; ++M) {
765 Record.clear();
766 Record.push_back(M->second.ID);
767 Record.push_back(M->first->getSize());
768 Record.push_back(M->first->getModificationTime());
769
770 // File name
771 StringRef Name(M->first->getName());
772 Record.push_back(Name.size());
773 Record.append(Name.begin(), Name.end());
774
775 // Dependencies
776 Record.push_back(M->second.Dependencies.size());
777 Record.append(M->second.Dependencies.begin(), M->second.Dependencies.end());
778 Stream.EmitRecord(MODULE, Record);
779 }
780
781 // Write the identifier -> module file mapping.
782 {
Justin Bognerbb094f02014-04-18 19:57:06 +0000783 llvm::OnDiskChainedHashTableGenerator<IdentifierIndexWriterTrait> Generator;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000784 IdentifierIndexWriterTrait Trait;
785
786 // Populate the hash table.
787 for (InterestingIdentifierMap::iterator I = InterestingIdentifiers.begin(),
788 IEnd = InterestingIdentifiers.end();
789 I != IEnd; ++I) {
790 Generator.insert(I->first(), I->second, Trait);
791 }
792
793 // Create the on-disk hash table in a buffer.
794 SmallString<4096> IdentifierTable;
795 uint32_t BucketOffset;
796 {
Justin Bognere1c147c2014-03-28 22:03:19 +0000797 using namespace llvm::support;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000798 llvm::raw_svector_ostream Out(IdentifierTable);
799 // Make sure that no bucket is at offset 0
Justin Bognere1c147c2014-03-28 22:03:19 +0000800 endian::Writer<little>(Out).write<uint32_t>(0);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000801 BucketOffset = Generator.Emit(Out, Trait);
802 }
803
804 // Create a blob abbreviation
David Blaikieb44f0bf2017-01-04 22:36:43 +0000805 auto Abbrev = std::make_shared<BitCodeAbbrev>();
Douglas Gregor5e306b12013-01-23 22:38:11 +0000806 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_INDEX));
807 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
808 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
David Blaikieb44f0bf2017-01-04 22:36:43 +0000809 unsigned IDTableAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
Douglas Gregor5e306b12013-01-23 22:38:11 +0000810
811 // Write the identifier table
Mehdi Amini57a41912015-09-10 01:46:39 +0000812 uint64_t Record[] = {IDENTIFIER_INDEX, BucketOffset};
Yaron Keren92e1b622015-03-18 10:17:07 +0000813 Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000814 }
815
Douglas Gregor5e306b12013-01-23 22:38:11 +0000816 Stream.ExitBlock();
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000817 return false;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000818}
819
820GlobalModuleIndex::ErrorCode
Adrian Prantlbb165fb2015-06-20 18:53:08 +0000821GlobalModuleIndex::writeIndex(FileManager &FileMgr,
Adrian Prantlfb2398d2015-07-17 01:19:54 +0000822 const PCHContainerReader &PCHContainerRdr,
Adrian Prantlbb165fb2015-06-20 18:53:08 +0000823 StringRef Path) {
Douglas Gregor5e306b12013-01-23 22:38:11 +0000824 llvm::SmallString<128> IndexPath;
825 IndexPath += Path;
826 llvm::sys::path::append(IndexPath, IndexFileName);
827
828 // Coordinate building the global index file with other processes that might
829 // try to do the same.
830 llvm::LockFileManager Locked(IndexPath);
831 switch (Locked) {
832 case llvm::LockFileManager::LFS_Error:
833 return EC_IOError;
834
835 case llvm::LockFileManager::LFS_Owned:
836 // We're responsible for building the index ourselves. Do so below.
837 break;
838
839 case llvm::LockFileManager::LFS_Shared:
840 // Someone else is responsible for building the index. We don't care
841 // when they finish, so we're done.
842 return EC_Building;
843 }
844
845 // The module index builder.
Adrian Prantlfb2398d2015-07-17 01:19:54 +0000846 GlobalModuleIndexBuilder Builder(FileMgr, PCHContainerRdr);
Adrian Prantlbb165fb2015-06-20 18:53:08 +0000847
Douglas Gregor5e306b12013-01-23 22:38:11 +0000848 // Load each of the module files.
Rafael Espindolac0809172014-06-12 14:02:15 +0000849 std::error_code EC;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000850 for (llvm::sys::fs::directory_iterator D(Path, EC), DEnd;
851 D != DEnd && !EC;
852 D.increment(EC)) {
853 // If this isn't a module file, we don't care.
854 if (llvm::sys::path::extension(D->path()) != ".pcm") {
855 // ... unless it's a .pcm.lock file, which indicates that someone is
856 // in the process of rebuilding a module. They'll rebuild the index
857 // at the end of that translation unit, so we don't have to.
858 if (llvm::sys::path::extension(D->path()) == ".pcm.lock")
859 return EC_Building;
860
861 continue;
862 }
863
864 // If we can't find the module file, skip it.
865 const FileEntry *ModuleFile = FileMgr.getFile(D->path());
866 if (!ModuleFile)
867 continue;
868
869 // Load this module file.
870 if (Builder.loadModuleFile(ModuleFile))
871 return EC_IOError;
872 }
873
874 // The output buffer, into which the global index will be written.
875 SmallVector<char, 16> OutputBuffer;
876 {
877 llvm::BitstreamWriter OutputStream(OutputBuffer);
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +0000878 if (Builder.writeIndex(OutputStream))
879 return EC_IOError;
Douglas Gregor5e306b12013-01-23 22:38:11 +0000880 }
881
882 // Write the global index file to a temporary file.
883 llvm::SmallString<128> IndexTmpPath;
884 int TmpFD;
Rafael Espindola18627112013-07-05 21:13:58 +0000885 if (llvm::sys::fs::createUniqueFile(IndexPath + "-%%%%%%%%", TmpFD,
886 IndexTmpPath))
Douglas Gregor5e306b12013-01-23 22:38:11 +0000887 return EC_IOError;
888
889 // Open the temporary global index file for output.
NAKAMURA Takumie00c9862013-01-24 08:20:11 +0000890 llvm::raw_fd_ostream Out(TmpFD, true);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000891 if (Out.has_error())
892 return EC_IOError;
893
894 // Write the index.
895 Out.write(OutputBuffer.data(), OutputBuffer.size());
896 Out.close();
897 if (Out.has_error())
898 return EC_IOError;
899
900 // Remove the old index file. It isn't relevant any more.
Yaron Keren92e1b622015-03-18 10:17:07 +0000901 llvm::sys::fs::remove(IndexPath);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000902
903 // Rename the newly-written index file to the proper name.
Yaron Keren92e1b622015-03-18 10:17:07 +0000904 if (llvm::sys::fs::rename(IndexTmpPath, IndexPath)) {
Douglas Gregor5e306b12013-01-23 22:38:11 +0000905 // Rename failed; just remove the
Yaron Keren92e1b622015-03-18 10:17:07 +0000906 llvm::sys::fs::remove(IndexTmpPath);
Douglas Gregor5e306b12013-01-23 22:38:11 +0000907 return EC_IOError;
908 }
909
910 // We're done.
911 return EC_None;
912}
Argyrios Kyrtzidis9aca3c62013-04-17 22:10:55 +0000913
914namespace {
915 class GlobalIndexIdentifierIterator : public IdentifierIterator {
916 /// \brief The current position within the identifier lookup table.
917 IdentifierIndexTable::key_iterator Current;
918
919 /// \brief The end position within the identifier lookup table.
920 IdentifierIndexTable::key_iterator End;
921
922 public:
923 explicit GlobalIndexIdentifierIterator(IdentifierIndexTable &Idx) {
924 Current = Idx.key_begin();
925 End = Idx.key_end();
926 }
927
Craig Topper3e89dfe2014-03-13 02:13:41 +0000928 StringRef Next() override {
Argyrios Kyrtzidis9aca3c62013-04-17 22:10:55 +0000929 if (Current == End)
930 return StringRef();
931
932 StringRef Result = *Current;
933 ++Current;
934 return Result;
935 }
936 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000937}
Argyrios Kyrtzidis9aca3c62013-04-17 22:10:55 +0000938
939IdentifierIterator *GlobalModuleIndex::createIdentifierIterator() const {
940 IdentifierIndexTable &Table =
941 *static_cast<IdentifierIndexTable *>(IdentifierIndex);
942 return new GlobalIndexIdentifierIterator(Table);
943}