1 //===--- UnwrappedLineParser.cpp - Format C++ code ------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 /// 9 /// \file 10 /// This file contains the implementation of the UnwrappedLineParser, 11 /// which turns a stream of tokens into UnwrappedLines. 12 /// 13 //===----------------------------------------------------------------------===// 14 15 #include "UnwrappedLineParser.h" 16 #include "llvm/ADT/STLExtras.h" 17 #include "llvm/Support/Debug.h" 18 #include "llvm/Support/raw_ostream.h" 19 20 #include <algorithm> 21 22 #define DEBUG_TYPE "format-parser" 23 24 namespace clang { 25 namespace format { 26 27 class FormatTokenSource { 28 public: 29 virtual ~FormatTokenSource() {} 30 virtual FormatToken *getNextToken() = 0; 31 32 virtual unsigned getPosition() = 0; 33 virtual FormatToken *setPosition(unsigned Position) = 0; 34 }; 35 36 namespace { 37 38 class ScopedDeclarationState { 39 public: 40 ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack, 41 bool MustBeDeclaration) 42 : Line(Line), Stack(Stack) { 43 Line.MustBeDeclaration = MustBeDeclaration; 44 Stack.push_back(MustBeDeclaration); 45 } 46 ~ScopedDeclarationState() { 47 Stack.pop_back(); 48 if (!Stack.empty()) 49 Line.MustBeDeclaration = Stack.back(); 50 else 51 Line.MustBeDeclaration = true; 52 } 53 54 private: 55 UnwrappedLine &Line; 56 std::vector<bool> &Stack; 57 }; 58 59 static bool isLineComment(const FormatToken &FormatTok) { 60 return FormatTok.is(tok::comment) && !FormatTok.TokenText.startswith("/*"); 61 } 62 63 // Checks if \p FormatTok is a line comment that continues the line comment 64 // \p Previous. The original column of \p MinColumnToken is used to determine 65 // whether \p FormatTok is indented enough to the right to continue \p Previous. 66 static bool continuesLineComment(const FormatToken &FormatTok, 67 const FormatToken *Previous, 68 const FormatToken *MinColumnToken) { 69 if (!Previous || !MinColumnToken) 70 return false; 71 unsigned MinContinueColumn = 72 MinColumnToken->OriginalColumn + (isLineComment(*MinColumnToken) ? 0 : 1); 73 return isLineComment(FormatTok) && FormatTok.NewlinesBefore == 1 && 74 isLineComment(*Previous) && 75 FormatTok.OriginalColumn >= MinContinueColumn; 76 } 77 78 class ScopedMacroState : public FormatTokenSource { 79 public: 80 ScopedMacroState(UnwrappedLine &Line, FormatTokenSource *&TokenSource, 81 FormatToken *&ResetToken) 82 : Line(Line), TokenSource(TokenSource), ResetToken(ResetToken), 83 PreviousLineLevel(Line.Level), PreviousTokenSource(TokenSource), 84 Token(nullptr), PreviousToken(nullptr) { 85 FakeEOF.Tok.startToken(); 86 FakeEOF.Tok.setKind(tok::eof); 87 TokenSource = this; 88 Line.Level = 0; 89 Line.InPPDirective = true; 90 } 91 92 ~ScopedMacroState() override { 93 TokenSource = PreviousTokenSource; 94 ResetToken = Token; 95 Line.InPPDirective = false; 96 Line.Level = PreviousLineLevel; 97 } 98 99 FormatToken *getNextToken() override { 100 // The \c UnwrappedLineParser guards against this by never calling 101 // \c getNextToken() after it has encountered the first eof token. 102 assert(!eof()); 103 PreviousToken = Token; 104 Token = PreviousTokenSource->getNextToken(); 105 if (eof()) 106 return &FakeEOF; 107 return Token; 108 } 109 110 unsigned getPosition() override { return PreviousTokenSource->getPosition(); } 111 112 FormatToken *setPosition(unsigned Position) override { 113 PreviousToken = nullptr; 114 Token = PreviousTokenSource->setPosition(Position); 115 return Token; 116 } 117 118 private: 119 bool eof() { 120 return Token && Token->HasUnescapedNewline && 121 !continuesLineComment(*Token, PreviousToken, 122 /*MinColumnToken=*/PreviousToken); 123 } 124 125 FormatToken FakeEOF; 126 UnwrappedLine &Line; 127 FormatTokenSource *&TokenSource; 128 FormatToken *&ResetToken; 129 unsigned PreviousLineLevel; 130 FormatTokenSource *PreviousTokenSource; 131 132 FormatToken *Token; 133 FormatToken *PreviousToken; 134 }; 135 136 } // end anonymous namespace 137 138 class ScopedLineState { 139 public: 140 ScopedLineState(UnwrappedLineParser &Parser, 141 bool SwitchToPreprocessorLines = false) 142 : Parser(Parser), OriginalLines(Parser.CurrentLines) { 143 if (SwitchToPreprocessorLines) 144 Parser.CurrentLines = &Parser.PreprocessorDirectives; 145 else if (!Parser.Line->Tokens.empty()) 146 Parser.CurrentLines = &Parser.Line->Tokens.back().Children; 147 PreBlockLine = std::move(Parser.Line); 148 Parser.Line = std::make_unique<UnwrappedLine>(); 149 Parser.Line->Level = PreBlockLine->Level; 150 Parser.Line->InPPDirective = PreBlockLine->InPPDirective; 151 } 152 153 ~ScopedLineState() { 154 if (!Parser.Line->Tokens.empty()) { 155 Parser.addUnwrappedLine(); 156 } 157 assert(Parser.Line->Tokens.empty()); 158 Parser.Line = std::move(PreBlockLine); 159 if (Parser.CurrentLines == &Parser.PreprocessorDirectives) 160 Parser.MustBreakBeforeNextToken = true; 161 Parser.CurrentLines = OriginalLines; 162 } 163 164 private: 165 UnwrappedLineParser &Parser; 166 167 std::unique_ptr<UnwrappedLine> PreBlockLine; 168 SmallVectorImpl<UnwrappedLine> *OriginalLines; 169 }; 170 171 class CompoundStatementIndenter { 172 public: 173 CompoundStatementIndenter(UnwrappedLineParser *Parser, 174 const FormatStyle &Style, unsigned &LineLevel) 175 : CompoundStatementIndenter(Parser, LineLevel, 176 Style.BraceWrapping.AfterControlStatement, 177 Style.BraceWrapping.IndentBraces) {} 178 CompoundStatementIndenter(UnwrappedLineParser *Parser, unsigned &LineLevel, 179 bool WrapBrace, bool IndentBrace) 180 : LineLevel(LineLevel), OldLineLevel(LineLevel) { 181 if (WrapBrace) 182 Parser->addUnwrappedLine(); 183 if (IndentBrace) 184 ++LineLevel; 185 } 186 ~CompoundStatementIndenter() { LineLevel = OldLineLevel; } 187 188 private: 189 unsigned &LineLevel; 190 unsigned OldLineLevel; 191 }; 192 193 namespace { 194 195 class IndexedTokenSource : public FormatTokenSource { 196 public: 197 IndexedTokenSource(ArrayRef<FormatToken *> Tokens) 198 : Tokens(Tokens), Position(-1) {} 199 200 FormatToken *getNextToken() override { 201 ++Position; 202 return Tokens[Position]; 203 } 204 205 unsigned getPosition() override { 206 assert(Position >= 0); 207 return Position; 208 } 209 210 FormatToken *setPosition(unsigned P) override { 211 Position = P; 212 return Tokens[Position]; 213 } 214 215 void reset() { Position = -1; } 216 217 private: 218 ArrayRef<FormatToken *> Tokens; 219 int Position; 220 }; 221 222 } // end anonymous namespace 223 224 UnwrappedLineParser::UnwrappedLineParser(const FormatStyle &Style, 225 const AdditionalKeywords &Keywords, 226 unsigned FirstStartColumn, 227 ArrayRef<FormatToken *> Tokens, 228 UnwrappedLineConsumer &Callback) 229 : Line(new UnwrappedLine), MustBreakBeforeNextToken(false), 230 CurrentLines(&Lines), Style(Style), Keywords(Keywords), 231 CommentPragmasRegex(Style.CommentPragmas), Tokens(nullptr), 232 Callback(Callback), AllTokens(Tokens), PPBranchLevel(-1), 233 IncludeGuard(Style.IndentPPDirectives == FormatStyle::PPDIS_None 234 ? IG_Rejected 235 : IG_Inited), 236 IncludeGuardToken(nullptr), FirstStartColumn(FirstStartColumn) {} 237 238 void UnwrappedLineParser::reset() { 239 PPBranchLevel = -1; 240 IncludeGuard = Style.IndentPPDirectives == FormatStyle::PPDIS_None 241 ? IG_Rejected 242 : IG_Inited; 243 IncludeGuardToken = nullptr; 244 Line.reset(new UnwrappedLine); 245 CommentsBeforeNextToken.clear(); 246 FormatTok = nullptr; 247 MustBreakBeforeNextToken = false; 248 PreprocessorDirectives.clear(); 249 CurrentLines = &Lines; 250 DeclarationScopeStack.clear(); 251 PPStack.clear(); 252 Line->FirstStartColumn = FirstStartColumn; 253 } 254 255 void UnwrappedLineParser::parse() { 256 IndexedTokenSource TokenSource(AllTokens); 257 Line->FirstStartColumn = FirstStartColumn; 258 do { 259 LLVM_DEBUG(llvm::dbgs() << "----\n"); 260 reset(); 261 Tokens = &TokenSource; 262 TokenSource.reset(); 263 264 readToken(); 265 parseFile(); 266 267 // If we found an include guard then all preprocessor directives (other than 268 // the guard) are over-indented by one. 269 if (IncludeGuard == IG_Found) 270 for (auto &Line : Lines) 271 if (Line.InPPDirective && Line.Level > 0) 272 --Line.Level; 273 274 // Create line with eof token. 275 pushToken(FormatTok); 276 addUnwrappedLine(); 277 278 for (SmallVectorImpl<UnwrappedLine>::iterator I = Lines.begin(), 279 E = Lines.end(); 280 I != E; ++I) { 281 Callback.consumeUnwrappedLine(*I); 282 } 283 Callback.finishRun(); 284 Lines.clear(); 285 while (!PPLevelBranchIndex.empty() && 286 PPLevelBranchIndex.back() + 1 >= PPLevelBranchCount.back()) { 287 PPLevelBranchIndex.resize(PPLevelBranchIndex.size() - 1); 288 PPLevelBranchCount.resize(PPLevelBranchCount.size() - 1); 289 } 290 if (!PPLevelBranchIndex.empty()) { 291 ++PPLevelBranchIndex.back(); 292 assert(PPLevelBranchIndex.size() == PPLevelBranchCount.size()); 293 assert(PPLevelBranchIndex.back() <= PPLevelBranchCount.back()); 294 } 295 } while (!PPLevelBranchIndex.empty()); 296 } 297 298 void UnwrappedLineParser::parseFile() { 299 // The top-level context in a file always has declarations, except for pre- 300 // processor directives and JavaScript files. 301 bool MustBeDeclaration = 302 !Line->InPPDirective && Style.Language != FormatStyle::LK_JavaScript; 303 ScopedDeclarationState DeclarationState(*Line, DeclarationScopeStack, 304 MustBeDeclaration); 305 if (Style.Language == FormatStyle::LK_TextProto) 306 parseBracedList(); 307 else 308 parseLevel(/*HasOpeningBrace=*/false); 309 // Make sure to format the remaining tokens. 310 // 311 // LK_TextProto is special since its top-level is parsed as the body of a 312 // braced list, which does not necessarily have natural line separators such 313 // as a semicolon. Comments after the last entry that have been determined to 314 // not belong to that line, as in: 315 // key: value 316 // // endfile comment 317 // do not have a chance to be put on a line of their own until this point. 318 // Here we add this newline before end-of-file comments. 319 if (Style.Language == FormatStyle::LK_TextProto && 320 !CommentsBeforeNextToken.empty()) 321 addUnwrappedLine(); 322 flushComments(true); 323 addUnwrappedLine(); 324 } 325 326 void UnwrappedLineParser::parseLevel(bool HasOpeningBrace) { 327 bool SwitchLabelEncountered = false; 328 do { 329 tok::TokenKind kind = FormatTok->Tok.getKind(); 330 if (FormatTok->Type == TT_MacroBlockBegin) { 331 kind = tok::l_brace; 332 } else if (FormatTok->Type == TT_MacroBlockEnd) { 333 kind = tok::r_brace; 334 } 335 336 switch (kind) { 337 case tok::comment: 338 nextToken(); 339 addUnwrappedLine(); 340 break; 341 case tok::l_brace: 342 // FIXME: Add parameter whether this can happen - if this happens, we must 343 // be in a non-declaration context. 344 if (!FormatTok->is(TT_MacroBlockBegin) && tryToParseBracedList()) 345 continue; 346 parseBlock(/*MustBeDeclaration=*/false); 347 addUnwrappedLine(); 348 break; 349 case tok::r_brace: 350 if (HasOpeningBrace) 351 return; 352 nextToken(); 353 addUnwrappedLine(); 354 break; 355 case tok::kw_default: { 356 unsigned StoredPosition = Tokens->getPosition(); 357 FormatToken *Next; 358 do { 359 Next = Tokens->getNextToken(); 360 } while (Next && Next->is(tok::comment)); 361 FormatTok = Tokens->setPosition(StoredPosition); 362 if (Next && Next->isNot(tok::colon)) { 363 // default not followed by ':' is not a case label; treat it like 364 // an identifier. 365 parseStructuralElement(); 366 break; 367 } 368 // Else, if it is 'default:', fall through to the case handling. 369 LLVM_FALLTHROUGH; 370 } 371 case tok::kw_case: 372 if (Style.Language == FormatStyle::LK_JavaScript && 373 Line->MustBeDeclaration) { 374 // A 'case: string' style field declaration. 375 parseStructuralElement(); 376 break; 377 } 378 if (!SwitchLabelEncountered && 379 (Style.IndentCaseLabels || (Line->InPPDirective && Line->Level == 1))) 380 ++Line->Level; 381 SwitchLabelEncountered = true; 382 parseStructuralElement(); 383 break; 384 default: 385 parseStructuralElement(); 386 break; 387 } 388 } while (!eof()); 389 } 390 391 void UnwrappedLineParser::calculateBraceTypes(bool ExpectClassBody) { 392 // We'll parse forward through the tokens until we hit 393 // a closing brace or eof - note that getNextToken() will 394 // parse macros, so this will magically work inside macro 395 // definitions, too. 396 unsigned StoredPosition = Tokens->getPosition(); 397 FormatToken *Tok = FormatTok; 398 const FormatToken *PrevTok = Tok->Previous; 399 // Keep a stack of positions of lbrace tokens. We will 400 // update information about whether an lbrace starts a 401 // braced init list or a different block during the loop. 402 SmallVector<FormatToken *, 8> LBraceStack; 403 assert(Tok->Tok.is(tok::l_brace)); 404 do { 405 // Get next non-comment token. 406 FormatToken *NextTok; 407 unsigned ReadTokens = 0; 408 do { 409 NextTok = Tokens->getNextToken(); 410 ++ReadTokens; 411 } while (NextTok->is(tok::comment)); 412 413 switch (Tok->Tok.getKind()) { 414 case tok::l_brace: 415 if (Style.Language == FormatStyle::LK_JavaScript && PrevTok) { 416 if (PrevTok->isOneOf(tok::colon, tok::less)) 417 // A ':' indicates this code is in a type, or a braced list 418 // following a label in an object literal ({a: {b: 1}}). 419 // A '<' could be an object used in a comparison, but that is nonsense 420 // code (can never return true), so more likely it is a generic type 421 // argument (`X<{a: string; b: number}>`). 422 // The code below could be confused by semicolons between the 423 // individual members in a type member list, which would normally 424 // trigger BK_Block. In both cases, this must be parsed as an inline 425 // braced init. 426 Tok->BlockKind = BK_BracedInit; 427 else if (PrevTok->is(tok::r_paren)) 428 // `) { }` can only occur in function or method declarations in JS. 429 Tok->BlockKind = BK_Block; 430 } else { 431 Tok->BlockKind = BK_Unknown; 432 } 433 LBraceStack.push_back(Tok); 434 break; 435 case tok::r_brace: 436 if (LBraceStack.empty()) 437 break; 438 if (LBraceStack.back()->BlockKind == BK_Unknown) { 439 bool ProbablyBracedList = false; 440 if (Style.Language == FormatStyle::LK_Proto) { 441 ProbablyBracedList = NextTok->isOneOf(tok::comma, tok::r_square); 442 } else { 443 // Using OriginalColumn to distinguish between ObjC methods and 444 // binary operators is a bit hacky. 445 bool NextIsObjCMethod = NextTok->isOneOf(tok::plus, tok::minus) && 446 NextTok->OriginalColumn == 0; 447 448 // If there is a comma, semicolon or right paren after the closing 449 // brace, we assume this is a braced initializer list. Note that 450 // regardless how we mark inner braces here, we will overwrite the 451 // BlockKind later if we parse a braced list (where all blocks 452 // inside are by default braced lists), or when we explicitly detect 453 // blocks (for example while parsing lambdas). 454 // FIXME: Some of these do not apply to JS, e.g. "} {" can never be a 455 // braced list in JS. 456 ProbablyBracedList = 457 (Style.Language == FormatStyle::LK_JavaScript && 458 NextTok->isOneOf(Keywords.kw_of, Keywords.kw_in, 459 Keywords.kw_as)) || 460 (Style.isCpp() && NextTok->is(tok::l_paren)) || 461 NextTok->isOneOf(tok::comma, tok::period, tok::colon, 462 tok::r_paren, tok::r_square, tok::l_brace, 463 tok::ellipsis) || 464 (NextTok->is(tok::identifier) && 465 !PrevTok->isOneOf(tok::semi, tok::r_brace, tok::l_brace)) || 466 (NextTok->is(tok::semi) && 467 (!ExpectClassBody || LBraceStack.size() != 1)) || 468 (NextTok->isBinaryOperator() && !NextIsObjCMethod); 469 if (!Style.isCSharp() && NextTok->is(tok::l_square)) { 470 // We can have an array subscript after a braced init 471 // list, but C++11 attributes are expected after blocks. 472 NextTok = Tokens->getNextToken(); 473 ++ReadTokens; 474 ProbablyBracedList = NextTok->isNot(tok::l_square); 475 } 476 } 477 if (ProbablyBracedList) { 478 Tok->BlockKind = BK_BracedInit; 479 LBraceStack.back()->BlockKind = BK_BracedInit; 480 } else { 481 Tok->BlockKind = BK_Block; 482 LBraceStack.back()->BlockKind = BK_Block; 483 } 484 } 485 LBraceStack.pop_back(); 486 break; 487 case tok::identifier: 488 if (!Tok->is(TT_StatementMacro)) 489 break; 490 LLVM_FALLTHROUGH; 491 case tok::at: 492 case tok::semi: 493 case tok::kw_if: 494 case tok::kw_while: 495 case tok::kw_for: 496 case tok::kw_switch: 497 case tok::kw_try: 498 case tok::kw___try: 499 if (!LBraceStack.empty() && LBraceStack.back()->BlockKind == BK_Unknown) 500 LBraceStack.back()->BlockKind = BK_Block; 501 break; 502 default: 503 break; 504 } 505 PrevTok = Tok; 506 Tok = NextTok; 507 } while (Tok->Tok.isNot(tok::eof) && !LBraceStack.empty()); 508 509 // Assume other blocks for all unclosed opening braces. 510 for (unsigned i = 0, e = LBraceStack.size(); i != e; ++i) { 511 if (LBraceStack[i]->BlockKind == BK_Unknown) 512 LBraceStack[i]->BlockKind = BK_Block; 513 } 514 515 FormatTok = Tokens->setPosition(StoredPosition); 516 } 517 518 template <class T> 519 static inline void hash_combine(std::size_t &seed, const T &v) { 520 std::hash<T> hasher; 521 seed ^= hasher(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2); 522 } 523 524 size_t UnwrappedLineParser::computePPHash() const { 525 size_t h = 0; 526 for (const auto &i : PPStack) { 527 hash_combine(h, size_t(i.Kind)); 528 hash_combine(h, i.Line); 529 } 530 return h; 531 } 532 533 void UnwrappedLineParser::parseBlock(bool MustBeDeclaration, bool AddLevel, 534 bool MunchSemi) { 535 assert(FormatTok->isOneOf(tok::l_brace, TT_MacroBlockBegin) && 536 "'{' or macro block token expected"); 537 const bool MacroBlock = FormatTok->is(TT_MacroBlockBegin); 538 FormatTok->BlockKind = BK_Block; 539 540 size_t PPStartHash = computePPHash(); 541 542 unsigned InitialLevel = Line->Level; 543 nextToken(/*LevelDifference=*/AddLevel ? 1 : 0); 544 545 if (MacroBlock && FormatTok->is(tok::l_paren)) 546 parseParens(); 547 548 size_t NbPreprocessorDirectives = 549 CurrentLines == &Lines ? PreprocessorDirectives.size() : 0; 550 addUnwrappedLine(); 551 size_t OpeningLineIndex = 552 CurrentLines->empty() 553 ? (UnwrappedLine::kInvalidIndex) 554 : (CurrentLines->size() - 1 - NbPreprocessorDirectives); 555 556 ScopedDeclarationState DeclarationState(*Line, DeclarationScopeStack, 557 MustBeDeclaration); 558 if (AddLevel) 559 ++Line->Level; 560 parseLevel(/*HasOpeningBrace=*/true); 561 562 if (eof()) 563 return; 564 565 if (MacroBlock ? !FormatTok->is(TT_MacroBlockEnd) 566 : !FormatTok->is(tok::r_brace)) { 567 Line->Level = InitialLevel; 568 FormatTok->BlockKind = BK_Block; 569 return; 570 } 571 572 size_t PPEndHash = computePPHash(); 573 574 // Munch the closing brace. 575 nextToken(/*LevelDifference=*/AddLevel ? -1 : 0); 576 577 if (MacroBlock && FormatTok->is(tok::l_paren)) 578 parseParens(); 579 580 if (MunchSemi && FormatTok->Tok.is(tok::semi)) 581 nextToken(); 582 Line->Level = InitialLevel; 583 584 if (PPStartHash == PPEndHash) { 585 Line->MatchingOpeningBlockLineIndex = OpeningLineIndex; 586 if (OpeningLineIndex != UnwrappedLine::kInvalidIndex) { 587 // Update the opening line to add the forward reference as well 588 (*CurrentLines)[OpeningLineIndex].MatchingClosingBlockLineIndex = 589 CurrentLines->size() - 1; 590 } 591 } 592 } 593 594 static bool isGoogScope(const UnwrappedLine &Line) { 595 // FIXME: Closure-library specific stuff should not be hard-coded but be 596 // configurable. 597 if (Line.Tokens.size() < 4) 598 return false; 599 auto I = Line.Tokens.begin(); 600 if (I->Tok->TokenText != "goog") 601 return false; 602 ++I; 603 if (I->Tok->isNot(tok::period)) 604 return false; 605 ++I; 606 if (I->Tok->TokenText != "scope") 607 return false; 608 ++I; 609 return I->Tok->is(tok::l_paren); 610 } 611 612 static bool isIIFE(const UnwrappedLine &Line, 613 const AdditionalKeywords &Keywords) { 614 // Look for the start of an immediately invoked anonymous function. 615 // https://en.wikipedia.org/wiki/Immediately-invoked_function_expression 616 // This is commonly done in JavaScript to create a new, anonymous scope. 617 // Example: (function() { ... })() 618 if (Line.Tokens.size() < 3) 619 return false; 620 auto I = Line.Tokens.begin(); 621 if (I->Tok->isNot(tok::l_paren)) 622 return false; 623 ++I; 624 if (I->Tok->isNot(Keywords.kw_function)) 625 return false; 626 ++I; 627 return I->Tok->is(tok::l_paren); 628 } 629 630 static bool ShouldBreakBeforeBrace(const FormatStyle &Style, 631 const FormatToken &InitialToken) { 632 if (InitialToken.isOneOf(tok::kw_namespace, TT_NamespaceMacro)) 633 return Style.BraceWrapping.AfterNamespace; 634 if (InitialToken.is(tok::kw_class)) 635 return Style.BraceWrapping.AfterClass; 636 if (InitialToken.is(tok::kw_union)) 637 return Style.BraceWrapping.AfterUnion; 638 if (InitialToken.is(tok::kw_struct)) 639 return Style.BraceWrapping.AfterStruct; 640 return false; 641 } 642 643 void UnwrappedLineParser::parseChildBlock() { 644 FormatTok->BlockKind = BK_Block; 645 nextToken(); 646 { 647 bool SkipIndent = (Style.Language == FormatStyle::LK_JavaScript && 648 (isGoogScope(*Line) || isIIFE(*Line, Keywords))); 649 ScopedLineState LineState(*this); 650 ScopedDeclarationState DeclarationState(*Line, DeclarationScopeStack, 651 /*MustBeDeclaration=*/false); 652 Line->Level += SkipIndent ? 0 : 1; 653 parseLevel(/*HasOpeningBrace=*/true); 654 flushComments(isOnNewLine(*FormatTok)); 655 Line->Level -= SkipIndent ? 0 : 1; 656 } 657 nextToken(); 658 } 659 660 void UnwrappedLineParser::parsePPDirective() { 661 assert(FormatTok->Tok.is(tok::hash) && "'#' expected"); 662 ScopedMacroState MacroState(*Line, Tokens, FormatTok); 663 664 nextToken(); 665 666 if (!FormatTok->Tok.getIdentifierInfo()) { 667 parsePPUnknown(); 668 return; 669 } 670 671 switch (FormatTok->Tok.getIdentifierInfo()->getPPKeywordID()) { 672 case tok::pp_define: 673 parsePPDefine(); 674 return; 675 case tok::pp_if: 676 parsePPIf(/*IfDef=*/false); 677 break; 678 case tok::pp_ifdef: 679 case tok::pp_ifndef: 680 parsePPIf(/*IfDef=*/true); 681 break; 682 case tok::pp_else: 683 parsePPElse(); 684 break; 685 case tok::pp_elif: 686 parsePPElIf(); 687 break; 688 case tok::pp_endif: 689 parsePPEndIf(); 690 break; 691 default: 692 parsePPUnknown(); 693 break; 694 } 695 } 696 697 void UnwrappedLineParser::conditionalCompilationCondition(bool Unreachable) { 698 size_t Line = CurrentLines->size(); 699 if (CurrentLines == &PreprocessorDirectives) 700 Line += Lines.size(); 701 702 if (Unreachable || 703 (!PPStack.empty() && PPStack.back().Kind == PP_Unreachable)) 704 PPStack.push_back({PP_Unreachable, Line}); 705 else 706 PPStack.push_back({PP_Conditional, Line}); 707 } 708 709 void UnwrappedLineParser::conditionalCompilationStart(bool Unreachable) { 710 ++PPBranchLevel; 711 assert(PPBranchLevel >= 0 && PPBranchLevel <= (int)PPLevelBranchIndex.size()); 712 if (PPBranchLevel == (int)PPLevelBranchIndex.size()) { 713 PPLevelBranchIndex.push_back(0); 714 PPLevelBranchCount.push_back(0); 715 } 716 PPChainBranchIndex.push(0); 717 bool Skip = PPLevelBranchIndex[PPBranchLevel] > 0; 718 conditionalCompilationCondition(Unreachable || Skip); 719 } 720 721 void UnwrappedLineParser::conditionalCompilationAlternative() { 722 if (!PPStack.empty()) 723 PPStack.pop_back(); 724 assert(PPBranchLevel < (int)PPLevelBranchIndex.size()); 725 if (!PPChainBranchIndex.empty()) 726 ++PPChainBranchIndex.top(); 727 conditionalCompilationCondition( 728 PPBranchLevel >= 0 && !PPChainBranchIndex.empty() && 729 PPLevelBranchIndex[PPBranchLevel] != PPChainBranchIndex.top()); 730 } 731 732 void UnwrappedLineParser::conditionalCompilationEnd() { 733 assert(PPBranchLevel < (int)PPLevelBranchIndex.size()); 734 if (PPBranchLevel >= 0 && !PPChainBranchIndex.empty()) { 735 if (PPChainBranchIndex.top() + 1 > PPLevelBranchCount[PPBranchLevel]) { 736 PPLevelBranchCount[PPBranchLevel] = PPChainBranchIndex.top() + 1; 737 } 738 } 739 // Guard against #endif's without #if. 740 if (PPBranchLevel > -1) 741 --PPBranchLevel; 742 if (!PPChainBranchIndex.empty()) 743 PPChainBranchIndex.pop(); 744 if (!PPStack.empty()) 745 PPStack.pop_back(); 746 } 747 748 void UnwrappedLineParser::parsePPIf(bool IfDef) { 749 bool IfNDef = FormatTok->is(tok::pp_ifndef); 750 nextToken(); 751 bool Unreachable = false; 752 if (!IfDef && (FormatTok->is(tok::kw_false) || FormatTok->TokenText == "0")) 753 Unreachable = true; 754 if (IfDef && !IfNDef && FormatTok->TokenText == "SWIG") 755 Unreachable = true; 756 conditionalCompilationStart(Unreachable); 757 FormatToken *IfCondition = FormatTok; 758 // If there's a #ifndef on the first line, and the only lines before it are 759 // comments, it could be an include guard. 760 bool MaybeIncludeGuard = IfNDef; 761 if (IncludeGuard == IG_Inited && MaybeIncludeGuard) 762 for (auto &Line : Lines) { 763 if (!Line.Tokens.front().Tok->is(tok::comment)) { 764 MaybeIncludeGuard = false; 765 IncludeGuard = IG_Rejected; 766 break; 767 } 768 } 769 --PPBranchLevel; 770 parsePPUnknown(); 771 ++PPBranchLevel; 772 if (IncludeGuard == IG_Inited && MaybeIncludeGuard) { 773 IncludeGuard = IG_IfNdefed; 774 IncludeGuardToken = IfCondition; 775 } 776 } 777 778 void UnwrappedLineParser::parsePPElse() { 779 // If a potential include guard has an #else, it's not an include guard. 780 if (IncludeGuard == IG_Defined && PPBranchLevel == 0) 781 IncludeGuard = IG_Rejected; 782 conditionalCompilationAlternative(); 783 if (PPBranchLevel > -1) 784 --PPBranchLevel; 785 parsePPUnknown(); 786 ++PPBranchLevel; 787 } 788 789 void UnwrappedLineParser::parsePPElIf() { parsePPElse(); } 790 791 void UnwrappedLineParser::parsePPEndIf() { 792 conditionalCompilationEnd(); 793 parsePPUnknown(); 794 // If the #endif of a potential include guard is the last thing in the file, 795 // then we found an include guard. 796 unsigned TokenPosition = Tokens->getPosition(); 797 FormatToken *PeekNext = AllTokens[TokenPosition]; 798 if (IncludeGuard == IG_Defined && PPBranchLevel == -1 && 799 PeekNext->is(tok::eof) && 800 Style.IndentPPDirectives != FormatStyle::PPDIS_None) 801 IncludeGuard = IG_Found; 802 } 803 804 void UnwrappedLineParser::parsePPDefine() { 805 nextToken(); 806 807 if (!FormatTok->Tok.getIdentifierInfo()) { 808 IncludeGuard = IG_Rejected; 809 IncludeGuardToken = nullptr; 810 parsePPUnknown(); 811 return; 812 } 813 814 if (IncludeGuard == IG_IfNdefed && 815 IncludeGuardToken->TokenText == FormatTok->TokenText) { 816 IncludeGuard = IG_Defined; 817 IncludeGuardToken = nullptr; 818 for (auto &Line : Lines) { 819 if (!Line.Tokens.front().Tok->isOneOf(tok::comment, tok::hash)) { 820 IncludeGuard = IG_Rejected; 821 break; 822 } 823 } 824 } 825 826 nextToken(); 827 if (FormatTok->Tok.getKind() == tok::l_paren && 828 FormatTok->WhitespaceRange.getBegin() == 829 FormatTok->WhitespaceRange.getEnd()) { 830 parseParens(); 831 } 832 if (Style.IndentPPDirectives != FormatStyle::PPDIS_None) 833 Line->Level += PPBranchLevel + 1; 834 addUnwrappedLine(); 835 ++Line->Level; 836 837 // Errors during a preprocessor directive can only affect the layout of the 838 // preprocessor directive, and thus we ignore them. An alternative approach 839 // would be to use the same approach we use on the file level (no 840 // re-indentation if there was a structural error) within the macro 841 // definition. 842 parseFile(); 843 } 844 845 void UnwrappedLineParser::parsePPUnknown() { 846 do { 847 nextToken(); 848 } while (!eof()); 849 if (Style.IndentPPDirectives != FormatStyle::PPDIS_None) 850 Line->Level += PPBranchLevel + 1; 851 addUnwrappedLine(); 852 } 853 854 // Here we blacklist certain tokens that are not usually the first token in an 855 // unwrapped line. This is used in attempt to distinguish macro calls without 856 // trailing semicolons from other constructs split to several lines. 857 static bool tokenCanStartNewLine(const clang::Token &Tok) { 858 // Semicolon can be a null-statement, l_square can be a start of a macro or 859 // a C++11 attribute, but this doesn't seem to be common. 860 return Tok.isNot(tok::semi) && Tok.isNot(tok::l_brace) && 861 Tok.isNot(tok::l_square) && 862 // Tokens that can only be used as binary operators and a part of 863 // overloaded operator names. 864 Tok.isNot(tok::period) && Tok.isNot(tok::periodstar) && 865 Tok.isNot(tok::arrow) && Tok.isNot(tok::arrowstar) && 866 Tok.isNot(tok::less) && Tok.isNot(tok::greater) && 867 Tok.isNot(tok::slash) && Tok.isNot(tok::percent) && 868 Tok.isNot(tok::lessless) && Tok.isNot(tok::greatergreater) && 869 Tok.isNot(tok::equal) && Tok.isNot(tok::plusequal) && 870 Tok.isNot(tok::minusequal) && Tok.isNot(tok::starequal) && 871 Tok.isNot(tok::slashequal) && Tok.isNot(tok::percentequal) && 872 Tok.isNot(tok::ampequal) && Tok.isNot(tok::pipeequal) && 873 Tok.isNot(tok::caretequal) && Tok.isNot(tok::greatergreaterequal) && 874 Tok.isNot(tok::lesslessequal) && 875 // Colon is used in labels, base class lists, initializer lists, 876 // range-based for loops, ternary operator, but should never be the 877 // first token in an unwrapped line. 878 Tok.isNot(tok::colon) && 879 // 'noexcept' is a trailing annotation. 880 Tok.isNot(tok::kw_noexcept); 881 } 882 883 static bool mustBeJSIdent(const AdditionalKeywords &Keywords, 884 const FormatToken *FormatTok) { 885 // FIXME: This returns true for C/C++ keywords like 'struct'. 886 return FormatTok->is(tok::identifier) && 887 (FormatTok->Tok.getIdentifierInfo() == nullptr || 888 !FormatTok->isOneOf( 889 Keywords.kw_in, Keywords.kw_of, Keywords.kw_as, Keywords.kw_async, 890 Keywords.kw_await, Keywords.kw_yield, Keywords.kw_finally, 891 Keywords.kw_function, Keywords.kw_import, Keywords.kw_is, 892 Keywords.kw_let, Keywords.kw_var, tok::kw_const, 893 Keywords.kw_abstract, Keywords.kw_extends, Keywords.kw_implements, 894 Keywords.kw_instanceof, Keywords.kw_interface, Keywords.kw_throws, 895 Keywords.kw_from)); 896 } 897 898 static bool mustBeJSIdentOrValue(const AdditionalKeywords &Keywords, 899 const FormatToken *FormatTok) { 900 return FormatTok->Tok.isLiteral() || 901 FormatTok->isOneOf(tok::kw_true, tok::kw_false) || 902 mustBeJSIdent(Keywords, FormatTok); 903 } 904 905 // isJSDeclOrStmt returns true if |FormatTok| starts a declaration or statement 906 // when encountered after a value (see mustBeJSIdentOrValue). 907 static bool isJSDeclOrStmt(const AdditionalKeywords &Keywords, 908 const FormatToken *FormatTok) { 909 return FormatTok->isOneOf( 910 tok::kw_return, Keywords.kw_yield, 911 // conditionals 912 tok::kw_if, tok::kw_else, 913 // loops 914 tok::kw_for, tok::kw_while, tok::kw_do, tok::kw_continue, tok::kw_break, 915 // switch/case 916 tok::kw_switch, tok::kw_case, 917 // exceptions 918 tok::kw_throw, tok::kw_try, tok::kw_catch, Keywords.kw_finally, 919 // declaration 920 tok::kw_const, tok::kw_class, Keywords.kw_var, Keywords.kw_let, 921 Keywords.kw_async, Keywords.kw_function, 922 // import/export 923 Keywords.kw_import, tok::kw_export); 924 } 925 926 // readTokenWithJavaScriptASI reads the next token and terminates the current 927 // line if JavaScript Automatic Semicolon Insertion must 928 // happen between the current token and the next token. 929 // 930 // This method is conservative - it cannot cover all edge cases of JavaScript, 931 // but only aims to correctly handle certain well known cases. It *must not* 932 // return true in speculative cases. 933 void UnwrappedLineParser::readTokenWithJavaScriptASI() { 934 FormatToken *Previous = FormatTok; 935 readToken(); 936 FormatToken *Next = FormatTok; 937 938 bool IsOnSameLine = 939 CommentsBeforeNextToken.empty() 940 ? Next->NewlinesBefore == 0 941 : CommentsBeforeNextToken.front()->NewlinesBefore == 0; 942 if (IsOnSameLine) 943 return; 944 945 bool PreviousMustBeValue = mustBeJSIdentOrValue(Keywords, Previous); 946 bool PreviousStartsTemplateExpr = 947 Previous->is(TT_TemplateString) && Previous->TokenText.endswith("${"); 948 if (PreviousMustBeValue || Previous->is(tok::r_paren)) { 949 // If the line contains an '@' sign, the previous token might be an 950 // annotation, which can precede another identifier/value. 951 bool HasAt = std::find_if(Line->Tokens.begin(), Line->Tokens.end(), 952 [](UnwrappedLineNode &LineNode) { 953 return LineNode.Tok->is(tok::at); 954 }) != Line->Tokens.end(); 955 if (HasAt) 956 return; 957 } 958 if (Next->is(tok::exclaim) && PreviousMustBeValue) 959 return addUnwrappedLine(); 960 bool NextMustBeValue = mustBeJSIdentOrValue(Keywords, Next); 961 bool NextEndsTemplateExpr = 962 Next->is(TT_TemplateString) && Next->TokenText.startswith("}"); 963 if (NextMustBeValue && !NextEndsTemplateExpr && !PreviousStartsTemplateExpr && 964 (PreviousMustBeValue || 965 Previous->isOneOf(tok::r_square, tok::r_paren, tok::plusplus, 966 tok::minusminus))) 967 return addUnwrappedLine(); 968 if ((PreviousMustBeValue || Previous->is(tok::r_paren)) && 969 isJSDeclOrStmt(Keywords, Next)) 970 return addUnwrappedLine(); 971 } 972 973 void UnwrappedLineParser::parseStructuralElement() { 974 assert(!FormatTok->is(tok::l_brace)); 975 if (Style.Language == FormatStyle::LK_TableGen && 976 FormatTok->is(tok::pp_include)) { 977 nextToken(); 978 if (FormatTok->is(tok::string_literal)) 979 nextToken(); 980 addUnwrappedLine(); 981 return; 982 } 983 switch (FormatTok->Tok.getKind()) { 984 case tok::kw_asm: 985 nextToken(); 986 if (FormatTok->is(tok::l_brace)) { 987 FormatTok->Type = TT_InlineASMBrace; 988 nextToken(); 989 while (FormatTok && FormatTok->isNot(tok::eof)) { 990 if (FormatTok->is(tok::r_brace)) { 991 FormatTok->Type = TT_InlineASMBrace; 992 nextToken(); 993 addUnwrappedLine(); 994 break; 995 } 996 FormatTok->Finalized = true; 997 nextToken(); 998 } 999 } 1000 break; 1001 case tok::kw_namespace: 1002 parseNamespace(); 1003 return; 1004 case tok::kw_public: 1005 case tok::kw_protected: 1006 case tok::kw_private: 1007 if (Style.Language == FormatStyle::LK_Java || 1008 Style.Language == FormatStyle::LK_JavaScript || Style.isCSharp()) 1009 nextToken(); 1010 else 1011 parseAccessSpecifier(); 1012 return; 1013 case tok::kw_if: 1014 if (Style.Language == FormatStyle::LK_JavaScript && Line->MustBeDeclaration) 1015 // field/method declaration. 1016 break; 1017 parseIfThenElse(); 1018 return; 1019 case tok::kw_for: 1020 case tok::kw_while: 1021 if (Style.Language == FormatStyle::LK_JavaScript && Line->MustBeDeclaration) 1022 // field/method declaration. 1023 break; 1024 parseForOrWhileLoop(); 1025 return; 1026 case tok::kw_do: 1027 if (Style.Language == FormatStyle::LK_JavaScript && Line->MustBeDeclaration) 1028 // field/method declaration. 1029 break; 1030 parseDoWhile(); 1031 return; 1032 case tok::kw_switch: 1033 if (Style.Language == FormatStyle::LK_JavaScript && Line->MustBeDeclaration) 1034 // 'switch: string' field declaration. 1035 break; 1036 parseSwitch(); 1037 return; 1038 case tok::kw_default: 1039 if (Style.Language == FormatStyle::LK_JavaScript && Line->MustBeDeclaration) 1040 // 'default: string' field declaration. 1041 break; 1042 nextToken(); 1043 if (FormatTok->is(tok::colon)) { 1044 parseLabel(); 1045 return; 1046 } 1047 // e.g. "default void f() {}" in a Java interface. 1048 break; 1049 case tok::kw_case: 1050 if (Style.Language == FormatStyle::LK_JavaScript && Line->MustBeDeclaration) 1051 // 'case: string' field declaration. 1052 break; 1053 parseCaseLabel(); 1054 return; 1055 case tok::kw_try: 1056 case tok::kw___try: 1057 if (Style.Language == FormatStyle::LK_JavaScript && Line->MustBeDeclaration) 1058 // field/method declaration. 1059 break; 1060 parseTryCatch(); 1061 return; 1062 case tok::kw_extern: 1063 nextToken(); 1064 if (FormatTok->Tok.is(tok::string_literal)) { 1065 nextToken(); 1066 if (FormatTok->Tok.is(tok::l_brace)) { 1067 if (Style.BraceWrapping.AfterExternBlock) { 1068 addUnwrappedLine(); 1069 parseBlock(/*MustBeDeclaration=*/true); 1070 } else { 1071 parseBlock(/*MustBeDeclaration=*/true, /*AddLevel=*/false); 1072 } 1073 addUnwrappedLine(); 1074 return; 1075 } 1076 } 1077 break; 1078 case tok::kw_export: 1079 if (Style.Language == FormatStyle::LK_JavaScript) { 1080 parseJavaScriptEs6ImportExport(); 1081 return; 1082 } 1083 if (!Style.isCpp()) 1084 break; 1085 // Handle C++ "(inline|export) namespace". 1086 LLVM_FALLTHROUGH; 1087 case tok::kw_inline: 1088 nextToken(); 1089 if (FormatTok->Tok.is(tok::kw_namespace)) { 1090 parseNamespace(); 1091 return; 1092 } 1093 break; 1094 case tok::identifier: 1095 if (FormatTok->is(TT_ForEachMacro)) { 1096 parseForOrWhileLoop(); 1097 return; 1098 } 1099 if (FormatTok->is(TT_MacroBlockBegin)) { 1100 parseBlock(/*MustBeDeclaration=*/false, /*AddLevel=*/true, 1101 /*MunchSemi=*/false); 1102 return; 1103 } 1104 if (FormatTok->is(Keywords.kw_import)) { 1105 if (Style.Language == FormatStyle::LK_JavaScript) { 1106 parseJavaScriptEs6ImportExport(); 1107 return; 1108 } 1109 if (Style.Language == FormatStyle::LK_Proto) { 1110 nextToken(); 1111 if (FormatTok->is(tok::kw_public)) 1112 nextToken(); 1113 if (!FormatTok->is(tok::string_literal)) 1114 return; 1115 nextToken(); 1116 if (FormatTok->is(tok::semi)) 1117 nextToken(); 1118 addUnwrappedLine(); 1119 return; 1120 } 1121 } 1122 if (Style.isCpp() && 1123 FormatTok->isOneOf(Keywords.kw_signals, Keywords.kw_qsignals, 1124 Keywords.kw_slots, Keywords.kw_qslots)) { 1125 nextToken(); 1126 if (FormatTok->is(tok::colon)) { 1127 nextToken(); 1128 addUnwrappedLine(); 1129 return; 1130 } 1131 } 1132 if (Style.isCpp() && FormatTok->is(TT_StatementMacro)) { 1133 parseStatementMacro(); 1134 return; 1135 } 1136 if (Style.isCpp() && FormatTok->is(TT_NamespaceMacro)) { 1137 parseNamespace(); 1138 return; 1139 } 1140 // In all other cases, parse the declaration. 1141 break; 1142 default: 1143 break; 1144 } 1145 do { 1146 const FormatToken *Previous = FormatTok->Previous; 1147 switch (FormatTok->Tok.getKind()) { 1148 case tok::at: 1149 nextToken(); 1150 if (FormatTok->Tok.is(tok::l_brace)) { 1151 nextToken(); 1152 parseBracedList(); 1153 break; 1154 } else if (Style.Language == FormatStyle::LK_Java && 1155 FormatTok->is(Keywords.kw_interface)) { 1156 nextToken(); 1157 break; 1158 } 1159 switch (FormatTok->Tok.getObjCKeywordID()) { 1160 case tok::objc_public: 1161 case tok::objc_protected: 1162 case tok::objc_package: 1163 case tok::objc_private: 1164 return parseAccessSpecifier(); 1165 case tok::objc_interface: 1166 case tok::objc_implementation: 1167 return parseObjCInterfaceOrImplementation(); 1168 case tok::objc_protocol: 1169 if (parseObjCProtocol()) 1170 return; 1171 break; 1172 case tok::objc_end: 1173 return; // Handled by the caller. 1174 case tok::objc_optional: 1175 case tok::objc_required: 1176 nextToken(); 1177 addUnwrappedLine(); 1178 return; 1179 case tok::objc_autoreleasepool: 1180 nextToken(); 1181 if (FormatTok->Tok.is(tok::l_brace)) { 1182 if (Style.BraceWrapping.AfterControlStatement == 1183 FormatStyle::BWACS_Always) 1184 addUnwrappedLine(); 1185 parseBlock(/*MustBeDeclaration=*/false); 1186 } 1187 addUnwrappedLine(); 1188 return; 1189 case tok::objc_synchronized: 1190 nextToken(); 1191 if (FormatTok->Tok.is(tok::l_paren)) 1192 // Skip synchronization object 1193 parseParens(); 1194 if (FormatTok->Tok.is(tok::l_brace)) { 1195 if (Style.BraceWrapping.AfterControlStatement == 1196 FormatStyle::BWACS_Always) 1197 addUnwrappedLine(); 1198 parseBlock(/*MustBeDeclaration=*/false); 1199 } 1200 addUnwrappedLine(); 1201 return; 1202 case tok::objc_try: 1203 // This branch isn't strictly necessary (the kw_try case below would 1204 // do this too after the tok::at is parsed above). But be explicit. 1205 parseTryCatch(); 1206 return; 1207 default: 1208 break; 1209 } 1210 break; 1211 case tok::kw_enum: 1212 // Ignore if this is part of "template <enum ...". 1213 if (Previous && Previous->is(tok::less)) { 1214 nextToken(); 1215 break; 1216 } 1217 1218 // parseEnum falls through and does not yet add an unwrapped line as an 1219 // enum definition can start a structural element. 1220 if (!parseEnum()) 1221 break; 1222 // This only applies for C++. 1223 if (!Style.isCpp()) { 1224 addUnwrappedLine(); 1225 return; 1226 } 1227 break; 1228 case tok::kw_typedef: 1229 nextToken(); 1230 if (FormatTok->isOneOf(Keywords.kw_NS_ENUM, Keywords.kw_NS_OPTIONS, 1231 Keywords.kw_CF_ENUM, Keywords.kw_CF_OPTIONS, 1232 Keywords.kw_CF_CLOSED_ENUM, 1233 Keywords.kw_NS_CLOSED_ENUM)) 1234 parseEnum(); 1235 break; 1236 case tok::kw_struct: 1237 case tok::kw_union: 1238 case tok::kw_class: 1239 // parseRecord falls through and does not yet add an unwrapped line as a 1240 // record declaration or definition can start a structural element. 1241 parseRecord(); 1242 // This does not apply for Java, JavaScript and C#. 1243 if (Style.Language == FormatStyle::LK_Java || 1244 Style.Language == FormatStyle::LK_JavaScript || Style.isCSharp()) { 1245 if (FormatTok->is(tok::semi)) 1246 nextToken(); 1247 addUnwrappedLine(); 1248 return; 1249 } 1250 break; 1251 case tok::period: 1252 nextToken(); 1253 // In Java, classes have an implicit static member "class". 1254 if (Style.Language == FormatStyle::LK_Java && FormatTok && 1255 FormatTok->is(tok::kw_class)) 1256 nextToken(); 1257 if (Style.Language == FormatStyle::LK_JavaScript && FormatTok && 1258 FormatTok->Tok.getIdentifierInfo()) 1259 // JavaScript only has pseudo keywords, all keywords are allowed to 1260 // appear in "IdentifierName" positions. See http://es5.github.io/#x7.6 1261 nextToken(); 1262 break; 1263 case tok::semi: 1264 nextToken(); 1265 addUnwrappedLine(); 1266 return; 1267 case tok::r_brace: 1268 addUnwrappedLine(); 1269 return; 1270 case tok::l_paren: 1271 parseParens(); 1272 break; 1273 case tok::kw_operator: 1274 nextToken(); 1275 if (FormatTok->isBinaryOperator()) 1276 nextToken(); 1277 break; 1278 case tok::caret: 1279 nextToken(); 1280 if (FormatTok->Tok.isAnyIdentifier() || 1281 FormatTok->isSimpleTypeSpecifier()) 1282 nextToken(); 1283 if (FormatTok->is(tok::l_paren)) 1284 parseParens(); 1285 if (FormatTok->is(tok::l_brace)) 1286 parseChildBlock(); 1287 break; 1288 case tok::l_brace: 1289 if (!tryToParseBracedList()) { 1290 // A block outside of parentheses must be the last part of a 1291 // structural element. 1292 // FIXME: Figure out cases where this is not true, and add projections 1293 // for them (the one we know is missing are lambdas). 1294 if (Style.BraceWrapping.AfterFunction) 1295 addUnwrappedLine(); 1296 FormatTok->Type = TT_FunctionLBrace; 1297 parseBlock(/*MustBeDeclaration=*/false); 1298 addUnwrappedLine(); 1299 return; 1300 } 1301 // Otherwise this was a braced init list, and the structural 1302 // element continues. 1303 break; 1304 case tok::kw_try: 1305 if (Style.Language == FormatStyle::LK_JavaScript && 1306 Line->MustBeDeclaration) { 1307 // field/method declaration. 1308 nextToken(); 1309 break; 1310 } 1311 // We arrive here when parsing function-try blocks. 1312 if (Style.BraceWrapping.AfterFunction) 1313 addUnwrappedLine(); 1314 parseTryCatch(); 1315 return; 1316 case tok::identifier: { 1317 if (FormatTok->is(TT_MacroBlockEnd)) { 1318 addUnwrappedLine(); 1319 return; 1320 } 1321 1322 // Function declarations (as opposed to function expressions) are parsed 1323 // on their own unwrapped line by continuing this loop. Function 1324 // expressions (functions that are not on their own line) must not create 1325 // a new unwrapped line, so they are special cased below. 1326 size_t TokenCount = Line->Tokens.size(); 1327 if (Style.Language == FormatStyle::LK_JavaScript && 1328 FormatTok->is(Keywords.kw_function) && 1329 (TokenCount > 1 || (TokenCount == 1 && !Line->Tokens.front().Tok->is( 1330 Keywords.kw_async)))) { 1331 tryToParseJSFunction(); 1332 break; 1333 } 1334 if ((Style.Language == FormatStyle::LK_JavaScript || 1335 Style.Language == FormatStyle::LK_Java) && 1336 FormatTok->is(Keywords.kw_interface)) { 1337 if (Style.Language == FormatStyle::LK_JavaScript) { 1338 // In JavaScript/TypeScript, "interface" can be used as a standalone 1339 // identifier, e.g. in `var interface = 1;`. If "interface" is 1340 // followed by another identifier, it is very like to be an actual 1341 // interface declaration. 1342 unsigned StoredPosition = Tokens->getPosition(); 1343 FormatToken *Next = Tokens->getNextToken(); 1344 FormatTok = Tokens->setPosition(StoredPosition); 1345 if (Next && !mustBeJSIdent(Keywords, Next)) { 1346 nextToken(); 1347 break; 1348 } 1349 } 1350 parseRecord(); 1351 addUnwrappedLine(); 1352 return; 1353 } 1354 1355 if (Style.isCpp() && FormatTok->is(TT_StatementMacro)) { 1356 parseStatementMacro(); 1357 return; 1358 } 1359 1360 // See if the following token should start a new unwrapped line. 1361 StringRef Text = FormatTok->TokenText; 1362 nextToken(); 1363 1364 // JS doesn't have macros, and within classes colons indicate fields, not 1365 // labels. 1366 if (Style.Language == FormatStyle::LK_JavaScript) 1367 break; 1368 1369 TokenCount = Line->Tokens.size(); 1370 if (TokenCount == 1 || 1371 (TokenCount == 2 && Line->Tokens.front().Tok->is(tok::comment))) { 1372 if (FormatTok->Tok.is(tok::colon) && !Line->MustBeDeclaration) { 1373 Line->Tokens.begin()->Tok->MustBreakBefore = true; 1374 parseLabel(!Style.IndentGotoLabels); 1375 return; 1376 } 1377 // Recognize function-like macro usages without trailing semicolon as 1378 // well as free-standing macros like Q_OBJECT. 1379 bool FunctionLike = FormatTok->is(tok::l_paren); 1380 if (FunctionLike) 1381 parseParens(); 1382 1383 bool FollowedByNewline = 1384 CommentsBeforeNextToken.empty() 1385 ? FormatTok->NewlinesBefore > 0 1386 : CommentsBeforeNextToken.front()->NewlinesBefore > 0; 1387 1388 if (FollowedByNewline && (Text.size() >= 5 || FunctionLike) && 1389 tokenCanStartNewLine(FormatTok->Tok) && Text == Text.upper()) { 1390 addUnwrappedLine(); 1391 return; 1392 } 1393 } 1394 break; 1395 } 1396 case tok::equal: 1397 // Fat arrows (=>) have tok::TokenKind tok::equal but TokenType 1398 // TT_JsFatArrow. The always start an expression or a child block if 1399 // followed by a curly. 1400 if (FormatTok->is(TT_JsFatArrow)) { 1401 nextToken(); 1402 if (FormatTok->is(tok::l_brace)) 1403 parseChildBlock(); 1404 break; 1405 } 1406 1407 nextToken(); 1408 if (FormatTok->Tok.is(tok::l_brace)) { 1409 nextToken(); 1410 parseBracedList(); 1411 } else if (Style.Language == FormatStyle::LK_Proto && 1412 FormatTok->Tok.is(tok::less)) { 1413 nextToken(); 1414 parseBracedList(/*ContinueOnSemicolons=*/false, 1415 /*ClosingBraceKind=*/tok::greater); 1416 } 1417 break; 1418 case tok::l_square: 1419 parseSquare(); 1420 break; 1421 case tok::kw_new: 1422 parseNew(); 1423 break; 1424 default: 1425 nextToken(); 1426 break; 1427 } 1428 } while (!eof()); 1429 } 1430 1431 bool UnwrappedLineParser::tryToParseLambda() { 1432 if (!Style.isCpp()) { 1433 nextToken(); 1434 return false; 1435 } 1436 assert(FormatTok->is(tok::l_square)); 1437 FormatToken &LSquare = *FormatTok; 1438 if (!tryToParseLambdaIntroducer()) 1439 return false; 1440 1441 bool SeenArrow = false; 1442 1443 while (FormatTok->isNot(tok::l_brace)) { 1444 if (FormatTok->isSimpleTypeSpecifier()) { 1445 nextToken(); 1446 continue; 1447 } 1448 switch (FormatTok->Tok.getKind()) { 1449 case tok::l_brace: 1450 break; 1451 case tok::l_paren: 1452 parseParens(); 1453 break; 1454 case tok::amp: 1455 case tok::star: 1456 case tok::kw_const: 1457 case tok::comma: 1458 case tok::less: 1459 case tok::greater: 1460 case tok::identifier: 1461 case tok::numeric_constant: 1462 case tok::coloncolon: 1463 case tok::kw_class: 1464 case tok::kw_mutable: 1465 case tok::kw_noexcept: 1466 case tok::kw_template: 1467 case tok::kw_typename: 1468 nextToken(); 1469 break; 1470 // Specialization of a template with an integer parameter can contain 1471 // arithmetic, logical, comparison and ternary operators. 1472 // 1473 // FIXME: This also accepts sequences of operators that are not in the scope 1474 // of a template argument list. 1475 // 1476 // In a C++ lambda a template type can only occur after an arrow. We use 1477 // this as an heuristic to distinguish between Objective-C expressions 1478 // followed by an `a->b` expression, such as: 1479 // ([obj func:arg] + a->b) 1480 // Otherwise the code below would parse as a lambda. 1481 // 1482 // FIXME: This heuristic is incorrect for C++20 generic lambdas with 1483 // explicit template lists: []<bool b = true && false>(U &&u){} 1484 case tok::plus: 1485 case tok::minus: 1486 case tok::exclaim: 1487 case tok::tilde: 1488 case tok::slash: 1489 case tok::percent: 1490 case tok::lessless: 1491 case tok::pipe: 1492 case tok::pipepipe: 1493 case tok::ampamp: 1494 case tok::caret: 1495 case tok::equalequal: 1496 case tok::exclaimequal: 1497 case tok::greaterequal: 1498 case tok::lessequal: 1499 case tok::question: 1500 case tok::colon: 1501 case tok::kw_true: 1502 case tok::kw_false: 1503 if (SeenArrow) { 1504 nextToken(); 1505 break; 1506 } 1507 return true; 1508 case tok::arrow: 1509 // This might or might not actually be a lambda arrow (this could be an 1510 // ObjC method invocation followed by a dereferencing arrow). We might 1511 // reset this back to TT_Unknown in TokenAnnotator. 1512 FormatTok->Type = TT_LambdaArrow; 1513 SeenArrow = true; 1514 nextToken(); 1515 break; 1516 default: 1517 return true; 1518 } 1519 } 1520 FormatTok->Type = TT_LambdaLBrace; 1521 LSquare.Type = TT_LambdaLSquare; 1522 parseChildBlock(); 1523 return true; 1524 } 1525 1526 bool UnwrappedLineParser::tryToParseLambdaIntroducer() { 1527 const FormatToken *Previous = FormatTok->Previous; 1528 if (Previous && 1529 (Previous->isOneOf(tok::identifier, tok::kw_operator, tok::kw_new, 1530 tok::kw_delete, tok::l_square) || 1531 FormatTok->isCppStructuredBinding(Style) || Previous->closesScope() || 1532 Previous->isSimpleTypeSpecifier())) { 1533 nextToken(); 1534 return false; 1535 } 1536 nextToken(); 1537 if (FormatTok->is(tok::l_square)) { 1538 return false; 1539 } 1540 parseSquare(/*LambdaIntroducer=*/true); 1541 return true; 1542 } 1543 1544 void UnwrappedLineParser::tryToParseJSFunction() { 1545 assert(FormatTok->is(Keywords.kw_function) || 1546 FormatTok->startsSequence(Keywords.kw_async, Keywords.kw_function)); 1547 if (FormatTok->is(Keywords.kw_async)) 1548 nextToken(); 1549 // Consume "function". 1550 nextToken(); 1551 1552 // Consume * (generator function). Treat it like C++'s overloaded operators. 1553 if (FormatTok->is(tok::star)) { 1554 FormatTok->Type = TT_OverloadedOperator; 1555 nextToken(); 1556 } 1557 1558 // Consume function name. 1559 if (FormatTok->is(tok::identifier)) 1560 nextToken(); 1561 1562 if (FormatTok->isNot(tok::l_paren)) 1563 return; 1564 1565 // Parse formal parameter list. 1566 parseParens(); 1567 1568 if (FormatTok->is(tok::colon)) { 1569 // Parse a type definition. 1570 nextToken(); 1571 1572 // Eat the type declaration. For braced inline object types, balance braces, 1573 // otherwise just parse until finding an l_brace for the function body. 1574 if (FormatTok->is(tok::l_brace)) 1575 tryToParseBracedList(); 1576 else 1577 while (!FormatTok->isOneOf(tok::l_brace, tok::semi) && !eof()) 1578 nextToken(); 1579 } 1580 1581 if (FormatTok->is(tok::semi)) 1582 return; 1583 1584 parseChildBlock(); 1585 } 1586 1587 bool UnwrappedLineParser::tryToParseBracedList() { 1588 if (FormatTok->BlockKind == BK_Unknown) 1589 calculateBraceTypes(); 1590 assert(FormatTok->BlockKind != BK_Unknown); 1591 if (FormatTok->BlockKind == BK_Block) 1592 return false; 1593 nextToken(); 1594 parseBracedList(); 1595 return true; 1596 } 1597 1598 bool UnwrappedLineParser::parseBracedList(bool ContinueOnSemicolons, 1599 tok::TokenKind ClosingBraceKind) { 1600 bool HasError = false; 1601 1602 // FIXME: Once we have an expression parser in the UnwrappedLineParser, 1603 // replace this by using parseAssigmentExpression() inside. 1604 do { 1605 if (Style.Language == FormatStyle::LK_JavaScript) { 1606 if (FormatTok->is(Keywords.kw_function) || 1607 FormatTok->startsSequence(Keywords.kw_async, Keywords.kw_function)) { 1608 tryToParseJSFunction(); 1609 continue; 1610 } 1611 if (FormatTok->is(TT_JsFatArrow)) { 1612 nextToken(); 1613 // Fat arrows can be followed by simple expressions or by child blocks 1614 // in curly braces. 1615 if (FormatTok->is(tok::l_brace)) { 1616 parseChildBlock(); 1617 continue; 1618 } 1619 } 1620 if (FormatTok->is(tok::l_brace)) { 1621 // Could be a method inside of a braced list `{a() { return 1; }}`. 1622 if (tryToParseBracedList()) 1623 continue; 1624 parseChildBlock(); 1625 } 1626 } 1627 if (FormatTok->Tok.getKind() == ClosingBraceKind) { 1628 nextToken(); 1629 return !HasError; 1630 } 1631 switch (FormatTok->Tok.getKind()) { 1632 case tok::caret: 1633 nextToken(); 1634 if (FormatTok->is(tok::l_brace)) { 1635 parseChildBlock(); 1636 } 1637 break; 1638 case tok::l_square: 1639 tryToParseLambda(); 1640 break; 1641 case tok::l_paren: 1642 parseParens(); 1643 // JavaScript can just have free standing methods and getters/setters in 1644 // object literals. Detect them by a "{" following ")". 1645 if (Style.Language == FormatStyle::LK_JavaScript) { 1646 if (FormatTok->is(tok::l_brace)) 1647 parseChildBlock(); 1648 break; 1649 } 1650 break; 1651 case tok::l_brace: 1652 // Assume there are no blocks inside a braced init list apart 1653 // from the ones we explicitly parse out (like lambdas). 1654 FormatTok->BlockKind = BK_BracedInit; 1655 nextToken(); 1656 parseBracedList(); 1657 break; 1658 case tok::less: 1659 if (Style.Language == FormatStyle::LK_Proto) { 1660 nextToken(); 1661 parseBracedList(/*ContinueOnSemicolons=*/false, 1662 /*ClosingBraceKind=*/tok::greater); 1663 } else { 1664 nextToken(); 1665 } 1666 break; 1667 case tok::semi: 1668 // JavaScript (or more precisely TypeScript) can have semicolons in braced 1669 // lists (in so-called TypeMemberLists). Thus, the semicolon cannot be 1670 // used for error recovery if we have otherwise determined that this is 1671 // a braced list. 1672 if (Style.Language == FormatStyle::LK_JavaScript) { 1673 nextToken(); 1674 break; 1675 } 1676 HasError = true; 1677 if (!ContinueOnSemicolons) 1678 return !HasError; 1679 nextToken(); 1680 break; 1681 case tok::comma: 1682 nextToken(); 1683 break; 1684 default: 1685 nextToken(); 1686 break; 1687 } 1688 } while (!eof()); 1689 return false; 1690 } 1691 1692 void UnwrappedLineParser::parseParens() { 1693 assert(FormatTok->Tok.is(tok::l_paren) && "'(' expected."); 1694 nextToken(); 1695 do { 1696 switch (FormatTok->Tok.getKind()) { 1697 case tok::l_paren: 1698 parseParens(); 1699 if (Style.Language == FormatStyle::LK_Java && FormatTok->is(tok::l_brace)) 1700 parseChildBlock(); 1701 break; 1702 case tok::r_paren: 1703 nextToken(); 1704 return; 1705 case tok::r_brace: 1706 // A "}" inside parenthesis is an error if there wasn't a matching "{". 1707 return; 1708 case tok::l_square: 1709 tryToParseLambda(); 1710 break; 1711 case tok::l_brace: 1712 if (!tryToParseBracedList()) 1713 parseChildBlock(); 1714 break; 1715 case tok::at: 1716 nextToken(); 1717 if (FormatTok->Tok.is(tok::l_brace)) { 1718 nextToken(); 1719 parseBracedList(); 1720 } 1721 break; 1722 case tok::kw_class: 1723 if (Style.Language == FormatStyle::LK_JavaScript) 1724 parseRecord(/*ParseAsExpr=*/true); 1725 else 1726 nextToken(); 1727 break; 1728 case tok::identifier: 1729 if (Style.Language == FormatStyle::LK_JavaScript && 1730 (FormatTok->is(Keywords.kw_function) || 1731 FormatTok->startsSequence(Keywords.kw_async, Keywords.kw_function))) 1732 tryToParseJSFunction(); 1733 else 1734 nextToken(); 1735 break; 1736 default: 1737 nextToken(); 1738 break; 1739 } 1740 } while (!eof()); 1741 } 1742 1743 void UnwrappedLineParser::parseSquare(bool LambdaIntroducer) { 1744 if (!LambdaIntroducer) { 1745 assert(FormatTok->Tok.is(tok::l_square) && "'[' expected."); 1746 if (tryToParseLambda()) 1747 return; 1748 } 1749 do { 1750 switch (FormatTok->Tok.getKind()) { 1751 case tok::l_paren: 1752 parseParens(); 1753 break; 1754 case tok::r_square: 1755 nextToken(); 1756 return; 1757 case tok::r_brace: 1758 // A "}" inside parenthesis is an error if there wasn't a matching "{". 1759 return; 1760 case tok::l_square: 1761 parseSquare(); 1762 break; 1763 case tok::l_brace: { 1764 if (!tryToParseBracedList()) 1765 parseChildBlock(); 1766 break; 1767 } 1768 case tok::at: 1769 nextToken(); 1770 if (FormatTok->Tok.is(tok::l_brace)) { 1771 nextToken(); 1772 parseBracedList(); 1773 } 1774 break; 1775 default: 1776 nextToken(); 1777 break; 1778 } 1779 } while (!eof()); 1780 } 1781 1782 void UnwrappedLineParser::parseIfThenElse() { 1783 assert(FormatTok->Tok.is(tok::kw_if) && "'if' expected"); 1784 nextToken(); 1785 if (FormatTok->Tok.isOneOf(tok::kw_constexpr, tok::identifier)) 1786 nextToken(); 1787 if (FormatTok->Tok.is(tok::l_paren)) 1788 parseParens(); 1789 bool NeedsUnwrappedLine = false; 1790 if (FormatTok->Tok.is(tok::l_brace)) { 1791 CompoundStatementIndenter Indenter(this, Style, Line->Level); 1792 parseBlock(/*MustBeDeclaration=*/false); 1793 if (Style.BraceWrapping.BeforeElse) 1794 addUnwrappedLine(); 1795 else 1796 NeedsUnwrappedLine = true; 1797 } else { 1798 addUnwrappedLine(); 1799 ++Line->Level; 1800 parseStructuralElement(); 1801 --Line->Level; 1802 } 1803 if (FormatTok->Tok.is(tok::kw_else)) { 1804 nextToken(); 1805 if (FormatTok->Tok.is(tok::l_brace)) { 1806 CompoundStatementIndenter Indenter(this, Style, Line->Level); 1807 parseBlock(/*MustBeDeclaration=*/false); 1808 addUnwrappedLine(); 1809 } else if (FormatTok->Tok.is(tok::kw_if)) { 1810 parseIfThenElse(); 1811 } else { 1812 addUnwrappedLine(); 1813 ++Line->Level; 1814 parseStructuralElement(); 1815 if (FormatTok->is(tok::eof)) 1816 addUnwrappedLine(); 1817 --Line->Level; 1818 } 1819 } else if (NeedsUnwrappedLine) { 1820 addUnwrappedLine(); 1821 } 1822 } 1823 1824 void UnwrappedLineParser::parseTryCatch() { 1825 assert(FormatTok->isOneOf(tok::kw_try, tok::kw___try) && "'try' expected"); 1826 nextToken(); 1827 bool NeedsUnwrappedLine = false; 1828 if (FormatTok->is(tok::colon)) { 1829 // We are in a function try block, what comes is an initializer list. 1830 nextToken(); 1831 while (FormatTok->is(tok::identifier)) { 1832 nextToken(); 1833 if (FormatTok->is(tok::l_paren)) 1834 parseParens(); 1835 if (FormatTok->is(tok::comma)) 1836 nextToken(); 1837 } 1838 } 1839 // Parse try with resource. 1840 if (Style.Language == FormatStyle::LK_Java && FormatTok->is(tok::l_paren)) { 1841 parseParens(); 1842 } 1843 if (FormatTok->is(tok::l_brace)) { 1844 CompoundStatementIndenter Indenter(this, Style, Line->Level); 1845 parseBlock(/*MustBeDeclaration=*/false); 1846 if (Style.BraceWrapping.BeforeCatch) { 1847 addUnwrappedLine(); 1848 } else { 1849 NeedsUnwrappedLine = true; 1850 } 1851 } else if (!FormatTok->is(tok::kw_catch)) { 1852 // The C++ standard requires a compound-statement after a try. 1853 // If there's none, we try to assume there's a structuralElement 1854 // and try to continue. 1855 addUnwrappedLine(); 1856 ++Line->Level; 1857 parseStructuralElement(); 1858 --Line->Level; 1859 } 1860 while (1) { 1861 if (FormatTok->is(tok::at)) 1862 nextToken(); 1863 if (!(FormatTok->isOneOf(tok::kw_catch, Keywords.kw___except, 1864 tok::kw___finally) || 1865 ((Style.Language == FormatStyle::LK_Java || 1866 Style.Language == FormatStyle::LK_JavaScript) && 1867 FormatTok->is(Keywords.kw_finally)) || 1868 (FormatTok->Tok.isObjCAtKeyword(tok::objc_catch) || 1869 FormatTok->Tok.isObjCAtKeyword(tok::objc_finally)))) 1870 break; 1871 nextToken(); 1872 while (FormatTok->isNot(tok::l_brace)) { 1873 if (FormatTok->is(tok::l_paren)) { 1874 parseParens(); 1875 continue; 1876 } 1877 if (FormatTok->isOneOf(tok::semi, tok::r_brace, tok::eof)) 1878 return; 1879 nextToken(); 1880 } 1881 NeedsUnwrappedLine = false; 1882 CompoundStatementIndenter Indenter(this, Style, Line->Level); 1883 parseBlock(/*MustBeDeclaration=*/false); 1884 if (Style.BraceWrapping.BeforeCatch) 1885 addUnwrappedLine(); 1886 else 1887 NeedsUnwrappedLine = true; 1888 } 1889 if (NeedsUnwrappedLine) 1890 addUnwrappedLine(); 1891 } 1892 1893 void UnwrappedLineParser::parseNamespace() { 1894 assert(FormatTok->isOneOf(tok::kw_namespace, TT_NamespaceMacro) && 1895 "'namespace' expected"); 1896 1897 const FormatToken &InitialToken = *FormatTok; 1898 nextToken(); 1899 if (InitialToken.is(TT_NamespaceMacro)) { 1900 parseParens(); 1901 } else { 1902 while (FormatTok->isOneOf(tok::identifier, tok::coloncolon, tok::kw_inline, 1903 tok::l_square)) { 1904 if (FormatTok->is(tok::l_square)) 1905 parseSquare(); 1906 else 1907 nextToken(); 1908 } 1909 } 1910 if (FormatTok->Tok.is(tok::l_brace)) { 1911 if (ShouldBreakBeforeBrace(Style, InitialToken)) 1912 addUnwrappedLine(); 1913 1914 bool AddLevel = Style.NamespaceIndentation == FormatStyle::NI_All || 1915 (Style.NamespaceIndentation == FormatStyle::NI_Inner && 1916 DeclarationScopeStack.size() > 1); 1917 parseBlock(/*MustBeDeclaration=*/true, AddLevel); 1918 // Munch the semicolon after a namespace. This is more common than one would 1919 // think. Puttin the semicolon into its own line is very ugly. 1920 if (FormatTok->Tok.is(tok::semi)) 1921 nextToken(); 1922 addUnwrappedLine(); 1923 } 1924 // FIXME: Add error handling. 1925 } 1926 1927 void UnwrappedLineParser::parseNew() { 1928 assert(FormatTok->is(tok::kw_new) && "'new' expected"); 1929 nextToken(); 1930 if (Style.Language != FormatStyle::LK_Java) 1931 return; 1932 1933 // In Java, we can parse everything up to the parens, which aren't optional. 1934 do { 1935 // There should not be a ;, { or } before the new's open paren. 1936 if (FormatTok->isOneOf(tok::semi, tok::l_brace, tok::r_brace)) 1937 return; 1938 1939 // Consume the parens. 1940 if (FormatTok->is(tok::l_paren)) { 1941 parseParens(); 1942 1943 // If there is a class body of an anonymous class, consume that as child. 1944 if (FormatTok->is(tok::l_brace)) 1945 parseChildBlock(); 1946 return; 1947 } 1948 nextToken(); 1949 } while (!eof()); 1950 } 1951 1952 void UnwrappedLineParser::parseForOrWhileLoop() { 1953 assert(FormatTok->isOneOf(tok::kw_for, tok::kw_while, TT_ForEachMacro) && 1954 "'for', 'while' or foreach macro expected"); 1955 nextToken(); 1956 // JS' for await ( ... 1957 if (Style.Language == FormatStyle::LK_JavaScript && 1958 FormatTok->is(Keywords.kw_await)) 1959 nextToken(); 1960 if (FormatTok->Tok.is(tok::l_paren)) 1961 parseParens(); 1962 if (FormatTok->Tok.is(tok::l_brace)) { 1963 CompoundStatementIndenter Indenter(this, Style, Line->Level); 1964 parseBlock(/*MustBeDeclaration=*/false); 1965 addUnwrappedLine(); 1966 } else { 1967 addUnwrappedLine(); 1968 ++Line->Level; 1969 parseStructuralElement(); 1970 --Line->Level; 1971 } 1972 } 1973 1974 void UnwrappedLineParser::parseDoWhile() { 1975 assert(FormatTok->Tok.is(tok::kw_do) && "'do' expected"); 1976 nextToken(); 1977 if (FormatTok->Tok.is(tok::l_brace)) { 1978 CompoundStatementIndenter Indenter(this, Style, Line->Level); 1979 parseBlock(/*MustBeDeclaration=*/false); 1980 if (Style.BraceWrapping.IndentBraces) 1981 addUnwrappedLine(); 1982 } else { 1983 addUnwrappedLine(); 1984 ++Line->Level; 1985 parseStructuralElement(); 1986 --Line->Level; 1987 } 1988 1989 // FIXME: Add error handling. 1990 if (!FormatTok->Tok.is(tok::kw_while)) { 1991 addUnwrappedLine(); 1992 return; 1993 } 1994 1995 nextToken(); 1996 parseStructuralElement(); 1997 } 1998 1999 void UnwrappedLineParser::parseLabel(bool LeftAlignLabel) { 2000 nextToken(); 2001 unsigned OldLineLevel = Line->Level; 2002 if (Line->Level > 1 || (!Line->InPPDirective && Line->Level > 0)) 2003 --Line->Level; 2004 if (LeftAlignLabel) 2005 Line->Level = 0; 2006 if (CommentsBeforeNextToken.empty() && FormatTok->Tok.is(tok::l_brace)) { 2007 CompoundStatementIndenter Indenter(this, Line->Level, 2008 Style.BraceWrapping.AfterCaseLabel, 2009 Style.BraceWrapping.IndentBraces); 2010 parseBlock(/*MustBeDeclaration=*/false); 2011 if (FormatTok->Tok.is(tok::kw_break)) { 2012 if (Style.BraceWrapping.AfterControlStatement == 2013 FormatStyle::BWACS_Always) 2014 addUnwrappedLine(); 2015 parseStructuralElement(); 2016 } 2017 addUnwrappedLine(); 2018 } else { 2019 if (FormatTok->is(tok::semi)) 2020 nextToken(); 2021 addUnwrappedLine(); 2022 } 2023 Line->Level = OldLineLevel; 2024 if (FormatTok->isNot(tok::l_brace)) { 2025 parseStructuralElement(); 2026 addUnwrappedLine(); 2027 } 2028 } 2029 2030 void UnwrappedLineParser::parseCaseLabel() { 2031 assert(FormatTok->Tok.is(tok::kw_case) && "'case' expected"); 2032 // FIXME: fix handling of complex expressions here. 2033 do { 2034 nextToken(); 2035 } while (!eof() && !FormatTok->Tok.is(tok::colon)); 2036 parseLabel(); 2037 } 2038 2039 void UnwrappedLineParser::parseSwitch() { 2040 assert(FormatTok->Tok.is(tok::kw_switch) && "'switch' expected"); 2041 nextToken(); 2042 if (FormatTok->Tok.is(tok::l_paren)) 2043 parseParens(); 2044 if (FormatTok->Tok.is(tok::l_brace)) { 2045 CompoundStatementIndenter Indenter(this, Style, Line->Level); 2046 parseBlock(/*MustBeDeclaration=*/false); 2047 addUnwrappedLine(); 2048 } else { 2049 addUnwrappedLine(); 2050 ++Line->Level; 2051 parseStructuralElement(); 2052 --Line->Level; 2053 } 2054 } 2055 2056 void UnwrappedLineParser::parseAccessSpecifier() { 2057 nextToken(); 2058 // Understand Qt's slots. 2059 if (FormatTok->isOneOf(Keywords.kw_slots, Keywords.kw_qslots)) 2060 nextToken(); 2061 // Otherwise, we don't know what it is, and we'd better keep the next token. 2062 if (FormatTok->Tok.is(tok::colon)) 2063 nextToken(); 2064 addUnwrappedLine(); 2065 } 2066 2067 bool UnwrappedLineParser::parseEnum() { 2068 // Won't be 'enum' for NS_ENUMs. 2069 if (FormatTok->Tok.is(tok::kw_enum)) 2070 nextToken(); 2071 2072 // In TypeScript, "enum" can also be used as property name, e.g. in interface 2073 // declarations. An "enum" keyword followed by a colon would be a syntax 2074 // error and thus assume it is just an identifier. 2075 if (Style.Language == FormatStyle::LK_JavaScript && 2076 FormatTok->isOneOf(tok::colon, tok::question)) 2077 return false; 2078 2079 // In protobuf, "enum" can be used as a field name. 2080 if (Style.Language == FormatStyle::LK_Proto && FormatTok->is(tok::equal)) 2081 return false; 2082 2083 // Eat up enum class ... 2084 if (FormatTok->Tok.is(tok::kw_class) || FormatTok->Tok.is(tok::kw_struct)) 2085 nextToken(); 2086 2087 while (FormatTok->Tok.getIdentifierInfo() || 2088 FormatTok->isOneOf(tok::colon, tok::coloncolon, tok::less, 2089 tok::greater, tok::comma, tok::question)) { 2090 nextToken(); 2091 // We can have macros or attributes in between 'enum' and the enum name. 2092 if (FormatTok->is(tok::l_paren)) 2093 parseParens(); 2094 if (FormatTok->is(tok::identifier)) { 2095 nextToken(); 2096 // If there are two identifiers in a row, this is likely an elaborate 2097 // return type. In Java, this can be "implements", etc. 2098 if (Style.isCpp() && FormatTok->is(tok::identifier)) 2099 return false; 2100 } 2101 } 2102 2103 // Just a declaration or something is wrong. 2104 if (FormatTok->isNot(tok::l_brace)) 2105 return true; 2106 FormatTok->BlockKind = BK_Block; 2107 2108 if (Style.Language == FormatStyle::LK_Java) { 2109 // Java enums are different. 2110 parseJavaEnumBody(); 2111 return true; 2112 } 2113 if (Style.Language == FormatStyle::LK_Proto) { 2114 parseBlock(/*MustBeDeclaration=*/true); 2115 return true; 2116 } 2117 2118 // Parse enum body. 2119 nextToken(); 2120 bool HasError = !parseBracedList(/*ContinueOnSemicolons=*/true); 2121 if (HasError) { 2122 if (FormatTok->is(tok::semi)) 2123 nextToken(); 2124 addUnwrappedLine(); 2125 } 2126 return true; 2127 2128 // There is no addUnwrappedLine() here so that we fall through to parsing a 2129 // structural element afterwards. Thus, in "enum A {} n, m;", 2130 // "} n, m;" will end up in one unwrapped line. 2131 } 2132 2133 void UnwrappedLineParser::parseJavaEnumBody() { 2134 // Determine whether the enum is simple, i.e. does not have a semicolon or 2135 // constants with class bodies. Simple enums can be formatted like braced 2136 // lists, contracted to a single line, etc. 2137 unsigned StoredPosition = Tokens->getPosition(); 2138 bool IsSimple = true; 2139 FormatToken *Tok = Tokens->getNextToken(); 2140 while (Tok) { 2141 if (Tok->is(tok::r_brace)) 2142 break; 2143 if (Tok->isOneOf(tok::l_brace, tok::semi)) { 2144 IsSimple = false; 2145 break; 2146 } 2147 // FIXME: This will also mark enums with braces in the arguments to enum 2148 // constants as "not simple". This is probably fine in practice, though. 2149 Tok = Tokens->getNextToken(); 2150 } 2151 FormatTok = Tokens->setPosition(StoredPosition); 2152 2153 if (IsSimple) { 2154 nextToken(); 2155 parseBracedList(); 2156 addUnwrappedLine(); 2157 return; 2158 } 2159 2160 // Parse the body of a more complex enum. 2161 // First add a line for everything up to the "{". 2162 nextToken(); 2163 addUnwrappedLine(); 2164 ++Line->Level; 2165 2166 // Parse the enum constants. 2167 while (FormatTok) { 2168 if (FormatTok->is(tok::l_brace)) { 2169 // Parse the constant's class body. 2170 parseBlock(/*MustBeDeclaration=*/true, /*AddLevel=*/true, 2171 /*MunchSemi=*/false); 2172 } else if (FormatTok->is(tok::l_paren)) { 2173 parseParens(); 2174 } else if (FormatTok->is(tok::comma)) { 2175 nextToken(); 2176 addUnwrappedLine(); 2177 } else if (FormatTok->is(tok::semi)) { 2178 nextToken(); 2179 addUnwrappedLine(); 2180 break; 2181 } else if (FormatTok->is(tok::r_brace)) { 2182 addUnwrappedLine(); 2183 break; 2184 } else { 2185 nextToken(); 2186 } 2187 } 2188 2189 // Parse the class body after the enum's ";" if any. 2190 parseLevel(/*HasOpeningBrace=*/true); 2191 nextToken(); 2192 --Line->Level; 2193 addUnwrappedLine(); 2194 } 2195 2196 void UnwrappedLineParser::parseRecord(bool ParseAsExpr) { 2197 const FormatToken &InitialToken = *FormatTok; 2198 nextToken(); 2199 2200 // The actual identifier can be a nested name specifier, and in macros 2201 // it is often token-pasted. 2202 while (FormatTok->isOneOf(tok::identifier, tok::coloncolon, tok::hashhash, 2203 tok::kw___attribute, tok::kw___declspec, 2204 tok::kw_alignas) || 2205 ((Style.Language == FormatStyle::LK_Java || 2206 Style.Language == FormatStyle::LK_JavaScript) && 2207 FormatTok->isOneOf(tok::period, tok::comma))) { 2208 if (Style.Language == FormatStyle::LK_JavaScript && 2209 FormatTok->isOneOf(Keywords.kw_extends, Keywords.kw_implements)) { 2210 // JavaScript/TypeScript supports inline object types in 2211 // extends/implements positions: 2212 // class Foo implements {bar: number} { } 2213 nextToken(); 2214 if (FormatTok->is(tok::l_brace)) { 2215 tryToParseBracedList(); 2216 continue; 2217 } 2218 } 2219 bool IsNonMacroIdentifier = 2220 FormatTok->is(tok::identifier) && 2221 FormatTok->TokenText != FormatTok->TokenText.upper(); 2222 nextToken(); 2223 // We can have macros or attributes in between 'class' and the class name. 2224 if (!IsNonMacroIdentifier && FormatTok->Tok.is(tok::l_paren)) 2225 parseParens(); 2226 } 2227 2228 // Note that parsing away template declarations here leads to incorrectly 2229 // accepting function declarations as record declarations. 2230 // In general, we cannot solve this problem. Consider: 2231 // class A<int> B() {} 2232 // which can be a function definition or a class definition when B() is a 2233 // macro. If we find enough real-world cases where this is a problem, we 2234 // can parse for the 'template' keyword in the beginning of the statement, 2235 // and thus rule out the record production in case there is no template 2236 // (this would still leave us with an ambiguity between template function 2237 // and class declarations). 2238 if (FormatTok->isOneOf(tok::colon, tok::less)) { 2239 while (!eof()) { 2240 if (FormatTok->is(tok::l_brace)) { 2241 calculateBraceTypes(/*ExpectClassBody=*/true); 2242 if (!tryToParseBracedList()) 2243 break; 2244 } 2245 if (FormatTok->Tok.is(tok::semi)) 2246 return; 2247 nextToken(); 2248 } 2249 } 2250 if (FormatTok->Tok.is(tok::l_brace)) { 2251 if (ParseAsExpr) { 2252 parseChildBlock(); 2253 } else { 2254 if (ShouldBreakBeforeBrace(Style, InitialToken)) 2255 addUnwrappedLine(); 2256 2257 parseBlock(/*MustBeDeclaration=*/true, /*AddLevel=*/true, 2258 /*MunchSemi=*/false); 2259 } 2260 } 2261 // There is no addUnwrappedLine() here so that we fall through to parsing a 2262 // structural element afterwards. Thus, in "class A {} n, m;", 2263 // "} n, m;" will end up in one unwrapped line. 2264 } 2265 2266 void UnwrappedLineParser::parseObjCMethod() { 2267 assert(FormatTok->Tok.isOneOf(tok::l_paren, tok::identifier) && 2268 "'(' or identifier expected."); 2269 do { 2270 if (FormatTok->Tok.is(tok::semi)) { 2271 nextToken(); 2272 addUnwrappedLine(); 2273 return; 2274 } else if (FormatTok->Tok.is(tok::l_brace)) { 2275 if (Style.BraceWrapping.AfterFunction) 2276 addUnwrappedLine(); 2277 parseBlock(/*MustBeDeclaration=*/false); 2278 addUnwrappedLine(); 2279 return; 2280 } else { 2281 nextToken(); 2282 } 2283 } while (!eof()); 2284 } 2285 2286 void UnwrappedLineParser::parseObjCProtocolList() { 2287 assert(FormatTok->Tok.is(tok::less) && "'<' expected."); 2288 do { 2289 nextToken(); 2290 // Early exit in case someone forgot a close angle. 2291 if (FormatTok->isOneOf(tok::semi, tok::l_brace) || 2292 FormatTok->Tok.isObjCAtKeyword(tok::objc_end)) 2293 return; 2294 } while (!eof() && FormatTok->Tok.isNot(tok::greater)); 2295 nextToken(); // Skip '>'. 2296 } 2297 2298 void UnwrappedLineParser::parseObjCUntilAtEnd() { 2299 do { 2300 if (FormatTok->Tok.isObjCAtKeyword(tok::objc_end)) { 2301 nextToken(); 2302 addUnwrappedLine(); 2303 break; 2304 } 2305 if (FormatTok->is(tok::l_brace)) { 2306 parseBlock(/*MustBeDeclaration=*/false); 2307 // In ObjC interfaces, nothing should be following the "}". 2308 addUnwrappedLine(); 2309 } else if (FormatTok->is(tok::r_brace)) { 2310 // Ignore stray "}". parseStructuralElement doesn't consume them. 2311 nextToken(); 2312 addUnwrappedLine(); 2313 } else if (FormatTok->isOneOf(tok::minus, tok::plus)) { 2314 nextToken(); 2315 parseObjCMethod(); 2316 } else { 2317 parseStructuralElement(); 2318 } 2319 } while (!eof()); 2320 } 2321 2322 void UnwrappedLineParser::parseObjCInterfaceOrImplementation() { 2323 assert(FormatTok->Tok.getObjCKeywordID() == tok::objc_interface || 2324 FormatTok->Tok.getObjCKeywordID() == tok::objc_implementation); 2325 nextToken(); 2326 nextToken(); // interface name 2327 2328 // @interface can be followed by a lightweight generic 2329 // specialization list, then either a base class or a category. 2330 if (FormatTok->Tok.is(tok::less)) { 2331 // Unlike protocol lists, generic parameterizations support 2332 // nested angles: 2333 // 2334 // @interface Foo<ValueType : id <NSCopying, NSSecureCoding>> : 2335 // NSObject <NSCopying, NSSecureCoding> 2336 // 2337 // so we need to count how many open angles we have left. 2338 unsigned NumOpenAngles = 1; 2339 do { 2340 nextToken(); 2341 // Early exit in case someone forgot a close angle. 2342 if (FormatTok->isOneOf(tok::semi, tok::l_brace) || 2343 FormatTok->Tok.isObjCAtKeyword(tok::objc_end)) 2344 break; 2345 if (FormatTok->Tok.is(tok::less)) 2346 ++NumOpenAngles; 2347 else if (FormatTok->Tok.is(tok::greater)) { 2348 assert(NumOpenAngles > 0 && "'>' makes NumOpenAngles negative"); 2349 --NumOpenAngles; 2350 } 2351 } while (!eof() && NumOpenAngles != 0); 2352 nextToken(); // Skip '>'. 2353 } 2354 if (FormatTok->Tok.is(tok::colon)) { 2355 nextToken(); 2356 nextToken(); // base class name 2357 } else if (FormatTok->Tok.is(tok::l_paren)) 2358 // Skip category, if present. 2359 parseParens(); 2360 2361 if (FormatTok->Tok.is(tok::less)) 2362 parseObjCProtocolList(); 2363 2364 if (FormatTok->Tok.is(tok::l_brace)) { 2365 if (Style.BraceWrapping.AfterObjCDeclaration) 2366 addUnwrappedLine(); 2367 parseBlock(/*MustBeDeclaration=*/true); 2368 } 2369 2370 // With instance variables, this puts '}' on its own line. Without instance 2371 // variables, this ends the @interface line. 2372 addUnwrappedLine(); 2373 2374 parseObjCUntilAtEnd(); 2375 } 2376 2377 // Returns true for the declaration/definition form of @protocol, 2378 // false for the expression form. 2379 bool UnwrappedLineParser::parseObjCProtocol() { 2380 assert(FormatTok->Tok.getObjCKeywordID() == tok::objc_protocol); 2381 nextToken(); 2382 2383 if (FormatTok->is(tok::l_paren)) 2384 // The expression form of @protocol, e.g. "Protocol* p = @protocol(foo);". 2385 return false; 2386 2387 // The definition/declaration form, 2388 // @protocol Foo 2389 // - (int)someMethod; 2390 // @end 2391 2392 nextToken(); // protocol name 2393 2394 if (FormatTok->Tok.is(tok::less)) 2395 parseObjCProtocolList(); 2396 2397 // Check for protocol declaration. 2398 if (FormatTok->Tok.is(tok::semi)) { 2399 nextToken(); 2400 addUnwrappedLine(); 2401 return true; 2402 } 2403 2404 addUnwrappedLine(); 2405 parseObjCUntilAtEnd(); 2406 return true; 2407 } 2408 2409 void UnwrappedLineParser::parseJavaScriptEs6ImportExport() { 2410 bool IsImport = FormatTok->is(Keywords.kw_import); 2411 assert(IsImport || FormatTok->is(tok::kw_export)); 2412 nextToken(); 2413 2414 // Consume the "default" in "export default class/function". 2415 if (FormatTok->is(tok::kw_default)) 2416 nextToken(); 2417 2418 // Consume "async function", "function" and "default function", so that these 2419 // get parsed as free-standing JS functions, i.e. do not require a trailing 2420 // semicolon. 2421 if (FormatTok->is(Keywords.kw_async)) 2422 nextToken(); 2423 if (FormatTok->is(Keywords.kw_function)) { 2424 nextToken(); 2425 return; 2426 } 2427 2428 // For imports, `export *`, `export {...}`, consume the rest of the line up 2429 // to the terminating `;`. For everything else, just return and continue 2430 // parsing the structural element, i.e. the declaration or expression for 2431 // `export default`. 2432 if (!IsImport && !FormatTok->isOneOf(tok::l_brace, tok::star) && 2433 !FormatTok->isStringLiteral()) 2434 return; 2435 2436 while (!eof()) { 2437 if (FormatTok->is(tok::semi)) 2438 return; 2439 if (Line->Tokens.empty()) { 2440 // Common issue: Automatic Semicolon Insertion wrapped the line, so the 2441 // import statement should terminate. 2442 return; 2443 } 2444 if (FormatTok->is(tok::l_brace)) { 2445 FormatTok->BlockKind = BK_Block; 2446 nextToken(); 2447 parseBracedList(); 2448 } else { 2449 nextToken(); 2450 } 2451 } 2452 } 2453 2454 void UnwrappedLineParser::parseStatementMacro() { 2455 nextToken(); 2456 if (FormatTok->is(tok::l_paren)) 2457 parseParens(); 2458 if (FormatTok->is(tok::semi)) 2459 nextToken(); 2460 addUnwrappedLine(); 2461 } 2462 2463 LLVM_ATTRIBUTE_UNUSED static void printDebugInfo(const UnwrappedLine &Line, 2464 StringRef Prefix = "") { 2465 llvm::dbgs() << Prefix << "Line(" << Line.Level 2466 << ", FSC=" << Line.FirstStartColumn << ")" 2467 << (Line.InPPDirective ? " MACRO" : "") << ": "; 2468 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), 2469 E = Line.Tokens.end(); 2470 I != E; ++I) { 2471 llvm::dbgs() << I->Tok->Tok.getName() << "[" 2472 << "T=" << I->Tok->Type << ", OC=" << I->Tok->OriginalColumn 2473 << "] "; 2474 } 2475 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), 2476 E = Line.Tokens.end(); 2477 I != E; ++I) { 2478 const UnwrappedLineNode &Node = *I; 2479 for (SmallVectorImpl<UnwrappedLine>::const_iterator 2480 I = Node.Children.begin(), 2481 E = Node.Children.end(); 2482 I != E; ++I) { 2483 printDebugInfo(*I, "\nChild: "); 2484 } 2485 } 2486 llvm::dbgs() << "\n"; 2487 } 2488 2489 void UnwrappedLineParser::addUnwrappedLine() { 2490 if (Line->Tokens.empty()) 2491 return; 2492 LLVM_DEBUG({ 2493 if (CurrentLines == &Lines) 2494 printDebugInfo(*Line); 2495 }); 2496 CurrentLines->push_back(std::move(*Line)); 2497 Line->Tokens.clear(); 2498 Line->MatchingOpeningBlockLineIndex = UnwrappedLine::kInvalidIndex; 2499 Line->FirstStartColumn = 0; 2500 if (CurrentLines == &Lines && !PreprocessorDirectives.empty()) { 2501 CurrentLines->append( 2502 std::make_move_iterator(PreprocessorDirectives.begin()), 2503 std::make_move_iterator(PreprocessorDirectives.end())); 2504 PreprocessorDirectives.clear(); 2505 } 2506 // Disconnect the current token from the last token on the previous line. 2507 FormatTok->Previous = nullptr; 2508 } 2509 2510 bool UnwrappedLineParser::eof() const { return FormatTok->Tok.is(tok::eof); } 2511 2512 bool UnwrappedLineParser::isOnNewLine(const FormatToken &FormatTok) { 2513 return (Line->InPPDirective || FormatTok.HasUnescapedNewline) && 2514 FormatTok.NewlinesBefore > 0; 2515 } 2516 2517 // Checks if \p FormatTok is a line comment that continues the line comment 2518 // section on \p Line. 2519 static bool 2520 continuesLineCommentSection(const FormatToken &FormatTok, 2521 const UnwrappedLine &Line, 2522 const llvm::Regex &CommentPragmasRegex) { 2523 if (Line.Tokens.empty()) 2524 return false; 2525 2526 StringRef IndentContent = FormatTok.TokenText; 2527 if (FormatTok.TokenText.startswith("//") || 2528 FormatTok.TokenText.startswith("/*")) 2529 IndentContent = FormatTok.TokenText.substr(2); 2530 if (CommentPragmasRegex.match(IndentContent)) 2531 return false; 2532 2533 // If Line starts with a line comment, then FormatTok continues the comment 2534 // section if its original column is greater or equal to the original start 2535 // column of the line. 2536 // 2537 // Define the min column token of a line as follows: if a line ends in '{' or 2538 // contains a '{' followed by a line comment, then the min column token is 2539 // that '{'. Otherwise, the min column token of the line is the first token of 2540 // the line. 2541 // 2542 // If Line starts with a token other than a line comment, then FormatTok 2543 // continues the comment section if its original column is greater than the 2544 // original start column of the min column token of the line. 2545 // 2546 // For example, the second line comment continues the first in these cases: 2547 // 2548 // // first line 2549 // // second line 2550 // 2551 // and: 2552 // 2553 // // first line 2554 // // second line 2555 // 2556 // and: 2557 // 2558 // int i; // first line 2559 // // second line 2560 // 2561 // and: 2562 // 2563 // do { // first line 2564 // // second line 2565 // int i; 2566 // } while (true); 2567 // 2568 // and: 2569 // 2570 // enum { 2571 // a, // first line 2572 // // second line 2573 // b 2574 // }; 2575 // 2576 // The second line comment doesn't continue the first in these cases: 2577 // 2578 // // first line 2579 // // second line 2580 // 2581 // and: 2582 // 2583 // int i; // first line 2584 // // second line 2585 // 2586 // and: 2587 // 2588 // do { // first line 2589 // // second line 2590 // int i; 2591 // } while (true); 2592 // 2593 // and: 2594 // 2595 // enum { 2596 // a, // first line 2597 // // second line 2598 // }; 2599 const FormatToken *MinColumnToken = Line.Tokens.front().Tok; 2600 2601 // Scan for '{//'. If found, use the column of '{' as a min column for line 2602 // comment section continuation. 2603 const FormatToken *PreviousToken = nullptr; 2604 for (const UnwrappedLineNode &Node : Line.Tokens) { 2605 if (PreviousToken && PreviousToken->is(tok::l_brace) && 2606 isLineComment(*Node.Tok)) { 2607 MinColumnToken = PreviousToken; 2608 break; 2609 } 2610 PreviousToken = Node.Tok; 2611 2612 // Grab the last newline preceding a token in this unwrapped line. 2613 if (Node.Tok->NewlinesBefore > 0) { 2614 MinColumnToken = Node.Tok; 2615 } 2616 } 2617 if (PreviousToken && PreviousToken->is(tok::l_brace)) { 2618 MinColumnToken = PreviousToken; 2619 } 2620 2621 return continuesLineComment(FormatTok, /*Previous=*/Line.Tokens.back().Tok, 2622 MinColumnToken); 2623 } 2624 2625 void UnwrappedLineParser::flushComments(bool NewlineBeforeNext) { 2626 bool JustComments = Line->Tokens.empty(); 2627 for (SmallVectorImpl<FormatToken *>::const_iterator 2628 I = CommentsBeforeNextToken.begin(), 2629 E = CommentsBeforeNextToken.end(); 2630 I != E; ++I) { 2631 // Line comments that belong to the same line comment section are put on the 2632 // same line since later we might want to reflow content between them. 2633 // Additional fine-grained breaking of line comment sections is controlled 2634 // by the class BreakableLineCommentSection in case it is desirable to keep 2635 // several line comment sections in the same unwrapped line. 2636 // 2637 // FIXME: Consider putting separate line comment sections as children to the 2638 // unwrapped line instead. 2639 (*I)->ContinuesLineCommentSection = 2640 continuesLineCommentSection(**I, *Line, CommentPragmasRegex); 2641 if (isOnNewLine(**I) && JustComments && !(*I)->ContinuesLineCommentSection) 2642 addUnwrappedLine(); 2643 pushToken(*I); 2644 } 2645 if (NewlineBeforeNext && JustComments) 2646 addUnwrappedLine(); 2647 CommentsBeforeNextToken.clear(); 2648 } 2649 2650 void UnwrappedLineParser::nextToken(int LevelDifference) { 2651 if (eof()) 2652 return; 2653 flushComments(isOnNewLine(*FormatTok)); 2654 pushToken(FormatTok); 2655 FormatToken *Previous = FormatTok; 2656 if (Style.Language != FormatStyle::LK_JavaScript) 2657 readToken(LevelDifference); 2658 else 2659 readTokenWithJavaScriptASI(); 2660 FormatTok->Previous = Previous; 2661 } 2662 2663 void UnwrappedLineParser::distributeComments( 2664 const SmallVectorImpl<FormatToken *> &Comments, 2665 const FormatToken *NextTok) { 2666 // Whether or not a line comment token continues a line is controlled by 2667 // the method continuesLineCommentSection, with the following caveat: 2668 // 2669 // Define a trail of Comments to be a nonempty proper postfix of Comments such 2670 // that each comment line from the trail is aligned with the next token, if 2671 // the next token exists. If a trail exists, the beginning of the maximal 2672 // trail is marked as a start of a new comment section. 2673 // 2674 // For example in this code: 2675 // 2676 // int a; // line about a 2677 // // line 1 about b 2678 // // line 2 about b 2679 // int b; 2680 // 2681 // the two lines about b form a maximal trail, so there are two sections, the 2682 // first one consisting of the single comment "// line about a" and the 2683 // second one consisting of the next two comments. 2684 if (Comments.empty()) 2685 return; 2686 bool ShouldPushCommentsInCurrentLine = true; 2687 bool HasTrailAlignedWithNextToken = false; 2688 unsigned StartOfTrailAlignedWithNextToken = 0; 2689 if (NextTok) { 2690 // We are skipping the first element intentionally. 2691 for (unsigned i = Comments.size() - 1; i > 0; --i) { 2692 if (Comments[i]->OriginalColumn == NextTok->OriginalColumn) { 2693 HasTrailAlignedWithNextToken = true; 2694 StartOfTrailAlignedWithNextToken = i; 2695 } 2696 } 2697 } 2698 for (unsigned i = 0, e = Comments.size(); i < e; ++i) { 2699 FormatToken *FormatTok = Comments[i]; 2700 if (HasTrailAlignedWithNextToken && i == StartOfTrailAlignedWithNextToken) { 2701 FormatTok->ContinuesLineCommentSection = false; 2702 } else { 2703 FormatTok->ContinuesLineCommentSection = 2704 continuesLineCommentSection(*FormatTok, *Line, CommentPragmasRegex); 2705 } 2706 if (!FormatTok->ContinuesLineCommentSection && 2707 (isOnNewLine(*FormatTok) || FormatTok->IsFirst)) { 2708 ShouldPushCommentsInCurrentLine = false; 2709 } 2710 if (ShouldPushCommentsInCurrentLine) { 2711 pushToken(FormatTok); 2712 } else { 2713 CommentsBeforeNextToken.push_back(FormatTok); 2714 } 2715 } 2716 } 2717 2718 void UnwrappedLineParser::readToken(int LevelDifference) { 2719 SmallVector<FormatToken *, 1> Comments; 2720 do { 2721 FormatTok = Tokens->getNextToken(); 2722 assert(FormatTok); 2723 while (!Line->InPPDirective && FormatTok->Tok.is(tok::hash) && 2724 (FormatTok->HasUnescapedNewline || FormatTok->IsFirst)) { 2725 distributeComments(Comments, FormatTok); 2726 Comments.clear(); 2727 // If there is an unfinished unwrapped line, we flush the preprocessor 2728 // directives only after that unwrapped line was finished later. 2729 bool SwitchToPreprocessorLines = !Line->Tokens.empty(); 2730 ScopedLineState BlockState(*this, SwitchToPreprocessorLines); 2731 assert((LevelDifference >= 0 || 2732 static_cast<unsigned>(-LevelDifference) <= Line->Level) && 2733 "LevelDifference makes Line->Level negative"); 2734 Line->Level += LevelDifference; 2735 // Comments stored before the preprocessor directive need to be output 2736 // before the preprocessor directive, at the same level as the 2737 // preprocessor directive, as we consider them to apply to the directive. 2738 if (Style.IndentPPDirectives == FormatStyle::PPDIS_BeforeHash && 2739 PPBranchLevel > 0) 2740 Line->Level += PPBranchLevel; 2741 flushComments(isOnNewLine(*FormatTok)); 2742 parsePPDirective(); 2743 } 2744 while (FormatTok->Type == TT_ConflictStart || 2745 FormatTok->Type == TT_ConflictEnd || 2746 FormatTok->Type == TT_ConflictAlternative) { 2747 if (FormatTok->Type == TT_ConflictStart) { 2748 conditionalCompilationStart(/*Unreachable=*/false); 2749 } else if (FormatTok->Type == TT_ConflictAlternative) { 2750 conditionalCompilationAlternative(); 2751 } else if (FormatTok->Type == TT_ConflictEnd) { 2752 conditionalCompilationEnd(); 2753 } 2754 FormatTok = Tokens->getNextToken(); 2755 FormatTok->MustBreakBefore = true; 2756 } 2757 2758 if (!PPStack.empty() && (PPStack.back().Kind == PP_Unreachable) && 2759 !Line->InPPDirective) { 2760 continue; 2761 } 2762 2763 if (!FormatTok->Tok.is(tok::comment)) { 2764 distributeComments(Comments, FormatTok); 2765 Comments.clear(); 2766 return; 2767 } 2768 2769 Comments.push_back(FormatTok); 2770 } while (!eof()); 2771 2772 distributeComments(Comments, nullptr); 2773 Comments.clear(); 2774 } 2775 2776 void UnwrappedLineParser::pushToken(FormatToken *Tok) { 2777 Line->Tokens.push_back(UnwrappedLineNode(Tok)); 2778 if (MustBreakBeforeNextToken) { 2779 Line->Tokens.back().Tok->MustBreakBefore = true; 2780 MustBreakBeforeNextToken = false; 2781 } 2782 } 2783 2784 } // end namespace format 2785 } // end namespace clang 2786