2009-06-02 17:58:47 +00:00
|
|
|
//===--- MacroInfo.cpp - Information about #defined identifiers -----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the MacroInfo interface.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Lex/MacroInfo.h"
|
|
|
|
#include "clang/Lex/Preprocessor.h"
|
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
MacroInfo::MacroInfo(SourceLocation DefLoc) : Location(DefLoc) {
|
|
|
|
IsFunctionLike = false;
|
|
|
|
IsC99Varargs = false;
|
|
|
|
IsGNUVarargs = false;
|
|
|
|
IsBuiltinMacro = false;
|
2010-09-17 15:54:40 +00:00
|
|
|
IsFromAST = false;
|
2009-06-02 17:58:47 +00:00
|
|
|
IsDisabled = false;
|
2011-02-20 13:06:31 +00:00
|
|
|
IsUsed = false;
|
2010-09-17 15:54:40 +00:00
|
|
|
IsAllowRedefinitionsWithoutWarning = false;
|
2011-02-20 13:06:31 +00:00
|
|
|
IsWarnIfUnused = false;
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
ArgumentList = 0;
|
|
|
|
NumArguments = 0;
|
|
|
|
}
|
|
|
|
|
2010-09-17 15:54:40 +00:00
|
|
|
MacroInfo::MacroInfo(const MacroInfo &MI, llvm::BumpPtrAllocator &PPAllocator) {
|
|
|
|
Location = MI.Location;
|
|
|
|
EndLocation = MI.EndLocation;
|
|
|
|
ReplacementTokens = MI.ReplacementTokens;
|
|
|
|
IsFunctionLike = MI.IsFunctionLike;
|
|
|
|
IsC99Varargs = MI.IsC99Varargs;
|
|
|
|
IsGNUVarargs = MI.IsGNUVarargs;
|
|
|
|
IsBuiltinMacro = MI.IsBuiltinMacro;
|
|
|
|
IsFromAST = MI.IsFromAST;
|
|
|
|
IsDisabled = MI.IsDisabled;
|
|
|
|
IsUsed = MI.IsUsed;
|
|
|
|
IsAllowRedefinitionsWithoutWarning = MI.IsAllowRedefinitionsWithoutWarning;
|
2011-06-12 15:46:16 +00:00
|
|
|
IsWarnIfUnused = MI.IsWarnIfUnused;
|
2010-09-17 15:54:40 +00:00
|
|
|
ArgumentList = 0;
|
|
|
|
NumArguments = 0;
|
|
|
|
setArgumentList(MI.ArgumentList, MI.NumArguments, PPAllocator);
|
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
/// isIdenticalTo - Return true if the specified macro definition is equal to
|
|
|
|
/// this macro in spelling, arguments, and whitespace. This is used to emit
|
|
|
|
/// duplicate definition warnings. This implements the rules in C99 6.10.3.
|
|
|
|
///
|
|
|
|
bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP) const {
|
|
|
|
// Check # tokens in replacement, number of args, and various flags all match.
|
|
|
|
if (ReplacementTokens.size() != Other.ReplacementTokens.size() ||
|
|
|
|
getNumArgs() != Other.getNumArgs() ||
|
|
|
|
isFunctionLike() != Other.isFunctionLike() ||
|
|
|
|
isC99Varargs() != Other.isC99Varargs() ||
|
|
|
|
isGNUVarargs() != Other.isGNUVarargs())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Check arguments.
|
|
|
|
for (arg_iterator I = arg_begin(), OI = Other.arg_begin(), E = arg_end();
|
|
|
|
I != E; ++I, ++OI)
|
|
|
|
if (*I != *OI) return false;
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
// Check all the tokens.
|
|
|
|
for (unsigned i = 0, e = ReplacementTokens.size(); i != e; ++i) {
|
|
|
|
const Token &A = ReplacementTokens[i];
|
|
|
|
const Token &B = Other.ReplacementTokens[i];
|
|
|
|
if (A.getKind() != B.getKind())
|
|
|
|
return false;
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
// If this isn't the first first token, check that the whitespace and
|
|
|
|
// start-of-line characteristics match.
|
|
|
|
if (i != 0 &&
|
|
|
|
(A.isAtStartOfLine() != B.isAtStartOfLine() ||
|
|
|
|
A.hasLeadingSpace() != B.hasLeadingSpace()))
|
|
|
|
return false;
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
// If this is an identifier, it is easy.
|
|
|
|
if (A.getIdentifierInfo() || B.getIdentifierInfo()) {
|
|
|
|
if (A.getIdentifierInfo() != B.getIdentifierInfo())
|
|
|
|
return false;
|
|
|
|
continue;
|
|
|
|
}
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
// Otherwise, check the spelling.
|
|
|
|
if (PP.getSpelling(A) != PP.getSpelling(B))
|
|
|
|
return false;
|
|
|
|
}
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
return true;
|
|
|
|
}
|