1 //===- MacroInfo.cpp - Information about #defined identifiers -------------===//
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 MacroInfo interface.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "clang/Lex/MacroInfo.h"
15 #include "clang/Basic/IdentifierTable.h"
16 #include "clang/Basic/LLVM.h"
17 #include "clang/Basic/SourceLocation.h"
18 #include "clang/Basic/SourceManager.h"
19 #include "clang/Basic/TokenKinds.h"
20 #include "clang/Lex/Preprocessor.h"
21 #include "clang/Lex/Token.h"
22 #include "llvm/ADT/Optional.h"
23 #include "llvm/ADT/StringRef.h"
24 #include "llvm/Support/Casting.h"
25 #include "llvm/Support/Compiler.h"
26 #include "llvm/Support/raw_ostream.h"
27 #include <cassert>
28 #include <utility>
29
30 using namespace clang;
31
MacroInfo(SourceLocation DefLoc)32 MacroInfo::MacroInfo(SourceLocation DefLoc)
33 : Location(DefLoc), IsDefinitionLengthCached(false), IsFunctionLike(false),
34 IsC99Varargs(false), IsGNUVarargs(false), IsBuiltinMacro(false),
35 HasCommaPasting(false), IsDisabled(false), IsUsed(false),
36 IsAllowRedefinitionsWithoutWarning(false), IsWarnIfUnused(false),
37 UsedForHeaderGuard(false) {}
38
getDefinitionLengthSlow(const SourceManager & SM) const39 unsigned MacroInfo::getDefinitionLengthSlow(const SourceManager &SM) const {
40 assert(!IsDefinitionLengthCached);
41 IsDefinitionLengthCached = true;
42
43 if (ReplacementTokens.empty())
44 return (DefinitionLength = 0);
45
46 const Token &firstToken = ReplacementTokens.front();
47 const Token &lastToken = ReplacementTokens.back();
48 SourceLocation macroStart = firstToken.getLocation();
49 SourceLocation macroEnd = lastToken.getLocation();
50 assert(macroStart.isValid() && macroEnd.isValid());
51 assert((macroStart.isFileID() || firstToken.is(tok::comment)) &&
52 "Macro defined in macro?");
53 assert((macroEnd.isFileID() || lastToken.is(tok::comment)) &&
54 "Macro defined in macro?");
55 std::pair<FileID, unsigned>
56 startInfo = SM.getDecomposedExpansionLoc(macroStart);
57 std::pair<FileID, unsigned>
58 endInfo = SM.getDecomposedExpansionLoc(macroEnd);
59 assert(startInfo.first == endInfo.first &&
60 "Macro definition spanning multiple FileIDs ?");
61 assert(startInfo.second <= endInfo.second);
62 DefinitionLength = endInfo.second - startInfo.second;
63 DefinitionLength += lastToken.getLength();
64
65 return DefinitionLength;
66 }
67
68 /// Return true if the specified macro definition is equal to
69 /// this macro in spelling, arguments, and whitespace.
70 ///
71 /// \param Syntactically if true, the macro definitions can be identical even
72 /// if they use different identifiers for the function macro parameters.
73 /// Otherwise the comparison is lexical and this implements the rules in
74 /// C99 6.10.3.
isIdenticalTo(const MacroInfo & Other,Preprocessor & PP,bool Syntactically) const75 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP,
76 bool Syntactically) const {
77 bool Lexically = !Syntactically;
78
79 // Check # tokens in replacement, number of args, and various flags all match.
80 if (ReplacementTokens.size() != Other.ReplacementTokens.size() ||
81 getNumParams() != Other.getNumParams() ||
82 isFunctionLike() != Other.isFunctionLike() ||
83 isC99Varargs() != Other.isC99Varargs() ||
84 isGNUVarargs() != Other.isGNUVarargs())
85 return false;
86
87 if (Lexically) {
88 // Check arguments.
89 for (param_iterator I = param_begin(), OI = Other.param_begin(),
90 E = param_end();
91 I != E; ++I, ++OI)
92 if (*I != *OI) return false;
93 }
94
95 // Check all the tokens.
96 for (unsigned i = 0, e = ReplacementTokens.size(); i != e; ++i) {
97 const Token &A = ReplacementTokens[i];
98 const Token &B = Other.ReplacementTokens[i];
99 if (A.getKind() != B.getKind())
100 return false;
101
102 // If this isn't the first first token, check that the whitespace and
103 // start-of-line characteristics match.
104 if (i != 0 &&
105 (A.isAtStartOfLine() != B.isAtStartOfLine() ||
106 A.hasLeadingSpace() != B.hasLeadingSpace()))
107 return false;
108
109 // If this is an identifier, it is easy.
110 if (A.getIdentifierInfo() || B.getIdentifierInfo()) {
111 if (A.getIdentifierInfo() == B.getIdentifierInfo())
112 continue;
113 if (Lexically)
114 return false;
115 // With syntactic equivalence the parameter names can be different as long
116 // as they are used in the same place.
117 int AArgNum = getParameterNum(A.getIdentifierInfo());
118 if (AArgNum == -1)
119 return false;
120 if (AArgNum != Other.getParameterNum(B.getIdentifierInfo()))
121 return false;
122 continue;
123 }
124
125 // Otherwise, check the spelling.
126 if (PP.getSpelling(A) != PP.getSpelling(B))
127 return false;
128 }
129
130 return true;
131 }
132
dump() const133 LLVM_DUMP_METHOD void MacroInfo::dump() const {
134 llvm::raw_ostream &Out = llvm::errs();
135
136 // FIXME: Dump locations.
137 Out << "MacroInfo " << this;
138 if (IsBuiltinMacro) Out << " builtin";
139 if (IsDisabled) Out << " disabled";
140 if (IsUsed) Out << " used";
141 if (IsAllowRedefinitionsWithoutWarning)
142 Out << " allow_redefinitions_without_warning";
143 if (IsWarnIfUnused) Out << " warn_if_unused";
144 if (UsedForHeaderGuard) Out << " header_guard";
145
146 Out << "\n #define <macro>";
147 if (IsFunctionLike) {
148 Out << "(";
149 for (unsigned I = 0; I != NumParameters; ++I) {
150 if (I) Out << ", ";
151 Out << ParameterList[I]->getName();
152 }
153 if (IsC99Varargs || IsGNUVarargs) {
154 if (NumParameters && IsC99Varargs) Out << ", ";
155 Out << "...";
156 }
157 Out << ")";
158 }
159
160 bool First = true;
161 for (const Token &Tok : ReplacementTokens) {
162 // Leading space is semantically meaningful in a macro definition,
163 // so preserve it in the dump output.
164 if (First || Tok.hasLeadingSpace())
165 Out << " ";
166 First = false;
167
168 if (const char *Punc = tok::getPunctuatorSpelling(Tok.getKind()))
169 Out << Punc;
170 else if (Tok.isLiteral() && Tok.getLiteralData())
171 Out << StringRef(Tok.getLiteralData(), Tok.getLength());
172 else if (auto *II = Tok.getIdentifierInfo())
173 Out << II->getName();
174 else
175 Out << Tok.getName();
176 }
177 }
178
getDefinition()179 MacroDirective::DefInfo MacroDirective::getDefinition() {
180 MacroDirective *MD = this;
181 SourceLocation UndefLoc;
182 Optional<bool> isPublic;
183 for (; MD; MD = MD->getPrevious()) {
184 if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD))
185 return DefInfo(DefMD, UndefLoc,
186 !isPublic.hasValue() || isPublic.getValue());
187
188 if (UndefMacroDirective *UndefMD = dyn_cast<UndefMacroDirective>(MD)) {
189 UndefLoc = UndefMD->getLocation();
190 continue;
191 }
192
193 VisibilityMacroDirective *VisMD = cast<VisibilityMacroDirective>(MD);
194 if (!isPublic.hasValue())
195 isPublic = VisMD->isPublic();
196 }
197
198 return DefInfo(nullptr, UndefLoc,
199 !isPublic.hasValue() || isPublic.getValue());
200 }
201
202 const MacroDirective::DefInfo
findDirectiveAtLoc(SourceLocation L,const SourceManager & SM) const203 MacroDirective::findDirectiveAtLoc(SourceLocation L,
204 const SourceManager &SM) const {
205 assert(L.isValid() && "SourceLocation is invalid.");
206 for (DefInfo Def = getDefinition(); Def; Def = Def.getPreviousDefinition()) {
207 if (Def.getLocation().isInvalid() || // For macros defined on the command line.
208 SM.isBeforeInTranslationUnit(Def.getLocation(), L))
209 return (!Def.isUndefined() ||
210 SM.isBeforeInTranslationUnit(L, Def.getUndefLocation()))
211 ? Def : DefInfo();
212 }
213 return DefInfo();
214 }
215
dump() const216 LLVM_DUMP_METHOD void MacroDirective::dump() const {
217 llvm::raw_ostream &Out = llvm::errs();
218
219 switch (getKind()) {
220 case MD_Define: Out << "DefMacroDirective"; break;
221 case MD_Undefine: Out << "UndefMacroDirective"; break;
222 case MD_Visibility: Out << "VisibilityMacroDirective"; break;
223 }
224 Out << " " << this;
225 // FIXME: Dump SourceLocation.
226 if (auto *Prev = getPrevious())
227 Out << " prev " << Prev;
228 if (IsFromPCH) Out << " from_pch";
229
230 if (isa<VisibilityMacroDirective>(this))
231 Out << (IsPublic ? " public" : " private");
232
233 if (auto *DMD = dyn_cast<DefMacroDirective>(this)) {
234 if (auto *Info = DMD->getInfo()) {
235 Out << "\n ";
236 Info->dump();
237 }
238 }
239 Out << "\n";
240 }
241
create(Preprocessor & PP,Module * OwningModule,IdentifierInfo * II,MacroInfo * Macro,ArrayRef<ModuleMacro * > Overrides)242 ModuleMacro *ModuleMacro::create(Preprocessor &PP, Module *OwningModule,
243 IdentifierInfo *II, MacroInfo *Macro,
244 ArrayRef<ModuleMacro *> Overrides) {
245 void *Mem = PP.getPreprocessorAllocator().Allocate(
246 sizeof(ModuleMacro) + sizeof(ModuleMacro *) * Overrides.size(),
247 alignof(ModuleMacro));
248 return new (Mem) ModuleMacro(OwningModule, II, Macro, Overrides);
249 }
250