2012-12-04 17:45:34 +08:00
|
|
|
//===- unittests/Lex/LexerTest.cpp ------ Lexer tests ---------------------===//
|
2012-01-19 23:59:01 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-04 17:45:34 +08:00
|
|
|
#include "clang/Lex/Lexer.h"
|
2012-01-19 23:59:01 +08:00
|
|
|
#include "clang/Basic/Diagnostic.h"
|
2012-10-24 06:38:58 +08:00
|
|
|
#include "clang/Basic/DiagnosticOptions.h"
|
2012-12-04 17:45:34 +08:00
|
|
|
#include "clang/Basic/FileManager.h"
|
2012-01-19 23:59:01 +08:00
|
|
|
#include "clang/Basic/LangOptions.h"
|
2012-12-04 17:53:37 +08:00
|
|
|
#include "clang/Basic/SourceManager.h"
|
2012-01-19 23:59:01 +08:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
2012-12-04 17:45:34 +08:00
|
|
|
#include "clang/Basic/TargetOptions.h"
|
2012-01-19 23:59:01 +08:00
|
|
|
#include "clang/Lex/HeaderSearch.h"
|
2012-10-25 00:24:38 +08:00
|
|
|
#include "clang/Lex/HeaderSearchOptions.h"
|
2012-12-04 17:45:34 +08:00
|
|
|
#include "clang/Lex/ModuleLoader.h"
|
2012-01-19 23:59:01 +08:00
|
|
|
#include "clang/Lex/Preprocessor.h"
|
2012-10-25 01:46:57 +08:00
|
|
|
#include "clang/Lex/PreprocessorOptions.h"
|
2012-01-19 23:59:01 +08:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2013-05-17 05:37:39 +08:00
|
|
|
class VoidModuleLoader : public ModuleLoader {
|
2014-04-24 03:04:32 +08:00
|
|
|
ModuleLoadResult loadModule(SourceLocation ImportLoc,
|
|
|
|
ModuleIdPath Path,
|
|
|
|
Module::NameVisibilityKind Visibility,
|
|
|
|
bool IsInclusionDirective) override {
|
2013-05-17 05:37:39 +08:00
|
|
|
return ModuleLoadResult();
|
|
|
|
}
|
|
|
|
|
2014-04-24 03:04:32 +08:00
|
|
|
void makeModuleVisible(Module *Mod,
|
|
|
|
Module::NameVisibilityKind Visibility,
|
|
|
|
SourceLocation ImportLoc,
|
|
|
|
bool Complain) override { }
|
2014-04-23 20:57:01 +08:00
|
|
|
|
2014-04-24 03:04:32 +08:00
|
|
|
GlobalModuleIndex *loadGlobalModuleIndex(SourceLocation TriggerLoc) override
|
2014-04-23 20:57:01 +08:00
|
|
|
{ return 0; }
|
2014-04-24 03:04:32 +08:00
|
|
|
bool lookupMissingImports(StringRef Name, SourceLocation TriggerLoc) override
|
|
|
|
{ return 0; };
|
2013-05-17 05:37:39 +08:00
|
|
|
};
|
|
|
|
|
2012-01-19 23:59:01 +08:00
|
|
|
// The test fixture.
|
|
|
|
class LexerTest : public ::testing::Test {
|
|
|
|
protected:
|
|
|
|
LexerTest()
|
|
|
|
: FileMgr(FileMgrOpts),
|
|
|
|
DiagID(new DiagnosticIDs()),
|
2012-10-24 06:31:51 +08:00
|
|
|
Diags(DiagID, new DiagnosticOptions, new IgnoringDiagConsumer()),
|
2012-10-17 08:11:35 +08:00
|
|
|
SourceMgr(Diags, FileMgr),
|
|
|
|
TargetOpts(new TargetOptions)
|
|
|
|
{
|
|
|
|
TargetOpts->Triple = "x86_64-apple-darwin11.1.0";
|
2012-11-16 12:40:11 +08:00
|
|
|
Target = TargetInfo::CreateTargetInfo(Diags, &*TargetOpts);
|
2012-01-19 23:59:01 +08:00
|
|
|
}
|
|
|
|
|
2013-05-17 05:37:39 +08:00
|
|
|
std::vector<Token> CheckLex(StringRef Source,
|
|
|
|
ArrayRef<tok::TokenKind> ExpectedTokens) {
|
|
|
|
MemoryBuffer *buf = MemoryBuffer::getMemBuffer(Source);
|
2014-05-21 09:12:41 +08:00
|
|
|
SourceMgr.setMainFileID(SourceMgr.createFileID(buf));
|
2013-05-17 05:37:39 +08:00
|
|
|
|
|
|
|
VoidModuleLoader ModLoader;
|
Use the same SourceManager for ModuleMaps and compilations.
This allows using virtual file mappings on the original SourceManager to
map in virtual module.map files. Without this patch, the ModuleMap
search will find a module.map file (as the FileEntry exists in the
FileManager), but will be unable to get the content from the
SourceManager (as ModuleMap previously created its own SourceManager).
Two problems needed to be fixed which this patch exposed:
1. Storing the inferred module map
When writing out a module, the ASTWriter stores the names of the files
in the main source manager; when loading the AST again, the ASTReader
errs out if such a file is found missing, unless it is overridden.
Previously CompilerInstance's compileModule method would store the
inferred module map to a temporary file; the problem with this approach
is that now that the module map is handled by the main source manager,
the ASTWriter stores the name of the temporary module map as source to
the compilation; later, when the module is loaded, the temporary file
has already been deleted, which leads to a compilation error. This patch
changes the inferred module map to instead inject a virtual file into
the source manager. This both saves some disk IO, and works with how the
ASTWriter/ASTReader handle overridden source files.
2. Changing test input in test/Modules/Inputs/*
Now that the module map file is handled by the main source manager, the
VerifyDiagnosticConsumer will not ignore diagnostics created while
parsing the module map file. The module test test/Modules/renamed.m uses
-I test/Modules/Inputs and triggers recursive loading of all module maps
in test/Modules/Inputs, some of which had conflicting names, thus
leading errors while parsing the module maps. Those diagnostics already
occur on trunk, but before this patch they would not break the test, as
they were ignored by the VerifyDiagnosticConsumer. This patch thus
changes the module maps that have been recently introduced which broke
the invariant of compatible modules maps in test/Modules/Inputs.
llvm-svn: 193314
2013-10-24 15:51:24 +08:00
|
|
|
HeaderSearch HeaderInfo(new HeaderSearchOptions, SourceMgr, Diags, LangOpts,
|
2013-05-17 05:37:39 +08:00
|
|
|
Target.getPtr());
|
2014-05-02 11:43:38 +08:00
|
|
|
Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, SourceMgr,
|
|
|
|
HeaderInfo, ModLoader, /*IILookup =*/0,
|
|
|
|
/*OwnsHeaderSearch =*/false);
|
2014-05-02 11:43:30 +08:00
|
|
|
PP.Initialize(*Target);
|
2013-05-17 05:37:39 +08:00
|
|
|
PP.EnterMainSourceFile();
|
|
|
|
|
|
|
|
std::vector<Token> toks;
|
|
|
|
while (1) {
|
|
|
|
Token tok;
|
|
|
|
PP.Lex(tok);
|
|
|
|
if (tok.is(tok::eof))
|
|
|
|
break;
|
|
|
|
toks.push_back(tok);
|
|
|
|
}
|
|
|
|
|
|
|
|
EXPECT_EQ(ExpectedTokens.size(), toks.size());
|
|
|
|
for (unsigned i = 0, e = ExpectedTokens.size(); i != e; ++i) {
|
|
|
|
EXPECT_EQ(ExpectedTokens[i], toks[i].getKind());
|
|
|
|
}
|
|
|
|
|
|
|
|
return toks;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string getSourceText(Token Begin, Token End) {
|
|
|
|
bool Invalid;
|
|
|
|
StringRef Str =
|
|
|
|
Lexer::getSourceText(CharSourceRange::getTokenRange(SourceRange(
|
|
|
|
Begin.getLocation(), End.getLocation())),
|
|
|
|
SourceMgr, LangOpts, &Invalid);
|
|
|
|
if (Invalid)
|
|
|
|
return "<INVALID>";
|
|
|
|
return Str;
|
|
|
|
}
|
|
|
|
|
2012-01-19 23:59:01 +08:00
|
|
|
FileSystemOptions FileMgrOpts;
|
|
|
|
FileManager FileMgr;
|
2012-02-20 22:00:23 +08:00
|
|
|
IntrusiveRefCntPtr<DiagnosticIDs> DiagID;
|
2012-01-19 23:59:01 +08:00
|
|
|
DiagnosticsEngine Diags;
|
|
|
|
SourceManager SourceMgr;
|
|
|
|
LangOptions LangOpts;
|
2012-10-17 08:11:35 +08:00
|
|
|
IntrusiveRefCntPtr<TargetOptions> TargetOpts;
|
2012-02-20 22:00:23 +08:00
|
|
|
IntrusiveRefCntPtr<TargetInfo> Target;
|
2012-01-19 23:59:01 +08:00
|
|
|
};
|
|
|
|
|
2013-05-17 05:37:39 +08:00
|
|
|
TEST_F(LexerTest, GetSourceTextExpandsToMaximumInMacroArgument) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::l_paren);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::r_paren);
|
2013-01-12 10:16:29 +08:00
|
|
|
|
2013-05-17 05:37:39 +08:00
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"M(f(M(i)))",
|
|
|
|
ExpectedTokens);
|
|
|
|
|
|
|
|
EXPECT_EQ("M(i)", getSourceText(toks[2], toks[2]));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LexerTest, GetSourceTextExpandsToMaximumInMacroArgumentForEndOfMacro) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"M(M(i) c)",
|
|
|
|
ExpectedTokens);
|
|
|
|
|
|
|
|
EXPECT_EQ("M(i)", getSourceText(toks[0], toks[0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LexerTest, GetSourceTextExpandsInMacroArgumentForBeginOfMacro) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"M(c c M(i))",
|
|
|
|
ExpectedTokens);
|
|
|
|
|
|
|
|
EXPECT_EQ("c M(i)", getSourceText(toks[1], toks[2]));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LexerTest, GetSourceTextExpandsInMacroArgumentForEndOfMacro) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"M(M(i) c c)",
|
|
|
|
ExpectedTokens);
|
|
|
|
|
|
|
|
EXPECT_EQ("M(i) c", getSourceText(toks[0], toks[1]));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LexerTest, GetSourceTextInSeparateFnMacros) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"M(c M(i)) M(M(i) c)",
|
|
|
|
ExpectedTokens);
|
|
|
|
|
|
|
|
EXPECT_EQ("<INVALID>", getSourceText(toks[1], toks[2]));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LexerTest, GetSourceTextWorksAcrossTokenPastes) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::l_paren);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::r_paren);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"#define C(x) M(x##c)\n"
|
|
|
|
"M(f(C(i)))",
|
|
|
|
ExpectedTokens);
|
|
|
|
|
|
|
|
EXPECT_EQ("C(i)", getSourceText(toks[2], toks[2]));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LexerTest, GetSourceTextExpandsAcrossMultipleMacroCalls) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::l_paren);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::r_paren);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"f(M(M(i)))",
|
|
|
|
ExpectedTokens);
|
|
|
|
EXPECT_EQ("M(M(i))", getSourceText(toks[2], toks[2]));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LexerTest, GetSourceTextInMiddleOfMacroArgument) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::l_paren);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::r_paren);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"M(f(i))",
|
|
|
|
ExpectedTokens);
|
|
|
|
EXPECT_EQ("i", getSourceText(toks[2], toks[2]));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LexerTest, GetSourceTextExpandsAroundDifferentMacroCalls) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::l_paren);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::r_paren);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"#define C(x) x\n"
|
|
|
|
"f(C(M(i)))",
|
|
|
|
ExpectedTokens);
|
|
|
|
EXPECT_EQ("C(M(i))", getSourceText(toks[2], toks[2]));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LexerTest, GetSourceTextOnlyExpandsIfFirstTokenInMacro) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::l_paren);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::r_paren);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"#define C(x) c x\n"
|
|
|
|
"f(C(M(i)))",
|
|
|
|
ExpectedTokens);
|
|
|
|
EXPECT_EQ("M(i)", getSourceText(toks[3], toks[3]));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LexerTest, GetSourceTextExpandsRecursively) {
|
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::l_paren);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::r_paren);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) x\n"
|
|
|
|
"#define C(x) c M(x)\n"
|
|
|
|
"C(f(M(i)))",
|
|
|
|
ExpectedTokens);
|
|
|
|
EXPECT_EQ("M(i)", getSourceText(toks[3], toks[3]));
|
|
|
|
}
|
2012-01-19 23:59:01 +08:00
|
|
|
|
|
|
|
TEST_F(LexerTest, LexAPI) {
|
2013-05-17 05:37:39 +08:00
|
|
|
std::vector<tok::TokenKind> ExpectedTokens;
|
|
|
|
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);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
ExpectedTokens.push_back(tok::identifier);
|
|
|
|
|
|
|
|
std::vector<Token> toks = CheckLex("#define M(x) [x]\n"
|
|
|
|
"#define N(x) x\n"
|
|
|
|
"#define INN(x) x\n"
|
|
|
|
"#define NOF1 INN(val)\n"
|
|
|
|
"#define NOF2 val\n"
|
|
|
|
"M(foo) N([bar])\n"
|
|
|
|
"N(INN(val)) N(NOF1) N(NOF2) N(val)",
|
|
|
|
ExpectedTokens);
|
2012-01-19 23:59:01 +08:00
|
|
|
|
|
|
|
SourceLocation lsqrLoc = toks[0].getLocation();
|
|
|
|
SourceLocation idLoc = toks[1].getLocation();
|
|
|
|
SourceLocation rsqrLoc = toks[2].getLocation();
|
2012-01-19 23:59:14 +08:00
|
|
|
std::pair<SourceLocation,SourceLocation>
|
|
|
|
macroPair = SourceMgr.getExpansionRange(lsqrLoc);
|
|
|
|
SourceRange macroRange = SourceRange(macroPair.first, macroPair.second);
|
|
|
|
|
2012-01-19 23:59:08 +08:00
|
|
|
SourceLocation Loc;
|
|
|
|
EXPECT_TRUE(Lexer::isAtStartOfMacroExpansion(lsqrLoc, SourceMgr, LangOpts, &Loc));
|
2012-01-19 23:59:14 +08:00
|
|
|
EXPECT_EQ(Loc, macroRange.getBegin());
|
2012-01-19 23:59:01 +08:00
|
|
|
EXPECT_FALSE(Lexer::isAtStartOfMacroExpansion(idLoc, SourceMgr, LangOpts));
|
|
|
|
EXPECT_FALSE(Lexer::isAtEndOfMacroExpansion(idLoc, SourceMgr, LangOpts));
|
2012-01-19 23:59:08 +08:00
|
|
|
EXPECT_TRUE(Lexer::isAtEndOfMacroExpansion(rsqrLoc, SourceMgr, LangOpts, &Loc));
|
2012-01-19 23:59:14 +08:00
|
|
|
EXPECT_EQ(Loc, macroRange.getEnd());
|
|
|
|
|
2012-02-03 13:58:29 +08:00
|
|
|
CharSourceRange range = Lexer::makeFileCharRange(
|
|
|
|
CharSourceRange::getTokenRange(lsqrLoc, idLoc), SourceMgr, LangOpts);
|
2012-01-19 23:59:14 +08:00
|
|
|
EXPECT_TRUE(range.isInvalid());
|
2012-02-03 13:58:29 +08:00
|
|
|
range = Lexer::makeFileCharRange(CharSourceRange::getTokenRange(idLoc, rsqrLoc),
|
2012-01-19 23:59:14 +08:00
|
|
|
SourceMgr, LangOpts);
|
|
|
|
EXPECT_TRUE(range.isInvalid());
|
2012-02-03 13:58:29 +08:00
|
|
|
range = Lexer::makeFileCharRange(CharSourceRange::getTokenRange(lsqrLoc, rsqrLoc),
|
2012-01-19 23:59:14 +08:00
|
|
|
SourceMgr, LangOpts);
|
|
|
|
EXPECT_TRUE(!range.isTokenRange());
|
|
|
|
EXPECT_EQ(range.getAsRange(),
|
|
|
|
SourceRange(macroRange.getBegin(),
|
|
|
|
macroRange.getEnd().getLocWithOffset(1)));
|
2012-01-19 23:59:19 +08:00
|
|
|
|
|
|
|
StringRef text = Lexer::getSourceText(
|
2012-02-03 13:58:29 +08:00
|
|
|
CharSourceRange::getTokenRange(lsqrLoc, rsqrLoc),
|
|
|
|
SourceMgr, LangOpts);
|
2012-01-19 23:59:19 +08:00
|
|
|
EXPECT_EQ(text, "M(foo)");
|
2012-01-21 00:52:43 +08:00
|
|
|
|
|
|
|
SourceLocation macroLsqrLoc = toks[3].getLocation();
|
|
|
|
SourceLocation macroIdLoc = toks[4].getLocation();
|
|
|
|
SourceLocation macroRsqrLoc = toks[5].getLocation();
|
|
|
|
SourceLocation fileLsqrLoc = SourceMgr.getSpellingLoc(macroLsqrLoc);
|
|
|
|
SourceLocation fileIdLoc = SourceMgr.getSpellingLoc(macroIdLoc);
|
|
|
|
SourceLocation fileRsqrLoc = SourceMgr.getSpellingLoc(macroRsqrLoc);
|
|
|
|
|
2012-02-03 13:58:29 +08:00
|
|
|
range = Lexer::makeFileCharRange(
|
|
|
|
CharSourceRange::getTokenRange(macroLsqrLoc, macroIdLoc),
|
|
|
|
SourceMgr, LangOpts);
|
2012-01-21 00:52:43 +08:00
|
|
|
EXPECT_EQ(SourceRange(fileLsqrLoc, fileIdLoc.getLocWithOffset(3)),
|
|
|
|
range.getAsRange());
|
|
|
|
|
2012-02-03 13:58:29 +08:00
|
|
|
range = Lexer::makeFileCharRange(CharSourceRange::getTokenRange(macroIdLoc, macroRsqrLoc),
|
2012-01-21 00:52:43 +08:00
|
|
|
SourceMgr, LangOpts);
|
|
|
|
EXPECT_EQ(SourceRange(fileIdLoc, fileRsqrLoc.getLocWithOffset(1)),
|
|
|
|
range.getAsRange());
|
|
|
|
|
|
|
|
macroPair = SourceMgr.getExpansionRange(macroLsqrLoc);
|
2012-02-03 13:58:29 +08:00
|
|
|
range = Lexer::makeFileCharRange(
|
|
|
|
CharSourceRange::getTokenRange(macroLsqrLoc, macroRsqrLoc),
|
|
|
|
SourceMgr, LangOpts);
|
2012-01-21 00:52:43 +08:00
|
|
|
EXPECT_EQ(SourceRange(macroPair.first, macroPair.second.getLocWithOffset(1)),
|
|
|
|
range.getAsRange());
|
|
|
|
|
|
|
|
text = Lexer::getSourceText(
|
|
|
|
CharSourceRange::getTokenRange(SourceRange(macroLsqrLoc, macroIdLoc)),
|
|
|
|
SourceMgr, LangOpts);
|
|
|
|
EXPECT_EQ(text, "[bar");
|
2012-01-24 00:58:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
SourceLocation idLoc1 = toks[6].getLocation();
|
|
|
|
SourceLocation idLoc2 = toks[7].getLocation();
|
|
|
|
SourceLocation idLoc3 = toks[8].getLocation();
|
|
|
|
SourceLocation idLoc4 = toks[9].getLocation();
|
|
|
|
EXPECT_EQ("INN", Lexer::getImmediateMacroName(idLoc1, SourceMgr, LangOpts));
|
|
|
|
EXPECT_EQ("INN", Lexer::getImmediateMacroName(idLoc2, SourceMgr, LangOpts));
|
|
|
|
EXPECT_EQ("NOF2", Lexer::getImmediateMacroName(idLoc3, SourceMgr, LangOpts));
|
|
|
|
EXPECT_EQ("N", Lexer::getImmediateMacroName(idLoc4, SourceMgr, LangOpts));
|
2012-01-19 23:59:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // anonymous namespace
|