1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
|
//===- Tokens.cpp - collect tokens from preprocessing ---------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "clang/Tooling/Syntax/Tokens.h"
#include "clang/Basic/Diagnostic.h"
#include "clang/Basic/IdentifierTable.h"
#include "clang/Basic/LLVM.h"
#include "clang/Basic/LangOptions.h"
#include "clang/Basic/SourceLocation.h"
#include "clang/Basic/SourceManager.h"
#include "clang/Basic/TokenKinds.h"
#include "clang/Lex/PPCallbacks.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Lex/Token.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/None.h"
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/FormatVariadic.h"
#include "llvm/Support/raw_ostream.h"
#include <algorithm>
#include <cassert>
#include <iterator>
#include <string>
#include <utility>
#include <vector>
using namespace clang;
using namespace clang::syntax;
namespace {
// Finds the smallest consecutive subsuquence of Toks that covers R.
llvm::ArrayRef<syntax::Token>
getTokensCovering(llvm::ArrayRef<syntax::Token> Toks, SourceRange R,
const SourceManager &SM) {
if (R.isInvalid())
return {};
const syntax::Token *Begin =
llvm::partition_point(Toks, [&](const syntax::Token &T) {
return SM.isBeforeInTranslationUnit(T.location(), R.getBegin());
});
const syntax::Token *End =
llvm::partition_point(Toks, [&](const syntax::Token &T) {
return !SM.isBeforeInTranslationUnit(R.getEnd(), T.location());
});
if (Begin > End)
return {};
return {Begin, End};
}
// Finds the range within FID corresponding to expanded tokens [First, Last].
// Prev precedes First and Next follows Last, these must *not* be included.
// If no range satisfies the criteria, returns an invalid range.
//
// #define ID(x) x
// ID(ID(ID(a1) a2))
// ~~ -> a1
// ~~ -> a2
// ~~~~~~~~~ -> a1 a2
SourceRange spelledForExpandedSlow(SourceLocation First, SourceLocation Last,
SourceLocation Prev, SourceLocation Next,
FileID TargetFile,
const SourceManager &SM) {
// There are two main parts to this algorithm:
// - identifying which spelled range covers the expanded tokens
// - validating that this range doesn't cover any extra tokens (First/Last)
//
// We do these in order. However as we transform the expanded range into the
// spelled one, we adjust First/Last so the validation remains simple.
assert(SM.getSLocEntry(TargetFile).isFile());
// In most cases, to select First and Last we must return their expansion
// range, i.e. the whole of any macros they are included in.
//
// When First and Last are part of the *same macro arg* of a macro written
// in TargetFile, we that slice of the arg, i.e. their spelling range.
//
// Unwrap such macro calls. If the target file has A(B(C)), the
// SourceLocation stack of a token inside C shows us the expansion of A first,
// then B, then any macros inside C's body, then C itself.
// (This is the reverse of the order the PP applies the expansions in).
while (First.isMacroID() && Last.isMacroID()) {
auto DecFirst = SM.getDecomposedLoc(First);
auto DecLast = SM.getDecomposedLoc(Last);
auto &ExpFirst = SM.getSLocEntry(DecFirst.first).getExpansion();
auto &ExpLast = SM.getSLocEntry(DecLast.first).getExpansion();
if (!ExpFirst.isMacroArgExpansion() || !ExpLast.isMacroArgExpansion())
break;
// Locations are in the same macro arg if they expand to the same place.
// (They may still have different FileIDs - an arg can have >1 chunks!)
if (ExpFirst.getExpansionLocStart() != ExpLast.getExpansionLocStart())
break;
// Careful, given:
// #define HIDE ID(ID(a))
// ID(ID(HIDE))
// The token `a` is wrapped in 4 arg-expansions, we only want to unwrap 2.
// We distinguish them by whether the macro expands into the target file.
// Fortunately, the target file ones will always appear first.
auto &ExpMacro =
SM.getSLocEntry(SM.getFileID(ExpFirst.getExpansionLocStart()))
.getExpansion();
if (ExpMacro.getExpansionLocStart().isMacroID())
break;
// Replace each endpoint with its spelling inside the macro arg.
// (This is getImmediateSpellingLoc without repeating lookups).
First = ExpFirst.getSpellingLoc().getLocWithOffset(DecFirst.second);
Last = ExpLast.getSpellingLoc().getLocWithOffset(DecLast.second);
// Now: how do we adjust the previous/next bounds? Three cases:
// A) If they are also part of the same macro arg, we translate them too.
// This will ensure that we don't select any macros nested within the
// macro arg that cover extra tokens. Critical case:
// #define ID(X) X
// ID(prev target) // selecting 'target' succeeds
// #define LARGE ID(prev target)
// LARGE // selecting 'target' fails.
// B) They are not in the macro at all, then their expansion range is a
// sibling to it, and we can safely substitute that.
// #define PREV prev
// #define ID(X) X
// PREV ID(target) // selecting 'target' succeeds.
// #define LARGE PREV ID(target)
// LARGE // selecting 'target' fails.
// C) They are in a different arg of this macro, or the macro body.
// Now selecting the whole macro arg is fine, but the whole macro is not.
// Model this by setting using the edge of the macro call as the bound.
// #define ID2(X, Y) X Y
// ID2(prev, target) // selecting 'target' succeeds
// #define LARGE ID2(prev, target)
// LARGE // selecting 'target' fails
auto AdjustBound = [&](SourceLocation &Bound) {
if (Bound.isInvalid() || !Bound.isMacroID()) // Non-macro must be case B.
return;
auto DecBound = SM.getDecomposedLoc(Bound);
auto &ExpBound = SM.getSLocEntry(DecBound.first).getExpansion();
if (ExpBound.isMacroArgExpansion() &&
ExpBound.getExpansionLocStart() == ExpFirst.getExpansionLocStart()) {
// Case A: translate to (spelling) loc within the macro arg.
Bound = ExpBound.getSpellingLoc().getLocWithOffset(DecBound.second);
return;
}
while (Bound.isMacroID()) {
SourceRange Exp = SM.getImmediateExpansionRange(Bound).getAsRange();
if (Exp.getBegin() == ExpMacro.getExpansionLocStart()) {
// Case B: bounds become the macro call itself.
Bound = (&Bound == &Prev) ? Exp.getBegin() : Exp.getEnd();
return;
}
// Either case C, or expansion location will later find case B.
// We choose the upper bound for Prev and the lower one for Next:
// ID(prev) target ID(next)
// ^ ^
// new-prev new-next
Bound = (&Bound == &Prev) ? Exp.getEnd() : Exp.getBegin();
}
};
AdjustBound(Prev);
AdjustBound(Next);
}
// In all remaining cases we need the full containing macros.
// If this overlaps Prev or Next, then no range is possible.
SourceRange Candidate =
SM.getExpansionRange(SourceRange(First, Last)).getAsRange();
auto DecFirst = SM.getDecomposedExpansionLoc(Candidate.getBegin());
auto DecLast = SM.getDecomposedLoc(Candidate.getEnd());
// Can end up in the wrong file due to bad input or token-pasting shenanigans.
if (Candidate.isInvalid() || DecFirst.first != TargetFile || DecLast.first != TargetFile)
return SourceRange();
// Check bounds, which may still be inside macros.
if (Prev.isValid()) {
auto Dec = SM.getDecomposedLoc(SM.getExpansionRange(Prev).getBegin());
if (Dec.first != DecFirst.first || Dec.second >= DecFirst.second)
return SourceRange();
}
if (Next.isValid()) {
auto Dec = SM.getDecomposedLoc(SM.getExpansionRange(Next).getEnd());
if (Dec.first != DecLast.first || Dec.second <= DecLast.second)
return SourceRange();
}
// Now we know that Candidate is a file range that covers [First, Last]
// without encroaching on {Prev, Next}. Ship it!
return Candidate;
}
} // namespace
syntax::Token::Token(SourceLocation Location, unsigned Length,
tok::TokenKind Kind)
: Location(Location), Length(Length), Kind(Kind) {
assert(Location.isValid());
}
syntax::Token::Token(const clang::Token &T)
: Token(T.getLocation(), T.getLength(), T.getKind()) {
assert(!T.isAnnotation());
}
llvm::StringRef syntax::Token::text(const SourceManager &SM) const {
bool Invalid = false;
const char *Start = SM.getCharacterData(location(), &Invalid);
assert(!Invalid);
return llvm::StringRef(Start, length());
}
FileRange syntax::Token::range(const SourceManager &SM) const {
assert(location().isFileID() && "must be a spelled token");
FileID File;
unsigned StartOffset;
std::tie(File, StartOffset) = SM.getDecomposedLoc(location());
return FileRange(File, StartOffset, StartOffset + length());
}
FileRange syntax::Token::range(const SourceManager &SM,
const syntax::Token &First,
const syntax::Token &Last) {
auto F = First.range(SM);
auto L = Last.range(SM);
assert(F.file() == L.file() && "tokens from different files");
assert((F == L || F.endOffset() <= L.beginOffset()) &&
"wrong order of tokens");
return FileRange(F.file(), F.beginOffset(), L.endOffset());
}
llvm::raw_ostream &syntax::operator<<(llvm::raw_ostream &OS, const Token &T) {
return OS << T.str();
}
FileRange::FileRange(FileID File, unsigned BeginOffset, unsigned EndOffset)
: File(File), Begin(BeginOffset), End(EndOffset) {
assert(File.isValid());
assert(BeginOffset <= EndOffset);
}
FileRange::FileRange(const SourceManager &SM, SourceLocation BeginLoc,
unsigned Length) {
assert(BeginLoc.isValid());
assert(BeginLoc.isFileID());
std::tie(File, Begin) = SM.getDecomposedLoc(BeginLoc);
End = Begin + Length;
}
FileRange::FileRange(const SourceManager &SM, SourceLocation BeginLoc,
SourceLocation EndLoc) {
assert(BeginLoc.isValid());
assert(BeginLoc.isFileID());
assert(EndLoc.isValid());
assert(EndLoc.isFileID());
assert(SM.getFileID(BeginLoc) == SM.getFileID(EndLoc));
assert(SM.getFileOffset(BeginLoc) <= SM.getFileOffset(EndLoc));
std::tie(File, Begin) = SM.getDecomposedLoc(BeginLoc);
End = SM.getFileOffset(EndLoc);
}
llvm::raw_ostream &syntax::operator<<(llvm::raw_ostream &OS,
const FileRange &R) {
return OS << llvm::formatv("FileRange(file = {0}, offsets = {1}-{2})",
R.file().getHashValue(), R.beginOffset(),
R.endOffset());
}
llvm::StringRef FileRange::text(const SourceManager &SM) const {
bool Invalid = false;
StringRef Text = SM.getBufferData(File, &Invalid);
if (Invalid)
return "";
assert(Begin <= Text.size());
assert(End <= Text.size());
return Text.substr(Begin, length());
}
void TokenBuffer::indexExpandedTokens() {
// No-op if the index is already created.
if (!ExpandedTokIndex.empty())
return;
ExpandedTokIndex.reserve(ExpandedTokens.size());
// Index ExpandedTokens for faster lookups by SourceLocation.
for (size_t I = 0, E = ExpandedTokens.size(); I != E; ++I) {
SourceLocation Loc = ExpandedTokens[I].location();
if (Loc.isValid())
ExpandedTokIndex[Loc] = I;
}
}
llvm::ArrayRef<syntax::Token> TokenBuffer::expandedTokens(SourceRange R) const {
if (R.isInvalid())
return {};
if (!ExpandedTokIndex.empty()) {
// Quick lookup if `R` is a token range.
// This is a huge win since majority of the users use ranges provided by an
// AST. Ranges in AST are token ranges from expanded token stream.
const auto B = ExpandedTokIndex.find(R.getBegin());
const auto E = ExpandedTokIndex.find(R.getEnd());
if (B != ExpandedTokIndex.end() && E != ExpandedTokIndex.end()) {
const Token *L = ExpandedTokens.data() + B->getSecond();
// Add 1 to End to make a half-open range.
const Token *R = ExpandedTokens.data() + E->getSecond() + 1;
if (L > R)
return {};
return {L, R};
}
}
// Slow case. Use `isBeforeInTranslationUnit` to binary search for the
// required range.
return getTokensCovering(expandedTokens(), R, *SourceMgr);
}
CharSourceRange FileRange::toCharRange(const SourceManager &SM) const {
return CharSourceRange(
SourceRange(SM.getComposedLoc(File, Begin), SM.getComposedLoc(File, End)),
/*IsTokenRange=*/false);
}
std::pair<const syntax::Token *, const TokenBuffer::Mapping *>
TokenBuffer::spelledForExpandedToken(const syntax::Token *Expanded) const {
assert(Expanded);
assert(ExpandedTokens.data() <= Expanded &&
Expanded < ExpandedTokens.data() + ExpandedTokens.size());
auto FileIt = Files.find(
SourceMgr->getFileID(SourceMgr->getExpansionLoc(Expanded->location())));
assert(FileIt != Files.end() && "no file for an expanded token");
const MarkedFile &File = FileIt->second;
unsigned ExpandedIndex = Expanded - ExpandedTokens.data();
// Find the first mapping that produced tokens after \p Expanded.
auto It = llvm::partition_point(File.Mappings, [&](const Mapping &M) {
return M.BeginExpanded <= ExpandedIndex;
});
// Our token could only be produced by the previous mapping.
if (It == File.Mappings.begin()) {
// No previous mapping, no need to modify offsets.
return {&File.SpelledTokens[ExpandedIndex - File.BeginExpanded],
/*Mapping=*/nullptr};
}
--It; // 'It' now points to last mapping that started before our token.
// Check if the token is part of the mapping.
if (ExpandedIndex < It->EndExpanded)
return {&File.SpelledTokens[It->BeginSpelled], /*Mapping=*/&*It};
// Not part of the mapping, use the index from previous mapping to compute the
// corresponding spelled token.
return {
&File.SpelledTokens[It->EndSpelled + (ExpandedIndex - It->EndExpanded)],
/*Mapping=*/nullptr};
}
const TokenBuffer::Mapping *
TokenBuffer::mappingStartingBeforeSpelled(const MarkedFile &F,
const syntax::Token *Spelled) {
assert(F.SpelledTokens.data() <= Spelled);
unsigned SpelledI = Spelled - F.SpelledTokens.data();
assert(SpelledI < F.SpelledTokens.size());
auto It = llvm::partition_point(F.Mappings, [SpelledI](const Mapping &M) {
return M.BeginSpelled <= SpelledI;
});
if (It == F.Mappings.begin())
return nullptr;
--It;
return &*It;
}
llvm::SmallVector<llvm::ArrayRef<syntax::Token>, 1>
TokenBuffer::expandedForSpelled(llvm::ArrayRef<syntax::Token> Spelled) const {
if (Spelled.empty())
return {};
const auto &File = fileForSpelled(Spelled);
auto *FrontMapping = mappingStartingBeforeSpelled(File, &Spelled.front());
unsigned SpelledFrontI = &Spelled.front() - File.SpelledTokens.data();
assert(SpelledFrontI < File.SpelledTokens.size());
unsigned ExpandedBegin;
if (!FrontMapping) {
// No mapping that starts before the first token of Spelled, we don't have
// to modify offsets.
ExpandedBegin = File.BeginExpanded + SpelledFrontI;
} else if (SpelledFrontI < FrontMapping->EndSpelled) {
// This mapping applies to Spelled tokens.
if (SpelledFrontI != FrontMapping->BeginSpelled) {
// Spelled tokens don't cover the entire mapping, returning empty result.
return {}; // FIXME: support macro arguments.
}
// Spelled tokens start at the beginning of this mapping.
ExpandedBegin = FrontMapping->BeginExpanded;
} else {
// Spelled tokens start after the mapping ends (they start in the hole
// between 2 mappings, or between a mapping and end of the file).
ExpandedBegin =
FrontMapping->EndExpanded + (SpelledFrontI - FrontMapping->EndSpelled);
}
auto *BackMapping = mappingStartingBeforeSpelled(File, &Spelled.back());
unsigned SpelledBackI = &Spelled.back() - File.SpelledTokens.data();
unsigned ExpandedEnd;
if (!BackMapping) {
// No mapping that starts before the last token of Spelled, we don't have to
// modify offsets.
ExpandedEnd = File.BeginExpanded + SpelledBackI + 1;
} else if (SpelledBackI < BackMapping->EndSpelled) {
// This mapping applies to Spelled tokens.
if (SpelledBackI + 1 != BackMapping->EndSpelled) {
// Spelled tokens don't cover the entire mapping, returning empty result.
return {}; // FIXME: support macro arguments.
}
ExpandedEnd = BackMapping->EndExpanded;
} else {
// Spelled tokens end after the mapping ends.
ExpandedEnd =
BackMapping->EndExpanded + (SpelledBackI - BackMapping->EndSpelled) + 1;
}
assert(ExpandedBegin < ExpandedTokens.size());
assert(ExpandedEnd < ExpandedTokens.size());
// Avoid returning empty ranges.
if (ExpandedBegin == ExpandedEnd)
return {};
return {llvm::makeArrayRef(ExpandedTokens.data() + ExpandedBegin,
ExpandedTokens.data() + ExpandedEnd)};
}
llvm::ArrayRef<syntax::Token> TokenBuffer::spelledTokens(FileID FID) const {
auto It = Files.find(FID);
assert(It != Files.end());
return It->second.SpelledTokens;
}
const syntax::Token *TokenBuffer::spelledTokenAt(SourceLocation Loc) const {
assert(Loc.isFileID());
const auto *Tok = llvm::partition_point(
spelledTokens(SourceMgr->getFileID(Loc)),
[&](const syntax::Token &Tok) { return Tok.location() < Loc; });
if (!Tok || Tok->location() != Loc)
return nullptr;
return Tok;
}
std::string TokenBuffer::Mapping::str() const {
return std::string(
llvm::formatv("spelled tokens: [{0},{1}), expanded tokens: [{2},{3})",
BeginSpelled, EndSpelled, BeginExpanded, EndExpanded));
}
llvm::Optional<llvm::ArrayRef<syntax::Token>>
TokenBuffer::spelledForExpanded(llvm::ArrayRef<syntax::Token> Expanded) const {
// Mapping an empty range is ambiguous in case of empty mappings at either end
// of the range, bail out in that case.
if (Expanded.empty())
return llvm::None;
const syntax::Token *First = &Expanded.front();
const syntax::Token *Last = &Expanded.back();
const syntax::Token *FirstSpelled, *LastSpelled;
const TokenBuffer::Mapping *FirstMapping, *LastMapping;
std::tie(FirstSpelled, FirstMapping) = spelledForExpandedToken(First);
std::tie(LastSpelled, LastMapping) = spelledForExpandedToken(Last);
FileID FID = SourceMgr->getFileID(FirstSpelled->location());
// FIXME: Handle multi-file changes by trying to map onto a common root.
if (FID != SourceMgr->getFileID(LastSpelled->location()))
return llvm::None;
const MarkedFile &File = Files.find(FID)->second;
// If the range is within one macro argument, the result may be only part of a
// Mapping. We must use the general (SourceManager-based) algorithm.
if (FirstMapping && FirstMapping == LastMapping &&
SourceMgr->isMacroArgExpansion(First->location()) &&
SourceMgr->isMacroArgExpansion(Last->location())) {
// We use excluded Prev/Next token for bounds checking.
SourceLocation Prev = (First == &ExpandedTokens.front())
? SourceLocation()
: (First - 1)->location();
SourceLocation Next = (Last == &ExpandedTokens.back())
? SourceLocation()
: (Last + 1)->location();
SourceRange Range = spelledForExpandedSlow(
First->location(), Last->location(), Prev, Next, FID, *SourceMgr);
if (Range.isInvalid())
return llvm::None;
return getTokensCovering(File.SpelledTokens, Range, *SourceMgr);
}
// Otherwise, use the fast version based on Mappings.
// Do not allow changes that doesn't cover full expansion.
unsigned FirstExpanded = Expanded.begin() - ExpandedTokens.data();
unsigned LastExpanded = Expanded.end() - ExpandedTokens.data();
if (FirstMapping && FirstExpanded != FirstMapping->BeginExpanded)
return llvm::None;
if (LastMapping && LastMapping->EndExpanded != LastExpanded)
return llvm::None;
return llvm::makeArrayRef(
FirstMapping ? File.SpelledTokens.data() + FirstMapping->BeginSpelled
: FirstSpelled,
LastMapping ? File.SpelledTokens.data() + LastMapping->EndSpelled
: LastSpelled + 1);
}
TokenBuffer::Expansion TokenBuffer::makeExpansion(const MarkedFile &F,
const Mapping &M) const {
Expansion E;
E.Spelled = llvm::makeArrayRef(F.SpelledTokens.data() + M.BeginSpelled,
F.SpelledTokens.data() + M.EndSpelled);
E.Expanded = llvm::makeArrayRef(ExpandedTokens.data() + M.BeginExpanded,
ExpandedTokens.data() + M.EndExpanded);
return E;
}
const TokenBuffer::MarkedFile &
TokenBuffer::fileForSpelled(llvm::ArrayRef<syntax::Token> Spelled) const {
assert(!Spelled.empty());
assert(Spelled.front().location().isFileID() && "not a spelled token");
auto FileIt = Files.find(SourceMgr->getFileID(Spelled.front().location()));
assert(FileIt != Files.end() && "file not tracked by token buffer");
const auto &File = FileIt->second;
assert(File.SpelledTokens.data() <= Spelled.data() &&
Spelled.end() <=
(File.SpelledTokens.data() + File.SpelledTokens.size()) &&
"Tokens not in spelled range");
#ifndef NDEBUG
auto T1 = Spelled.back().location();
auto T2 = File.SpelledTokens.back().location();
assert(T1 == T2 || sourceManager().isBeforeInTranslationUnit(T1, T2));
#endif
return File;
}
llvm::Optional<TokenBuffer::Expansion>
TokenBuffer::expansionStartingAt(const syntax::Token *Spelled) const {
assert(Spelled);
const auto &File = fileForSpelled(*Spelled);
unsigned SpelledIndex = Spelled - File.SpelledTokens.data();
auto M = llvm::partition_point(File.Mappings, [&](const Mapping &M) {
return M.BeginSpelled < SpelledIndex;
});
if (M == File.Mappings.end() || M->BeginSpelled != SpelledIndex)
return llvm::None;
return makeExpansion(File, *M);
}
std::vector<TokenBuffer::Expansion> TokenBuffer::expansionsOverlapping(
llvm::ArrayRef<syntax::Token> Spelled) const {
if (Spelled.empty())
return {};
const auto &File = fileForSpelled(Spelled);
// Find the first overlapping range, and then copy until we stop overlapping.
unsigned SpelledBeginIndex = Spelled.begin() - File.SpelledTokens.data();
unsigned SpelledEndIndex = Spelled.end() - File.SpelledTokens.data();
auto M = llvm::partition_point(File.Mappings, [&](const Mapping &M) {
return M.EndSpelled <= SpelledBeginIndex;
});
std::vector<TokenBuffer::Expansion> Expansions;
for (; M != File.Mappings.end() && M->BeginSpelled < SpelledEndIndex; ++M)
Expansions.push_back(makeExpansion(File, *M));
return Expansions;
}
llvm::ArrayRef<syntax::Token>
syntax::spelledTokensTouching(SourceLocation Loc,
llvm::ArrayRef<syntax::Token> Tokens) {
assert(Loc.isFileID());
auto *Right = llvm::partition_point(
Tokens, [&](const syntax::Token &Tok) { return Tok.location() < Loc; });
bool AcceptRight = Right != Tokens.end() && Right->location() <= Loc;
bool AcceptLeft =
Right != Tokens.begin() && (Right - 1)->endLocation() >= Loc;
return llvm::makeArrayRef(Right - (AcceptLeft ? 1 : 0),
Right + (AcceptRight ? 1 : 0));
}
llvm::ArrayRef<syntax::Token>
syntax::spelledTokensTouching(SourceLocation Loc,
const syntax::TokenBuffer &Tokens) {
return spelledTokensTouching(
Loc, Tokens.spelledTokens(Tokens.sourceManager().getFileID(Loc)));
}
const syntax::Token *
syntax::spelledIdentifierTouching(SourceLocation Loc,
llvm::ArrayRef<syntax::Token> Tokens) {
for (const syntax::Token &Tok : spelledTokensTouching(Loc, Tokens)) {
if (Tok.kind() == tok::identifier)
return &Tok;
}
return nullptr;
}
const syntax::Token *
syntax::spelledIdentifierTouching(SourceLocation Loc,
const syntax::TokenBuffer &Tokens) {
return spelledIdentifierTouching(
Loc, Tokens.spelledTokens(Tokens.sourceManager().getFileID(Loc)));
}
std::vector<const syntax::Token *>
TokenBuffer::macroExpansions(FileID FID) const {
auto FileIt = Files.find(FID);
assert(FileIt != Files.end() && "file not tracked by token buffer");
auto &File = FileIt->second;
std::vector<const syntax::Token *> Expansions;
auto &Spelled = File.SpelledTokens;
for (auto Mapping : File.Mappings) {
const syntax::Token *Token = &Spelled[Mapping.BeginSpelled];
if (Token->kind() == tok::TokenKind::identifier)
Expansions.push_back(Token);
}
return Expansions;
}
std::vector<syntax::Token> syntax::tokenize(const FileRange &FR,
const SourceManager &SM,
const LangOptions &LO) {
std::vector<syntax::Token> Tokens;
IdentifierTable Identifiers(LO);
auto AddToken = [&](clang::Token T) {
// Fill the proper token kind for keywords, etc.
if (T.getKind() == tok::raw_identifier && !T.needsCleaning() &&
!T.hasUCN()) { // FIXME: support needsCleaning and hasUCN cases.
clang::IdentifierInfo &II = Identifiers.get(T.getRawIdentifier());
T.setIdentifierInfo(&II);
T.setKind(II.getTokenID());
}
Tokens.push_back(syntax::Token(T));
};
auto SrcBuffer = SM.getBufferData(FR.file());
Lexer L(SM.getLocForStartOfFile(FR.file()), LO, SrcBuffer.data(),
SrcBuffer.data() + FR.beginOffset(),
// We can't make BufEnd point to FR.endOffset, as Lexer requires a
// null terminated buffer.
SrcBuffer.data() + SrcBuffer.size());
clang::Token T;
while (!L.LexFromRawLexer(T) && L.getCurrentBufferOffset() < FR.endOffset())
AddToken(T);
// LexFromRawLexer returns true when it parses the last token of the file, add
// it iff it starts within the range we are interested in.
if (SM.getFileOffset(T.getLocation()) < FR.endOffset())
AddToken(T);
return Tokens;
}
std::vector<syntax::Token> syntax::tokenize(FileID FID, const SourceManager &SM,
const LangOptions &LO) {
return tokenize(syntax::FileRange(FID, 0, SM.getFileIDSize(FID)), SM, LO);
}
/// Records information reqired to construct mappings for the token buffer that
/// we are collecting.
class TokenCollector::CollectPPExpansions : public PPCallbacks {
public:
CollectPPExpansions(TokenCollector &C) : Collector(&C) {}
/// Disabled instance will stop reporting anything to TokenCollector.
/// This ensures that uses of the preprocessor after TokenCollector::consume()
/// is called do not access the (possibly invalid) collector instance.
void disable() { Collector = nullptr; }
void MacroExpands(const clang::Token &MacroNameTok, const MacroDefinition &MD,
SourceRange Range, const MacroArgs *Args) override {
if (!Collector)
return;
const auto &SM = Collector->PP.getSourceManager();
// Only record top-level expansions that directly produce expanded tokens.
// This excludes those where:
// - the macro use is inside a macro body,
// - the macro appears in an argument to another macro.
// However macro expansion isn't really a tree, it's token rewrite rules,
// so there are other cases, e.g.
// #define B(X) X
// #define A 1 + B
// A(2)
// Both A and B produce expanded tokens, though the macro name 'B' comes
// from an expansion. The best we can do is merge the mappings for both.
// The *last* token of any top-level macro expansion must be in a file.
// (In the example above, see the closing paren of the expansion of B).
if (!Range.getEnd().isFileID())
return;
// If there's a current expansion that encloses this one, this one can't be
// top-level.
if (LastExpansionEnd.isValid() &&
!SM.isBeforeInTranslationUnit(LastExpansionEnd, Range.getEnd()))
return;
// If the macro invocation (B) starts in a macro (A) but ends in a file,
// we'll create a merged mapping for A + B by overwriting the endpoint for
// A's startpoint.
if (!Range.getBegin().isFileID()) {
Range.setBegin(SM.getExpansionLoc(Range.getBegin()));
assert(Collector->Expansions.count(Range.getBegin()) &&
"Overlapping macros should have same expansion location");
}
Collector->Expansions[Range.getBegin()] = Range.getEnd();
LastExpansionEnd = Range.getEnd();
}
// FIXME: handle directives like #pragma, #include, etc.
private:
TokenCollector *Collector;
/// Used to detect recursive macro expansions.
SourceLocation LastExpansionEnd;
};
/// Fills in the TokenBuffer by tracing the run of a preprocessor. The
/// implementation tracks the tokens, macro expansions and directives coming
/// from the preprocessor and:
/// - for each token, figures out if it is a part of an expanded token stream,
/// spelled token stream or both. Stores the tokens appropriately.
/// - records mappings from the spelled to expanded token ranges, e.g. for macro
/// expansions.
/// FIXME: also properly record:
/// - #include directives,
/// - #pragma, #line and other PP directives,
/// - skipped pp regions,
/// - ...
TokenCollector::TokenCollector(Preprocessor &PP) : PP(PP) {
// Collect the expanded token stream during preprocessing.
PP.setTokenWatcher([this](const clang::Token &T) {
if (T.isAnnotation())
return;
DEBUG_WITH_TYPE("collect-tokens", llvm::dbgs()
<< "Token: "
<< syntax::Token(T).dumpForTests(
this->PP.getSourceManager())
<< "\n"
);
Expanded.push_back(syntax::Token(T));
});
// And locations of macro calls, to properly recover boundaries of those in
// case of empty expansions.
auto CB = std::make_unique<CollectPPExpansions>(*this);
this->Collector = CB.get();
PP.addPPCallbacks(std::move(CB));
}
/// Builds mappings and spelled tokens in the TokenBuffer based on the expanded
/// token stream.
class TokenCollector::Builder {
public:
Builder(std::vector<syntax::Token> Expanded, PPExpansions CollectedExpansions,
const SourceManager &SM, const LangOptions &LangOpts)
: Result(SM), CollectedExpansions(std::move(CollectedExpansions)), SM(SM),
LangOpts(LangOpts) {
Result.ExpandedTokens = std::move(Expanded);
}
TokenBuffer build() && {
assert(!Result.ExpandedTokens.empty());
assert(Result.ExpandedTokens.back().kind() == tok::eof);
// Tokenize every file that contributed tokens to the expanded stream.
buildSpelledTokens();
// The expanded token stream consists of runs of tokens that came from
// the same source (a macro expansion, part of a file etc).
// Between these runs are the logical positions of spelled tokens that
// didn't expand to anything.
while (NextExpanded < Result.ExpandedTokens.size() - 1 /* eof */) {
// Create empty mappings for spelled tokens that expanded to nothing here.
// May advance NextSpelled, but NextExpanded is unchanged.
discard();
// Create mapping for a contiguous run of expanded tokens.
// Advances NextExpanded past the run, and NextSpelled accordingly.
unsigned OldPosition = NextExpanded;
advance();
if (NextExpanded == OldPosition)
diagnoseAdvanceFailure();
}
// If any tokens remain in any of the files, they didn't expand to anything.
// Create empty mappings up until the end of the file.
for (const auto &File : Result.Files)
discard(File.first);
#ifndef NDEBUG
for (auto &pair : Result.Files) {
auto &mappings = pair.second.Mappings;
assert(llvm::is_sorted(mappings, [](const TokenBuffer::Mapping &M1,
const TokenBuffer::Mapping &M2) {
return M1.BeginSpelled < M2.BeginSpelled &&
M1.EndSpelled < M2.EndSpelled &&
M1.BeginExpanded < M2.BeginExpanded &&
M1.EndExpanded < M2.EndExpanded;
}));
}
#endif
return std::move(Result);
}
private:
// Consume a sequence of spelled tokens that didn't expand to anything.
// In the simplest case, skips spelled tokens until finding one that produced
// the NextExpanded token, and creates an empty mapping for them.
// If Drain is provided, skips remaining tokens from that file instead.
void discard(llvm::Optional<FileID> Drain = llvm::None) {
SourceLocation Target =
Drain ? SM.getLocForEndOfFile(*Drain)
: SM.getExpansionLoc(
Result.ExpandedTokens[NextExpanded].location());
FileID File = SM.getFileID(Target);
const auto &SpelledTokens = Result.Files[File].SpelledTokens;
auto &NextSpelled = this->NextSpelled[File];
TokenBuffer::Mapping Mapping;
Mapping.BeginSpelled = NextSpelled;
// When dropping trailing tokens from a file, the empty mapping should
// be positioned within the file's expanded-token range (at the end).
Mapping.BeginExpanded = Mapping.EndExpanded =
Drain ? Result.Files[*Drain].EndExpanded : NextExpanded;
// We may want to split into several adjacent empty mappings.
// FlushMapping() emits the current mapping and starts a new one.
auto FlushMapping = [&, this] {
Mapping.EndSpelled = NextSpelled;
if (Mapping.BeginSpelled != Mapping.EndSpelled)
Result.Files[File].Mappings.push_back(Mapping);
Mapping.BeginSpelled = NextSpelled;
};
while (NextSpelled < SpelledTokens.size() &&
SpelledTokens[NextSpelled].location() < Target) {
// If we know mapping bounds at [NextSpelled, KnownEnd] (macro expansion)
// then we want to partition our (empty) mapping.
// [Start, NextSpelled) [NextSpelled, KnownEnd] (KnownEnd, Target)
SourceLocation KnownEnd =
CollectedExpansions.lookup(SpelledTokens[NextSpelled].location());
if (KnownEnd.isValid()) {
FlushMapping(); // Emits [Start, NextSpelled)
while (NextSpelled < SpelledTokens.size() &&
SpelledTokens[NextSpelled].location() <= KnownEnd)
++NextSpelled;
FlushMapping(); // Emits [NextSpelled, KnownEnd]
// Now the loop contitues and will emit (KnownEnd, Target).
} else {
++NextSpelled;
}
}
FlushMapping();
}
// Consumes the NextExpanded token and others that are part of the same run.
// Increases NextExpanded and NextSpelled by at least one, and adds a mapping
// (unless this is a run of file tokens, which we represent with no mapping).
void advance() {
const syntax::Token &Tok = Result.ExpandedTokens[NextExpanded];
SourceLocation Expansion = SM.getExpansionLoc(Tok.location());
FileID File = SM.getFileID(Expansion);
const auto &SpelledTokens = Result.Files[File].SpelledTokens;
auto &NextSpelled = this->NextSpelled[File];
if (Tok.location().isFileID()) {
// A run of file tokens continues while the expanded/spelled tokens match.
while (NextSpelled < SpelledTokens.size() &&
NextExpanded < Result.ExpandedTokens.size() &&
SpelledTokens[NextSpelled].location() ==
Result.ExpandedTokens[NextExpanded].location()) {
++NextSpelled;
++NextExpanded;
}
// We need no mapping for file tokens copied to the expanded stream.
} else {
// We found a new macro expansion. We should have its spelling bounds.
auto End = CollectedExpansions.lookup(Expansion);
assert(End.isValid() && "Macro expansion wasn't captured?");
// Mapping starts here...
TokenBuffer::Mapping Mapping;
Mapping.BeginExpanded = NextExpanded;
Mapping.BeginSpelled = NextSpelled;
// ... consumes spelled tokens within bounds we captured ...
while (NextSpelled < SpelledTokens.size() &&
SpelledTokens[NextSpelled].location() <= End)
++NextSpelled;
// ... consumes expanded tokens rooted at the same expansion ...
while (NextExpanded < Result.ExpandedTokens.size() &&
SM.getExpansionLoc(
Result.ExpandedTokens[NextExpanded].location()) == Expansion)
++NextExpanded;
// ... and ends here.
Mapping.EndExpanded = NextExpanded;
Mapping.EndSpelled = NextSpelled;
Result.Files[File].Mappings.push_back(Mapping);
}
}
// advance() is supposed to consume at least one token - if not, we crash.
void diagnoseAdvanceFailure() {
#ifndef NDEBUG
// Show the failed-to-map token in context.
for (unsigned I = (NextExpanded < 10) ? 0 : NextExpanded - 10;
I < NextExpanded + 5 && I < Result.ExpandedTokens.size(); ++I) {
const char *L =
(I == NextExpanded) ? "!! " : (I < NextExpanded) ? "ok " : " ";
llvm::errs() << L << Result.ExpandedTokens[I].dumpForTests(SM) << "\n";
}
#endif
llvm_unreachable("Couldn't map expanded token to spelled tokens!");
}
/// Initializes TokenBuffer::Files and fills spelled tokens and expanded
/// ranges for each of the files.
void buildSpelledTokens() {
for (unsigned I = 0; I < Result.ExpandedTokens.size(); ++I) {
const auto &Tok = Result.ExpandedTokens[I];
auto FID = SM.getFileID(SM.getExpansionLoc(Tok.location()));
auto It = Result.Files.try_emplace(FID);
TokenBuffer::MarkedFile &File = It.first->second;
// The eof token should not be considered part of the main-file's range.
File.EndExpanded = Tok.kind() == tok::eof ? I : I + 1;
if (!It.second)
continue; // we have seen this file before.
// This is the first time we see this file.
File.BeginExpanded = I;
File.SpelledTokens = tokenize(FID, SM, LangOpts);
}
}
TokenBuffer Result;
unsigned NextExpanded = 0; // cursor in ExpandedTokens
llvm::DenseMap<FileID, unsigned> NextSpelled; // cursor in SpelledTokens
PPExpansions CollectedExpansions;
const SourceManager &SM;
const LangOptions &LangOpts;
};
TokenBuffer TokenCollector::consume() && {
PP.setTokenWatcher(nullptr);
Collector->disable();
return Builder(std::move(Expanded), std::move(Expansions),
PP.getSourceManager(), PP.getLangOpts())
.build();
}
std::string syntax::Token::str() const {
return std::string(llvm::formatv("Token({0}, length = {1})",
tok::getTokenName(kind()), length()));
}
std::string syntax::Token::dumpForTests(const SourceManager &SM) const {
return std::string(llvm::formatv("Token(`{0}`, {1}, length = {2})", text(SM),
tok::getTokenName(kind()), length()));
}
std::string TokenBuffer::dumpForTests() const {
auto PrintToken = [this](const syntax::Token &T) -> std::string {
if (T.kind() == tok::eof)
return "<eof>";
return std::string(T.text(*SourceMgr));
};
auto DumpTokens = [this, &PrintToken](llvm::raw_ostream &OS,
llvm::ArrayRef<syntax::Token> Tokens) {
if (Tokens.empty()) {
OS << "<empty>";
return;
}
OS << Tokens[0].text(*SourceMgr);
for (unsigned I = 1; I < Tokens.size(); ++I) {
if (Tokens[I].kind() == tok::eof)
continue;
OS << " " << PrintToken(Tokens[I]);
}
};
std::string Dump;
llvm::raw_string_ostream OS(Dump);
OS << "expanded tokens:\n"
<< " ";
// (!) we do not show '<eof>'.
DumpTokens(OS, llvm::makeArrayRef(ExpandedTokens).drop_back());
OS << "\n";
std::vector<FileID> Keys;
for (auto F : Files)
Keys.push_back(F.first);
llvm::sort(Keys);
for (FileID ID : Keys) {
const MarkedFile &File = Files.find(ID)->second;
auto *Entry = SourceMgr->getFileEntryForID(ID);
if (!Entry)
continue; // Skip builtin files.
OS << llvm::formatv("file '{0}'\n", Entry->getName())
<< " spelled tokens:\n"
<< " ";
DumpTokens(OS, File.SpelledTokens);
OS << "\n";
if (File.Mappings.empty()) {
OS << " no mappings.\n";
continue;
}
OS << " mappings:\n";
for (auto &M : File.Mappings) {
OS << llvm::formatv(
" ['{0}'_{1}, '{2}'_{3}) => ['{4}'_{5}, '{6}'_{7})\n",
PrintToken(File.SpelledTokens[M.BeginSpelled]), M.BeginSpelled,
M.EndSpelled == File.SpelledTokens.size()
? "<eof>"
: PrintToken(File.SpelledTokens[M.EndSpelled]),
M.EndSpelled, PrintToken(ExpandedTokens[M.BeginExpanded]),
M.BeginExpanded, PrintToken(ExpandedTokens[M.EndExpanded]),
M.EndExpanded);
}
}
return Dump;
}
|