123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485 |
- //===--- Preprocess.cpp - C Language Family Preprocessor Implementation ---===//
- //
- // 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 Preprocessor interface.
- //
- //===----------------------------------------------------------------------===//
- //
- // Options to support:
- // -H - Print the name of each header file used.
- // -d[DNI] - Dump various things.
- // -fworking-directory - #line's with preprocessor's working dir.
- // -fpreprocessed
- // -dependency-file,-M,-MM,-MF,-MG,-MP,-MT,-MQ,-MD,-MMD
- // -W*
- // -w
- //
- // Messages to emit:
- // "Multiple include guards may be useful for:\n"
- //
- //===----------------------------------------------------------------------===//
- #include "clang/Lex/Preprocessor.h"
- #include "MacroArgs.h"
- #include "clang/Lex/ExternalPreprocessorSource.h"
- #include "clang/Lex/HeaderSearch.h"
- #include "clang/Lex/MacroInfo.h"
- #include "clang/Lex/Pragma.h"
- #include "clang/Lex/PreprocessingRecord.h"
- #include "clang/Lex/ScratchBuffer.h"
- #include "clang/Lex/LexDiagnostic.h"
- #include "clang/Lex/CodeCompletionHandler.h"
- #include "clang/Basic/SourceManager.h"
- #include "clang/Basic/FileManager.h"
- #include "clang/Basic/TargetInfo.h"
- #include "llvm/ADT/APFloat.h"
- #include "llvm/ADT/SmallVector.h"
- #include "llvm/Support/MemoryBuffer.h"
- #include "llvm/Support/raw_ostream.h"
- using namespace clang;
- //===----------------------------------------------------------------------===//
- ExternalPreprocessorSource::~ExternalPreprocessorSource() { }
- Preprocessor::Preprocessor(Diagnostic &diags, const LangOptions &opts,
- const TargetInfo &target, SourceManager &SM,
- HeaderSearch &Headers,
- IdentifierInfoLookup* IILookup,
- bool OwnsHeaders)
- : Diags(&diags), Features(opts), Target(target),FileMgr(Headers.getFileMgr()),
- SourceMgr(SM),
- HeaderInfo(Headers), ExternalSource(0),
- Identifiers(opts, IILookup), BuiltinInfo(Target), CodeComplete(0),
- CodeCompletionFile(0), SkipMainFilePreamble(0, true), CurPPLexer(0),
- CurDirLookup(0), Callbacks(0), MacroArgCache(0), Record(0), MIChainHead(0),
- MICache(0) {
- ScratchBuf = new ScratchBuffer(SourceMgr);
- CounterValue = 0; // __COUNTER__ starts at 0.
- OwnsHeaderSearch = OwnsHeaders;
- // Clear stats.
- NumDirectives = NumDefined = NumUndefined = NumPragma = 0;
- NumIf = NumElse = NumEndif = 0;
- NumEnteredSourceFiles = 0;
- NumMacroExpanded = NumFnMacroExpanded = NumBuiltinMacroExpanded = 0;
- NumFastMacroExpanded = NumTokenPaste = NumFastTokenPaste = 0;
- MaxIncludeStackDepth = 0;
- NumSkipped = 0;
- // Default to discarding comments.
- KeepComments = false;
- KeepMacroComments = false;
- // Macro expansion is enabled.
- DisableMacroExpansion = false;
- InMacroArgs = false;
- NumCachedTokenLexers = 0;
- CachedLexPos = 0;
- // We haven't read anything from the external source.
- ReadMacrosFromExternalSource = false;
- // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
- // This gets unpoisoned where it is allowed.
- (Ident__VA_ARGS__ = getIdentifierInfo("__VA_ARGS__"))->setIsPoisoned();
- // Initialize the pragma handlers.
- PragmaHandlers = new PragmaNamespace(llvm::StringRef());
- RegisterBuiltinPragmas();
- // Initialize builtin macros like __LINE__ and friends.
- RegisterBuiltinMacros();
- }
- Preprocessor::~Preprocessor() {
- assert(BacktrackPositions.empty() && "EnableBacktrack/Backtrack imbalance!");
- while (!IncludeMacroStack.empty()) {
- delete IncludeMacroStack.back().TheLexer;
- delete IncludeMacroStack.back().TheTokenLexer;
- IncludeMacroStack.pop_back();
- }
- // Free any macro definitions.
- for (MacroInfoChain *I = MIChainHead ; I ; I = I->Next)
- I->MI.Destroy();
- // Free any cached macro expanders.
- for (unsigned i = 0, e = NumCachedTokenLexers; i != e; ++i)
- delete TokenLexerCache[i];
- // Free any cached MacroArgs.
- for (MacroArgs *ArgList = MacroArgCache; ArgList; )
- ArgList = ArgList->deallocate();
- // Release pragma information.
- delete PragmaHandlers;
- // Delete the scratch buffer info.
- delete ScratchBuf;
- // Delete the header search info, if we own it.
- if (OwnsHeaderSearch)
- delete &HeaderInfo;
- delete Callbacks;
- }
- void Preprocessor::setPTHManager(PTHManager* pm) {
- PTH.reset(pm);
- FileMgr.addStatCache(PTH->createStatCache());
- }
- void Preprocessor::DumpToken(const Token &Tok, bool DumpFlags) const {
- llvm::errs() << tok::getTokenName(Tok.getKind()) << " '"
- << getSpelling(Tok) << "'";
- if (!DumpFlags) return;
- llvm::errs() << "\t";
- if (Tok.isAtStartOfLine())
- llvm::errs() << " [StartOfLine]";
- if (Tok.hasLeadingSpace())
- llvm::errs() << " [LeadingSpace]";
- if (Tok.isExpandDisabled())
- llvm::errs() << " [ExpandDisabled]";
- if (Tok.needsCleaning()) {
- const char *Start = SourceMgr.getCharacterData(Tok.getLocation());
- llvm::errs() << " [UnClean='" << llvm::StringRef(Start, Tok.getLength())
- << "']";
- }
- llvm::errs() << "\tLoc=<";
- DumpLocation(Tok.getLocation());
- llvm::errs() << ">";
- }
- void Preprocessor::DumpLocation(SourceLocation Loc) const {
- Loc.dump(SourceMgr);
- }
- void Preprocessor::DumpMacro(const MacroInfo &MI) const {
- llvm::errs() << "MACRO: ";
- for (unsigned i = 0, e = MI.getNumTokens(); i != e; ++i) {
- DumpToken(MI.getReplacementToken(i));
- llvm::errs() << " ";
- }
- llvm::errs() << "\n";
- }
- void Preprocessor::PrintStats() {
- llvm::errs() << "\n*** Preprocessor Stats:\n";
- llvm::errs() << NumDirectives << " directives found:\n";
- llvm::errs() << " " << NumDefined << " #define.\n";
- llvm::errs() << " " << NumUndefined << " #undef.\n";
- llvm::errs() << " #include/#include_next/#import:\n";
- llvm::errs() << " " << NumEnteredSourceFiles << " source files entered.\n";
- llvm::errs() << " " << MaxIncludeStackDepth << " max include stack depth\n";
- llvm::errs() << " " << NumIf << " #if/#ifndef/#ifdef.\n";
- llvm::errs() << " " << NumElse << " #else/#elif.\n";
- llvm::errs() << " " << NumEndif << " #endif.\n";
- llvm::errs() << " " << NumPragma << " #pragma.\n";
- llvm::errs() << NumSkipped << " #if/#ifndef#ifdef regions skipped\n";
- llvm::errs() << NumMacroExpanded << "/" << NumFnMacroExpanded << "/"
- << NumBuiltinMacroExpanded << " obj/fn/builtin macros expanded, "
- << NumFastMacroExpanded << " on the fast path.\n";
- llvm::errs() << (NumFastTokenPaste+NumTokenPaste)
- << " token paste (##) operations performed, "
- << NumFastTokenPaste << " on the fast path.\n";
- }
- Preprocessor::macro_iterator
- Preprocessor::macro_begin(bool IncludeExternalMacros) const {
- if (IncludeExternalMacros && ExternalSource &&
- !ReadMacrosFromExternalSource) {
- ReadMacrosFromExternalSource = true;
- ExternalSource->ReadDefinedMacros();
- }
- return Macros.begin();
- }
- Preprocessor::macro_iterator
- Preprocessor::macro_end(bool IncludeExternalMacros) const {
- if (IncludeExternalMacros && ExternalSource &&
- !ReadMacrosFromExternalSource) {
- ReadMacrosFromExternalSource = true;
- ExternalSource->ReadDefinedMacros();
- }
- return Macros.end();
- }
- bool Preprocessor::SetCodeCompletionPoint(const FileEntry *File,
- unsigned TruncateAtLine,
- unsigned TruncateAtColumn) {
- using llvm::MemoryBuffer;
- CodeCompletionFile = File;
- // Okay to clear out the code-completion point by passing NULL.
- if (!CodeCompletionFile)
- return false;
- // Load the actual file's contents.
- bool Invalid = false;
- const MemoryBuffer *Buffer = SourceMgr.getMemoryBufferForFile(File, &Invalid);
- if (Invalid)
- return true;
- // Find the byte position of the truncation point.
- const char *Position = Buffer->getBufferStart();
- for (unsigned Line = 1; Line < TruncateAtLine; ++Line) {
- for (; *Position; ++Position) {
- if (*Position != '\r' && *Position != '\n')
- continue;
- // Eat \r\n or \n\r as a single line.
- if ((Position[1] == '\r' || Position[1] == '\n') &&
- Position[0] != Position[1])
- ++Position;
- ++Position;
- break;
- }
- }
- Position += TruncateAtColumn - 1;
- // Truncate the buffer.
- if (Position < Buffer->getBufferEnd()) {
- llvm::StringRef Data(Buffer->getBufferStart(),
- Position-Buffer->getBufferStart());
- MemoryBuffer *TruncatedBuffer
- = MemoryBuffer::getMemBufferCopy(Data, Buffer->getBufferIdentifier());
- SourceMgr.overrideFileContents(File, TruncatedBuffer);
- }
- return false;
- }
- bool Preprocessor::isCodeCompletionFile(SourceLocation FileLoc) const {
- return CodeCompletionFile && FileLoc.isFileID() &&
- SourceMgr.getFileEntryForID(SourceMgr.getFileID(FileLoc))
- == CodeCompletionFile;
- }
- void Preprocessor::CodeCompleteNaturalLanguage() {
- SetCodeCompletionPoint(0, 0, 0);
- getDiagnostics().setSuppressAllDiagnostics(true);
- if (CodeComplete)
- CodeComplete->CodeCompleteNaturalLanguage();
- }
- /// getSpelling - This method is used to get the spelling of a token into a
- /// SmallVector. Note that the returned StringRef may not point to the
- /// supplied buffer if a copy can be avoided.
- llvm::StringRef Preprocessor::getSpelling(const Token &Tok,
- llvm::SmallVectorImpl<char> &Buffer,
- bool *Invalid) const {
- // Try the fast path.
- if (const IdentifierInfo *II = Tok.getIdentifierInfo())
- return II->getName();
- // Resize the buffer if we need to copy into it.
- if (Tok.needsCleaning())
- Buffer.resize(Tok.getLength());
- const char *Ptr = Buffer.data();
- unsigned Len = getSpelling(Tok, Ptr, Invalid);
- return llvm::StringRef(Ptr, Len);
- }
- /// CreateString - Plop the specified string into a scratch buffer and return a
- /// location for it. If specified, the source location provides a source
- /// location for the token.
- void Preprocessor::CreateString(const char *Buf, unsigned Len, Token &Tok,
- SourceLocation InstantiationLoc) {
- Tok.setLength(Len);
- const char *DestPtr;
- SourceLocation Loc = ScratchBuf->getToken(Buf, Len, DestPtr);
- if (InstantiationLoc.isValid())
- Loc = SourceMgr.createInstantiationLoc(Loc, InstantiationLoc,
- InstantiationLoc, Len);
- Tok.setLocation(Loc);
- // If this is a literal token, set the pointer data.
- if (Tok.isLiteral())
- Tok.setLiteralData(DestPtr);
- }
- //===----------------------------------------------------------------------===//
- // Preprocessor Initialization Methods
- //===----------------------------------------------------------------------===//
- /// EnterMainSourceFile - Enter the specified FileID as the main source file,
- /// which implicitly adds the builtin defines etc.
- void Preprocessor::EnterMainSourceFile() {
- // We do not allow the preprocessor to reenter the main file. Doing so will
- // cause FileID's to accumulate information from both runs (e.g. #line
- // information) and predefined macros aren't guaranteed to be set properly.
- assert(NumEnteredSourceFiles == 0 && "Cannot reenter the main file!");
- FileID MainFileID = SourceMgr.getMainFileID();
- // Enter the main file source buffer.
- EnterSourceFile(MainFileID, 0, SourceLocation());
- // If we've been asked to skip bytes in the main file (e.g., as part of a
- // precompiled preamble), do so now.
- if (SkipMainFilePreamble.first > 0)
- CurLexer->SkipBytes(SkipMainFilePreamble.first,
- SkipMainFilePreamble.second);
-
- // Tell the header info that the main file was entered. If the file is later
- // #imported, it won't be re-entered.
- if (const FileEntry *FE = SourceMgr.getFileEntryForID(MainFileID))
- HeaderInfo.IncrementIncludeCount(FE);
- // Preprocess Predefines to populate the initial preprocessor state.
- llvm::MemoryBuffer *SB =
- llvm::MemoryBuffer::getMemBufferCopy(Predefines, "<built-in>");
- assert(SB && "Cannot create predefined source buffer");
- FileID FID = SourceMgr.createFileIDForMemBuffer(SB);
- assert(!FID.isInvalid() && "Could not create FileID for predefines?");
- // Start parsing the predefines.
- EnterSourceFile(FID, 0, SourceLocation());
- }
- void Preprocessor::EndSourceFile() {
- // Notify the client that we reached the end of the source file.
- if (Callbacks)
- Callbacks->EndOfMainFile();
- }
- //===----------------------------------------------------------------------===//
- // Lexer Event Handling.
- //===----------------------------------------------------------------------===//
- /// LookUpIdentifierInfo - Given a tok::identifier token, look up the
- /// identifier information for the token and install it into the token.
- IdentifierInfo *Preprocessor::LookUpIdentifierInfo(Token &Identifier,
- const char *BufPtr) const {
- assert(Identifier.is(tok::identifier) && "Not an identifier!");
- assert(Identifier.getIdentifierInfo() == 0 && "Identinfo already exists!");
- // Look up this token, see if it is a macro, or if it is a language keyword.
- IdentifierInfo *II;
- if (BufPtr && !Identifier.needsCleaning()) {
- // No cleaning needed, just use the characters from the lexed buffer.
- II = getIdentifierInfo(llvm::StringRef(BufPtr, Identifier.getLength()));
- } else {
- // Cleaning needed, alloca a buffer, clean into it, then use the buffer.
- llvm::SmallString<64> IdentifierBuffer;
- llvm::StringRef CleanedStr = getSpelling(Identifier, IdentifierBuffer);
- II = getIdentifierInfo(CleanedStr);
- }
- Identifier.setIdentifierInfo(II);
- return II;
- }
- /// HandleIdentifier - This callback is invoked when the lexer reads an
- /// identifier. This callback looks up the identifier in the map and/or
- /// potentially macro expands it or turns it into a named token (like 'for').
- ///
- /// Note that callers of this method are guarded by checking the
- /// IdentifierInfo's 'isHandleIdentifierCase' bit. If this method changes, the
- /// IdentifierInfo methods that compute these properties will need to change to
- /// match.
- void Preprocessor::HandleIdentifier(Token &Identifier) {
- assert(Identifier.getIdentifierInfo() &&
- "Can't handle identifiers without identifier info!");
- IdentifierInfo &II = *Identifier.getIdentifierInfo();
- // If this identifier was poisoned, and if it was not produced from a macro
- // expansion, emit an error.
- if (II.isPoisoned() && CurPPLexer) {
- if (&II != Ident__VA_ARGS__) // We warn about __VA_ARGS__ with poisoning.
- Diag(Identifier, diag::err_pp_used_poisoned_id);
- else
- Diag(Identifier, diag::ext_pp_bad_vaargs_use);
- }
- // If this is a macro to be expanded, do it.
- if (MacroInfo *MI = getMacroInfo(&II)) {
- if (!DisableMacroExpansion && !Identifier.isExpandDisabled()) {
- if (MI->isEnabled()) {
- if (!HandleMacroExpandedIdentifier(Identifier, MI))
- return;
- } else {
- // C99 6.10.3.4p2 says that a disabled macro may never again be
- // expanded, even if it's in a context where it could be expanded in the
- // future.
- Identifier.setFlag(Token::DisableExpand);
- }
- }
- }
- // C++ 2.11p2: If this is an alternative representation of a C++ operator,
- // then we act as if it is the actual operator and not the textual
- // representation of it.
- if (II.isCPlusPlusOperatorKeyword())
- Identifier.setIdentifierInfo(0);
- // If this is an extension token, diagnose its use.
- // We avoid diagnosing tokens that originate from macro definitions.
- // FIXME: This warning is disabled in cases where it shouldn't be,
- // like "#define TY typeof", "TY(1) x".
- if (II.isExtensionToken() && !DisableMacroExpansion)
- Diag(Identifier, diag::ext_token_used);
- }
- void Preprocessor::AddCommentHandler(CommentHandler *Handler) {
- assert(Handler && "NULL comment handler");
- assert(std::find(CommentHandlers.begin(), CommentHandlers.end(), Handler) ==
- CommentHandlers.end() && "Comment handler already registered");
- CommentHandlers.push_back(Handler);
- }
- void Preprocessor::RemoveCommentHandler(CommentHandler *Handler) {
- std::vector<CommentHandler *>::iterator Pos
- = std::find(CommentHandlers.begin(), CommentHandlers.end(), Handler);
- assert(Pos != CommentHandlers.end() && "Comment handler not registered");
- CommentHandlers.erase(Pos);
- }
- bool Preprocessor::HandleComment(Token &result, SourceRange Comment) {
- bool AnyPendingTokens = false;
- for (std::vector<CommentHandler *>::iterator H = CommentHandlers.begin(),
- HEnd = CommentHandlers.end();
- H != HEnd; ++H) {
- if ((*H)->HandleComment(*this, Comment))
- AnyPendingTokens = true;
- }
- if (!AnyPendingTokens || getCommentRetentionState())
- return false;
- Lex(result);
- return true;
- }
- CommentHandler::~CommentHandler() { }
- CodeCompletionHandler::~CodeCompletionHandler() { }
- void Preprocessor::createPreprocessingRecord() {
- if (Record)
- return;
-
- Record = new PreprocessingRecord;
- addPPCallbacks(Record);
- }
|