1 //===--- UnwrappedLineParser.cpp - Format C++ code ------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 /// 10 /// \file 11 /// \brief This file contains the implementation of the UnwrappedLineParser, 12 /// which turns a stream of tokens into UnwrappedLines. 13 /// 14 //===----------------------------------------------------------------------===// 15 16 #define DEBUG_TYPE "format-parser" 17 18 #include "UnwrappedLineParser.h" 19 #include "llvm/Support/Debug.h" 20 21 namespace clang { 22 namespace format { 23 24 class FormatTokenSource { 25 public: 26 virtual ~FormatTokenSource() {} 27 virtual FormatToken *getNextToken() = 0; 28 29 virtual unsigned getPosition() = 0; 30 virtual FormatToken *setPosition(unsigned Position) = 0; 31 }; 32 33 namespace { 34 35 class ScopedDeclarationState { 36 public: 37 ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack, 38 bool MustBeDeclaration) 39 : Line(Line), Stack(Stack) { 40 Line.MustBeDeclaration = MustBeDeclaration; 41 Stack.push_back(MustBeDeclaration); 42 } 43 ~ScopedDeclarationState() { 44 Stack.pop_back(); 45 if (!Stack.empty()) 46 Line.MustBeDeclaration = Stack.back(); 47 else 48 Line.MustBeDeclaration = true; 49 } 50 51 private: 52 UnwrappedLine &Line; 53 std::vector<bool> &Stack; 54 }; 55 56 class ScopedMacroState : public FormatTokenSource { 57 public: 58 ScopedMacroState(UnwrappedLine &Line, FormatTokenSource *&TokenSource, 59 FormatToken *&ResetToken, bool &StructuralError) 60 : Line(Line), TokenSource(TokenSource), ResetToken(ResetToken), 61 PreviousLineLevel(Line.Level), PreviousTokenSource(TokenSource), 62 StructuralError(StructuralError), 63 PreviousStructuralError(StructuralError), Token(NULL) { 64 TokenSource = this; 65 Line.Level = 0; 66 Line.InPPDirective = true; 67 } 68 69 ~ScopedMacroState() { 70 TokenSource = PreviousTokenSource; 71 ResetToken = Token; 72 Line.InPPDirective = false; 73 Line.Level = PreviousLineLevel; 74 StructuralError = PreviousStructuralError; 75 } 76 77 virtual FormatToken *getNextToken() { 78 // The \c UnwrappedLineParser guards against this by never calling 79 // \c getNextToken() after it has encountered the first eof token. 80 assert(!eof()); 81 Token = PreviousTokenSource->getNextToken(); 82 if (eof()) 83 return getFakeEOF(); 84 return Token; 85 } 86 87 virtual unsigned getPosition() { return PreviousTokenSource->getPosition(); } 88 89 virtual FormatToken *setPosition(unsigned Position) { 90 Token = PreviousTokenSource->setPosition(Position); 91 return Token; 92 } 93 94 private: 95 bool eof() { return Token && Token->HasUnescapedNewline; } 96 97 FormatToken *getFakeEOF() { 98 static bool EOFInitialized = false; 99 static FormatToken FormatTok; 100 if (!EOFInitialized) { 101 FormatTok.Tok.startToken(); 102 FormatTok.Tok.setKind(tok::eof); 103 EOFInitialized = true; 104 } 105 return &FormatTok; 106 } 107 108 UnwrappedLine &Line; 109 FormatTokenSource *&TokenSource; 110 FormatToken *&ResetToken; 111 unsigned PreviousLineLevel; 112 FormatTokenSource *PreviousTokenSource; 113 bool &StructuralError; 114 bool PreviousStructuralError; 115 116 FormatToken *Token; 117 }; 118 119 } // end anonymous namespace 120 121 class ScopedLineState { 122 public: 123 ScopedLineState(UnwrappedLineParser &Parser, 124 bool SwitchToPreprocessorLines = false) 125 : Parser(Parser) { 126 OriginalLines = Parser.CurrentLines; 127 if (SwitchToPreprocessorLines) 128 Parser.CurrentLines = &Parser.PreprocessorDirectives; 129 else if (!Parser.Line->Tokens.empty()) 130 Parser.CurrentLines = &Parser.Line->Tokens.back().Children; 131 PreBlockLine = Parser.Line.take(); 132 Parser.Line.reset(new UnwrappedLine()); 133 Parser.Line->Level = PreBlockLine->Level; 134 Parser.Line->InPPDirective = PreBlockLine->InPPDirective; 135 } 136 137 ~ScopedLineState() { 138 if (!Parser.Line->Tokens.empty()) { 139 Parser.addUnwrappedLine(); 140 } 141 assert(Parser.Line->Tokens.empty()); 142 Parser.Line.reset(PreBlockLine); 143 if (Parser.CurrentLines == &Parser.PreprocessorDirectives) 144 Parser.MustBreakBeforeNextToken = true; 145 Parser.CurrentLines = OriginalLines; 146 } 147 148 private: 149 UnwrappedLineParser &Parser; 150 151 UnwrappedLine *PreBlockLine; 152 SmallVectorImpl<UnwrappedLine> *OriginalLines; 153 }; 154 155 class CompoundStatementIndenter { 156 public: 157 CompoundStatementIndenter(UnwrappedLineParser *Parser, 158 const FormatStyle &Style, unsigned &LineLevel) 159 : LineLevel(LineLevel), OldLineLevel(LineLevel) { 160 if (Style.BreakBeforeBraces == FormatStyle::BS_Allman) { 161 Parser->addUnwrappedLine(); 162 } else if (Style.BreakBeforeBraces == FormatStyle::BS_GNU) { 163 Parser->addUnwrappedLine(); 164 ++LineLevel; 165 } 166 } 167 ~CompoundStatementIndenter() { 168 LineLevel = OldLineLevel; 169 } 170 171 private: 172 unsigned &LineLevel; 173 unsigned OldLineLevel; 174 }; 175 176 namespace { 177 178 class IndexedTokenSource : public FormatTokenSource { 179 public: 180 IndexedTokenSource(ArrayRef<FormatToken *> Tokens) 181 : Tokens(Tokens), Position(-1) {} 182 183 virtual FormatToken *getNextToken() { 184 ++Position; 185 return Tokens[Position]; 186 } 187 188 virtual unsigned getPosition() { 189 assert(Position >= 0); 190 return Position; 191 } 192 193 virtual FormatToken *setPosition(unsigned P) { 194 Position = P; 195 return Tokens[Position]; 196 } 197 198 void reset() { Position = -1; } 199 200 private: 201 ArrayRef<FormatToken *> Tokens; 202 int Position; 203 }; 204 205 } // end anonymous namespace 206 207 UnwrappedLineParser::UnwrappedLineParser(const FormatStyle &Style, 208 ArrayRef<FormatToken *> Tokens, 209 UnwrappedLineConsumer &Callback) 210 : Line(new UnwrappedLine), MustBreakBeforeNextToken(false), 211 CurrentLines(&Lines), StructuralError(false), Style(Style), Tokens(NULL), 212 Callback(Callback), AllTokens(Tokens), PPBranchLevel(-1) {} 213 214 void UnwrappedLineParser::reset() { 215 PPBranchLevel = -1; 216 Line.reset(new UnwrappedLine); 217 CommentsBeforeNextToken.clear(); 218 FormatTok = NULL; 219 MustBreakBeforeNextToken = false; 220 PreprocessorDirectives.clear(); 221 CurrentLines = &Lines; 222 DeclarationScopeStack.clear(); 223 StructuralError = false; 224 PPStack.clear(); 225 } 226 227 bool UnwrappedLineParser::parse() { 228 IndexedTokenSource TokenSource(AllTokens); 229 do { 230 DEBUG(llvm::dbgs() << "----\n"); 231 reset(); 232 Tokens = &TokenSource; 233 TokenSource.reset(); 234 235 readToken(); 236 parseFile(); 237 // Create line with eof token. 238 pushToken(FormatTok); 239 addUnwrappedLine(); 240 241 for (SmallVectorImpl<UnwrappedLine>::iterator I = Lines.begin(), 242 E = Lines.end(); 243 I != E; ++I) { 244 Callback.consumeUnwrappedLine(*I); 245 } 246 Callback.finishRun(); 247 Lines.clear(); 248 while (!PPLevelBranchIndex.empty() && 249 PPLevelBranchIndex.back() + 1 >= PPLevelBranchCount.back()) { 250 PPLevelBranchIndex.resize(PPLevelBranchIndex.size() - 1); 251 PPLevelBranchCount.resize(PPLevelBranchCount.size() - 1); 252 } 253 if (!PPLevelBranchIndex.empty()) { 254 ++PPLevelBranchIndex.back(); 255 assert(PPLevelBranchIndex.size() == PPLevelBranchCount.size()); 256 assert(PPLevelBranchIndex.back() <= PPLevelBranchCount.back()); 257 } 258 } while (!PPLevelBranchIndex.empty()); 259 260 return StructuralError; 261 } 262 263 void UnwrappedLineParser::parseFile() { 264 ScopedDeclarationState DeclarationState( 265 *Line, DeclarationScopeStack, 266 /*MustBeDeclaration=*/ !Line->InPPDirective); 267 parseLevel(/*HasOpeningBrace=*/false); 268 // Make sure to format the remaining tokens. 269 flushComments(true); 270 addUnwrappedLine(); 271 } 272 273 void UnwrappedLineParser::parseLevel(bool HasOpeningBrace) { 274 bool SwitchLabelEncountered = false; 275 do { 276 switch (FormatTok->Tok.getKind()) { 277 case tok::comment: 278 nextToken(); 279 addUnwrappedLine(); 280 break; 281 case tok::l_brace: 282 // FIXME: Add parameter whether this can happen - if this happens, we must 283 // be in a non-declaration context. 284 parseBlock(/*MustBeDeclaration=*/false); 285 addUnwrappedLine(); 286 break; 287 case tok::r_brace: 288 if (HasOpeningBrace) 289 return; 290 StructuralError = true; 291 nextToken(); 292 addUnwrappedLine(); 293 break; 294 case tok::kw_default: 295 case tok::kw_case: 296 if (!SwitchLabelEncountered && 297 (Style.IndentCaseLabels || (Line->InPPDirective && Line->Level == 1))) 298 ++Line->Level; 299 SwitchLabelEncountered = true; 300 parseStructuralElement(); 301 break; 302 default: 303 parseStructuralElement(); 304 break; 305 } 306 } while (!eof()); 307 } 308 309 void UnwrappedLineParser::calculateBraceTypes() { 310 // We'll parse forward through the tokens until we hit 311 // a closing brace or eof - note that getNextToken() will 312 // parse macros, so this will magically work inside macro 313 // definitions, too. 314 unsigned StoredPosition = Tokens->getPosition(); 315 unsigned Position = StoredPosition; 316 FormatToken *Tok = FormatTok; 317 // Keep a stack of positions of lbrace tokens. We will 318 // update information about whether an lbrace starts a 319 // braced init list or a different block during the loop. 320 SmallVector<FormatToken *, 8> LBraceStack; 321 assert(Tok->Tok.is(tok::l_brace)); 322 do { 323 // Get next none-comment token. 324 FormatToken *NextTok; 325 unsigned ReadTokens = 0; 326 do { 327 NextTok = Tokens->getNextToken(); 328 ++ReadTokens; 329 } while (NextTok->is(tok::comment)); 330 331 switch (Tok->Tok.getKind()) { 332 case tok::l_brace: 333 LBraceStack.push_back(Tok); 334 break; 335 case tok::r_brace: 336 if (!LBraceStack.empty()) { 337 if (LBraceStack.back()->BlockKind == BK_Unknown) { 338 // If there is a comma, semicolon or right paren after the closing 339 // brace, we assume this is a braced initializer list. Note that 340 // regardless how we mark inner braces here, we will overwrite the 341 // BlockKind later if we parse a braced list (where all blocks inside 342 // are by default braced lists), or when we explicitly detect blocks 343 // (for example while parsing lambdas). 344 // 345 // We exclude + and - as they can be ObjC visibility modifiers. 346 if (NextTok->isOneOf(tok::comma, tok::semi, tok::r_paren, tok::period, 347 tok::r_square, tok::l_brace, tok::colon) || 348 (NextTok->isBinaryOperator() && 349 !NextTok->isOneOf(tok::plus, tok::minus))) { 350 Tok->BlockKind = BK_BracedInit; 351 LBraceStack.back()->BlockKind = BK_BracedInit; 352 } else { 353 Tok->BlockKind = BK_Block; 354 LBraceStack.back()->BlockKind = BK_Block; 355 } 356 } 357 LBraceStack.pop_back(); 358 } 359 break; 360 case tok::semi: 361 case tok::kw_if: 362 case tok::kw_while: 363 case tok::kw_for: 364 case tok::kw_switch: 365 case tok::kw_try: 366 if (!LBraceStack.empty()) 367 LBraceStack.back()->BlockKind = BK_Block; 368 break; 369 default: 370 break; 371 } 372 Tok = NextTok; 373 Position += ReadTokens; 374 } while (Tok->Tok.isNot(tok::eof) && !LBraceStack.empty()); 375 // Assume other blocks for all unclosed opening braces. 376 for (unsigned i = 0, e = LBraceStack.size(); i != e; ++i) { 377 if (LBraceStack[i]->BlockKind == BK_Unknown) 378 LBraceStack[i]->BlockKind = BK_Block; 379 } 380 381 FormatTok = Tokens->setPosition(StoredPosition); 382 } 383 384 void UnwrappedLineParser::parseBlock(bool MustBeDeclaration, bool AddLevel, 385 bool MunchSemi) { 386 assert(FormatTok->Tok.is(tok::l_brace) && "'{' expected"); 387 unsigned InitialLevel = Line->Level; 388 nextToken(); 389 390 addUnwrappedLine(); 391 392 ScopedDeclarationState DeclarationState(*Line, DeclarationScopeStack, 393 MustBeDeclaration); 394 if (AddLevel) 395 ++Line->Level; 396 parseLevel(/*HasOpeningBrace=*/true); 397 398 if (!FormatTok->Tok.is(tok::r_brace)) { 399 Line->Level = InitialLevel; 400 StructuralError = true; 401 return; 402 } 403 404 nextToken(); // Munch the closing brace. 405 if (MunchSemi && FormatTok->Tok.is(tok::semi)) 406 nextToken(); 407 Line->Level = InitialLevel; 408 } 409 410 void UnwrappedLineParser::parseChildBlock() { 411 FormatTok->BlockKind = BK_Block; 412 nextToken(); 413 { 414 ScopedLineState LineState(*this); 415 ScopedDeclarationState DeclarationState(*Line, DeclarationScopeStack, 416 /*MustBeDeclaration=*/false); 417 Line->Level += 1; 418 parseLevel(/*HasOpeningBrace=*/true); 419 Line->Level -= 1; 420 } 421 nextToken(); 422 } 423 424 void UnwrappedLineParser::parsePPDirective() { 425 assert(FormatTok->Tok.is(tok::hash) && "'#' expected"); 426 ScopedMacroState MacroState(*Line, Tokens, FormatTok, StructuralError); 427 nextToken(); 428 429 if (FormatTok->Tok.getIdentifierInfo() == NULL) { 430 parsePPUnknown(); 431 return; 432 } 433 434 switch (FormatTok->Tok.getIdentifierInfo()->getPPKeywordID()) { 435 case tok::pp_define: 436 parsePPDefine(); 437 return; 438 case tok::pp_if: 439 parsePPIf(/*IfDef=*/false); 440 break; 441 case tok::pp_ifdef: 442 case tok::pp_ifndef: 443 parsePPIf(/*IfDef=*/true); 444 break; 445 case tok::pp_else: 446 parsePPElse(); 447 break; 448 case tok::pp_elif: 449 parsePPElIf(); 450 break; 451 case tok::pp_endif: 452 parsePPEndIf(); 453 break; 454 default: 455 parsePPUnknown(); 456 break; 457 } 458 } 459 460 void UnwrappedLineParser::pushPPConditional() { 461 if (!PPStack.empty() && PPStack.back() == PP_Unreachable) 462 PPStack.push_back(PP_Unreachable); 463 else 464 PPStack.push_back(PP_Conditional); 465 } 466 467 void UnwrappedLineParser::parsePPIf(bool IfDef) { 468 ++PPBranchLevel; 469 assert(PPBranchLevel >= 0 && PPBranchLevel <= (int)PPLevelBranchIndex.size()); 470 if (PPBranchLevel == (int)PPLevelBranchIndex.size()) { 471 PPLevelBranchIndex.push_back(0); 472 PPLevelBranchCount.push_back(0); 473 } 474 PPChainBranchIndex.push(0); 475 nextToken(); 476 bool IsLiteralFalse = (FormatTok->Tok.isLiteral() && 477 StringRef(FormatTok->Tok.getLiteralData(), 478 FormatTok->Tok.getLength()) == "0") || 479 FormatTok->Tok.is(tok::kw_false); 480 if ((!IfDef && IsLiteralFalse) || PPLevelBranchIndex[PPBranchLevel] > 0) { 481 PPStack.push_back(PP_Unreachable); 482 } else { 483 pushPPConditional(); 484 } 485 parsePPUnknown(); 486 } 487 488 void UnwrappedLineParser::parsePPElse() { 489 if (!PPStack.empty()) 490 PPStack.pop_back(); 491 assert(PPBranchLevel < (int)PPLevelBranchIndex.size()); 492 if (!PPChainBranchIndex.empty()) 493 ++PPChainBranchIndex.top(); 494 if (PPBranchLevel >= 0 && !PPChainBranchIndex.empty() && 495 PPLevelBranchIndex[PPBranchLevel] != PPChainBranchIndex.top()) { 496 PPStack.push_back(PP_Unreachable); 497 } else { 498 pushPPConditional(); 499 } 500 parsePPUnknown(); 501 } 502 503 void UnwrappedLineParser::parsePPElIf() { parsePPElse(); } 504 505 void UnwrappedLineParser::parsePPEndIf() { 506 assert(PPBranchLevel < (int)PPLevelBranchIndex.size()); 507 if (PPBranchLevel >= 0 && !PPChainBranchIndex.empty()) { 508 if (PPChainBranchIndex.top() + 1 > PPLevelBranchCount[PPBranchLevel]) { 509 PPLevelBranchCount[PPBranchLevel] = PPChainBranchIndex.top() + 1; 510 } 511 } 512 // Guard against #endif's without #if. 513 if (PPBranchLevel > 0) 514 --PPBranchLevel; 515 if (!PPChainBranchIndex.empty()) 516 PPChainBranchIndex.pop(); 517 if (!PPStack.empty()) 518 PPStack.pop_back(); 519 parsePPUnknown(); 520 } 521 522 void UnwrappedLineParser::parsePPDefine() { 523 nextToken(); 524 525 if (FormatTok->Tok.getKind() != tok::identifier) { 526 parsePPUnknown(); 527 return; 528 } 529 nextToken(); 530 if (FormatTok->Tok.getKind() == tok::l_paren && 531 FormatTok->WhitespaceRange.getBegin() == 532 FormatTok->WhitespaceRange.getEnd()) { 533 parseParens(); 534 } 535 addUnwrappedLine(); 536 Line->Level = 1; 537 538 // Errors during a preprocessor directive can only affect the layout of the 539 // preprocessor directive, and thus we ignore them. An alternative approach 540 // would be to use the same approach we use on the file level (no 541 // re-indentation if there was a structural error) within the macro 542 // definition. 543 parseFile(); 544 } 545 546 void UnwrappedLineParser::parsePPUnknown() { 547 do { 548 nextToken(); 549 } while (!eof()); 550 addUnwrappedLine(); 551 } 552 553 // Here we blacklist certain tokens that are not usually the first token in an 554 // unwrapped line. This is used in attempt to distinguish macro calls without 555 // trailing semicolons from other constructs split to several lines. 556 bool tokenCanStartNewLine(clang::Token Tok) { 557 // Semicolon can be a null-statement, l_square can be a start of a macro or 558 // a C++11 attribute, but this doesn't seem to be common. 559 return Tok.isNot(tok::semi) && Tok.isNot(tok::l_brace) && 560 Tok.isNot(tok::l_square) && 561 // Tokens that can only be used as binary operators and a part of 562 // overloaded operator names. 563 Tok.isNot(tok::period) && Tok.isNot(tok::periodstar) && 564 Tok.isNot(tok::arrow) && Tok.isNot(tok::arrowstar) && 565 Tok.isNot(tok::less) && Tok.isNot(tok::greater) && 566 Tok.isNot(tok::slash) && Tok.isNot(tok::percent) && 567 Tok.isNot(tok::lessless) && Tok.isNot(tok::greatergreater) && 568 Tok.isNot(tok::equal) && Tok.isNot(tok::plusequal) && 569 Tok.isNot(tok::minusequal) && Tok.isNot(tok::starequal) && 570 Tok.isNot(tok::slashequal) && Tok.isNot(tok::percentequal) && 571 Tok.isNot(tok::ampequal) && Tok.isNot(tok::pipeequal) && 572 Tok.isNot(tok::caretequal) && Tok.isNot(tok::greatergreaterequal) && 573 Tok.isNot(tok::lesslessequal) && 574 // Colon is used in labels, base class lists, initializer lists, 575 // range-based for loops, ternary operator, but should never be the 576 // first token in an unwrapped line. 577 Tok.isNot(tok::colon); 578 } 579 580 void UnwrappedLineParser::parseStructuralElement() { 581 assert(!FormatTok->Tok.is(tok::l_brace)); 582 switch (FormatTok->Tok.getKind()) { 583 case tok::at: 584 nextToken(); 585 if (FormatTok->Tok.is(tok::l_brace)) { 586 parseBracedList(); 587 break; 588 } 589 switch (FormatTok->Tok.getObjCKeywordID()) { 590 case tok::objc_public: 591 case tok::objc_protected: 592 case tok::objc_package: 593 case tok::objc_private: 594 return parseAccessSpecifier(); 595 case tok::objc_interface: 596 case tok::objc_implementation: 597 return parseObjCInterfaceOrImplementation(); 598 case tok::objc_protocol: 599 return parseObjCProtocol(); 600 case tok::objc_end: 601 return; // Handled by the caller. 602 case tok::objc_optional: 603 case tok::objc_required: 604 nextToken(); 605 addUnwrappedLine(); 606 return; 607 default: 608 break; 609 } 610 break; 611 case tok::kw_namespace: 612 parseNamespace(); 613 return; 614 case tok::kw_inline: 615 nextToken(); 616 if (FormatTok->Tok.is(tok::kw_namespace)) { 617 parseNamespace(); 618 return; 619 } 620 break; 621 case tok::kw_public: 622 case tok::kw_protected: 623 case tok::kw_private: 624 parseAccessSpecifier(); 625 return; 626 case tok::kw_if: 627 parseIfThenElse(); 628 return; 629 case tok::kw_for: 630 case tok::kw_while: 631 parseForOrWhileLoop(); 632 return; 633 case tok::kw_do: 634 parseDoWhile(); 635 return; 636 case tok::kw_switch: 637 parseSwitch(); 638 return; 639 case tok::kw_default: 640 nextToken(); 641 parseLabel(); 642 return; 643 case tok::kw_case: 644 parseCaseLabel(); 645 return; 646 case tok::kw_extern: 647 nextToken(); 648 if (FormatTok->Tok.is(tok::string_literal)) { 649 nextToken(); 650 if (FormatTok->Tok.is(tok::l_brace)) { 651 parseBlock(/*MustBeDeclaration=*/true, /*AddLevel=*/false); 652 addUnwrappedLine(); 653 return; 654 } 655 } 656 // In all other cases, parse the declaration. 657 break; 658 default: 659 break; 660 } 661 do { 662 switch (FormatTok->Tok.getKind()) { 663 case tok::at: 664 nextToken(); 665 if (FormatTok->Tok.is(tok::l_brace)) 666 parseBracedList(); 667 break; 668 case tok::kw_enum: 669 parseEnum(); 670 break; 671 case tok::kw_typedef: 672 nextToken(); 673 // FIXME: Use the IdentifierTable instead. 674 if (FormatTok->TokenText == "NS_ENUM") 675 parseEnum(); 676 break; 677 case tok::kw_struct: 678 case tok::kw_union: 679 case tok::kw_class: 680 parseRecord(); 681 // A record declaration or definition is always the start of a structural 682 // element. 683 break; 684 case tok::semi: 685 nextToken(); 686 addUnwrappedLine(); 687 return; 688 case tok::r_brace: 689 addUnwrappedLine(); 690 return; 691 case tok::l_paren: 692 parseParens(); 693 break; 694 case tok::caret: 695 nextToken(); 696 if (FormatTok->is(tok::l_brace)) { 697 parseChildBlock(); 698 } 699 break; 700 case tok::l_brace: 701 if (!tryToParseBracedList()) { 702 // A block outside of parentheses must be the last part of a 703 // structural element. 704 // FIXME: Figure out cases where this is not true, and add projections 705 // for them (the one we know is missing are lambdas). 706 if (Style.BreakBeforeBraces != FormatStyle::BS_Attach) 707 addUnwrappedLine(); 708 FormatTok->Type = TT_FunctionLBrace; 709 parseBlock(/*MustBeDeclaration=*/false); 710 addUnwrappedLine(); 711 return; 712 } 713 // Otherwise this was a braced init list, and the structural 714 // element continues. 715 break; 716 case tok::identifier: { 717 StringRef Text = FormatTok->TokenText; 718 nextToken(); 719 if (Line->Tokens.size() == 1) { 720 if (FormatTok->Tok.is(tok::colon)) { 721 parseLabel(); 722 return; 723 } 724 // Recognize function-like macro usages without trailing semicolon. 725 if (FormatTok->Tok.is(tok::l_paren)) { 726 parseParens(); 727 if (FormatTok->NewlinesBefore > 0 && 728 tokenCanStartNewLine(FormatTok->Tok)) { 729 addUnwrappedLine(); 730 return; 731 } 732 } else if (FormatTok->HasUnescapedNewline && Text.size() >= 5 && 733 Text == Text.upper()) { 734 // Recognize free-standing macros like Q_OBJECT. 735 addUnwrappedLine(); 736 return; 737 } 738 } 739 break; 740 } 741 case tok::equal: 742 nextToken(); 743 if (FormatTok->Tok.is(tok::l_brace)) { 744 parseBracedList(); 745 } 746 break; 747 case tok::l_square: 748 parseSquare(); 749 break; 750 default: 751 nextToken(); 752 break; 753 } 754 } while (!eof()); 755 } 756 757 bool UnwrappedLineParser::tryToParseLambda() { 758 // FIXME: This is a dirty way to access the previous token. Find a better 759 // solution. 760 if (!Line->Tokens.empty() && 761 (Line->Tokens.back().Tok->isOneOf(tok::identifier, tok::kw_operator) || 762 Line->Tokens.back().Tok->isSimpleTypeSpecifier())) { 763 nextToken(); 764 return false; 765 } 766 assert(FormatTok->is(tok::l_square)); 767 FormatToken &LSquare = *FormatTok; 768 if (!tryToParseLambdaIntroducer()) 769 return false; 770 771 while (FormatTok && FormatTok->isNot(tok::l_brace)) { 772 if (FormatTok->isSimpleTypeSpecifier()) { 773 nextToken(); 774 continue; 775 } 776 switch (FormatTok->Tok.getKind()) { 777 case tok::l_brace: 778 break; 779 case tok::l_paren: 780 parseParens(); 781 break; 782 case tok::less: 783 case tok::greater: 784 case tok::identifier: 785 case tok::kw_mutable: 786 case tok::arrow: 787 nextToken(); 788 break; 789 default: 790 return true; 791 } 792 } 793 LSquare.Type = TT_LambdaLSquare; 794 parseChildBlock(); 795 return true; 796 } 797 798 bool UnwrappedLineParser::tryToParseLambdaIntroducer() { 799 nextToken(); 800 if (FormatTok->is(tok::equal)) { 801 nextToken(); 802 if (FormatTok->is(tok::r_square)) { 803 nextToken(); 804 return true; 805 } 806 if (FormatTok->isNot(tok::comma)) 807 return false; 808 nextToken(); 809 } else if (FormatTok->is(tok::amp)) { 810 nextToken(); 811 if (FormatTok->is(tok::r_square)) { 812 nextToken(); 813 return true; 814 } 815 if (!FormatTok->isOneOf(tok::comma, tok::identifier)) { 816 return false; 817 } 818 if (FormatTok->is(tok::comma)) 819 nextToken(); 820 } else if (FormatTok->is(tok::r_square)) { 821 nextToken(); 822 return true; 823 } 824 do { 825 if (FormatTok->is(tok::amp)) 826 nextToken(); 827 if (!FormatTok->isOneOf(tok::identifier, tok::kw_this)) 828 return false; 829 nextToken(); 830 if (FormatTok->is(tok::comma)) { 831 nextToken(); 832 } else if (FormatTok->is(tok::r_square)) { 833 nextToken(); 834 return true; 835 } else { 836 return false; 837 } 838 } while (!eof()); 839 return false; 840 } 841 842 bool UnwrappedLineParser::tryToParseBracedList() { 843 if (FormatTok->BlockKind == BK_Unknown) 844 calculateBraceTypes(); 845 assert(FormatTok->BlockKind != BK_Unknown); 846 if (FormatTok->BlockKind == BK_Block) 847 return false; 848 parseBracedList(); 849 return true; 850 } 851 852 bool UnwrappedLineParser::parseBracedList(bool ContinueOnSemicolons) { 853 bool HasError = false; 854 nextToken(); 855 856 // FIXME: Once we have an expression parser in the UnwrappedLineParser, 857 // replace this by using parseAssigmentExpression() inside. 858 do { 859 // FIXME: When we start to support lambdas, we'll want to parse them away 860 // here, otherwise our bail-out scenarios below break. The better solution 861 // might be to just implement a more or less complete expression parser. 862 switch (FormatTok->Tok.getKind()) { 863 case tok::caret: 864 nextToken(); 865 if (FormatTok->is(tok::l_brace)) { 866 parseChildBlock(); 867 } 868 break; 869 case tok::l_square: 870 tryToParseLambda(); 871 break; 872 case tok::l_brace: 873 // Assume there are no blocks inside a braced init list apart 874 // from the ones we explicitly parse out (like lambdas). 875 FormatTok->BlockKind = BK_BracedInit; 876 parseBracedList(); 877 break; 878 case tok::r_brace: 879 nextToken(); 880 return !HasError; 881 case tok::semi: 882 HasError = true; 883 if (!ContinueOnSemicolons) 884 return !HasError; 885 nextToken(); 886 break; 887 case tok::comma: 888 nextToken(); 889 break; 890 default: 891 nextToken(); 892 break; 893 } 894 } while (!eof()); 895 return false; 896 } 897 898 void UnwrappedLineParser::parseParens() { 899 assert(FormatTok->Tok.is(tok::l_paren) && "'(' expected."); 900 nextToken(); 901 do { 902 switch (FormatTok->Tok.getKind()) { 903 case tok::l_paren: 904 parseParens(); 905 break; 906 case tok::r_paren: 907 nextToken(); 908 return; 909 case tok::r_brace: 910 // A "}" inside parenthesis is an error if there wasn't a matching "{". 911 return; 912 case tok::l_square: 913 tryToParseLambda(); 914 break; 915 case tok::l_brace: { 916 if (!tryToParseBracedList()) { 917 parseChildBlock(); 918 } 919 break; 920 } 921 case tok::at: 922 nextToken(); 923 if (FormatTok->Tok.is(tok::l_brace)) 924 parseBracedList(); 925 break; 926 default: 927 nextToken(); 928 break; 929 } 930 } while (!eof()); 931 } 932 933 void UnwrappedLineParser::parseSquare() { 934 assert(FormatTok->Tok.is(tok::l_square) && "'[' expected."); 935 if (tryToParseLambda()) 936 return; 937 do { 938 switch (FormatTok->Tok.getKind()) { 939 case tok::l_paren: 940 parseParens(); 941 break; 942 case tok::r_square: 943 nextToken(); 944 return; 945 case tok::r_brace: 946 // A "}" inside parenthesis is an error if there wasn't a matching "{". 947 return; 948 case tok::l_square: 949 parseSquare(); 950 break; 951 case tok::l_brace: { 952 if (!tryToParseBracedList()) { 953 parseChildBlock(); 954 } 955 break; 956 } 957 case tok::at: 958 nextToken(); 959 if (FormatTok->Tok.is(tok::l_brace)) 960 parseBracedList(); 961 break; 962 default: 963 nextToken(); 964 break; 965 } 966 } while (!eof()); 967 } 968 969 void UnwrappedLineParser::parseIfThenElse() { 970 assert(FormatTok->Tok.is(tok::kw_if) && "'if' expected"); 971 nextToken(); 972 if (FormatTok->Tok.is(tok::l_paren)) 973 parseParens(); 974 bool NeedsUnwrappedLine = false; 975 if (FormatTok->Tok.is(tok::l_brace)) { 976 CompoundStatementIndenter Indenter(this, Style, Line->Level); 977 parseBlock(/*MustBeDeclaration=*/false); 978 if (Style.BreakBeforeBraces == FormatStyle::BS_Allman || 979 Style.BreakBeforeBraces == FormatStyle::BS_GNU) { 980 addUnwrappedLine(); 981 } else { 982 NeedsUnwrappedLine = true; 983 } 984 } else { 985 addUnwrappedLine(); 986 ++Line->Level; 987 parseStructuralElement(); 988 --Line->Level; 989 } 990 if (FormatTok->Tok.is(tok::kw_else)) { 991 nextToken(); 992 if (FormatTok->Tok.is(tok::l_brace)) { 993 CompoundStatementIndenter Indenter(this, Style, Line->Level); 994 parseBlock(/*MustBeDeclaration=*/false); 995 addUnwrappedLine(); 996 } else if (FormatTok->Tok.is(tok::kw_if)) { 997 parseIfThenElse(); 998 } else { 999 addUnwrappedLine(); 1000 ++Line->Level; 1001 parseStructuralElement(); 1002 --Line->Level; 1003 } 1004 } else if (NeedsUnwrappedLine) { 1005 addUnwrappedLine(); 1006 } 1007 } 1008 1009 void UnwrappedLineParser::parseNamespace() { 1010 assert(FormatTok->Tok.is(tok::kw_namespace) && "'namespace' expected"); 1011 nextToken(); 1012 if (FormatTok->Tok.is(tok::identifier)) 1013 nextToken(); 1014 if (FormatTok->Tok.is(tok::l_brace)) { 1015 if (Style.BreakBeforeBraces == FormatStyle::BS_Linux || 1016 Style.BreakBeforeBraces == FormatStyle::BS_Allman || 1017 Style.BreakBeforeBraces == FormatStyle::BS_GNU) 1018 addUnwrappedLine(); 1019 1020 bool AddLevel = Style.NamespaceIndentation == FormatStyle::NI_All || 1021 (Style.NamespaceIndentation == FormatStyle::NI_Inner && 1022 DeclarationScopeStack.size() > 1); 1023 parseBlock(/*MustBeDeclaration=*/true, AddLevel); 1024 // Munch the semicolon after a namespace. This is more common than one would 1025 // think. Puttin the semicolon into its own line is very ugly. 1026 if (FormatTok->Tok.is(tok::semi)) 1027 nextToken(); 1028 addUnwrappedLine(); 1029 } 1030 // FIXME: Add error handling. 1031 } 1032 1033 void UnwrappedLineParser::parseForOrWhileLoop() { 1034 assert((FormatTok->Tok.is(tok::kw_for) || FormatTok->Tok.is(tok::kw_while)) && 1035 "'for' or 'while' expected"); 1036 nextToken(); 1037 if (FormatTok->Tok.is(tok::l_paren)) 1038 parseParens(); 1039 if (FormatTok->Tok.is(tok::l_brace)) { 1040 CompoundStatementIndenter Indenter(this, Style, Line->Level); 1041 parseBlock(/*MustBeDeclaration=*/false); 1042 addUnwrappedLine(); 1043 } else { 1044 addUnwrappedLine(); 1045 ++Line->Level; 1046 parseStructuralElement(); 1047 --Line->Level; 1048 } 1049 } 1050 1051 void UnwrappedLineParser::parseDoWhile() { 1052 assert(FormatTok->Tok.is(tok::kw_do) && "'do' expected"); 1053 nextToken(); 1054 if (FormatTok->Tok.is(tok::l_brace)) { 1055 CompoundStatementIndenter Indenter(this, Style, Line->Level); 1056 parseBlock(/*MustBeDeclaration=*/false); 1057 if (Style.BreakBeforeBraces == FormatStyle::BS_GNU) 1058 addUnwrappedLine(); 1059 } else { 1060 addUnwrappedLine(); 1061 ++Line->Level; 1062 parseStructuralElement(); 1063 --Line->Level; 1064 } 1065 1066 // FIXME: Add error handling. 1067 if (!FormatTok->Tok.is(tok::kw_while)) { 1068 addUnwrappedLine(); 1069 return; 1070 } 1071 1072 nextToken(); 1073 parseStructuralElement(); 1074 } 1075 1076 void UnwrappedLineParser::parseLabel() { 1077 nextToken(); 1078 unsigned OldLineLevel = Line->Level; 1079 if (Line->Level > 1 || (!Line->InPPDirective && Line->Level > 0)) 1080 --Line->Level; 1081 if (CommentsBeforeNextToken.empty() && FormatTok->Tok.is(tok::l_brace)) { 1082 CompoundStatementIndenter Indenter(this, Style, Line->Level); 1083 parseBlock(/*MustBeDeclaration=*/false); 1084 if (FormatTok->Tok.is(tok::kw_break)) { 1085 // "break;" after "}" on its own line only for BS_Allman and BS_GNU 1086 if (Style.BreakBeforeBraces == FormatStyle::BS_Allman || 1087 Style.BreakBeforeBraces == FormatStyle::BS_GNU) { 1088 addUnwrappedLine(); 1089 } 1090 parseStructuralElement(); 1091 } 1092 addUnwrappedLine(); 1093 } else { 1094 addUnwrappedLine(); 1095 } 1096 Line->Level = OldLineLevel; 1097 } 1098 1099 void UnwrappedLineParser::parseCaseLabel() { 1100 assert(FormatTok->Tok.is(tok::kw_case) && "'case' expected"); 1101 // FIXME: fix handling of complex expressions here. 1102 do { 1103 nextToken(); 1104 } while (!eof() && !FormatTok->Tok.is(tok::colon)); 1105 parseLabel(); 1106 } 1107 1108 void UnwrappedLineParser::parseSwitch() { 1109 assert(FormatTok->Tok.is(tok::kw_switch) && "'switch' expected"); 1110 nextToken(); 1111 if (FormatTok->Tok.is(tok::l_paren)) 1112 parseParens(); 1113 if (FormatTok->Tok.is(tok::l_brace)) { 1114 CompoundStatementIndenter Indenter(this, Style, Line->Level); 1115 parseBlock(/*MustBeDeclaration=*/false); 1116 addUnwrappedLine(); 1117 } else { 1118 addUnwrappedLine(); 1119 ++Line->Level; 1120 parseStructuralElement(); 1121 --Line->Level; 1122 } 1123 } 1124 1125 void UnwrappedLineParser::parseAccessSpecifier() { 1126 nextToken(); 1127 // Understand Qt's slots. 1128 if (FormatTok->is(tok::identifier) && 1129 (FormatTok->TokenText == "slots" || FormatTok->TokenText == "Q_SLOTS")) 1130 nextToken(); 1131 // Otherwise, we don't know what it is, and we'd better keep the next token. 1132 if (FormatTok->Tok.is(tok::colon)) 1133 nextToken(); 1134 addUnwrappedLine(); 1135 } 1136 1137 void UnwrappedLineParser::parseEnum() { 1138 if (FormatTok->Tok.is(tok::kw_enum)) { 1139 // Won't be 'enum' for NS_ENUMs. 1140 nextToken(); 1141 } 1142 // Eat up enum class ... 1143 if (FormatTok->Tok.is(tok::kw_class) || 1144 FormatTok->Tok.is(tok::kw_struct)) 1145 nextToken(); 1146 while (FormatTok->Tok.getIdentifierInfo() || 1147 FormatTok->isOneOf(tok::colon, tok::coloncolon)) { 1148 nextToken(); 1149 // We can have macros or attributes in between 'enum' and the enum name. 1150 if (FormatTok->Tok.is(tok::l_paren)) { 1151 parseParens(); 1152 } 1153 if (FormatTok->Tok.is(tok::identifier)) 1154 nextToken(); 1155 } 1156 if (FormatTok->Tok.is(tok::l_brace)) { 1157 FormatTok->BlockKind = BK_Block; 1158 bool HasError = !parseBracedList(/*ContinueOnSemicolons=*/true); 1159 if (HasError) { 1160 if (FormatTok->is(tok::semi)) 1161 nextToken(); 1162 addUnwrappedLine(); 1163 } 1164 } 1165 // We fall through to parsing a structural element afterwards, so that in 1166 // enum A {} n, m; 1167 // "} n, m;" will end up in one unwrapped line. 1168 } 1169 1170 void UnwrappedLineParser::parseRecord() { 1171 nextToken(); 1172 if (FormatTok->Tok.is(tok::identifier) || 1173 FormatTok->Tok.is(tok::kw___attribute) || 1174 FormatTok->Tok.is(tok::kw___declspec) || 1175 FormatTok->Tok.is(tok::kw_alignas)) { 1176 nextToken(); 1177 // We can have macros or attributes in between 'class' and the class name. 1178 if (FormatTok->Tok.is(tok::l_paren)) { 1179 parseParens(); 1180 } 1181 // The actual identifier can be a nested name specifier, and in macros 1182 // it is often token-pasted. 1183 while (FormatTok->Tok.is(tok::identifier) || 1184 FormatTok->Tok.is(tok::coloncolon) || 1185 FormatTok->Tok.is(tok::hashhash)) 1186 nextToken(); 1187 1188 // Note that parsing away template declarations here leads to incorrectly 1189 // accepting function declarations as record declarations. 1190 // In general, we cannot solve this problem. Consider: 1191 // class A<int> B() {} 1192 // which can be a function definition or a class definition when B() is a 1193 // macro. If we find enough real-world cases where this is a problem, we 1194 // can parse for the 'template' keyword in the beginning of the statement, 1195 // and thus rule out the record production in case there is no template 1196 // (this would still leave us with an ambiguity between template function 1197 // and class declarations). 1198 if (FormatTok->Tok.is(tok::colon) || FormatTok->Tok.is(tok::less)) { 1199 while (!eof() && FormatTok->Tok.isNot(tok::l_brace)) { 1200 if (FormatTok->Tok.is(tok::semi)) 1201 return; 1202 nextToken(); 1203 } 1204 } 1205 } 1206 if (FormatTok->Tok.is(tok::l_brace)) { 1207 if (Style.BreakBeforeBraces == FormatStyle::BS_Linux || 1208 Style.BreakBeforeBraces == FormatStyle::BS_Allman || 1209 Style.BreakBeforeBraces == FormatStyle::BS_GNU) 1210 addUnwrappedLine(); 1211 1212 parseBlock(/*MustBeDeclaration=*/true, /*Addlevel=*/true, 1213 /*MunchSemi=*/false); 1214 } 1215 // We fall through to parsing a structural element afterwards, so 1216 // class A {} n, m; 1217 // will end up in one unwrapped line. 1218 } 1219 1220 void UnwrappedLineParser::parseObjCProtocolList() { 1221 assert(FormatTok->Tok.is(tok::less) && "'<' expected."); 1222 do 1223 nextToken(); 1224 while (!eof() && FormatTok->Tok.isNot(tok::greater)); 1225 nextToken(); // Skip '>'. 1226 } 1227 1228 void UnwrappedLineParser::parseObjCUntilAtEnd() { 1229 do { 1230 if (FormatTok->Tok.isObjCAtKeyword(tok::objc_end)) { 1231 nextToken(); 1232 addUnwrappedLine(); 1233 break; 1234 } 1235 if (FormatTok->is(tok::l_brace)) { 1236 parseBlock(/*MustBeDeclaration=*/false); 1237 // In ObjC interfaces, nothing should be following the "}". 1238 addUnwrappedLine(); 1239 } else if (FormatTok->is(tok::r_brace)) { 1240 // Ignore stray "}". parseStructuralElement doesn't consume them. 1241 nextToken(); 1242 addUnwrappedLine(); 1243 } else { 1244 parseStructuralElement(); 1245 } 1246 } while (!eof()); 1247 } 1248 1249 void UnwrappedLineParser::parseObjCInterfaceOrImplementation() { 1250 nextToken(); 1251 nextToken(); // interface name 1252 1253 // @interface can be followed by either a base class, or a category. 1254 if (FormatTok->Tok.is(tok::colon)) { 1255 nextToken(); 1256 nextToken(); // base class name 1257 } else if (FormatTok->Tok.is(tok::l_paren)) 1258 // Skip category, if present. 1259 parseParens(); 1260 1261 if (FormatTok->Tok.is(tok::less)) 1262 parseObjCProtocolList(); 1263 1264 // If instance variables are present, keep the '{' on the first line too. 1265 if (FormatTok->Tok.is(tok::l_brace)) 1266 parseBlock(/*MustBeDeclaration=*/true); 1267 1268 // With instance variables, this puts '}' on its own line. Without instance 1269 // variables, this ends the @interface line. 1270 addUnwrappedLine(); 1271 1272 parseObjCUntilAtEnd(); 1273 } 1274 1275 void UnwrappedLineParser::parseObjCProtocol() { 1276 nextToken(); 1277 nextToken(); // protocol name 1278 1279 if (FormatTok->Tok.is(tok::less)) 1280 parseObjCProtocolList(); 1281 1282 // Check for protocol declaration. 1283 if (FormatTok->Tok.is(tok::semi)) { 1284 nextToken(); 1285 return addUnwrappedLine(); 1286 } 1287 1288 addUnwrappedLine(); 1289 parseObjCUntilAtEnd(); 1290 } 1291 1292 LLVM_ATTRIBUTE_UNUSED static void printDebugInfo(const UnwrappedLine &Line, 1293 StringRef Prefix = "") { 1294 llvm::dbgs() << Prefix << "Line(" << Line.Level << ")" 1295 << (Line.InPPDirective ? " MACRO" : "") << ": "; 1296 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), 1297 E = Line.Tokens.end(); 1298 I != E; ++I) { 1299 llvm::dbgs() << I->Tok->Tok.getName() << "[" << I->Tok->Type << "] "; 1300 } 1301 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), 1302 E = Line.Tokens.end(); 1303 I != E; ++I) { 1304 const UnwrappedLineNode &Node = *I; 1305 for (SmallVectorImpl<UnwrappedLine>::const_iterator 1306 I = Node.Children.begin(), 1307 E = Node.Children.end(); 1308 I != E; ++I) { 1309 printDebugInfo(*I, "\nChild: "); 1310 } 1311 } 1312 llvm::dbgs() << "\n"; 1313 } 1314 1315 void UnwrappedLineParser::addUnwrappedLine() { 1316 if (Line->Tokens.empty()) 1317 return; 1318 DEBUG({ 1319 if (CurrentLines == &Lines) 1320 printDebugInfo(*Line); 1321 }); 1322 CurrentLines->push_back(*Line); 1323 Line->Tokens.clear(); 1324 if (CurrentLines == &Lines && !PreprocessorDirectives.empty()) { 1325 for (SmallVectorImpl<UnwrappedLine>::iterator 1326 I = PreprocessorDirectives.begin(), 1327 E = PreprocessorDirectives.end(); 1328 I != E; ++I) { 1329 CurrentLines->push_back(*I); 1330 } 1331 PreprocessorDirectives.clear(); 1332 } 1333 } 1334 1335 bool UnwrappedLineParser::eof() const { return FormatTok->Tok.is(tok::eof); } 1336 1337 void UnwrappedLineParser::flushComments(bool NewlineBeforeNext) { 1338 bool JustComments = Line->Tokens.empty(); 1339 for (SmallVectorImpl<FormatToken *>::const_iterator 1340 I = CommentsBeforeNextToken.begin(), 1341 E = CommentsBeforeNextToken.end(); 1342 I != E; ++I) { 1343 if ((*I)->NewlinesBefore && JustComments) { 1344 addUnwrappedLine(); 1345 } 1346 pushToken(*I); 1347 } 1348 if (NewlineBeforeNext && JustComments) { 1349 addUnwrappedLine(); 1350 } 1351 CommentsBeforeNextToken.clear(); 1352 } 1353 1354 void UnwrappedLineParser::nextToken() { 1355 if (eof()) 1356 return; 1357 flushComments(FormatTok->NewlinesBefore > 0); 1358 pushToken(FormatTok); 1359 readToken(); 1360 } 1361 1362 void UnwrappedLineParser::readToken() { 1363 bool CommentsInCurrentLine = true; 1364 do { 1365 FormatTok = Tokens->getNextToken(); 1366 while (!Line->InPPDirective && FormatTok->Tok.is(tok::hash) && 1367 (FormatTok->HasUnescapedNewline || FormatTok->IsFirst)) { 1368 // If there is an unfinished unwrapped line, we flush the preprocessor 1369 // directives only after that unwrapped line was finished later. 1370 bool SwitchToPreprocessorLines = 1371 !Line->Tokens.empty() && CurrentLines == &Lines; 1372 ScopedLineState BlockState(*this, SwitchToPreprocessorLines); 1373 // Comments stored before the preprocessor directive need to be output 1374 // before the preprocessor directive, at the same level as the 1375 // preprocessor directive, as we consider them to apply to the directive. 1376 flushComments(FormatTok->NewlinesBefore > 0); 1377 parsePPDirective(); 1378 } 1379 1380 if (!PPStack.empty() && (PPStack.back() == PP_Unreachable) && 1381 !Line->InPPDirective) { 1382 continue; 1383 } 1384 1385 if (!FormatTok->Tok.is(tok::comment)) 1386 return; 1387 if (FormatTok->NewlinesBefore > 0 || FormatTok->IsFirst) { 1388 CommentsInCurrentLine = false; 1389 } 1390 if (CommentsInCurrentLine) { 1391 pushToken(FormatTok); 1392 } else { 1393 CommentsBeforeNextToken.push_back(FormatTok); 1394 } 1395 } while (!eof()); 1396 } 1397 1398 void UnwrappedLineParser::pushToken(FormatToken *Tok) { 1399 Line->Tokens.push_back(UnwrappedLineNode(Tok)); 1400 if (MustBreakBeforeNextToken) { 1401 Line->Tokens.back().Tok->MustBreakBefore = true; 1402 MustBreakBeforeNextToken = false; 1403 } 1404 } 1405 1406 } // end namespace format 1407 } // end namespace clang 1408