diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-12-22 04:48:10 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-12-22 04:48:10 +0000 |
commit | 9fd1571e7aa4020757068501cff6349b49c23f0c (patch) | |
tree | 81e37594d30b04de553549f8846180e4a63783be /clang/lib/Lex/PPLexerChange.cpp | |
parent | 430a938fde888af9e085e24bd3feb8f50b2acad4 (diff) | |
download | bcm5719-llvm-9fd1571e7aa4020757068501cff6349b49c23f0c.tar.gz bcm5719-llvm-9fd1571e7aa4020757068501cff6349b49c23f0c.zip |
[libclang] Fix crash when code-completing a macro invocation that
reached EOF and did not expand the argument into the source context.
llvm-svn: 170980
Diffstat (limited to 'clang/lib/Lex/PPLexerChange.cpp')
-rw-r--r-- | clang/lib/Lex/PPLexerChange.cpp | 43 |
1 files changed, 29 insertions, 14 deletions
diff --git a/clang/lib/Lex/PPLexerChange.cpp b/clang/lib/Lex/PPLexerChange.cpp index 552df7127f7..0ce67dce7e6 100644 --- a/clang/lib/Lex/PPLexerChange.cpp +++ b/clang/lib/Lex/PPLexerChange.cpp @@ -158,15 +158,17 @@ void Preprocessor::EnterSourceFileWithPTH(PTHLexer *PL, /// tokens from it instead of the current buffer. void Preprocessor::EnterMacro(Token &Tok, SourceLocation ILEnd, MacroInfo *Macro, MacroArgs *Args) { - PushIncludeMacroStack(); - CurDirLookup = 0; - + TokenLexer *TokLexer; if (NumCachedTokenLexers == 0) { - CurTokenLexer.reset(new TokenLexer(Tok, ILEnd, Macro, Args, *this)); + TokLexer = new TokenLexer(Tok, ILEnd, Macro, Args, *this); } else { - CurTokenLexer.reset(TokenLexerCache[--NumCachedTokenLexers]); - CurTokenLexer->Init(Tok, ILEnd, Macro, Args); + TokLexer = TokenLexerCache[--NumCachedTokenLexers]; + TokLexer->Init(Tok, ILEnd, Macro, Args); } + + PushIncludeMacroStack(); + CurDirLookup = 0; + CurTokenLexer.reset(TokLexer); if (CurLexerKind != CLK_LexAfterModuleImport) CurLexerKind = CLK_TokenLexer; } @@ -186,18 +188,20 @@ void Preprocessor::EnterMacro(Token &Tok, SourceLocation ILEnd, void Preprocessor::EnterTokenStream(const Token *Toks, unsigned NumToks, bool DisableMacroExpansion, bool OwnsTokens) { - // Save our current state. - PushIncludeMacroStack(); - CurDirLookup = 0; - // Create a macro expander to expand from the specified token stream. + TokenLexer *TokLexer; if (NumCachedTokenLexers == 0) { - CurTokenLexer.reset(new TokenLexer(Toks, NumToks, DisableMacroExpansion, - OwnsTokens, *this)); + TokLexer = new TokenLexer(Toks, NumToks, DisableMacroExpansion, + OwnsTokens, *this); } else { - CurTokenLexer.reset(TokenLexerCache[--NumCachedTokenLexers]); - CurTokenLexer->Init(Toks, NumToks, DisableMacroExpansion, OwnsTokens); + TokLexer = TokenLexerCache[--NumCachedTokenLexers]; + TokLexer->Init(Toks, NumToks, DisableMacroExpansion, OwnsTokens); } + + // Save our current state. + PushIncludeMacroStack(); + CurDirLookup = 0; + CurTokenLexer.reset(TokLexer); if (CurLexerKind != CLK_LexAfterModuleImport) CurLexerKind = CLK_TokenLexer; } @@ -328,6 +332,17 @@ bool Preprocessor::HandleEndOfFile(Token &Result, bool isEndOfMacro) { CurLexer->BufferPtr = EndPos; CurLexer->FormTokenWithChars(Result, EndPos, tok::eof); + if (isCodeCompletionEnabled()) { + // Inserting the code-completion point increases the source buffer by 1, + // but the main FileID was created before inserting the point. + // Compensate by reducing the EOF location by 1, otherwise the location + // will point to the next FileID. + // FIXME: This is hacky, the code-completion point should probably be + // inserted before the main FileID is created. + if (CurLexer->getFileLoc() == CodeCompletionFileLoc) + Result.setLocation(Result.getLocation().getLocWithOffset(-1)); + } + if (!isIncrementalProcessingEnabled()) // We're done with lexing. CurLexer.reset(); |