aboutsummaryrefslogtreecommitdiff
path: root/clang/unittests/Lex/LexerTest.cpp
diff options
context:
space:
mode:
authorYitzhak Mandelbaum <yitzhakm@google.com>2021-07-02 18:53:10 +0000
committerYitzhak Mandelbaum <yitzhakm@google.com>2021-07-14 14:36:31 +0000
commit93dc73b1e0f31c712e5b8bbac14491ce55c414ad (patch)
tree3c9ddb7527b5ff59085af25a74fa338a0a2d7ca6 /clang/unittests/Lex/LexerTest.cpp
parent67002b5f20c2c4c9bd5e89f79077ae8d6e165aae (diff)
downloadllvm-93dc73b1e0f31c712e5b8bbac14491ce55c414ad.zip
llvm-93dc73b1e0f31c712e5b8bbac14491ce55c414ad.tar.gz
llvm-93dc73b1e0f31c712e5b8bbac14491ce55c414ad.tar.bz2
[Lexer] Fix bug in `makeFileCharRange` called on split tokens.
When the end loc of the specified range is a split token, `makeFileCharRange` does not process it correctly. This patch adds proper support for split tokens. Differential Revision: https://reviews.llvm.org/D105365
Diffstat (limited to 'clang/unittests/Lex/LexerTest.cpp')
-rw-r--r--clang/unittests/Lex/LexerTest.cpp65
1 files changed, 64 insertions, 1 deletions
diff --git a/clang/unittests/Lex/LexerTest.cpp b/clang/unittests/Lex/LexerTest.cpp
index 4cdabe0..319c63f 100644
--- a/clang/unittests/Lex/LexerTest.cpp
+++ b/clang/unittests/Lex/LexerTest.cpp
@@ -25,6 +25,7 @@
#include "clang/Lex/PreprocessorOptions.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
+#include <memory>
#include <vector>
namespace {
@@ -65,7 +66,7 @@ protected:
std::vector<Token> Lex(StringRef Source) {
TrivialModuleLoader ModLoader;
- auto PP = CreatePP(Source, ModLoader);
+ PP = CreatePP(Source, ModLoader);
std::vector<Token> toks;
while (1) {
@@ -109,6 +110,7 @@ protected:
LangOptions LangOpts;
std::shared_ptr<TargetOptions> TargetOpts;
IntrusiveRefCntPtr<TargetInfo> Target;
+ std::unique_ptr<Preprocessor> PP;
};
TEST_F(LexerTest, GetSourceTextExpandsToMaximumInMacroArgument) {
@@ -264,12 +266,14 @@ TEST_F(LexerTest, GetSourceTextExpandsRecursively) {
TEST_F(LexerTest, LexAPI) {
std::vector<tok::TokenKind> ExpectedTokens;
+ // Line 1 (after the #defines)
ExpectedTokens.push_back(tok::l_square);
ExpectedTokens.push_back(tok::identifier);
ExpectedTokens.push_back(tok::r_square);
ExpectedTokens.push_back(tok::l_square);
ExpectedTokens.push_back(tok::identifier);
ExpectedTokens.push_back(tok::r_square);
+ // Line 2
ExpectedTokens.push_back(tok::identifier);
ExpectedTokens.push_back(tok::identifier);
ExpectedTokens.push_back(tok::identifier);
@@ -357,6 +361,65 @@ TEST_F(LexerTest, LexAPI) {
EXPECT_EQ("N", Lexer::getImmediateMacroName(idLoc4, SourceMgr, LangOpts));
}
+TEST_F(LexerTest, HandlesSplitTokens) {
+ std::vector<tok::TokenKind> ExpectedTokens;
+ // Line 1 (after the #defines)
+ ExpectedTokens.push_back(tok::identifier);
+ ExpectedTokens.push_back(tok::less);
+ ExpectedTokens.push_back(tok::identifier);
+ ExpectedTokens.push_back(tok::less);
+ ExpectedTokens.push_back(tok::greatergreater);
+ // Line 2
+ ExpectedTokens.push_back(tok::identifier);
+ ExpectedTokens.push_back(tok::less);
+ ExpectedTokens.push_back(tok::identifier);
+ ExpectedTokens.push_back(tok::less);
+ ExpectedTokens.push_back(tok::greatergreater);
+
+ std::vector<Token> toks = CheckLex("#define TY ty\n"
+ "#define RANGLE ty<ty<>>\n"
+ "TY<ty<>>\n"
+ "RANGLE",
+ ExpectedTokens);
+
+ SourceLocation outerTyLoc = toks[0].getLocation();
+ SourceLocation innerTyLoc = toks[2].getLocation();
+ SourceLocation gtgtLoc = toks[4].getLocation();
+ // Split the token to simulate the action of the parser and force creation of
+ // an `ExpansionTokenRange`.
+ SourceLocation rangleLoc = PP->SplitToken(gtgtLoc, 1);
+
+ // Verify that it only captures the first greater-then and not the second one.
+ CharSourceRange range = Lexer::makeFileCharRange(
+ CharSourceRange::getTokenRange(innerTyLoc, rangleLoc), SourceMgr,
+ LangOpts);
+ EXPECT_TRUE(range.isCharRange());
+ EXPECT_EQ(range.getAsRange(),
+ SourceRange(innerTyLoc, gtgtLoc.getLocWithOffset(1)));
+
+ // Verify case where range begins in a macro expansion.
+ range = Lexer::makeFileCharRange(
+ CharSourceRange::getTokenRange(outerTyLoc, rangleLoc), SourceMgr,
+ LangOpts);
+ EXPECT_TRUE(range.isCharRange());
+ EXPECT_EQ(range.getAsRange(),
+ SourceRange(SourceMgr.getExpansionLoc(outerTyLoc),
+ gtgtLoc.getLocWithOffset(1)));
+
+ SourceLocation macroInnerTyLoc = toks[7].getLocation();
+ SourceLocation macroGtgtLoc = toks[9].getLocation();
+ // Split the token to simulate the action of the parser and force creation of
+ // an `ExpansionTokenRange`.
+ SourceLocation macroRAngleLoc = PP->SplitToken(macroGtgtLoc, 1);
+
+ // Verify that it fails (because it only captures the first greater-then and
+ // not the second one, so it doesn't span the entire macro expansion).
+ range = Lexer::makeFileCharRange(
+ CharSourceRange::getTokenRange(macroInnerTyLoc, macroRAngleLoc),
+ SourceMgr, LangOpts);
+ EXPECT_TRUE(range.isInvalid());
+}
+
TEST_F(LexerTest, DontMergeMacroArgsFromDifferentMacroFiles) {
std::vector<Token> toks =
Lex("#define helper1 0\n"