blob: 32e6de69f0dbf6c888050d847ed4cbb1620bbdad [file] [log] [blame]
Douglas Gregor065f8d12010-03-18 17:52:52 +00001//===--- PreprocessingRecord.cpp - Record of Preprocessing ------*- 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 PreprocessingRecord class, which maintains a record
11// of what occurred during preprocessing, and its helpers.
12//
13//===----------------------------------------------------------------------===//
14#include "clang/Lex/PreprocessingRecord.h"
15#include "clang/Lex/MacroInfo.h"
16#include "clang/Lex/Token.h"
Ted Kremenekf1c38812011-07-27 18:41:20 +000017#include "llvm/Support/Capacity.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "llvm/Support/ErrorHandling.h"
Douglas Gregor065f8d12010-03-18 17:52:52 +000019
20using namespace clang;
21
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +000022ExternalPreprocessingRecordSource::~ExternalPreprocessingRecordSource() { }
Douglas Gregoraae92242010-03-19 21:51:54 +000023
Douglas Gregorf09b6c92010-11-01 15:03:47 +000024
25InclusionDirective::InclusionDirective(PreprocessingRecord &PPRec,
26 InclusionKind Kind,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000027 StringRef FileName,
Argyrios Kyrtzidisf590e092012-10-02 16:10:46 +000028 bool InQuotes, bool ImportedModule,
29 const FileEntry *File,
Douglas Gregorf09b6c92010-11-01 15:03:47 +000030 SourceRange Range)
31 : PreprocessingDirective(InclusionDirectiveKind, Range),
Argyrios Kyrtzidisf590e092012-10-02 16:10:46 +000032 InQuotes(InQuotes), Kind(Kind), ImportedModule(ImportedModule), File(File)
Douglas Gregorf09b6c92010-11-01 15:03:47 +000033{
34 char *Memory
35 = (char*)PPRec.Allocate(FileName.size() + 1, llvm::alignOf<char>());
36 memcpy(Memory, FileName.data(), FileName.size());
37 Memory[FileName.size()] = 0;
Chris Lattner0e62c1c2011-07-23 10:55:15 +000038 this->FileName = StringRef(Memory, FileName.size());
Douglas Gregorf09b6c92010-11-01 15:03:47 +000039}
40
Argyrios Kyrtzidisf3d587e2012-12-04 07:27:05 +000041PreprocessingRecord::PreprocessingRecord(SourceManager &SM)
Argyrios Kyrtzidis647dcd82012-03-05 05:48:17 +000042 : SourceMgr(SM),
Craig Topperd2d442c2014-05-17 23:10:59 +000043 ExternalSource(nullptr) {
Douglas Gregoraae92242010-03-19 21:51:54 +000044}
45
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +000046/// \brief Returns a pair of [Begin, End) iterators of preprocessed entities
James Dennett303d8d42012-06-22 05:37:13 +000047/// that source range \p Range encompasses.
Benjamin Kramerb4ef6682015-02-06 17:25:10 +000048llvm::iterator_range<PreprocessingRecord::iterator>
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +000049PreprocessingRecord::getPreprocessedEntitiesInRange(SourceRange Range) {
50 if (Range.isInvalid())
Benjamin Kramerb4ef6682015-02-06 17:25:10 +000051 return llvm::make_range(iterator(), iterator());
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +000052
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +000053 if (CachedRangeQuery.Range == Range) {
Benjamin Kramerb4ef6682015-02-06 17:25:10 +000054 return llvm::make_range(iterator(this, CachedRangeQuery.Result.first),
55 iterator(this, CachedRangeQuery.Result.second));
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +000056 }
57
Argyrios Kyrtzidisabc721a2012-10-05 00:22:28 +000058 std::pair<int, int> Res = getPreprocessedEntitiesInRangeSlow(Range);
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +000059
60 CachedRangeQuery.Range = Range;
61 CachedRangeQuery.Result = Res;
Benjamin Kramerb4ef6682015-02-06 17:25:10 +000062
63 return llvm::make_range(iterator(this, Res.first),
64 iterator(this, Res.second));
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +000065}
66
67static bool isPreprocessedEntityIfInFileID(PreprocessedEntity *PPE, FileID FID,
68 SourceManager &SM) {
Yaron Keren8b563662015-10-03 10:46:20 +000069 assert(FID.isValid());
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +000070 if (!PPE)
71 return false;
72
73 SourceLocation Loc = PPE->getSourceRange().getBegin();
74 if (Loc.isInvalid())
75 return false;
David Blaikie7a3cbb22015-03-09 02:02:07 +000076
77 return SM.isInFileID(SM.getFileLoc(Loc), FID);
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +000078}
79
80/// \brief Returns true if the preprocessed entity that \arg PPEI iterator
81/// points to is coming from the file \arg FID.
82///
83/// Can be used to avoid implicit deserializations of preallocated
84/// preprocessed entities if we only care about entities of a specific file
James Dennett303d8d42012-06-22 05:37:13 +000085/// and not from files \#included in the range given at
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +000086/// \see getPreprocessedEntitiesInRange.
87bool PreprocessingRecord::isEntityInFileID(iterator PPEI, FileID FID) {
88 if (FID.isInvalid())
89 return false;
90
Benjamin Kramer15b97172015-03-15 15:27:19 +000091 int Pos = std::distance(iterator(this, 0), PPEI);
Argyrios Kyrtzidisabc721a2012-10-05 00:22:28 +000092 if (Pos < 0) {
Argyrios Kyrtzidis962b2212013-02-12 21:41:23 +000093 if (unsigned(-Pos-1) >= LoadedPreprocessedEntities.size()) {
94 assert(0 && "Out-of bounds loaded preprocessed entity");
95 return false;
96 }
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +000097 assert(ExternalSource && "No external source to load from");
Argyrios Kyrtzidisabc721a2012-10-05 00:22:28 +000098 unsigned LoadedIndex = LoadedPreprocessedEntities.size()+Pos;
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +000099 if (PreprocessedEntity *PPE = LoadedPreprocessedEntities[LoadedIndex])
100 return isPreprocessedEntityIfInFileID(PPE, FID, SourceMgr);
101
102 // See if the external source can see if the entity is in the file without
103 // deserializing it.
David Blaikie05785d12013-02-20 22:23:23 +0000104 Optional<bool> IsInFile =
105 ExternalSource->isPreprocessedEntityInFileID(LoadedIndex, FID);
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +0000106 if (IsInFile.hasValue())
107 return IsInFile.getValue();
108
109 // The external source did not provide a definite answer, go and deserialize
110 // the entity to check it.
111 return isPreprocessedEntityIfInFileID(
112 getLoadedPreprocessedEntity(LoadedIndex),
113 FID, SourceMgr);
114 }
115
Argyrios Kyrtzidis962b2212013-02-12 21:41:23 +0000116 if (unsigned(Pos) >= PreprocessedEntities.size()) {
117 assert(0 && "Out-of bounds local preprocessed entity");
118 return false;
119 }
Argyrios Kyrtzidisabc721a2012-10-05 00:22:28 +0000120 return isPreprocessedEntityIfInFileID(PreprocessedEntities[Pos],
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +0000121 FID, SourceMgr);
122}
123
124/// \brief Returns a pair of [Begin, End) iterators of preprocessed entities
125/// that source range \arg R encompasses.
Argyrios Kyrtzidisabc721a2012-10-05 00:22:28 +0000126std::pair<int, int>
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +0000127PreprocessingRecord::getPreprocessedEntitiesInRangeSlow(SourceRange Range) {
128 assert(Range.isValid());
129 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
130
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000131 std::pair<unsigned, unsigned>
132 Local = findLocalPreprocessedEntitiesInRange(Range);
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +0000133
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000134 // Check if range spans local entities.
135 if (!ExternalSource || SourceMgr.isLocalSourceLocation(Range.getBegin()))
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +0000136 return std::make_pair(Local.first, Local.second);
137
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000138 std::pair<unsigned, unsigned>
139 Loaded = ExternalSource->findPreprocessedEntitiesInRange(Range);
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +0000140
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000141 // Check if range spans local entities.
142 if (Loaded.first == Loaded.second)
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +0000143 return std::make_pair(Local.first, Local.second);
144
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000145 unsigned TotalLoaded = LoadedPreprocessedEntities.size();
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +0000146
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000147 // Check if range spans loaded entities.
148 if (Local.first == Local.second)
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +0000149 return std::make_pair(int(Loaded.first)-TotalLoaded,
150 int(Loaded.second)-TotalLoaded);
151
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000152 // Range spands loaded and local entities.
Argyrios Kyrtzidis429ec022011-10-25 00:29:50 +0000153 return std::make_pair(int(Loaded.first)-TotalLoaded, Local.second);
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000154}
155
156std::pair<unsigned, unsigned>
157PreprocessingRecord::findLocalPreprocessedEntitiesInRange(
158 SourceRange Range) const {
159 if (Range.isInvalid())
160 return std::make_pair(0,0);
161 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
162
163 unsigned Begin = findBeginLocalPreprocessedEntity(Range.getBegin());
164 unsigned End = findEndLocalPreprocessedEntity(Range.getEnd());
165 return std::make_pair(Begin, End);
166}
167
168namespace {
169
170template <SourceLocation (SourceRange::*getRangeLoc)() const>
171struct PPEntityComp {
172 const SourceManager &SM;
173
174 explicit PPEntityComp(const SourceManager &SM) : SM(SM) { }
175
Benjamin Kramer2e9d9cf2011-09-21 16:58:20 +0000176 bool operator()(PreprocessedEntity *L, PreprocessedEntity *R) const {
177 SourceLocation LHS = getLoc(L);
178 SourceLocation RHS = getLoc(R);
179 return SM.isBeforeInTranslationUnit(LHS, RHS);
180 }
181
182 bool operator()(PreprocessedEntity *L, SourceLocation RHS) const {
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000183 SourceLocation LHS = getLoc(L);
184 return SM.isBeforeInTranslationUnit(LHS, RHS);
185 }
186
Benjamin Kramer2e9d9cf2011-09-21 16:58:20 +0000187 bool operator()(SourceLocation LHS, PreprocessedEntity *R) const {
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000188 SourceLocation RHS = getLoc(R);
189 return SM.isBeforeInTranslationUnit(LHS, RHS);
190 }
191
192 SourceLocation getLoc(PreprocessedEntity *PPE) const {
Argyrios Kyrtzidisa35c4442011-09-19 22:02:08 +0000193 SourceRange Range = PPE->getSourceRange();
194 return (Range.*getRangeLoc)();
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000195 }
196};
197
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000198}
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000199
200unsigned PreprocessingRecord::findBeginLocalPreprocessedEntity(
201 SourceLocation Loc) const {
202 if (SourceMgr.isLoadedSourceLocation(Loc))
203 return 0;
204
Argyrios Kyrtzidise523e382011-09-22 21:17:02 +0000205 size_t Count = PreprocessedEntities.size();
206 size_t Half;
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000207 std::vector<PreprocessedEntity *>::const_iterator
Argyrios Kyrtzidise523e382011-09-22 21:17:02 +0000208 First = PreprocessedEntities.begin();
209 std::vector<PreprocessedEntity *>::const_iterator I;
210
211 // Do a binary search manually instead of using std::lower_bound because
212 // The end locations of entities may be unordered (when a macro expansion
213 // is inside another macro argument), but for this case it is not important
214 // whether we get the first macro expansion or its containing macro.
215 while (Count > 0) {
216 Half = Count/2;
217 I = First;
218 std::advance(I, Half);
219 if (SourceMgr.isBeforeInTranslationUnit((*I)->getSourceRange().getEnd(),
220 Loc)){
221 First = I;
222 ++First;
223 Count = Count - Half - 1;
224 } else
225 Count = Half;
226 }
227
228 return First - PreprocessedEntities.begin();
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000229}
230
231unsigned PreprocessingRecord::findEndLocalPreprocessedEntity(
232 SourceLocation Loc) const {
233 if (SourceMgr.isLoadedSourceLocation(Loc))
234 return 0;
235
236 std::vector<PreprocessedEntity *>::const_iterator
237 I = std::upper_bound(PreprocessedEntities.begin(),
238 PreprocessedEntities.end(),
239 Loc,
240 PPEntityComp<&SourceRange::getBegin>(SourceMgr));
241 return I - PreprocessedEntities.begin();
242}
243
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +0000244PreprocessingRecord::PPEntityID
245PreprocessingRecord::addPreprocessedEntity(PreprocessedEntity *Entity) {
Argyrios Kyrtzidis45e8cf52011-09-20 23:27:33 +0000246 assert(Entity);
Argyrios Kyrtzidisf37d0a62011-10-12 17:36:33 +0000247 SourceLocation BeginLoc = Entity->getSourceRange().getBegin();
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +0000248
Richard Smith66a81862015-05-04 02:25:31 +0000249 if (isa<MacroDefinitionRecord>(Entity)) {
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +0000250 assert((PreprocessedEntities.empty() ||
Richard Smith66a81862015-05-04 02:25:31 +0000251 !SourceMgr.isBeforeInTranslationUnit(
252 BeginLoc,
253 PreprocessedEntities.back()->getSourceRange().getBegin())) &&
Argyrios Kyrtzidiseb994f42013-01-09 23:22:20 +0000254 "a macro definition was encountered out-of-order");
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +0000255 PreprocessedEntities.push_back(Entity);
256 return getPPEntityID(PreprocessedEntities.size()-1, /*isLoaded=*/false);
257 }
258
Argyrios Kyrtzidisf37d0a62011-10-12 17:36:33 +0000259 // Check normal case, this entity begin location is after the previous one.
260 if (PreprocessedEntities.empty() ||
261 !SourceMgr.isBeforeInTranslationUnit(BeginLoc,
262 PreprocessedEntities.back()->getSourceRange().getBegin())) {
263 PreprocessedEntities.push_back(Entity);
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +0000264 return getPPEntityID(PreprocessedEntities.size()-1, /*isLoaded=*/false);
Argyrios Kyrtzidisf37d0a62011-10-12 17:36:33 +0000265 }
266
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +0000267 // The entity's location is not after the previous one; this can happen with
268 // include directives that form the filename using macros, e.g:
Argyrios Kyrtzidiseb994f42013-01-09 23:22:20 +0000269 // "#include MACRO(STUFF)"
270 // or with macro expansions inside macro arguments where the arguments are
271 // not expanded in the same order as listed, e.g:
272 // \code
273 // #define M1 1
274 // #define M2 2
275 // #define FM(x,y) y x
276 // FM(M1, M2)
277 // \endcode
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +0000278
279 typedef std::vector<PreprocessedEntity *>::iterator pp_iter;
280
281 // Usually there are few macro expansions when defining the filename, do a
282 // linear search for a few entities.
283 unsigned count = 0;
284 for (pp_iter RI = PreprocessedEntities.end(),
285 Begin = PreprocessedEntities.begin();
286 RI != Begin && count < 4; --RI, ++count) {
287 pp_iter I = RI;
Argyrios Kyrtzidisf37d0a62011-10-12 17:36:33 +0000288 --I;
289 if (!SourceMgr.isBeforeInTranslationUnit(BeginLoc,
290 (*I)->getSourceRange().getBegin())) {
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +0000291 pp_iter insertI = PreprocessedEntities.insert(RI, Entity);
292 return getPPEntityID(insertI - PreprocessedEntities.begin(),
293 /*isLoaded=*/false);
Argyrios Kyrtzidisf37d0a62011-10-12 17:36:33 +0000294 }
295 }
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +0000296
297 // Linear search unsuccessful. Do a binary search.
298 pp_iter I = std::upper_bound(PreprocessedEntities.begin(),
299 PreprocessedEntities.end(),
300 BeginLoc,
301 PPEntityComp<&SourceRange::getBegin>(SourceMgr));
302 pp_iter insertI = PreprocessedEntities.insert(I, Entity);
303 return getPPEntityID(insertI - PreprocessedEntities.begin(),
304 /*isLoaded=*/false);
Douglas Gregor065f8d12010-03-18 17:52:52 +0000305}
306
Douglas Gregoraae92242010-03-19 21:51:54 +0000307void PreprocessingRecord::SetExternalSource(
Douglas Gregor4a9c39a2011-07-21 00:47:40 +0000308 ExternalPreprocessingRecordSource &Source) {
Douglas Gregoraae92242010-03-19 21:51:54 +0000309 assert(!ExternalSource &&
310 "Preprocessing record already has an external source");
311 ExternalSource = &Source;
Douglas Gregoraae92242010-03-19 21:51:54 +0000312}
313
Douglas Gregor4a9c39a2011-07-21 00:47:40 +0000314unsigned PreprocessingRecord::allocateLoadedEntities(unsigned NumEntities) {
315 unsigned Result = LoadedPreprocessedEntities.size();
316 LoadedPreprocessedEntities.resize(LoadedPreprocessedEntities.size()
317 + NumEntities);
318 return Result;
319}
320
Argyrios Kyrtzidis03c40c52011-09-15 18:02:56 +0000321void PreprocessingRecord::RegisterMacroDefinition(MacroInfo *Macro,
Richard Smith66a81862015-05-04 02:25:31 +0000322 MacroDefinitionRecord *Def) {
Argyrios Kyrtzidis832de9f2013-02-22 18:35:59 +0000323 MacroDefinitions[Macro] = Def;
Douglas Gregoraae92242010-03-19 21:51:54 +0000324}
325
Argyrios Kyrtzidis03c40c52011-09-15 18:02:56 +0000326/// \brief Retrieve the preprocessed entity at the given ID.
327PreprocessedEntity *PreprocessingRecord::getPreprocessedEntity(PPEntityID PPID){
Argyrios Kyrtzidisabc721a2012-10-05 00:22:28 +0000328 if (PPID.ID < 0) {
329 unsigned Index = -PPID.ID - 1;
330 assert(Index < LoadedPreprocessedEntities.size() &&
Argyrios Kyrtzidis03c40c52011-09-15 18:02:56 +0000331 "Out-of bounds loaded preprocessed entity");
Argyrios Kyrtzidisabc721a2012-10-05 00:22:28 +0000332 return getLoadedPreprocessedEntity(Index);
Argyrios Kyrtzidis03c40c52011-09-15 18:02:56 +0000333 }
Argyrios Kyrtzidisabc721a2012-10-05 00:22:28 +0000334
335 if (PPID.ID == 0)
Craig Topperd2d442c2014-05-17 23:10:59 +0000336 return nullptr;
Argyrios Kyrtzidisabc721a2012-10-05 00:22:28 +0000337 unsigned Index = PPID.ID - 1;
338 assert(Index < PreprocessedEntities.size() &&
Argyrios Kyrtzidis03c40c52011-09-15 18:02:56 +0000339 "Out-of bounds local preprocessed entity");
Argyrios Kyrtzidisabc721a2012-10-05 00:22:28 +0000340 return PreprocessedEntities[Index];
Argyrios Kyrtzidis03c40c52011-09-15 18:02:56 +0000341}
342
343/// \brief Retrieve the loaded preprocessed entity at the given index.
344PreprocessedEntity *
345PreprocessingRecord::getLoadedPreprocessedEntity(unsigned Index) {
346 assert(Index < LoadedPreprocessedEntities.size() &&
347 "Out-of bounds loaded preprocessed entity");
348 assert(ExternalSource && "No external source to load from");
349 PreprocessedEntity *&Entity = LoadedPreprocessedEntities[Index];
350 if (!Entity) {
351 Entity = ExternalSource->ReadPreprocessedEntity(Index);
352 if (!Entity) // Failed to load.
353 Entity = new (*this)
354 PreprocessedEntity(PreprocessedEntity::InvalidKind, SourceRange());
355 }
356 return Entity;
Douglas Gregoraae92242010-03-19 21:51:54 +0000357}
358
Richard Smith66a81862015-05-04 02:25:31 +0000359MacroDefinitionRecord *
360PreprocessingRecord::findMacroDefinition(const MacroInfo *MI) {
361 llvm::DenseMap<const MacroInfo *, MacroDefinitionRecord *>::iterator Pos =
362 MacroDefinitions.find(MI);
Douglas Gregor7dc87222010-03-19 17:12:43 +0000363 if (Pos == MacroDefinitions.end())
Craig Topperd2d442c2014-05-17 23:10:59 +0000364 return nullptr;
Argyrios Kyrtzidis832de9f2013-02-22 18:35:59 +0000365
366 return Pos->second;
Douglas Gregor7dc87222010-03-19 17:12:43 +0000367}
368
Argyrios Kyrtzidisf77b0f82012-12-08 02:21:17 +0000369void PreprocessingRecord::addMacroExpansion(const Token &Id,
370 const MacroInfo *MI,
371 SourceRange Range) {
Argyrios Kyrtzidis335c5a42012-02-25 02:41:16 +0000372 // We don't record nested macro expansions.
373 if (Id.getLocation().isMacroID())
Douglas Gregor998caea2011-05-06 16:33:08 +0000374 return;
375
Argyrios Kyrtzidis80f78b92011-09-08 17:18:41 +0000376 if (MI->isBuiltinMacro())
Richard Smith66a81862015-05-04 02:25:31 +0000377 addPreprocessedEntity(new (*this)
378 MacroExpansion(Id.getIdentifierInfo(), Range));
379 else if (MacroDefinitionRecord *Def = findMacroDefinition(MI))
380 addPreprocessedEntity(new (*this) MacroExpansion(Def, Range));
Douglas Gregor7dc87222010-03-19 17:12:43 +0000381}
382
Argyrios Kyrtzidisf77b0f82012-12-08 02:21:17 +0000383void PreprocessingRecord::Ifdef(SourceLocation Loc, const Token &MacroNameTok,
Richard Smith36bd40d2015-05-04 03:15:40 +0000384 const MacroDefinition &MD) {
Argyrios Kyrtzidisf77b0f82012-12-08 02:21:17 +0000385 // This is not actually a macro expansion but record it as a macro reference.
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +0000386 if (MD)
Richard Smith36bd40d2015-05-04 03:15:40 +0000387 addMacroExpansion(MacroNameTok, MD.getMacroInfo(),
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +0000388 MacroNameTok.getLocation());
Argyrios Kyrtzidisf77b0f82012-12-08 02:21:17 +0000389}
390
391void PreprocessingRecord::Ifndef(SourceLocation Loc, const Token &MacroNameTok,
Richard Smith36bd40d2015-05-04 03:15:40 +0000392 const MacroDefinition &MD) {
Argyrios Kyrtzidisf77b0f82012-12-08 02:21:17 +0000393 // This is not actually a macro expansion but record it as a macro reference.
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +0000394 if (MD)
Richard Smith36bd40d2015-05-04 03:15:40 +0000395 addMacroExpansion(MacroNameTok, MD.getMacroInfo(),
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +0000396 MacroNameTok.getLocation());
Argyrios Kyrtzidisf77b0f82012-12-08 02:21:17 +0000397}
398
399void PreprocessingRecord::Defined(const Token &MacroNameTok,
Richard Smith36bd40d2015-05-04 03:15:40 +0000400 const MacroDefinition &MD,
John Thompsoncda95fe2013-07-19 18:50:04 +0000401 SourceRange Range) {
Argyrios Kyrtzidisf77b0f82012-12-08 02:21:17 +0000402 // This is not actually a macro expansion but record it as a macro reference.
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +0000403 if (MD)
Richard Smith36bd40d2015-05-04 03:15:40 +0000404 addMacroExpansion(MacroNameTok, MD.getMacroInfo(),
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +0000405 MacroNameTok.getLocation());
Argyrios Kyrtzidisf77b0f82012-12-08 02:21:17 +0000406}
407
Argyrios Kyrtzidis9ef57752013-12-05 08:19:32 +0000408void PreprocessingRecord::SourceRangeSkipped(SourceRange Range) {
409 SkippedRanges.push_back(Range);
410}
411
Richard Smith36bd40d2015-05-04 03:15:40 +0000412void PreprocessingRecord::MacroExpands(const Token &Id,
413 const MacroDefinition &MD,
Argyrios Kyrtzidis37e48ff2013-05-03 22:31:32 +0000414 SourceRange Range,
415 const MacroArgs *Args) {
Richard Smith36bd40d2015-05-04 03:15:40 +0000416 addMacroExpansion(Id, MD.getMacroInfo(), Range);
Argyrios Kyrtzidisf77b0f82012-12-08 02:21:17 +0000417}
418
Craig Silverstein1a9ca212010-11-19 21:33:15 +0000419void PreprocessingRecord::MacroDefined(const Token &Id,
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +0000420 const MacroDirective *MD) {
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +0000421 const MacroInfo *MI = MD->getMacroInfo();
Douglas Gregor7dc87222010-03-19 17:12:43 +0000422 SourceRange R(MI->getDefinitionLoc(), MI->getDefinitionEndLoc());
Richard Smith66a81862015-05-04 02:25:31 +0000423 MacroDefinitionRecord *Def =
424 new (*this) MacroDefinitionRecord(Id.getIdentifierInfo(), R);
Argyrios Kyrtzidis832de9f2013-02-22 18:35:59 +0000425 addPreprocessedEntity(Def);
426 MacroDefinitions[MI] = Def;
Douglas Gregor7dc87222010-03-19 17:12:43 +0000427}
Douglas Gregoraae92242010-03-19 21:51:54 +0000428
Craig Silverstein1a9ca212010-11-19 21:33:15 +0000429void PreprocessingRecord::MacroUndefined(const Token &Id,
Richard Smith36bd40d2015-05-04 03:15:40 +0000430 const MacroDefinition &MD) {
431 MD.forAllDefinitions([&](MacroInfo *MI) { MacroDefinitions.erase(MI); });
Douglas Gregor8aaca672010-03-19 21:58:23 +0000432}
433
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000434void PreprocessingRecord::InclusionDirective(
435 SourceLocation HashLoc,
436 const clang::Token &IncludeTok,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000437 StringRef FileName,
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000438 bool IsAngled,
Argyrios Kyrtzidis4fcd2882012-09-27 01:42:07 +0000439 CharSourceRange FilenameRange,
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000440 const FileEntry *File,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000441 StringRef SearchPath,
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +0000442 StringRef RelativePath,
443 const Module *Imported) {
Douglas Gregor796d76a2010-10-20 22:00:55 +0000444 InclusionDirective::InclusionKind Kind = InclusionDirective::Include;
445
446 switch (IncludeTok.getIdentifierInfo()->getPPKeywordID()) {
447 case tok::pp_include:
448 Kind = InclusionDirective::Include;
449 break;
450
451 case tok::pp_import:
452 Kind = InclusionDirective::Import;
453 break;
454
455 case tok::pp_include_next:
456 Kind = InclusionDirective::IncludeNext;
457 break;
458
459 case tok::pp___include_macros:
460 Kind = InclusionDirective::IncludeMacros;
461 break;
462
463 default:
464 llvm_unreachable("Unknown include directive kind");
Douglas Gregor796d76a2010-10-20 22:00:55 +0000465 }
Argyrios Kyrtzidis4fcd2882012-09-27 01:42:07 +0000466
467 SourceLocation EndLoc;
468 if (!IsAngled) {
469 EndLoc = FilenameRange.getBegin();
470 } else {
471 EndLoc = FilenameRange.getEnd();
472 if (FilenameRange.isCharRange())
473 EndLoc = EndLoc.getLocWithOffset(-1); // the InclusionDirective expects
474 // a token range.
475 }
Douglas Gregor796d76a2010-10-20 22:00:55 +0000476 clang::InclusionDirective *ID
Argyrios Kyrtzidisf590e092012-10-02 16:10:46 +0000477 = new (*this) clang::InclusionDirective(*this, Kind, FileName, !IsAngled,
478 (bool)Imported,
Douglas Gregorf09b6c92010-11-01 15:03:47 +0000479 File, SourceRange(HashLoc, EndLoc));
Argyrios Kyrtzidis64f63812011-09-19 20:40:25 +0000480 addPreprocessedEntity(ID);
Douglas Gregor796d76a2010-10-20 22:00:55 +0000481}
Ted Kremenek182543a2011-07-26 21:17:24 +0000482
483size_t PreprocessingRecord::getTotalMemory() const {
484 return BumpAlloc.getTotalMemory()
Ted Kremenekf1c38812011-07-27 18:41:20 +0000485 + llvm::capacity_in_bytes(MacroDefinitions)
486 + llvm::capacity_in_bytes(PreprocessedEntities)
487 + llvm::capacity_in_bytes(LoadedPreprocessedEntities);
Ted Kremenek182543a2011-07-26 21:17:24 +0000488}