|
clang
5.0.0
|
MacroArgs - An instance of this class captures information about the formal arguments specified to a function-like macro invocation. More...
#include "clang/Lex/MacroArgs.h"
Public Member Functions | |
| void | destroy (Preprocessor &PP) |
| destroy - Destroy and deallocate the memory for this object. More... | |
| bool | ArgNeedsPreexpansion (const Token *ArgTok, Preprocessor &PP) const |
| ArgNeedsPreexpansion - If we can prove that the argument won't be affected by pre-expansion, return false. More... | |
| const Token * | getUnexpArgument (unsigned Arg) const |
| getUnexpArgument - Return a pointer to the first token of the unexpanded token list for the specified formal. More... | |
| const std::vector< Token > & | getPreExpArgument (unsigned Arg, const MacroInfo *MI, Preprocessor &PP) |
| getPreExpArgument - Return the pre-expanded form of the specified argument. More... | |
| const Token & | getStringifiedArgument (unsigned ArgNo, Preprocessor &PP, SourceLocation ExpansionLocStart, SourceLocation ExpansionLocEnd) |
| getStringifiedArgument - Compute, cache, and return the specified argument that has been 'stringified' as required by the # operator. More... | |
| unsigned | getNumMacroArguments () const |
| getNumMacroArguments - Return the number of arguments the invoked macro expects. More... | |
| bool | isVarargsElidedUse () const |
| isVarargsElidedUse - Return true if this is a C99 style varargs macro invocation and there was no argument specified for the "..." argument. More... | |
| MacroArgs * | deallocate () |
| deallocate - This should only be called by the Preprocessor when managing its freelist. More... | |
Static Public Member Functions | |
| static MacroArgs * | create (const MacroInfo *MI, ArrayRef< Token > UnexpArgTokens, bool VarargsElided, Preprocessor &PP) |
| MacroArgs ctor function - Create a new MacroArgs object with the specified macro and argument info. More... | |
| static unsigned | getArgLength (const Token *ArgPtr) |
| getArgLength - Given a pointer to an expanded or unexpanded argument, return the number of tokens, not counting the EOF, that make up the argument. More... | |
| static Token | StringifyArgument (const Token *ArgToks, Preprocessor &PP, bool Charify, SourceLocation ExpansionLocStart, SourceLocation ExpansionLocEnd) |
| StringifyArgument - Implement C99 6.10.3.2p2, converting a sequence of tokens into the literal string token that should be produced by the C # preprocessor operator. More... | |
MacroArgs - An instance of this class captures information about the formal arguments specified to a function-like macro invocation.
Definition at line 29 of file MacroArgs.h.
| bool MacroArgs::ArgNeedsPreexpansion | ( | const Token * | ArgTok, |
| Preprocessor & | PP | ||
| ) | const |
ArgNeedsPreexpansion - If we can prove that the argument won't be affected by pre-expansion, return false.
Otherwise, conservatively return true.
Definition at line 133 of file MacroArgs.cpp.
References clang::comments::tok::eof, clang::Token::getIdentifierInfo(), and clang::Token::isNot().
|
static |
MacroArgs ctor function - Create a new MacroArgs object with the specified macro and argument info.
MacroArgs ctor function - This destroys the vector passed in.
Definition at line 25 of file MacroArgs.cpp.
References clang::MacroInfo::getNumParams(), getUnexpArgument(), clang::MacroInfo::isFunctionLike(), clang::Result, and Token.
| MacroArgs * MacroArgs::deallocate | ( | ) |
deallocate - This should only be called by the Preprocessor when managing its freelist.
Definition at line 90 of file MacroArgs.cpp.
References Next.
| void MacroArgs::destroy | ( | Preprocessor & | PP | ) |
destroy - Destroy and deallocate the memory for this object.
Definition at line 75 of file MacroArgs.cpp.
References clang::CodeGen::clear().
getArgLength - Given a pointer to an expanded or unexpanded argument, return the number of tokens, not counting the EOF, that make up the argument.
Definition at line 105 of file MacroArgs.cpp.
References clang::comments::tok::eof, and clang::Token::isNot().
Referenced by getPreExpArgument().
|
inline |
getNumMacroArguments - Return the number of arguments the invoked macro expects.
Definition at line 102 of file MacroArgs.h.
Referenced by getStringifiedArgument().
| const std::vector< Token > & MacroArgs::getPreExpArgument | ( | unsigned | Arg, |
| const MacroInfo * | MI, | ||
| Preprocessor & | PP | ||
| ) |
getPreExpArgument - Return the pre-expanded form of the specified argument.
Definition at line 149 of file MacroArgs.cpp.
References clang::comments::tok::eof, getArgLength(), clang::MacroInfo::getNumParams(), getUnexpArgument(), clang::Preprocessor::Lex(), clang::Preprocessor::RemoveTopOfLexerStack(), clang::Result, and Token.
| const Token & MacroArgs::getStringifiedArgument | ( | unsigned | ArgNo, |
| Preprocessor & | PP, | ||
| SourceLocation | ExpansionLocStart, | ||
| SourceLocation | ExpansionLocEnd | ||
| ) |
getStringifiedArgument - Compute, cache, and return the specified argument that has been 'stringified' as required by the # operator.
Definition at line 299 of file MacroArgs.cpp.
References getNumMacroArguments(), getUnexpArgument(), and StringifyArgument().
getUnexpArgument - Return a pointer to the first token of the unexpanded token list for the specified formal.
getUnexpArgument - Return the unexpanded tokens for the specified formal.
Definition at line 115 of file MacroArgs.cpp.
References clang::comments::tok::eof, clang::Token::is(), and clang::Result.
Referenced by create(), getPreExpArgument(), and getStringifiedArgument().
|
inline |
isVarargsElidedUse - Return true if this is a C99 style varargs macro invocation and there was no argument specified for the "..." argument.
If the argument was specified (even empty) or this isn't a C99 style varargs function, or if in strict mode and the C99 varargs macro had only a ... argument, this returns false.
Definition at line 109 of file MacroArgs.h.
|
static |
StringifyArgument - Implement C99 6.10.3.2p2, converting a sequence of tokens into the literal string token that should be produced by the C # preprocessor operator.
If Charify is true, then it should be turned into a character literal for the Microsoft charize (#@) extension.
Definition at line 196 of file MacroArgs.cpp.
References clang::Preprocessor::CodeCompleteNaturalLanguage(), clang::Preprocessor::CreateString(), clang::Preprocessor::Diag(), clang::comments::tok::eof, clang::Token::getKind(), clang::Token::getLength(), clang::Preprocessor::getSpelling(), clang::Token::hasLeadingSpace(), clang::Token::is(), clang::Token::isAtStartOfLine(), clang::Token::isNot(), clang::tok::isStringLiteral(), clang::Result, clang::Token::setKind(), clang::Token::startToken(), and clang::Lexer::Stringify().
Referenced by getStringifiedArgument().
1.8.6