blob: 6eac0364f6741b61ddbd942c4b484a8c7703826f [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- MacroInfo.cpp - Information about #defined identifiers -----------===//
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 MacroInfo interface.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Lex/MacroInfo.h"
15#include "clang/Lex/Preprocessor.h"
16using namespace clang;
17
18MacroInfo::MacroInfo(SourceLocation DefLoc) : Location(DefLoc) {
19 IsFunctionLike = false;
20 IsC99Varargs = false;
21 IsGNUVarargs = false;
22 IsBuiltinMacro = false;
Sebastian Redl083abdf2010-07-27 23:01:28 +000023 IsFromPCH = false;
Reid Spencer5f016e22007-07-11 17:01:13 +000024 IsDisabled = false;
25 IsUsed = true;
Chris Lattnerf47724b2010-08-17 15:55:45 +000026 IsAllowRedefinitionsWithoutWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +000027
Chris Lattner25c96482007-07-14 22:46:43 +000028 ArgumentList = 0;
29 NumArguments = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000030}
31
Chris Lattnerf47724b2010-08-17 15:55:45 +000032MacroInfo::MacroInfo(const MacroInfo &MI, llvm::BumpPtrAllocator &PPAllocator) {
33 Location = MI.Location;
34 EndLocation = MI.EndLocation;
35 ReplacementTokens = MI.ReplacementTokens;
36 IsFunctionLike = MI.IsFunctionLike;
37 IsC99Varargs = MI.IsC99Varargs;
38 IsGNUVarargs = MI.IsGNUVarargs;
39 IsBuiltinMacro = MI.IsBuiltinMacro;
40 IsFromPCH = MI.IsFromPCH;
41 IsDisabled = MI.IsDisabled;
42 IsUsed = MI.IsUsed;
43 IsAllowRedefinitionsWithoutWarning = MI.IsAllowRedefinitionsWithoutWarning;
44 ArgumentList = 0;
45 NumArguments = 0;
46 setArgumentList(MI.ArgumentList, MI.NumArguments, PPAllocator);
47}
48
Reid Spencer5f016e22007-07-11 17:01:13 +000049/// isIdenticalTo - Return true if the specified macro definition is equal to
50/// this macro in spelling, arguments, and whitespace. This is used to emit
51/// duplicate definition warnings. This implements the rules in C99 6.10.3.
52///
Reid Spencer5f016e22007-07-11 17:01:13 +000053bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP) const {
54 // Check # tokens in replacement, number of args, and various flags all match.
55 if (ReplacementTokens.size() != Other.ReplacementTokens.size() ||
Chris Lattner25c96482007-07-14 22:46:43 +000056 getNumArgs() != Other.getNumArgs() ||
Reid Spencer5f016e22007-07-11 17:01:13 +000057 isFunctionLike() != Other.isFunctionLike() ||
58 isC99Varargs() != Other.isC99Varargs() ||
59 isGNUVarargs() != Other.isGNUVarargs())
60 return false;
61
62 // Check arguments.
63 for (arg_iterator I = arg_begin(), OI = Other.arg_begin(), E = arg_end();
64 I != E; ++I, ++OI)
65 if (*I != *OI) return false;
Mike Stump1eb44332009-09-09 15:08:12 +000066
Reid Spencer5f016e22007-07-11 17:01:13 +000067 // Check all the tokens.
68 for (unsigned i = 0, e = ReplacementTokens.size(); i != e; ++i) {
Chris Lattnerd2177732007-07-20 16:59:19 +000069 const Token &A = ReplacementTokens[i];
70 const Token &B = Other.ReplacementTokens[i];
Chris Lattner688a2482009-03-09 20:33:32 +000071 if (A.getKind() != B.getKind())
72 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000073
Chris Lattner688a2482009-03-09 20:33:32 +000074 // If this isn't the first first token, check that the whitespace and
75 // start-of-line characteristics match.
76 if (i != 0 &&
77 (A.isAtStartOfLine() != B.isAtStartOfLine() ||
78 A.hasLeadingSpace() != B.hasLeadingSpace()))
Reid Spencer5f016e22007-07-11 17:01:13 +000079 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000080
Reid Spencer5f016e22007-07-11 17:01:13 +000081 // If this is an identifier, it is easy.
82 if (A.getIdentifierInfo() || B.getIdentifierInfo()) {
83 if (A.getIdentifierInfo() != B.getIdentifierInfo())
84 return false;
85 continue;
86 }
Mike Stump1eb44332009-09-09 15:08:12 +000087
Reid Spencer5f016e22007-07-11 17:01:13 +000088 // Otherwise, check the spelling.
89 if (PP.getSpelling(A) != PP.getSpelling(B))
90 return false;
91 }
Mike Stump1eb44332009-09-09 15:08:12 +000092
Reid Spencer5f016e22007-07-11 17:01:13 +000093 return true;
94}