1 //===--- TokenAnnotator.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 implements a token annotator, i.e. creates 12 /// \c AnnotatedTokens out of \c FormatTokens with required extra information. 13 /// 14 //===----------------------------------------------------------------------===// 15 16 #include "TokenAnnotator.h" 17 #include "clang/Basic/SourceManager.h" 18 #include "llvm/ADT/SmallPtrSet.h" 19 #include "llvm/Support/Debug.h" 20 21 #define DEBUG_TYPE "format-token-annotator" 22 23 namespace clang { 24 namespace format { 25 26 namespace { 27 28 /// \brief A parser that gathers additional information about tokens. 29 /// 30 /// The \c TokenAnnotator tries to match parenthesis and square brakets and 31 /// store a parenthesis levels. It also tries to resolve matching "<" and ">" 32 /// into template parameter lists. 33 class AnnotatingParser { 34 public: 35 AnnotatingParser(const FormatStyle &Style, AnnotatedLine &Line, 36 const AdditionalKeywords &Keywords) 37 : Style(Style), Line(Line), CurrentToken(Line.First), AutoFound(false), 38 Keywords(Keywords) { 39 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false)); 40 resetTokenMetadata(CurrentToken); 41 } 42 43 private: 44 bool parseAngle() { 45 if (!CurrentToken) 46 return false; 47 FormatToken *Left = CurrentToken->Previous; 48 Left->ParentBracket = Contexts.back().ContextKind; 49 ScopedContextCreator ContextCreator(*this, tok::less, 10); 50 51 // If this angle is in the context of an expression, we need to be more 52 // hesitant to detect it as opening template parameters. 53 bool InExprContext = Contexts.back().IsExpression; 54 55 Contexts.back().IsExpression = false; 56 // If there's a template keyword before the opening angle bracket, this is a 57 // template parameter, not an argument. 58 Contexts.back().InTemplateArgument = 59 Left->Previous && Left->Previous->Tok.isNot(tok::kw_template); 60 61 if (Style.Language == FormatStyle::LK_Java && 62 CurrentToken->is(tok::question)) 63 next(); 64 65 while (CurrentToken) { 66 if (CurrentToken->is(tok::greater)) { 67 Left->MatchingParen = CurrentToken; 68 CurrentToken->MatchingParen = Left; 69 CurrentToken->Type = TT_TemplateCloser; 70 next(); 71 return true; 72 } 73 if (CurrentToken->is(tok::question) && 74 Style.Language == FormatStyle::LK_Java) { 75 next(); 76 continue; 77 } 78 if (CurrentToken->isOneOf(tok::r_paren, tok::r_square, tok::r_brace) || 79 (CurrentToken->isOneOf(tok::colon, tok::question) && InExprContext)) 80 return false; 81 // If a && or || is found and interpreted as a binary operator, this set 82 // of angles is likely part of something like "a < b && c > d". If the 83 // angles are inside an expression, the ||/&& might also be a binary 84 // operator that was misinterpreted because we are parsing template 85 // parameters. 86 // FIXME: This is getting out of hand, write a decent parser. 87 if (CurrentToken->Previous->isOneOf(tok::pipepipe, tok::ampamp) && 88 CurrentToken->Previous->is(TT_BinaryOperator) && 89 Contexts[Contexts.size() - 2].IsExpression && 90 !Line.startsWith(tok::kw_template)) 91 return false; 92 updateParameterCount(Left, CurrentToken); 93 if (!consumeToken()) 94 return false; 95 } 96 return false; 97 } 98 99 bool parseParens(bool LookForDecls = false) { 100 if (!CurrentToken) 101 return false; 102 FormatToken *Left = CurrentToken->Previous; 103 Left->ParentBracket = Contexts.back().ContextKind; 104 ScopedContextCreator ContextCreator(*this, tok::l_paren, 1); 105 106 // FIXME: This is a bit of a hack. Do better. 107 Contexts.back().ColonIsForRangeExpr = 108 Contexts.size() == 2 && Contexts[0].ColonIsForRangeExpr; 109 110 bool StartsObjCMethodExpr = false; 111 if (CurrentToken->is(tok::caret)) { 112 // (^ can start a block type. 113 Left->Type = TT_ObjCBlockLParen; 114 } else if (FormatToken *MaybeSel = Left->Previous) { 115 // @selector( starts a selector. 116 if (MaybeSel->isObjCAtKeyword(tok::objc_selector) && MaybeSel->Previous && 117 MaybeSel->Previous->is(tok::at)) { 118 StartsObjCMethodExpr = true; 119 } 120 } 121 122 if (Left->Previous && 123 (Left->Previous->isOneOf(tok::kw_static_assert, tok::kw_decltype, 124 tok::kw_if, tok::kw_while, tok::l_paren, 125 tok::comma) || 126 Left->Previous->is(TT_BinaryOperator))) { 127 // static_assert, if and while usually contain expressions. 128 Contexts.back().IsExpression = true; 129 } else if (Left->Previous && Left->Previous->is(tok::r_square) && 130 Left->Previous->MatchingParen && 131 Left->Previous->MatchingParen->is(TT_LambdaLSquare)) { 132 // This is a parameter list of a lambda expression. 133 Contexts.back().IsExpression = false; 134 } else if (Line.InPPDirective && 135 (!Left->Previous || 136 !Left->Previous->isOneOf(tok::identifier, 137 TT_OverloadedOperator))) { 138 Contexts.back().IsExpression = true; 139 } else if (Contexts[Contexts.size() - 2].CaretFound) { 140 // This is the parameter list of an ObjC block. 141 Contexts.back().IsExpression = false; 142 } else if (Left->Previous && Left->Previous->is(tok::kw___attribute)) { 143 Left->Type = TT_AttributeParen; 144 } else if (Left->Previous && Left->Previous->is(TT_ForEachMacro)) { 145 // The first argument to a foreach macro is a declaration. 146 Contexts.back().IsForEachMacro = true; 147 Contexts.back().IsExpression = false; 148 } else if (Left->Previous && Left->Previous->MatchingParen && 149 Left->Previous->MatchingParen->is(TT_ObjCBlockLParen)) { 150 Contexts.back().IsExpression = false; 151 } 152 153 if (StartsObjCMethodExpr) { 154 Contexts.back().ColonIsObjCMethodExpr = true; 155 Left->Type = TT_ObjCMethodExpr; 156 } 157 158 bool MightBeFunctionType = CurrentToken->isOneOf(tok::star, tok::amp); 159 bool HasMultipleLines = false; 160 bool HasMultipleParametersOnALine = false; 161 bool MightBeObjCForRangeLoop = 162 Left->Previous && Left->Previous->is(tok::kw_for); 163 while (CurrentToken) { 164 // LookForDecls is set when "if (" has been seen. Check for 165 // 'identifier' '*' 'identifier' followed by not '=' -- this 166 // '*' has to be a binary operator but determineStarAmpUsage() will 167 // categorize it as an unary operator, so set the right type here. 168 if (LookForDecls && CurrentToken->Next) { 169 FormatToken *Prev = CurrentToken->getPreviousNonComment(); 170 if (Prev) { 171 FormatToken *PrevPrev = Prev->getPreviousNonComment(); 172 FormatToken *Next = CurrentToken->Next; 173 if (PrevPrev && PrevPrev->is(tok::identifier) && 174 Prev->isOneOf(tok::star, tok::amp, tok::ampamp) && 175 CurrentToken->is(tok::identifier) && Next->isNot(tok::equal)) { 176 Prev->Type = TT_BinaryOperator; 177 LookForDecls = false; 178 } 179 } 180 } 181 182 if (CurrentToken->Previous->is(TT_PointerOrReference) && 183 CurrentToken->Previous->Previous->isOneOf(tok::l_paren, 184 tok::coloncolon)) 185 MightBeFunctionType = true; 186 if (CurrentToken->Previous->is(TT_BinaryOperator)) 187 Contexts.back().IsExpression = true; 188 if (CurrentToken->is(tok::r_paren)) { 189 if (MightBeFunctionType && CurrentToken->Next && 190 (CurrentToken->Next->is(tok::l_paren) || 191 (CurrentToken->Next->is(tok::l_square) && 192 !Contexts.back().IsExpression))) 193 Left->Type = TT_FunctionTypeLParen; 194 Left->MatchingParen = CurrentToken; 195 CurrentToken->MatchingParen = Left; 196 197 if (StartsObjCMethodExpr) { 198 CurrentToken->Type = TT_ObjCMethodExpr; 199 if (Contexts.back().FirstObjCSelectorName) { 200 Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName = 201 Contexts.back().LongestObjCSelectorName; 202 } 203 } 204 205 if (Left->is(TT_AttributeParen)) 206 CurrentToken->Type = TT_AttributeParen; 207 if (Left->Previous && Left->Previous->is(TT_JavaAnnotation)) 208 CurrentToken->Type = TT_JavaAnnotation; 209 if (Left->Previous && Left->Previous->is(TT_LeadingJavaAnnotation)) 210 CurrentToken->Type = TT_LeadingJavaAnnotation; 211 212 if (!HasMultipleLines) 213 Left->PackingKind = PPK_Inconclusive; 214 else if (HasMultipleParametersOnALine) 215 Left->PackingKind = PPK_BinPacked; 216 else 217 Left->PackingKind = PPK_OnePerLine; 218 219 next(); 220 return true; 221 } 222 if (CurrentToken->isOneOf(tok::r_square, tok::r_brace)) 223 return false; 224 225 if (CurrentToken->is(tok::l_brace)) 226 Left->Type = TT_Unknown; // Not TT_ObjCBlockLParen 227 if (CurrentToken->is(tok::comma) && CurrentToken->Next && 228 !CurrentToken->Next->HasUnescapedNewline && 229 !CurrentToken->Next->isTrailingComment()) 230 HasMultipleParametersOnALine = true; 231 if (CurrentToken->isOneOf(tok::kw_const, tok::kw_auto) || 232 CurrentToken->isSimpleTypeSpecifier()) 233 Contexts.back().IsExpression = false; 234 if (CurrentToken->isOneOf(tok::semi, tok::colon)) 235 MightBeObjCForRangeLoop = false; 236 if (MightBeObjCForRangeLoop && CurrentToken->is(Keywords.kw_in)) 237 CurrentToken->Type = TT_ObjCForIn; 238 // When we discover a 'new', we set CanBeExpression to 'false' in order to 239 // parse the type correctly. Reset that after a comma. 240 if (CurrentToken->is(tok::comma)) 241 Contexts.back().CanBeExpression = true; 242 243 FormatToken *Tok = CurrentToken; 244 if (!consumeToken()) 245 return false; 246 updateParameterCount(Left, Tok); 247 if (CurrentToken && CurrentToken->HasUnescapedNewline) 248 HasMultipleLines = true; 249 } 250 return false; 251 } 252 253 bool parseSquare() { 254 if (!CurrentToken) 255 return false; 256 257 // A '[' could be an index subscript (after an identifier or after 258 // ')' or ']'), it could be the start of an Objective-C method 259 // expression, or it could the start of an Objective-C array literal. 260 FormatToken *Left = CurrentToken->Previous; 261 Left->ParentBracket = Contexts.back().ContextKind; 262 FormatToken *Parent = Left->getPreviousNonComment(); 263 bool StartsObjCMethodExpr = 264 Style.Language == FormatStyle::LK_Cpp && 265 Contexts.back().CanBeExpression && Left->isNot(TT_LambdaLSquare) && 266 CurrentToken->isNot(tok::l_brace) && 267 (!Parent || 268 Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren, 269 tok::kw_return, tok::kw_throw) || 270 Parent->isUnaryOperator() || 271 Parent->isOneOf(TT_ObjCForIn, TT_CastRParen) || 272 getBinOpPrecedence(Parent->Tok.getKind(), true, true) > prec::Unknown); 273 bool ColonFound = false; 274 275 unsigned BindingIncrease = 1; 276 if (Left->is(TT_Unknown)) { 277 if (StartsObjCMethodExpr) { 278 Left->Type = TT_ObjCMethodExpr; 279 } else if (Style.Language == FormatStyle::LK_JavaScript && Parent && 280 Contexts.back().ContextKind == tok::l_brace && 281 Parent->isOneOf(tok::l_brace, tok::comma)) { 282 Left->Type = TT_JsComputedPropertyName; 283 } else if (Parent && 284 Parent->isOneOf(tok::at, tok::equal, tok::comma, tok::l_paren, 285 tok::l_square, tok::question, tok::colon, 286 tok::kw_return)) { 287 Left->Type = TT_ArrayInitializerLSquare; 288 } else { 289 BindingIncrease = 10; 290 Left->Type = TT_ArraySubscriptLSquare; 291 } 292 } 293 294 ScopedContextCreator ContextCreator(*this, tok::l_square, BindingIncrease); 295 Contexts.back().IsExpression = true; 296 Contexts.back().ColonIsObjCMethodExpr = StartsObjCMethodExpr; 297 298 while (CurrentToken) { 299 if (CurrentToken->is(tok::r_square)) { 300 if (CurrentToken->Next && CurrentToken->Next->is(tok::l_paren) && 301 Left->is(TT_ObjCMethodExpr)) { 302 // An ObjC method call is rarely followed by an open parenthesis. 303 // FIXME: Do we incorrectly label ":" with this? 304 StartsObjCMethodExpr = false; 305 Left->Type = TT_Unknown; 306 } 307 if (StartsObjCMethodExpr && CurrentToken->Previous != Left) { 308 CurrentToken->Type = TT_ObjCMethodExpr; 309 // determineStarAmpUsage() thinks that '*' '[' is allocating an 310 // array of pointers, but if '[' starts a selector then '*' is a 311 // binary operator. 312 if (Parent && Parent->is(TT_PointerOrReference)) 313 Parent->Type = TT_BinaryOperator; 314 } 315 Left->MatchingParen = CurrentToken; 316 CurrentToken->MatchingParen = Left; 317 if (Contexts.back().FirstObjCSelectorName) { 318 Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName = 319 Contexts.back().LongestObjCSelectorName; 320 if (Left->BlockParameterCount > 1) 321 Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName = 0; 322 } 323 next(); 324 return true; 325 } 326 if (CurrentToken->isOneOf(tok::r_paren, tok::r_brace)) 327 return false; 328 if (CurrentToken->is(tok::colon)) { 329 if (Left->is(TT_ArraySubscriptLSquare)) { 330 Left->Type = TT_ObjCMethodExpr; 331 StartsObjCMethodExpr = true; 332 Contexts.back().ColonIsObjCMethodExpr = true; 333 if (Parent && Parent->is(tok::r_paren)) 334 Parent->Type = TT_CastRParen; 335 } 336 ColonFound = true; 337 } 338 if (CurrentToken->is(tok::comma) && Left->is(TT_ObjCMethodExpr) && 339 !ColonFound) 340 Left->Type = TT_ArrayInitializerLSquare; 341 FormatToken *Tok = CurrentToken; 342 if (!consumeToken()) 343 return false; 344 updateParameterCount(Left, Tok); 345 } 346 return false; 347 } 348 349 bool parseBrace() { 350 if (CurrentToken) { 351 FormatToken *Left = CurrentToken->Previous; 352 Left->ParentBracket = Contexts.back().ContextKind; 353 354 if (Contexts.back().CaretFound) 355 Left->Type = TT_ObjCBlockLBrace; 356 Contexts.back().CaretFound = false; 357 358 ScopedContextCreator ContextCreator(*this, tok::l_brace, 1); 359 Contexts.back().ColonIsDictLiteral = true; 360 if (Left->BlockKind == BK_BracedInit) 361 Contexts.back().IsExpression = true; 362 363 while (CurrentToken) { 364 if (CurrentToken->is(tok::r_brace)) { 365 Left->MatchingParen = CurrentToken; 366 CurrentToken->MatchingParen = Left; 367 next(); 368 return true; 369 } 370 if (CurrentToken->isOneOf(tok::r_paren, tok::r_square)) 371 return false; 372 updateParameterCount(Left, CurrentToken); 373 if (CurrentToken->isOneOf(tok::colon, tok::l_brace)) { 374 FormatToken *Previous = CurrentToken->getPreviousNonComment(); 375 if (((CurrentToken->is(tok::colon) && 376 (!Contexts.back().ColonIsDictLiteral || 377 Style.Language != FormatStyle::LK_Cpp)) || 378 Style.Language == FormatStyle::LK_Proto) && 379 Previous->Tok.getIdentifierInfo()) 380 Previous->Type = TT_SelectorName; 381 if (CurrentToken->is(tok::colon) || 382 Style.Language == FormatStyle::LK_JavaScript) 383 Left->Type = TT_DictLiteral; 384 } 385 if (!consumeToken()) 386 return false; 387 } 388 } 389 return true; 390 } 391 392 void updateParameterCount(FormatToken *Left, FormatToken *Current) { 393 if (Current->is(tok::l_brace) && !Current->is(TT_DictLiteral)) 394 ++Left->BlockParameterCount; 395 if (Current->is(tok::comma)) { 396 ++Left->ParameterCount; 397 if (!Left->Role) 398 Left->Role.reset(new CommaSeparatedList(Style)); 399 Left->Role->CommaFound(Current); 400 } else if (Left->ParameterCount == 0 && Current->isNot(tok::comment)) { 401 Left->ParameterCount = 1; 402 } 403 } 404 405 bool parseConditional() { 406 while (CurrentToken) { 407 if (CurrentToken->is(tok::colon)) { 408 CurrentToken->Type = TT_ConditionalExpr; 409 next(); 410 return true; 411 } 412 if (!consumeToken()) 413 return false; 414 } 415 return false; 416 } 417 418 bool parseTemplateDeclaration() { 419 if (CurrentToken && CurrentToken->is(tok::less)) { 420 CurrentToken->Type = TT_TemplateOpener; 421 next(); 422 if (!parseAngle()) 423 return false; 424 if (CurrentToken) 425 CurrentToken->Previous->ClosesTemplateDeclaration = true; 426 return true; 427 } 428 return false; 429 } 430 431 bool consumeToken() { 432 FormatToken *Tok = CurrentToken; 433 next(); 434 switch (Tok->Tok.getKind()) { 435 case tok::plus: 436 case tok::minus: 437 if (!Tok->Previous && Line.MustBeDeclaration) 438 Tok->Type = TT_ObjCMethodSpecifier; 439 break; 440 case tok::colon: 441 if (!Tok->Previous) 442 return false; 443 // Colons from ?: are handled in parseConditional(). 444 if (Style.Language == FormatStyle::LK_JavaScript) { 445 if (Contexts.back().ColonIsForRangeExpr || // colon in for loop 446 (Contexts.size() == 1 && // switch/case labels 447 !Line.First->isOneOf(tok::kw_enum, tok::kw_case)) || 448 Contexts.back().ContextKind == tok::l_paren || // function params 449 Contexts.back().ContextKind == tok::l_square || // array type 450 (Contexts.size() == 1 && 451 Line.MustBeDeclaration)) { // method/property declaration 452 Tok->Type = TT_JsTypeColon; 453 break; 454 } 455 } 456 if (Contexts.back().ColonIsDictLiteral) { 457 Tok->Type = TT_DictLiteral; 458 } else if (Contexts.back().ColonIsObjCMethodExpr || 459 Line.startsWith(TT_ObjCMethodSpecifier)) { 460 Tok->Type = TT_ObjCMethodExpr; 461 Tok->Previous->Type = TT_SelectorName; 462 if (Tok->Previous->ColumnWidth > 463 Contexts.back().LongestObjCSelectorName) { 464 Contexts.back().LongestObjCSelectorName = Tok->Previous->ColumnWidth; 465 } 466 if (!Contexts.back().FirstObjCSelectorName) 467 Contexts.back().FirstObjCSelectorName = Tok->Previous; 468 } else if (Contexts.back().ColonIsForRangeExpr) { 469 Tok->Type = TT_RangeBasedForLoopColon; 470 } else if (CurrentToken && CurrentToken->is(tok::numeric_constant)) { 471 Tok->Type = TT_BitFieldColon; 472 } else if (Contexts.size() == 1 && 473 !Line.First->isOneOf(tok::kw_enum, tok::kw_case)) { 474 if (Tok->Previous->is(tok::r_paren)) 475 Tok->Type = TT_CtorInitializerColon; 476 else 477 Tok->Type = TT_InheritanceColon; 478 } else if (Tok->Previous->is(tok::identifier) && Tok->Next && 479 Tok->Next->isOneOf(tok::r_paren, tok::comma)) { 480 // This handles a special macro in ObjC code where selectors including 481 // the colon are passed as macro arguments. 482 Tok->Type = TT_ObjCMethodExpr; 483 } else if (Contexts.back().ContextKind == tok::l_paren) { 484 Tok->Type = TT_InlineASMColon; 485 } 486 break; 487 case tok::kw_if: 488 case tok::kw_while: 489 if (CurrentToken && CurrentToken->is(tok::l_paren)) { 490 next(); 491 if (!parseParens(/*LookForDecls=*/true)) 492 return false; 493 } 494 break; 495 case tok::kw_for: 496 Contexts.back().ColonIsForRangeExpr = true; 497 next(); 498 if (!parseParens()) 499 return false; 500 break; 501 case tok::l_paren: 502 // When faced with 'operator()()', the kw_operator handler incorrectly 503 // marks the first l_paren as a OverloadedOperatorLParen. Here, we make 504 // the first two parens OverloadedOperators and the second l_paren an 505 // OverloadedOperatorLParen. 506 if (Tok->Previous && 507 Tok->Previous->is(tok::r_paren) && 508 Tok->Previous->MatchingParen && 509 Tok->Previous->MatchingParen->is(TT_OverloadedOperatorLParen)) { 510 Tok->Previous->Type = TT_OverloadedOperator; 511 Tok->Previous->MatchingParen->Type = TT_OverloadedOperator; 512 Tok->Type = TT_OverloadedOperatorLParen; 513 } 514 515 if (!parseParens()) 516 return false; 517 if (Line.MustBeDeclaration && Contexts.size() == 1 && 518 !Contexts.back().IsExpression && !Line.startsWith(TT_ObjCProperty) && 519 (!Tok->Previous || 520 !Tok->Previous->isOneOf(tok::kw_decltype, tok::kw___attribute, 521 TT_LeadingJavaAnnotation))) 522 Line.MightBeFunctionDecl = true; 523 break; 524 case tok::l_square: 525 if (!parseSquare()) 526 return false; 527 break; 528 case tok::l_brace: 529 if (!parseBrace()) 530 return false; 531 break; 532 case tok::less: 533 if (!NonTemplateLess.count(Tok) && 534 (!Tok->Previous || 535 (!Tok->Previous->Tok.isLiteral() && 536 !(Tok->Previous->is(tok::r_paren) && Contexts.size() > 1))) && 537 parseAngle()) { 538 Tok->Type = TT_TemplateOpener; 539 } else { 540 Tok->Type = TT_BinaryOperator; 541 NonTemplateLess.insert(Tok); 542 CurrentToken = Tok; 543 next(); 544 } 545 break; 546 case tok::r_paren: 547 case tok::r_square: 548 return false; 549 case tok::r_brace: 550 // Lines can start with '}'. 551 if (Tok->Previous) 552 return false; 553 break; 554 case tok::greater: 555 Tok->Type = TT_BinaryOperator; 556 break; 557 case tok::kw_operator: 558 while (CurrentToken && 559 !CurrentToken->isOneOf(tok::l_paren, tok::semi, tok::r_paren)) { 560 if (CurrentToken->isOneOf(tok::star, tok::amp)) 561 CurrentToken->Type = TT_PointerOrReference; 562 consumeToken(); 563 if (CurrentToken && CurrentToken->Previous->is(TT_BinaryOperator)) 564 CurrentToken->Previous->Type = TT_OverloadedOperator; 565 } 566 if (CurrentToken) { 567 CurrentToken->Type = TT_OverloadedOperatorLParen; 568 if (CurrentToken->Previous->is(TT_BinaryOperator)) 569 CurrentToken->Previous->Type = TT_OverloadedOperator; 570 } 571 break; 572 case tok::question: 573 if (Style.Language == FormatStyle::LK_JavaScript && Tok->Next && 574 Tok->Next->isOneOf(tok::semi, tok::comma, tok::colon, tok::r_paren, 575 tok::r_brace)) { 576 // Question marks before semicolons, colons, etc. indicate optional 577 // types (fields, parameters), e.g. 578 // function(x?: string, y?) {...} 579 // class X { y?; } 580 Tok->Type = TT_JsTypeOptionalQuestion; 581 break; 582 } 583 // Declarations cannot be conditional expressions, this can only be part 584 // of a type declaration. 585 if (Line.MustBeDeclaration && 586 Style.Language == FormatStyle::LK_JavaScript) 587 break; 588 parseConditional(); 589 break; 590 case tok::kw_template: 591 parseTemplateDeclaration(); 592 break; 593 case tok::comma: 594 if (Contexts.back().InCtorInitializer) 595 Tok->Type = TT_CtorInitializerComma; 596 else if (Contexts.back().FirstStartOfName && 597 (Contexts.size() == 1 || Line.startsWith(tok::kw_for))) { 598 Contexts.back().FirstStartOfName->PartOfMultiVariableDeclStmt = true; 599 Line.IsMultiVariableDeclStmt = true; 600 } 601 if (Contexts.back().IsForEachMacro) 602 Contexts.back().IsExpression = true; 603 break; 604 default: 605 break; 606 } 607 return true; 608 } 609 610 void parseIncludeDirective() { 611 if (CurrentToken && CurrentToken->is(tok::less)) { 612 next(); 613 while (CurrentToken) { 614 if (CurrentToken->isNot(tok::comment) || CurrentToken->Next) 615 CurrentToken->Type = TT_ImplicitStringLiteral; 616 next(); 617 } 618 } 619 } 620 621 void parseWarningOrError() { 622 next(); 623 // We still want to format the whitespace left of the first token of the 624 // warning or error. 625 next(); 626 while (CurrentToken) { 627 CurrentToken->Type = TT_ImplicitStringLiteral; 628 next(); 629 } 630 } 631 632 void parsePragma() { 633 next(); // Consume "pragma". 634 if (CurrentToken && 635 CurrentToken->isOneOf(Keywords.kw_mark, Keywords.kw_option)) { 636 bool IsMark = CurrentToken->is(Keywords.kw_mark); 637 next(); // Consume "mark". 638 next(); // Consume first token (so we fix leading whitespace). 639 while (CurrentToken) { 640 if (IsMark || CurrentToken->Previous->is(TT_BinaryOperator)) 641 CurrentToken->Type = TT_ImplicitStringLiteral; 642 next(); 643 } 644 } 645 } 646 647 LineType parsePreprocessorDirective() { 648 LineType Type = LT_PreprocessorDirective; 649 next(); 650 if (!CurrentToken) 651 return Type; 652 if (CurrentToken->Tok.is(tok::numeric_constant)) { 653 CurrentToken->SpacesRequiredBefore = 1; 654 return Type; 655 } 656 // Hashes in the middle of a line can lead to any strange token 657 // sequence. 658 if (!CurrentToken->Tok.getIdentifierInfo()) 659 return Type; 660 switch (CurrentToken->Tok.getIdentifierInfo()->getPPKeywordID()) { 661 case tok::pp_include: 662 case tok::pp_include_next: 663 case tok::pp_import: 664 next(); 665 parseIncludeDirective(); 666 Type = LT_ImportStatement; 667 break; 668 case tok::pp_error: 669 case tok::pp_warning: 670 parseWarningOrError(); 671 break; 672 case tok::pp_pragma: 673 parsePragma(); 674 break; 675 case tok::pp_if: 676 case tok::pp_elif: 677 Contexts.back().IsExpression = true; 678 parseLine(); 679 break; 680 default: 681 break; 682 } 683 while (CurrentToken) 684 next(); 685 return Type; 686 } 687 688 public: 689 LineType parseLine() { 690 NonTemplateLess.clear(); 691 if (CurrentToken->is(tok::hash)) 692 return parsePreprocessorDirective(); 693 694 // Directly allow to 'import <string-literal>' to support protocol buffer 695 // definitions (code.google.com/p/protobuf) or missing "#" (either way we 696 // should not break the line). 697 IdentifierInfo *Info = CurrentToken->Tok.getIdentifierInfo(); 698 if ((Style.Language == FormatStyle::LK_Java && 699 CurrentToken->is(Keywords.kw_package)) || 700 (Info && Info->getPPKeywordID() == tok::pp_import && 701 CurrentToken->Next && 702 CurrentToken->Next->isOneOf(tok::string_literal, tok::identifier, 703 tok::kw_static))) { 704 next(); 705 parseIncludeDirective(); 706 return LT_ImportStatement; 707 } 708 709 // If this line starts and ends in '<' and '>', respectively, it is likely 710 // part of "#define <a/b.h>". 711 if (CurrentToken->is(tok::less) && Line.Last->is(tok::greater)) { 712 parseIncludeDirective(); 713 return LT_ImportStatement; 714 } 715 716 // In .proto files, top-level options are very similar to import statements 717 // and should not be line-wrapped. 718 if (Style.Language == FormatStyle::LK_Proto && Line.Level == 0 && 719 CurrentToken->is(Keywords.kw_option)) { 720 next(); 721 if (CurrentToken && CurrentToken->is(tok::identifier)) 722 return LT_ImportStatement; 723 } 724 725 bool KeywordVirtualFound = false; 726 bool ImportStatement = false; 727 while (CurrentToken) { 728 if (CurrentToken->is(tok::kw_virtual)) 729 KeywordVirtualFound = true; 730 if (isImportStatement(*CurrentToken)) 731 ImportStatement = true; 732 if (!consumeToken()) 733 return LT_Invalid; 734 } 735 if (KeywordVirtualFound) 736 return LT_VirtualFunctionDecl; 737 if (ImportStatement) 738 return LT_ImportStatement; 739 740 if (Line.startsWith(TT_ObjCMethodSpecifier)) { 741 if (Contexts.back().FirstObjCSelectorName) 742 Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName = 743 Contexts.back().LongestObjCSelectorName; 744 return LT_ObjCMethodDecl; 745 } 746 747 return LT_Other; 748 } 749 750 private: 751 bool isImportStatement(const FormatToken &Tok) { 752 // FIXME: Closure-library specific stuff should not be hard-coded but be 753 // configurable. 754 return Style.Language == FormatStyle::LK_JavaScript && 755 Tok.TokenText == "goog" && Tok.Next && Tok.Next->is(tok::period) && 756 Tok.Next->Next && (Tok.Next->Next->TokenText == "module" || 757 Tok.Next->Next->TokenText == "provide" || 758 Tok.Next->Next->TokenText == "require" || 759 Tok.Next->Next->TokenText == "setTestOnly") && 760 Tok.Next->Next->Next && Tok.Next->Next->Next->is(tok::l_paren); 761 } 762 763 void resetTokenMetadata(FormatToken *Token) { 764 if (!Token) 765 return; 766 767 // Reset token type in case we have already looked at it and then 768 // recovered from an error (e.g. failure to find the matching >). 769 if (!CurrentToken->isOneOf(TT_LambdaLSquare, TT_ForEachMacro, 770 TT_FunctionLBrace, TT_ImplicitStringLiteral, 771 TT_InlineASMBrace, TT_JsFatArrow, TT_LambdaArrow, 772 TT_RegexLiteral)) 773 CurrentToken->Type = TT_Unknown; 774 CurrentToken->Role.reset(); 775 CurrentToken->MatchingParen = nullptr; 776 CurrentToken->FakeLParens.clear(); 777 CurrentToken->FakeRParens = 0; 778 } 779 780 void next() { 781 if (CurrentToken) { 782 CurrentToken->NestingLevel = Contexts.size() - 1; 783 CurrentToken->BindingStrength = Contexts.back().BindingStrength; 784 modifyContext(*CurrentToken); 785 determineTokenType(*CurrentToken); 786 CurrentToken = CurrentToken->Next; 787 } 788 789 resetTokenMetadata(CurrentToken); 790 } 791 792 /// \brief A struct to hold information valid in a specific context, e.g. 793 /// a pair of parenthesis. 794 struct Context { 795 Context(tok::TokenKind ContextKind, unsigned BindingStrength, 796 bool IsExpression) 797 : ContextKind(ContextKind), BindingStrength(BindingStrength), 798 IsExpression(IsExpression) {} 799 800 tok::TokenKind ContextKind; 801 unsigned BindingStrength; 802 bool IsExpression; 803 unsigned LongestObjCSelectorName = 0; 804 bool ColonIsForRangeExpr = false; 805 bool ColonIsDictLiteral = false; 806 bool ColonIsObjCMethodExpr = false; 807 FormatToken *FirstObjCSelectorName = nullptr; 808 FormatToken *FirstStartOfName = nullptr; 809 bool CanBeExpression = true; 810 bool InTemplateArgument = false; 811 bool InCtorInitializer = false; 812 bool CaretFound = false; 813 bool IsForEachMacro = false; 814 }; 815 816 /// \brief Puts a new \c Context onto the stack \c Contexts for the lifetime 817 /// of each instance. 818 struct ScopedContextCreator { 819 AnnotatingParser &P; 820 821 ScopedContextCreator(AnnotatingParser &P, tok::TokenKind ContextKind, 822 unsigned Increase) 823 : P(P) { 824 P.Contexts.push_back(Context(ContextKind, 825 P.Contexts.back().BindingStrength + Increase, 826 P.Contexts.back().IsExpression)); 827 } 828 829 ~ScopedContextCreator() { P.Contexts.pop_back(); } 830 }; 831 832 void modifyContext(const FormatToken &Current) { 833 if (Current.getPrecedence() == prec::Assignment && 834 !Line.First->isOneOf(tok::kw_template, tok::kw_using) && 835 (!Current.Previous || Current.Previous->isNot(tok::kw_operator))) { 836 Contexts.back().IsExpression = true; 837 if (!Line.startsWith(TT_UnaryOperator)) { 838 for (FormatToken *Previous = Current.Previous; 839 Previous && Previous->Previous && 840 !Previous->Previous->isOneOf(tok::comma, tok::semi); 841 Previous = Previous->Previous) { 842 if (Previous->isOneOf(tok::r_square, tok::r_paren)) { 843 Previous = Previous->MatchingParen; 844 if (!Previous) 845 break; 846 } 847 if (Previous->opensScope()) 848 break; 849 if (Previous->isOneOf(TT_BinaryOperator, TT_UnaryOperator) && 850 Previous->isOneOf(tok::star, tok::amp, tok::ampamp) && 851 Previous->Previous && Previous->Previous->isNot(tok::equal)) 852 Previous->Type = TT_PointerOrReference; 853 } 854 } 855 } else if (Current.is(tok::lessless) && 856 (!Current.Previous || !Current.Previous->is(tok::kw_operator))) { 857 Contexts.back().IsExpression = true; 858 } else if (Current.isOneOf(tok::kw_return, tok::kw_throw)) { 859 Contexts.back().IsExpression = true; 860 } else if (Current.is(TT_TrailingReturnArrow)) { 861 Contexts.back().IsExpression = false; 862 } else if (Current.is(TT_LambdaArrow) || Current.is(Keywords.kw_assert)) { 863 Contexts.back().IsExpression = Style.Language == FormatStyle::LK_Java; 864 } else if (Current.is(tok::l_paren) && !Line.MustBeDeclaration && 865 !Line.InPPDirective && 866 (!Current.Previous || 867 Current.Previous->isNot(tok::kw_decltype))) { 868 bool ParametersOfFunctionType = 869 Current.Previous && Current.Previous->is(tok::r_paren) && 870 Current.Previous->MatchingParen && 871 Current.Previous->MatchingParen->is(TT_FunctionTypeLParen); 872 bool IsForOrCatch = Current.Previous && 873 Current.Previous->isOneOf(tok::kw_for, tok::kw_catch); 874 Contexts.back().IsExpression = !ParametersOfFunctionType && !IsForOrCatch; 875 } else if (Current.isOneOf(tok::r_paren, tok::greater, tok::comma)) { 876 for (FormatToken *Previous = Current.Previous; 877 Previous && Previous->isOneOf(tok::star, tok::amp); 878 Previous = Previous->Previous) 879 Previous->Type = TT_PointerOrReference; 880 if (Line.MustBeDeclaration) 881 Contexts.back().IsExpression = Contexts.front().InCtorInitializer; 882 } else if (Current.Previous && 883 Current.Previous->is(TT_CtorInitializerColon)) { 884 Contexts.back().IsExpression = true; 885 Contexts.back().InCtorInitializer = true; 886 } else if (Current.is(tok::kw_new)) { 887 Contexts.back().CanBeExpression = false; 888 } else if (Current.isOneOf(tok::semi, tok::exclaim)) { 889 // This should be the condition or increment in a for-loop. 890 Contexts.back().IsExpression = true; 891 } 892 } 893 894 void determineTokenType(FormatToken &Current) { 895 if (!Current.is(TT_Unknown)) 896 // The token type is already known. 897 return; 898 899 // Line.MightBeFunctionDecl can only be true after the parentheses of a 900 // function declaration have been found. In this case, 'Current' is a 901 // trailing token of this declaration and thus cannot be a name. 902 if (Current.is(Keywords.kw_instanceof)) { 903 Current.Type = TT_BinaryOperator; 904 } else if (isStartOfName(Current) && 905 (!Line.MightBeFunctionDecl || Current.NestingLevel != 0)) { 906 Contexts.back().FirstStartOfName = &Current; 907 Current.Type = TT_StartOfName; 908 } else if (Current.is(tok::kw_auto)) { 909 AutoFound = true; 910 } else if (Current.is(tok::arrow) && 911 Style.Language == FormatStyle::LK_Java) { 912 Current.Type = TT_LambdaArrow; 913 } else if (Current.is(tok::arrow) && AutoFound && Line.MustBeDeclaration && 914 Current.NestingLevel == 0) { 915 Current.Type = TT_TrailingReturnArrow; 916 } else if (Current.isOneOf(tok::star, tok::amp, tok::ampamp)) { 917 Current.Type = 918 determineStarAmpUsage(Current, Contexts.back().CanBeExpression && 919 Contexts.back().IsExpression, 920 Contexts.back().InTemplateArgument); 921 } else if (Current.isOneOf(tok::minus, tok::plus, tok::caret)) { 922 Current.Type = determinePlusMinusCaretUsage(Current); 923 if (Current.is(TT_UnaryOperator) && Current.is(tok::caret)) 924 Contexts.back().CaretFound = true; 925 } else if (Current.isOneOf(tok::minusminus, tok::plusplus)) { 926 Current.Type = determineIncrementUsage(Current); 927 } else if (Current.isOneOf(tok::exclaim, tok::tilde)) { 928 Current.Type = TT_UnaryOperator; 929 } else if (Current.is(tok::question)) { 930 if (Style.Language == FormatStyle::LK_JavaScript && 931 Line.MustBeDeclaration) { 932 // In JavaScript, `interface X { foo?(): bar; }` is an optional method 933 // on the interface, not a ternary expression. 934 Current.Type = TT_JsTypeOptionalQuestion; 935 } else { 936 Current.Type = TT_ConditionalExpr; 937 } 938 } else if (Current.isBinaryOperator() && 939 (!Current.Previous || Current.Previous->isNot(tok::l_square))) { 940 Current.Type = TT_BinaryOperator; 941 } else if (Current.is(tok::comment)) { 942 if (Current.TokenText.startswith("/*")) { 943 if (Current.TokenText.endswith("*/")) 944 Current.Type = TT_BlockComment; 945 else 946 // The lexer has for some reason determined a comment here. But we 947 // cannot really handle it, if it isn't properly terminated. 948 Current.Tok.setKind(tok::unknown); 949 } else { 950 Current.Type = TT_LineComment; 951 } 952 } else if (Current.is(tok::r_paren)) { 953 if (rParenEndsCast(Current)) 954 Current.Type = TT_CastRParen; 955 if (Current.MatchingParen && Current.Next && 956 !Current.Next->isBinaryOperator() && 957 !Current.Next->isOneOf(tok::semi, tok::colon, tok::l_brace)) 958 if (FormatToken *BeforeParen = Current.MatchingParen->Previous) 959 if (BeforeParen->is(tok::identifier) && 960 BeforeParen->TokenText == BeforeParen->TokenText.upper() && 961 (!BeforeParen->Previous || 962 BeforeParen->Previous->ClosesTemplateDeclaration)) 963 Current.Type = TT_FunctionAnnotationRParen; 964 } else if (Current.is(tok::at) && Current.Next) { 965 if (Current.Next->isStringLiteral()) { 966 Current.Type = TT_ObjCStringLiteral; 967 } else { 968 switch (Current.Next->Tok.getObjCKeywordID()) { 969 case tok::objc_interface: 970 case tok::objc_implementation: 971 case tok::objc_protocol: 972 Current.Type = TT_ObjCDecl; 973 break; 974 case tok::objc_property: 975 Current.Type = TT_ObjCProperty; 976 break; 977 default: 978 break; 979 } 980 } 981 } else if (Current.is(tok::period)) { 982 FormatToken *PreviousNoComment = Current.getPreviousNonComment(); 983 if (PreviousNoComment && 984 PreviousNoComment->isOneOf(tok::comma, tok::l_brace)) 985 Current.Type = TT_DesignatedInitializerPeriod; 986 else if (Style.Language == FormatStyle::LK_Java && Current.Previous && 987 Current.Previous->isOneOf(TT_JavaAnnotation, 988 TT_LeadingJavaAnnotation)) { 989 Current.Type = Current.Previous->Type; 990 } 991 } else if (Current.isOneOf(tok::identifier, tok::kw_const) && 992 Current.Previous && 993 !Current.Previous->isOneOf(tok::equal, tok::at) && 994 Line.MightBeFunctionDecl && Contexts.size() == 1) { 995 // Line.MightBeFunctionDecl can only be true after the parentheses of a 996 // function declaration have been found. 997 Current.Type = TT_TrailingAnnotation; 998 } else if ((Style.Language == FormatStyle::LK_Java || 999 Style.Language == FormatStyle::LK_JavaScript) && 1000 Current.Previous) { 1001 if (Current.Previous->is(tok::at) && 1002 Current.isNot(Keywords.kw_interface)) { 1003 const FormatToken &AtToken = *Current.Previous; 1004 const FormatToken *Previous = AtToken.getPreviousNonComment(); 1005 if (!Previous || Previous->is(TT_LeadingJavaAnnotation)) 1006 Current.Type = TT_LeadingJavaAnnotation; 1007 else 1008 Current.Type = TT_JavaAnnotation; 1009 } else if (Current.Previous->is(tok::period) && 1010 Current.Previous->isOneOf(TT_JavaAnnotation, 1011 TT_LeadingJavaAnnotation)) { 1012 Current.Type = Current.Previous->Type; 1013 } 1014 } 1015 } 1016 1017 /// \brief Take a guess at whether \p Tok starts a name of a function or 1018 /// variable declaration. 1019 /// 1020 /// This is a heuristic based on whether \p Tok is an identifier following 1021 /// something that is likely a type. 1022 bool isStartOfName(const FormatToken &Tok) { 1023 if (Tok.isNot(tok::identifier) || !Tok.Previous) 1024 return false; 1025 1026 if (Tok.Previous->isOneOf(TT_LeadingJavaAnnotation, Keywords.kw_instanceof)) 1027 return false; 1028 1029 // Skip "const" as it does not have an influence on whether this is a name. 1030 FormatToken *PreviousNotConst = Tok.Previous; 1031 while (PreviousNotConst && PreviousNotConst->is(tok::kw_const)) 1032 PreviousNotConst = PreviousNotConst->Previous; 1033 1034 if (!PreviousNotConst) 1035 return false; 1036 1037 bool IsPPKeyword = PreviousNotConst->is(tok::identifier) && 1038 PreviousNotConst->Previous && 1039 PreviousNotConst->Previous->is(tok::hash); 1040 1041 if (PreviousNotConst->is(TT_TemplateCloser)) 1042 return PreviousNotConst && PreviousNotConst->MatchingParen && 1043 PreviousNotConst->MatchingParen->Previous && 1044 PreviousNotConst->MatchingParen->Previous->isNot(tok::period) && 1045 PreviousNotConst->MatchingParen->Previous->isNot(tok::kw_template); 1046 1047 if (PreviousNotConst->is(tok::r_paren) && PreviousNotConst->MatchingParen && 1048 PreviousNotConst->MatchingParen->Previous && 1049 PreviousNotConst->MatchingParen->Previous->is(tok::kw_decltype)) 1050 return true; 1051 1052 return (!IsPPKeyword && 1053 PreviousNotConst->isOneOf(tok::identifier, tok::kw_auto)) || 1054 PreviousNotConst->is(TT_PointerOrReference) || 1055 PreviousNotConst->isSimpleTypeSpecifier(); 1056 } 1057 1058 /// \brief Determine whether ')' is ending a cast. 1059 bool rParenEndsCast(const FormatToken &Tok) { 1060 FormatToken *LeftOfParens = nullptr; 1061 if (Tok.MatchingParen) 1062 LeftOfParens = Tok.MatchingParen->getPreviousNonComment(); 1063 if (LeftOfParens && LeftOfParens->is(tok::r_paren) && 1064 LeftOfParens->MatchingParen) 1065 LeftOfParens = LeftOfParens->MatchingParen->Previous; 1066 if (LeftOfParens && LeftOfParens->is(tok::r_square) && 1067 LeftOfParens->MatchingParen && 1068 LeftOfParens->MatchingParen->is(TT_LambdaLSquare)) 1069 return false; 1070 if (Tok.Next) { 1071 if (Tok.Next->is(tok::question)) 1072 return false; 1073 if (Style.Language == FormatStyle::LK_JavaScript && 1074 Tok.Next->is(Keywords.kw_in)) 1075 return false; 1076 if (Style.Language == FormatStyle::LK_Java && Tok.Next->is(tok::l_paren)) 1077 return true; 1078 } 1079 bool IsCast = false; 1080 bool ParensAreEmpty = Tok.Previous == Tok.MatchingParen; 1081 bool ParensAreType = 1082 !Tok.Previous || 1083 Tok.Previous->isOneOf(TT_PointerOrReference, TT_TemplateCloser) || 1084 Tok.Previous->isSimpleTypeSpecifier(); 1085 bool ParensCouldEndDecl = 1086 Tok.Next && 1087 Tok.Next->isOneOf(tok::equal, tok::semi, tok::l_brace, tok::greater); 1088 bool IsSizeOfOrAlignOf = 1089 LeftOfParens && LeftOfParens->isOneOf(tok::kw_sizeof, tok::kw_alignof); 1090 if (ParensAreType && !ParensCouldEndDecl && !IsSizeOfOrAlignOf && 1091 (Contexts.size() > 1 && Contexts[Contexts.size() - 2].IsExpression)) 1092 IsCast = true; 1093 else if (Tok.Next && Tok.Next->isNot(tok::string_literal) && 1094 (Tok.Next->Tok.isLiteral() || 1095 Tok.Next->isOneOf(tok::kw_sizeof, tok::kw_alignof))) 1096 IsCast = true; 1097 // If there is an identifier after the (), it is likely a cast, unless 1098 // there is also an identifier before the (). 1099 else if (LeftOfParens && Tok.Next && 1100 (LeftOfParens->Tok.getIdentifierInfo() == nullptr || 1101 LeftOfParens->isOneOf(tok::kw_return, tok::kw_case)) && 1102 !LeftOfParens->isOneOf(TT_OverloadedOperator, tok::at, 1103 TT_TemplateCloser)) { 1104 if (Tok.Next->isOneOf(tok::identifier, tok::numeric_constant)) { 1105 IsCast = true; 1106 } else { 1107 // Use heuristics to recognize c style casting. 1108 FormatToken *Prev = Tok.Previous; 1109 if (Prev && Prev->isOneOf(tok::amp, tok::star)) 1110 Prev = Prev->Previous; 1111 1112 if (Prev && Tok.Next && Tok.Next->Next) { 1113 bool NextIsUnary = Tok.Next->isUnaryOperator() || 1114 Tok.Next->isOneOf(tok::amp, tok::star); 1115 IsCast = 1116 NextIsUnary && !Tok.Next->is(tok::plus) && 1117 Tok.Next->Next->isOneOf(tok::identifier, tok::numeric_constant); 1118 } 1119 1120 for (; Prev != Tok.MatchingParen; Prev = Prev->Previous) { 1121 if (!Prev || 1122 !Prev->isOneOf(tok::kw_const, tok::identifier, tok::coloncolon)) { 1123 IsCast = false; 1124 break; 1125 } 1126 } 1127 } 1128 } 1129 return IsCast && !ParensAreEmpty; 1130 } 1131 1132 /// \brief Return the type of the given token assuming it is * or &. 1133 TokenType determineStarAmpUsage(const FormatToken &Tok, bool IsExpression, 1134 bool InTemplateArgument) { 1135 if (Style.Language == FormatStyle::LK_JavaScript) 1136 return TT_BinaryOperator; 1137 1138 const FormatToken *PrevToken = Tok.getPreviousNonComment(); 1139 if (!PrevToken) 1140 return TT_UnaryOperator; 1141 1142 const FormatToken *NextToken = Tok.getNextNonComment(); 1143 if (!NextToken || 1144 NextToken->isOneOf(tok::arrow, Keywords.kw_final, 1145 Keywords.kw_override) || 1146 (NextToken->is(tok::l_brace) && !NextToken->getNextNonComment())) 1147 return TT_PointerOrReference; 1148 1149 if (PrevToken->is(tok::coloncolon)) 1150 return TT_PointerOrReference; 1151 1152 if (PrevToken->isOneOf(tok::l_paren, tok::l_square, tok::l_brace, 1153 tok::comma, tok::semi, tok::kw_return, tok::colon, 1154 tok::equal, tok::kw_delete, tok::kw_sizeof) || 1155 PrevToken->isOneOf(TT_BinaryOperator, TT_ConditionalExpr, 1156 TT_UnaryOperator, TT_CastRParen)) 1157 return TT_UnaryOperator; 1158 1159 if (NextToken->is(tok::l_square) && NextToken->isNot(TT_LambdaLSquare)) 1160 return TT_PointerOrReference; 1161 if (NextToken->is(tok::kw_operator) && !IsExpression) 1162 return TT_PointerOrReference; 1163 if (NextToken->isOneOf(tok::comma, tok::semi)) 1164 return TT_PointerOrReference; 1165 1166 if (PrevToken->is(tok::r_paren) && PrevToken->MatchingParen && 1167 PrevToken->MatchingParen->Previous && 1168 PrevToken->MatchingParen->Previous->isOneOf(tok::kw_typeof, 1169 tok::kw_decltype)) 1170 return TT_PointerOrReference; 1171 1172 if (PrevToken->Tok.isLiteral() || 1173 PrevToken->isOneOf(tok::r_paren, tok::r_square, tok::kw_true, 1174 tok::kw_false, tok::r_brace) || 1175 NextToken->Tok.isLiteral() || 1176 NextToken->isOneOf(tok::kw_true, tok::kw_false) || 1177 NextToken->isUnaryOperator() || 1178 // If we know we're in a template argument, there are no named 1179 // declarations. Thus, having an identifier on the right-hand side 1180 // indicates a binary operator. 1181 (InTemplateArgument && NextToken->Tok.isAnyIdentifier())) 1182 return TT_BinaryOperator; 1183 1184 // "&&(" is quite unlikely to be two successive unary "&". 1185 if (Tok.is(tok::ampamp) && NextToken && NextToken->is(tok::l_paren)) 1186 return TT_BinaryOperator; 1187 1188 // This catches some cases where evaluation order is used as control flow: 1189 // aaa && aaa->f(); 1190 const FormatToken *NextNextToken = NextToken->getNextNonComment(); 1191 if (NextNextToken && NextNextToken->is(tok::arrow)) 1192 return TT_BinaryOperator; 1193 1194 // It is very unlikely that we are going to find a pointer or reference type 1195 // definition on the RHS of an assignment. 1196 if (IsExpression && !Contexts.back().CaretFound) 1197 return TT_BinaryOperator; 1198 1199 return TT_PointerOrReference; 1200 } 1201 1202 TokenType determinePlusMinusCaretUsage(const FormatToken &Tok) { 1203 const FormatToken *PrevToken = Tok.getPreviousNonComment(); 1204 if (!PrevToken || PrevToken->is(TT_CastRParen)) 1205 return TT_UnaryOperator; 1206 1207 // Use heuristics to recognize unary operators. 1208 if (PrevToken->isOneOf(tok::equal, tok::l_paren, tok::comma, tok::l_square, 1209 tok::question, tok::colon, tok::kw_return, 1210 tok::kw_case, tok::at, tok::l_brace)) 1211 return TT_UnaryOperator; 1212 1213 // There can't be two consecutive binary operators. 1214 if (PrevToken->is(TT_BinaryOperator)) 1215 return TT_UnaryOperator; 1216 1217 // Fall back to marking the token as binary operator. 1218 return TT_BinaryOperator; 1219 } 1220 1221 /// \brief Determine whether ++/-- are pre- or post-increments/-decrements. 1222 TokenType determineIncrementUsage(const FormatToken &Tok) { 1223 const FormatToken *PrevToken = Tok.getPreviousNonComment(); 1224 if (!PrevToken || PrevToken->is(TT_CastRParen)) 1225 return TT_UnaryOperator; 1226 if (PrevToken->isOneOf(tok::r_paren, tok::r_square, tok::identifier)) 1227 return TT_TrailingUnaryOperator; 1228 1229 return TT_UnaryOperator; 1230 } 1231 1232 SmallVector<Context, 8> Contexts; 1233 1234 const FormatStyle &Style; 1235 AnnotatedLine &Line; 1236 FormatToken *CurrentToken; 1237 bool AutoFound; 1238 const AdditionalKeywords &Keywords; 1239 1240 // Set of "<" tokens that do not open a template parameter list. If parseAngle 1241 // determines that a specific token can't be a template opener, it will make 1242 // same decision irrespective of the decisions for tokens leading up to it. 1243 // Store this information to prevent this from causing exponential runtime. 1244 llvm::SmallPtrSet<FormatToken *, 16> NonTemplateLess; 1245 }; 1246 1247 static const int PrecedenceUnaryOperator = prec::PointerToMember + 1; 1248 static const int PrecedenceArrowAndPeriod = prec::PointerToMember + 2; 1249 1250 /// \brief Parses binary expressions by inserting fake parenthesis based on 1251 /// operator precedence. 1252 class ExpressionParser { 1253 public: 1254 ExpressionParser(const FormatStyle &Style, const AdditionalKeywords &Keywords, 1255 AnnotatedLine &Line) 1256 : Style(Style), Keywords(Keywords), Current(Line.First) {} 1257 1258 /// \brief Parse expressions with the given operatore precedence. 1259 void parse(int Precedence = 0) { 1260 // Skip 'return' and ObjC selector colons as they are not part of a binary 1261 // expression. 1262 while (Current && (Current->is(tok::kw_return) || 1263 (Current->is(tok::colon) && 1264 Current->isOneOf(TT_ObjCMethodExpr, TT_DictLiteral)))) 1265 next(); 1266 1267 if (!Current || Precedence > PrecedenceArrowAndPeriod) 1268 return; 1269 1270 // Conditional expressions need to be parsed separately for proper nesting. 1271 if (Precedence == prec::Conditional) { 1272 parseConditionalExpr(); 1273 return; 1274 } 1275 1276 // Parse unary operators, which all have a higher precedence than binary 1277 // operators. 1278 if (Precedence == PrecedenceUnaryOperator) { 1279 parseUnaryOperator(); 1280 return; 1281 } 1282 1283 FormatToken *Start = Current; 1284 FormatToken *LatestOperator = nullptr; 1285 unsigned OperatorIndex = 0; 1286 1287 while (Current) { 1288 // Consume operators with higher precedence. 1289 parse(Precedence + 1); 1290 1291 int CurrentPrecedence = getCurrentPrecedence(); 1292 1293 if (Current && Current->is(TT_SelectorName) && 1294 Precedence == CurrentPrecedence) { 1295 if (LatestOperator) 1296 addFakeParenthesis(Start, prec::Level(Precedence)); 1297 Start = Current; 1298 } 1299 1300 // At the end of the line or when an operator with higher precedence is 1301 // found, insert fake parenthesis and return. 1302 if (!Current || (Current->closesScope() && Current->MatchingParen) || 1303 (CurrentPrecedence != -1 && CurrentPrecedence < Precedence) || 1304 (CurrentPrecedence == prec::Conditional && 1305 Precedence == prec::Assignment && Current->is(tok::colon))) { 1306 break; 1307 } 1308 1309 // Consume scopes: (), [], <> and {} 1310 if (Current->opensScope()) { 1311 while (Current && !Current->closesScope()) { 1312 next(); 1313 parse(); 1314 } 1315 next(); 1316 } else { 1317 // Operator found. 1318 if (CurrentPrecedence == Precedence) { 1319 LatestOperator = Current; 1320 Current->OperatorIndex = OperatorIndex; 1321 ++OperatorIndex; 1322 } 1323 next(/*SkipPastLeadingComments=*/Precedence > 0); 1324 } 1325 } 1326 1327 if (LatestOperator && (Current || Precedence > 0)) { 1328 LatestOperator->LastOperator = true; 1329 if (Precedence == PrecedenceArrowAndPeriod) { 1330 // Call expressions don't have a binary operator precedence. 1331 addFakeParenthesis(Start, prec::Unknown); 1332 } else { 1333 addFakeParenthesis(Start, prec::Level(Precedence)); 1334 } 1335 } 1336 } 1337 1338 private: 1339 /// \brief Gets the precedence (+1) of the given token for binary operators 1340 /// and other tokens that we treat like binary operators. 1341 int getCurrentPrecedence() { 1342 if (Current) { 1343 const FormatToken *NextNonComment = Current->getNextNonComment(); 1344 if (Current->is(TT_ConditionalExpr)) 1345 return prec::Conditional; 1346 if (NextNonComment && NextNonComment->is(tok::colon) && 1347 NextNonComment->is(TT_DictLiteral)) 1348 return prec::Comma; 1349 if (Current->is(TT_LambdaArrow)) 1350 return prec::Comma; 1351 if (Current->is(TT_JsFatArrow)) 1352 return prec::Assignment; 1353 if (Current->isOneOf(tok::semi, TT_InlineASMColon, TT_SelectorName, 1354 TT_JsComputedPropertyName) || 1355 (Current->is(tok::comment) && NextNonComment && 1356 NextNonComment->is(TT_SelectorName))) 1357 return 0; 1358 if (Current->is(TT_RangeBasedForLoopColon)) 1359 return prec::Comma; 1360 if ((Style.Language == FormatStyle::LK_Java || 1361 Style.Language == FormatStyle::LK_JavaScript) && 1362 Current->is(Keywords.kw_instanceof)) 1363 return prec::Relational; 1364 if (Current->is(TT_BinaryOperator) || Current->is(tok::comma)) 1365 return Current->getPrecedence(); 1366 if (Current->isOneOf(tok::period, tok::arrow)) 1367 return PrecedenceArrowAndPeriod; 1368 if (Style.Language == FormatStyle::LK_Java && 1369 Current->isOneOf(Keywords.kw_extends, Keywords.kw_implements, 1370 Keywords.kw_throws)) 1371 return 0; 1372 } 1373 return -1; 1374 } 1375 1376 void addFakeParenthesis(FormatToken *Start, prec::Level Precedence) { 1377 Start->FakeLParens.push_back(Precedence); 1378 if (Precedence > prec::Unknown) 1379 Start->StartsBinaryExpression = true; 1380 if (Current) { 1381 FormatToken *Previous = Current->Previous; 1382 while (Previous->is(tok::comment) && Previous->Previous) 1383 Previous = Previous->Previous; 1384 ++Previous->FakeRParens; 1385 if (Precedence > prec::Unknown) 1386 Previous->EndsBinaryExpression = true; 1387 } 1388 } 1389 1390 /// \brief Parse unary operator expressions and surround them with fake 1391 /// parentheses if appropriate. 1392 void parseUnaryOperator() { 1393 if (!Current || Current->isNot(TT_UnaryOperator)) { 1394 parse(PrecedenceArrowAndPeriod); 1395 return; 1396 } 1397 1398 FormatToken *Start = Current; 1399 next(); 1400 parseUnaryOperator(); 1401 1402 // The actual precedence doesn't matter. 1403 addFakeParenthesis(Start, prec::Unknown); 1404 } 1405 1406 void parseConditionalExpr() { 1407 while (Current && Current->isTrailingComment()) { 1408 next(); 1409 } 1410 FormatToken *Start = Current; 1411 parse(prec::LogicalOr); 1412 if (!Current || !Current->is(tok::question)) 1413 return; 1414 next(); 1415 parse(prec::Assignment); 1416 if (!Current || Current->isNot(TT_ConditionalExpr)) 1417 return; 1418 next(); 1419 parse(prec::Assignment); 1420 addFakeParenthesis(Start, prec::Conditional); 1421 } 1422 1423 void next(bool SkipPastLeadingComments = true) { 1424 if (Current) 1425 Current = Current->Next; 1426 while (Current && 1427 (Current->NewlinesBefore == 0 || SkipPastLeadingComments) && 1428 Current->isTrailingComment()) 1429 Current = Current->Next; 1430 } 1431 1432 const FormatStyle &Style; 1433 const AdditionalKeywords &Keywords; 1434 FormatToken *Current; 1435 }; 1436 1437 } // end anonymous namespace 1438 1439 void TokenAnnotator::setCommentLineLevels( 1440 SmallVectorImpl<AnnotatedLine *> &Lines) { 1441 const AnnotatedLine *NextNonCommentLine = nullptr; 1442 for (SmallVectorImpl<AnnotatedLine *>::reverse_iterator I = Lines.rbegin(), 1443 E = Lines.rend(); 1444 I != E; ++I) { 1445 if (NextNonCommentLine && (*I)->First->is(tok::comment) && 1446 (*I)->First->Next == nullptr) 1447 (*I)->Level = NextNonCommentLine->Level; 1448 else 1449 NextNonCommentLine = (*I)->First->isNot(tok::r_brace) ? (*I) : nullptr; 1450 1451 setCommentLineLevels((*I)->Children); 1452 } 1453 } 1454 1455 void TokenAnnotator::annotate(AnnotatedLine &Line) { 1456 for (SmallVectorImpl<AnnotatedLine *>::iterator I = Line.Children.begin(), 1457 E = Line.Children.end(); 1458 I != E; ++I) { 1459 annotate(**I); 1460 } 1461 AnnotatingParser Parser(Style, Line, Keywords); 1462 Line.Type = Parser.parseLine(); 1463 if (Line.Type == LT_Invalid) 1464 return; 1465 1466 ExpressionParser ExprParser(Style, Keywords, Line); 1467 ExprParser.parse(); 1468 1469 if (Line.startsWith(TT_ObjCMethodSpecifier)) 1470 Line.Type = LT_ObjCMethodDecl; 1471 else if (Line.startsWith(TT_ObjCDecl)) 1472 Line.Type = LT_ObjCDecl; 1473 else if (Line.startsWith(TT_ObjCProperty)) 1474 Line.Type = LT_ObjCProperty; 1475 1476 Line.First->SpacesRequiredBefore = 1; 1477 Line.First->CanBreakBefore = Line.First->MustBreakBefore; 1478 } 1479 1480 // This function heuristically determines whether 'Current' starts the name of a 1481 // function declaration. 1482 static bool isFunctionDeclarationName(const FormatToken &Current) { 1483 auto skipOperatorName = [](const FormatToken* Next) -> const FormatToken* { 1484 for (; Next; Next = Next->Next) { 1485 if (Next->is(TT_OverloadedOperatorLParen)) 1486 return Next; 1487 if (Next->is(TT_OverloadedOperator)) 1488 continue; 1489 if (Next->isOneOf(tok::kw_new, tok::kw_delete)) { 1490 // For 'new[]' and 'delete[]'. 1491 if (Next->Next && Next->Next->is(tok::l_square) && 1492 Next->Next->Next && Next->Next->Next->is(tok::r_square)) 1493 Next = Next->Next->Next; 1494 continue; 1495 } 1496 1497 break; 1498 } 1499 return nullptr; 1500 }; 1501 1502 const FormatToken *Next = Current.Next; 1503 if (Current.is(tok::kw_operator)) { 1504 if (Current.Previous && Current.Previous->is(tok::coloncolon)) 1505 return false; 1506 Next = skipOperatorName(Next); 1507 } else { 1508 if (!Current.is(TT_StartOfName) || Current.NestingLevel != 0) 1509 return false; 1510 for (; Next; Next = Next->Next) { 1511 if (Next->is(TT_TemplateOpener)) { 1512 Next = Next->MatchingParen; 1513 } else if (Next->is(tok::coloncolon)) { 1514 Next = Next->Next; 1515 if (!Next) 1516 return false; 1517 if (Next->is(tok::kw_operator)) { 1518 Next = skipOperatorName(Next->Next); 1519 break; 1520 } 1521 if (!Next->is(tok::identifier)) 1522 return false; 1523 } else if (Next->is(tok::l_paren)) { 1524 break; 1525 } else { 1526 return false; 1527 } 1528 } 1529 } 1530 1531 if (!Next || !Next->is(tok::l_paren)) 1532 return false; 1533 if (Next->Next == Next->MatchingParen) 1534 return true; 1535 for (const FormatToken *Tok = Next->Next; Tok && Tok != Next->MatchingParen; 1536 Tok = Tok->Next) { 1537 if (Tok->is(tok::kw_const) || Tok->isSimpleTypeSpecifier() || 1538 Tok->isOneOf(TT_PointerOrReference, TT_StartOfName)) 1539 return true; 1540 if (Tok->isOneOf(tok::l_brace, tok::string_literal, TT_ObjCMethodExpr) || 1541 Tok->Tok.isLiteral()) 1542 return false; 1543 } 1544 return false; 1545 } 1546 1547 void TokenAnnotator::calculateFormattingInformation(AnnotatedLine &Line) { 1548 for (SmallVectorImpl<AnnotatedLine *>::iterator I = Line.Children.begin(), 1549 E = Line.Children.end(); 1550 I != E; ++I) { 1551 calculateFormattingInformation(**I); 1552 } 1553 1554 Line.First->TotalLength = 1555 Line.First->IsMultiline ? Style.ColumnLimit : Line.First->ColumnWidth; 1556 if (!Line.First->Next) 1557 return; 1558 FormatToken *Current = Line.First->Next; 1559 bool InFunctionDecl = Line.MightBeFunctionDecl; 1560 while (Current) { 1561 if (isFunctionDeclarationName(*Current)) 1562 Current->Type = TT_FunctionDeclarationName; 1563 if (Current->is(TT_LineComment)) { 1564 if (Current->Previous->BlockKind == BK_BracedInit && 1565 Current->Previous->opensScope()) 1566 Current->SpacesRequiredBefore = Style.Cpp11BracedListStyle ? 0 : 1; 1567 else 1568 Current->SpacesRequiredBefore = Style.SpacesBeforeTrailingComments; 1569 1570 // If we find a trailing comment, iterate backwards to determine whether 1571 // it seems to relate to a specific parameter. If so, break before that 1572 // parameter to avoid changing the comment's meaning. E.g. don't move 'b' 1573 // to the previous line in: 1574 // SomeFunction(a, 1575 // b, // comment 1576 // c); 1577 if (!Current->HasUnescapedNewline) { 1578 for (FormatToken *Parameter = Current->Previous; Parameter; 1579 Parameter = Parameter->Previous) { 1580 if (Parameter->isOneOf(tok::comment, tok::r_brace)) 1581 break; 1582 if (Parameter->Previous && Parameter->Previous->is(tok::comma)) { 1583 if (!Parameter->Previous->is(TT_CtorInitializerComma) && 1584 Parameter->HasUnescapedNewline) 1585 Parameter->MustBreakBefore = true; 1586 break; 1587 } 1588 } 1589 } 1590 } else if (Current->SpacesRequiredBefore == 0 && 1591 spaceRequiredBefore(Line, *Current)) { 1592 Current->SpacesRequiredBefore = 1; 1593 } 1594 1595 Current->MustBreakBefore = 1596 Current->MustBreakBefore || mustBreakBefore(Line, *Current); 1597 1598 if ((Style.AlwaysBreakAfterDefinitionReturnType == FormatStyle::DRTBS_All || 1599 (Style.AlwaysBreakAfterDefinitionReturnType == 1600 FormatStyle::DRTBS_TopLevel && 1601 Line.Level == 0)) && 1602 InFunctionDecl && Current->is(TT_FunctionDeclarationName) && 1603 !Line.Last->isOneOf(tok::semi, tok::comment)) // Only for definitions. 1604 // FIXME: Line.Last points to other characters than tok::semi 1605 // and tok::lbrace. 1606 Current->MustBreakBefore = true; 1607 1608 Current->CanBreakBefore = 1609 Current->MustBreakBefore || canBreakBefore(Line, *Current); 1610 unsigned ChildSize = 0; 1611 if (Current->Previous->Children.size() == 1) { 1612 FormatToken &LastOfChild = *Current->Previous->Children[0]->Last; 1613 ChildSize = LastOfChild.isTrailingComment() ? Style.ColumnLimit 1614 : LastOfChild.TotalLength + 1; 1615 } 1616 const FormatToken *Prev = Current->Previous; 1617 if (Current->MustBreakBefore || Prev->Children.size() > 1 || 1618 (Prev->Children.size() == 1 && 1619 Prev->Children[0]->First->MustBreakBefore) || 1620 Current->IsMultiline) 1621 Current->TotalLength = Prev->TotalLength + Style.ColumnLimit; 1622 else 1623 Current->TotalLength = Prev->TotalLength + Current->ColumnWidth + 1624 ChildSize + Current->SpacesRequiredBefore; 1625 1626 if (Current->is(TT_CtorInitializerColon)) 1627 InFunctionDecl = false; 1628 1629 // FIXME: Only calculate this if CanBreakBefore is true once static 1630 // initializers etc. are sorted out. 1631 // FIXME: Move magic numbers to a better place. 1632 Current->SplitPenalty = 20 * Current->BindingStrength + 1633 splitPenalty(Line, *Current, InFunctionDecl); 1634 1635 Current = Current->Next; 1636 } 1637 1638 calculateUnbreakableTailLengths(Line); 1639 for (Current = Line.First; Current != nullptr; Current = Current->Next) { 1640 if (Current->Role) 1641 Current->Role->precomputeFormattingInfos(Current); 1642 } 1643 1644 DEBUG({ printDebugInfo(Line); }); 1645 } 1646 1647 void TokenAnnotator::calculateUnbreakableTailLengths(AnnotatedLine &Line) { 1648 unsigned UnbreakableTailLength = 0; 1649 FormatToken *Current = Line.Last; 1650 while (Current) { 1651 Current->UnbreakableTailLength = UnbreakableTailLength; 1652 if (Current->CanBreakBefore || 1653 Current->isOneOf(tok::comment, tok::string_literal)) { 1654 UnbreakableTailLength = 0; 1655 } else { 1656 UnbreakableTailLength += 1657 Current->ColumnWidth + Current->SpacesRequiredBefore; 1658 } 1659 Current = Current->Previous; 1660 } 1661 } 1662 1663 unsigned TokenAnnotator::splitPenalty(const AnnotatedLine &Line, 1664 const FormatToken &Tok, 1665 bool InFunctionDecl) { 1666 const FormatToken &Left = *Tok.Previous; 1667 const FormatToken &Right = Tok; 1668 1669 if (Left.is(tok::semi)) 1670 return 0; 1671 1672 if (Style.Language == FormatStyle::LK_Java) { 1673 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) 1674 return 1; 1675 if (Right.is(Keywords.kw_implements)) 1676 return 2; 1677 if (Left.is(tok::comma) && Left.NestingLevel == 0) 1678 return 3; 1679 } else if (Style.Language == FormatStyle::LK_JavaScript) { 1680 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) 1681 return 100; 1682 if (Left.is(TT_JsTypeColon)) 1683 return 100; 1684 } 1685 1686 if (Left.is(tok::comma) || (Right.is(tok::identifier) && Right.Next && 1687 Right.Next->is(TT_DictLiteral))) 1688 return 1; 1689 if (Right.is(tok::l_square)) { 1690 if (Style.Language == FormatStyle::LK_Proto) 1691 return 1; 1692 // Slightly prefer formatting local lambda definitions like functions. 1693 if (Right.is(TT_LambdaLSquare) && Left.is(tok::equal)) 1694 return 50; 1695 if (!Right.isOneOf(TT_ObjCMethodExpr, TT_LambdaLSquare, 1696 TT_ArrayInitializerLSquare)) 1697 return 500; 1698 } 1699 1700 if (Right.isOneOf(TT_StartOfName, TT_FunctionDeclarationName) || 1701 Right.is(tok::kw_operator)) { 1702 if (Line.startsWith(tok::kw_for) && Right.PartOfMultiVariableDeclStmt) 1703 return 3; 1704 if (Left.is(TT_StartOfName)) 1705 return 110; 1706 if (InFunctionDecl && Right.NestingLevel == 0) 1707 return Style.PenaltyReturnTypeOnItsOwnLine; 1708 return 200; 1709 } 1710 if (Right.is(TT_PointerOrReference)) 1711 return 190; 1712 if (Right.is(TT_LambdaArrow)) 1713 return 110; 1714 if (Left.is(tok::equal) && Right.is(tok::l_brace)) 1715 return 150; 1716 if (Left.is(TT_CastRParen)) 1717 return 100; 1718 if (Left.is(tok::coloncolon) || 1719 (Right.is(tok::period) && Style.Language == FormatStyle::LK_Proto)) 1720 return 500; 1721 if (Left.isOneOf(tok::kw_class, tok::kw_struct)) 1722 return 5000; 1723 1724 if (Left.isOneOf(TT_RangeBasedForLoopColon, TT_InheritanceColon)) 1725 return 2; 1726 1727 if (Right.isMemberAccess()) { 1728 if (Left.is(tok::r_paren) && Left.MatchingParen && 1729 Left.MatchingParen->ParameterCount > 0) 1730 return 20; // Should be smaller than breaking at a nested comma. 1731 return 150; 1732 } 1733 1734 if (Right.is(TT_TrailingAnnotation) && 1735 (!Right.Next || Right.Next->isNot(tok::l_paren))) { 1736 // Moving trailing annotations to the next line is fine for ObjC method 1737 // declarations. 1738 if (Line.startsWith(TT_ObjCMethodSpecifier)) 1739 return 10; 1740 // Generally, breaking before a trailing annotation is bad unless it is 1741 // function-like. It seems to be especially preferable to keep standard 1742 // annotations (i.e. "const", "final" and "override") on the same line. 1743 // Use a slightly higher penalty after ")" so that annotations like 1744 // "const override" are kept together. 1745 bool is_short_annotation = Right.TokenText.size() < 10; 1746 return (Left.is(tok::r_paren) ? 100 : 120) + (is_short_annotation ? 50 : 0); 1747 } 1748 1749 // In for-loops, prefer breaking at ',' and ';'. 1750 if (Line.startsWith(tok::kw_for) && Left.is(tok::equal)) 1751 return 4; 1752 1753 // In Objective-C method expressions, prefer breaking before "param:" over 1754 // breaking after it. 1755 if (Right.is(TT_SelectorName)) 1756 return 0; 1757 if (Left.is(tok::colon) && Left.is(TT_ObjCMethodExpr)) 1758 return Line.MightBeFunctionDecl ? 50 : 500; 1759 1760 if (Left.is(tok::l_paren) && InFunctionDecl && 1761 Style.AlignAfterOpenBracket != FormatStyle::BAS_DontAlign) 1762 return 100; 1763 if (Left.is(tok::l_paren) && Left.Previous && 1764 Left.Previous->isOneOf(tok::kw_if, tok::kw_for)) 1765 return 1000; 1766 if (Left.is(tok::equal) && InFunctionDecl) 1767 return 110; 1768 if (Right.is(tok::r_brace)) 1769 return 1; 1770 if (Left.is(TT_TemplateOpener)) 1771 return 100; 1772 if (Left.opensScope()) { 1773 if (Style.AlignAfterOpenBracket == FormatStyle::BAS_DontAlign) 1774 return 0; 1775 return Left.ParameterCount > 1 ? Style.PenaltyBreakBeforeFirstCallParameter 1776 : 19; 1777 } 1778 if (Left.is(TT_JavaAnnotation)) 1779 return 50; 1780 1781 if (Right.is(tok::lessless)) { 1782 if (Left.is(tok::string_literal) && 1783 (!Right.LastOperator || Right.OperatorIndex != 1)) { 1784 StringRef Content = Left.TokenText; 1785 if (Content.startswith("\"")) 1786 Content = Content.drop_front(1); 1787 if (Content.endswith("\"")) 1788 Content = Content.drop_back(1); 1789 Content = Content.trim(); 1790 if (Content.size() > 1 && 1791 (Content.back() == ':' || Content.back() == '=')) 1792 return 25; 1793 } 1794 return 1; // Breaking at a << is really cheap. 1795 } 1796 if (Left.is(TT_ConditionalExpr)) 1797 return prec::Conditional; 1798 prec::Level Level = Left.getPrecedence(); 1799 if (Level != prec::Unknown) 1800 return Level; 1801 Level = Right.getPrecedence(); 1802 if (Level != prec::Unknown) 1803 return Level; 1804 1805 return 3; 1806 } 1807 1808 bool TokenAnnotator::spaceRequiredBetween(const AnnotatedLine &Line, 1809 const FormatToken &Left, 1810 const FormatToken &Right) { 1811 if (Left.is(tok::kw_return) && Right.isNot(tok::semi)) 1812 return true; 1813 if (Style.ObjCSpaceAfterProperty && Line.Type == LT_ObjCProperty && 1814 Left.Tok.getObjCKeywordID() == tok::objc_property) 1815 return true; 1816 if (Right.is(tok::hashhash)) 1817 return Left.is(tok::hash); 1818 if (Left.isOneOf(tok::hashhash, tok::hash)) 1819 return Right.is(tok::hash); 1820 if (Left.is(tok::l_paren) && Right.is(tok::r_paren)) 1821 return Style.SpaceInEmptyParentheses; 1822 if (Left.is(tok::l_paren) || Right.is(tok::r_paren)) 1823 return (Right.is(TT_CastRParen) || 1824 (Left.MatchingParen && Left.MatchingParen->is(TT_CastRParen))) 1825 ? Style.SpacesInCStyleCastParentheses 1826 : Style.SpacesInParentheses; 1827 if (Right.isOneOf(tok::semi, tok::comma)) 1828 return false; 1829 if (Right.is(tok::less) && 1830 (Left.is(tok::kw_template) || 1831 (Line.Type == LT_ObjCDecl && Style.ObjCSpaceBeforeProtocolList))) 1832 return true; 1833 if (Left.isOneOf(tok::exclaim, tok::tilde)) 1834 return false; 1835 if (Left.is(tok::at) && 1836 Right.isOneOf(tok::identifier, tok::string_literal, tok::char_constant, 1837 tok::numeric_constant, tok::l_paren, tok::l_brace, 1838 tok::kw_true, tok::kw_false)) 1839 return false; 1840 if (Left.is(tok::coloncolon)) 1841 return false; 1842 if (Left.is(tok::less) || Right.isOneOf(tok::greater, tok::less)) 1843 return false; 1844 if (Right.is(tok::ellipsis)) 1845 return Left.Tok.isLiteral(); 1846 if (Left.is(tok::l_square) && Right.is(tok::amp)) 1847 return false; 1848 if (Right.is(TT_PointerOrReference)) 1849 return (Left.is(tok::r_paren) && Left.MatchingParen && 1850 (Left.MatchingParen->is(TT_OverloadedOperatorLParen) || 1851 (Left.MatchingParen->Previous && 1852 Left.MatchingParen->Previous->is(TT_FunctionDeclarationName)))) || 1853 (Left.Tok.isLiteral() || 1854 (!Left.isOneOf(TT_PointerOrReference, tok::l_paren) && 1855 (Style.PointerAlignment != FormatStyle::PAS_Left || 1856 Line.IsMultiVariableDeclStmt))); 1857 if (Right.is(TT_FunctionTypeLParen) && Left.isNot(tok::l_paren) && 1858 (!Left.is(TT_PointerOrReference) || 1859 (Style.PointerAlignment != FormatStyle::PAS_Right && 1860 !Line.IsMultiVariableDeclStmt))) 1861 return true; 1862 if (Left.is(TT_PointerOrReference)) 1863 return Right.Tok.isLiteral() || 1864 Right.isOneOf(TT_BlockComment, Keywords.kw_final, 1865 Keywords.kw_override) || 1866 (Right.is(tok::l_brace) && Right.BlockKind == BK_Block) || 1867 (!Right.isOneOf(TT_PointerOrReference, TT_ArraySubscriptLSquare, 1868 tok::l_paren) && 1869 (Style.PointerAlignment != FormatStyle::PAS_Right && 1870 !Line.IsMultiVariableDeclStmt) && 1871 Left.Previous && 1872 !Left.Previous->isOneOf(tok::l_paren, tok::coloncolon)); 1873 if (Right.is(tok::star) && Left.is(tok::l_paren)) 1874 return false; 1875 if (Left.is(tok::l_square)) 1876 return (Left.is(TT_ArrayInitializerLSquare) && 1877 Style.SpacesInContainerLiterals && Right.isNot(tok::r_square)) || 1878 (Left.is(TT_ArraySubscriptLSquare) && Style.SpacesInSquareBrackets && 1879 Right.isNot(tok::r_square)); 1880 if (Right.is(tok::r_square)) 1881 return Right.MatchingParen && 1882 ((Style.SpacesInContainerLiterals && 1883 Right.MatchingParen->is(TT_ArrayInitializerLSquare)) || 1884 (Style.SpacesInSquareBrackets && 1885 Right.MatchingParen->is(TT_ArraySubscriptLSquare))); 1886 if (Right.is(tok::l_square) && 1887 !Right.isOneOf(TT_ObjCMethodExpr, TT_LambdaLSquare) && 1888 !Left.isOneOf(tok::numeric_constant, TT_DictLiteral)) 1889 return false; 1890 if (Left.is(tok::colon)) 1891 return !Left.is(TT_ObjCMethodExpr); 1892 if (Left.is(tok::l_brace) && Right.is(tok::r_brace)) 1893 return !Left.Children.empty(); // No spaces in "{}". 1894 if ((Left.is(tok::l_brace) && Left.BlockKind != BK_Block) || 1895 (Right.is(tok::r_brace) && Right.MatchingParen && 1896 Right.MatchingParen->BlockKind != BK_Block)) 1897 return !Style.Cpp11BracedListStyle; 1898 if (Left.is(TT_BlockComment)) 1899 return !Left.TokenText.endswith("=*/"); 1900 if (Right.is(tok::l_paren)) { 1901 if (Left.is(tok::r_paren) && Left.is(TT_AttributeParen)) 1902 return true; 1903 return Line.Type == LT_ObjCDecl || Left.is(tok::semi) || 1904 (Style.SpaceBeforeParens != FormatStyle::SBPO_Never && 1905 (Left.isOneOf(tok::kw_if, tok::pp_elif, tok::kw_for, tok::kw_while, 1906 tok::kw_switch, tok::kw_case, TT_ForEachMacro, 1907 TT_ObjCForIn) || 1908 (Left.isOneOf(tok::kw_try, Keywords.kw___except, tok::kw_catch, 1909 tok::kw_new, tok::kw_delete) && 1910 (!Left.Previous || Left.Previous->isNot(tok::period))))) || 1911 (Style.SpaceBeforeParens == FormatStyle::SBPO_Always && 1912 (Left.is(tok::identifier) || Left.isFunctionLikeKeyword() || 1913 Left.is(tok::r_paren)) && 1914 Line.Type != LT_PreprocessorDirective); 1915 } 1916 if (Left.is(tok::at) && Right.Tok.getObjCKeywordID() != tok::objc_not_keyword) 1917 return false; 1918 if (Right.is(TT_UnaryOperator)) 1919 return !Left.isOneOf(tok::l_paren, tok::l_square, tok::at) && 1920 (Left.isNot(tok::colon) || Left.isNot(TT_ObjCMethodExpr)); 1921 if ((Left.isOneOf(tok::identifier, tok::greater, tok::r_square, 1922 tok::r_paren) || 1923 Left.isSimpleTypeSpecifier()) && 1924 Right.is(tok::l_brace) && Right.getNextNonComment() && 1925 Right.BlockKind != BK_Block) 1926 return false; 1927 if (Left.is(tok::period) || Right.is(tok::period)) 1928 return false; 1929 if (Right.is(tok::hash) && Left.is(tok::identifier) && Left.TokenText == "L") 1930 return false; 1931 if (Left.is(TT_TemplateCloser) && Left.MatchingParen && 1932 Left.MatchingParen->Previous && 1933 Left.MatchingParen->Previous->is(tok::period)) 1934 // A.<B>DoSomething(); 1935 return false; 1936 if (Left.is(TT_TemplateCloser) && Right.is(tok::l_square)) 1937 return false; 1938 return true; 1939 } 1940 1941 bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line, 1942 const FormatToken &Right) { 1943 const FormatToken &Left = *Right.Previous; 1944 if (Right.Tok.getIdentifierInfo() && Left.Tok.getIdentifierInfo()) 1945 return true; // Never ever merge two identifiers. 1946 if (Style.Language == FormatStyle::LK_Cpp) { 1947 if (Left.is(tok::kw_operator)) 1948 return Right.is(tok::coloncolon); 1949 } else if (Style.Language == FormatStyle::LK_Proto) { 1950 if (Right.is(tok::period) && 1951 Left.isOneOf(Keywords.kw_optional, Keywords.kw_required, 1952 Keywords.kw_repeated)) 1953 return true; 1954 if (Right.is(tok::l_paren) && 1955 Left.isOneOf(Keywords.kw_returns, Keywords.kw_option)) 1956 return true; 1957 } else if (Style.Language == FormatStyle::LK_JavaScript) { 1958 if (Left.isOneOf(Keywords.kw_let, Keywords.kw_var, TT_JsFatArrow)) 1959 return true; 1960 if (Right.isOneOf(TT_JsTypeColon, TT_JsTypeOptionalQuestion)) 1961 return false; 1962 if ((Left.is(tok::l_brace) || Right.is(tok::r_brace)) && 1963 Line.First->isOneOf(Keywords.kw_import, tok::kw_export)) 1964 return false; 1965 if (Left.is(tok::ellipsis)) 1966 return false; 1967 if (Left.is(TT_TemplateCloser) && 1968 !Right.isOneOf(tok::equal, tok::l_brace, tok::comma, tok::l_square, 1969 Keywords.kw_implements, Keywords.kw_extends)) 1970 // Type assertions ('<type>expr') are not followed by whitespace. Other 1971 // locations that should have whitespace following are identified by the 1972 // above set of follower tokens. 1973 return false; 1974 } else if (Style.Language == FormatStyle::LK_Java) { 1975 if (Left.is(tok::r_square) && Right.is(tok::l_brace)) 1976 return true; 1977 if (Left.is(Keywords.kw_synchronized) && Right.is(tok::l_paren)) 1978 return Style.SpaceBeforeParens != FormatStyle::SBPO_Never; 1979 if ((Left.isOneOf(tok::kw_static, tok::kw_public, tok::kw_private, 1980 tok::kw_protected) || 1981 Left.isOneOf(Keywords.kw_final, Keywords.kw_abstract, 1982 Keywords.kw_native)) && 1983 Right.is(TT_TemplateOpener)) 1984 return true; 1985 } 1986 if (Left.is(TT_ImplicitStringLiteral)) 1987 return Right.WhitespaceRange.getBegin() != Right.WhitespaceRange.getEnd(); 1988 if (Line.Type == LT_ObjCMethodDecl) { 1989 if (Left.is(TT_ObjCMethodSpecifier)) 1990 return true; 1991 if (Left.is(tok::r_paren) && Right.is(tok::identifier)) 1992 // Don't space between ')' and <id> 1993 return false; 1994 } 1995 if (Line.Type == LT_ObjCProperty && 1996 (Right.is(tok::equal) || Left.is(tok::equal))) 1997 return false; 1998 1999 if (Right.isOneOf(TT_TrailingReturnArrow, TT_LambdaArrow) || 2000 Left.isOneOf(TT_TrailingReturnArrow, TT_LambdaArrow)) 2001 return true; 2002 if (Left.is(tok::comma)) 2003 return true; 2004 if (Right.is(tok::comma)) 2005 return false; 2006 if (Right.isOneOf(TT_CtorInitializerColon, TT_ObjCBlockLParen)) 2007 return true; 2008 if (Right.is(TT_OverloadedOperatorLParen)) 2009 return Style.SpaceBeforeParens == FormatStyle::SBPO_Always; 2010 if (Right.is(tok::colon)) { 2011 if (Line.First->isOneOf(tok::kw_case, tok::kw_default) || 2012 !Right.getNextNonComment() || Right.getNextNonComment()->is(tok::semi)) 2013 return false; 2014 if (Right.is(TT_ObjCMethodExpr)) 2015 return false; 2016 if (Left.is(tok::question)) 2017 return false; 2018 if (Right.is(TT_InlineASMColon) && Left.is(tok::coloncolon)) 2019 return false; 2020 if (Right.is(TT_DictLiteral)) 2021 return Style.SpacesInContainerLiterals; 2022 return true; 2023 } 2024 if (Left.is(TT_UnaryOperator)) 2025 return Right.is(TT_BinaryOperator); 2026 2027 // If the next token is a binary operator or a selector name, we have 2028 // incorrectly classified the parenthesis as a cast. FIXME: Detect correctly. 2029 if (Left.is(TT_CastRParen)) 2030 return Style.SpaceAfterCStyleCast || 2031 Right.isOneOf(TT_BinaryOperator, TT_SelectorName); 2032 2033 if (Left.is(tok::greater) && Right.is(tok::greater)) 2034 return Right.is(TT_TemplateCloser) && Left.is(TT_TemplateCloser) && 2035 (Style.Standard != FormatStyle::LS_Cpp11 || Style.SpacesInAngles); 2036 if (Right.isOneOf(tok::arrow, tok::period, tok::arrowstar, tok::periodstar) || 2037 Left.isOneOf(tok::arrow, tok::period, tok::arrowstar, tok::periodstar)) 2038 return false; 2039 if (!Style.SpaceBeforeAssignmentOperators && 2040 Right.getPrecedence() == prec::Assignment) 2041 return false; 2042 if (Right.is(tok::coloncolon) && Left.isNot(tok::l_brace)) 2043 return (Left.is(TT_TemplateOpener) && 2044 Style.Standard == FormatStyle::LS_Cpp03) || 2045 !(Left.isOneOf(tok::identifier, tok::l_paren, tok::r_paren) || 2046 Left.isOneOf(TT_TemplateCloser, TT_TemplateOpener)); 2047 if ((Left.is(TT_TemplateOpener)) != (Right.is(TT_TemplateCloser))) 2048 return Style.SpacesInAngles; 2049 if ((Right.is(TT_BinaryOperator) && !Left.is(tok::l_paren)) || 2050 Left.isOneOf(TT_BinaryOperator, TT_ConditionalExpr)) 2051 return true; 2052 if (Left.is(TT_TemplateCloser) && Right.is(tok::l_paren) && 2053 Right.isNot(TT_FunctionTypeLParen)) 2054 return Style.SpaceBeforeParens == FormatStyle::SBPO_Always; 2055 if (Right.is(TT_TemplateOpener) && Left.is(tok::r_paren) && 2056 Left.MatchingParen && Left.MatchingParen->is(TT_OverloadedOperatorLParen)) 2057 return false; 2058 if (Right.is(tok::less) && Left.isNot(tok::l_paren) && 2059 Line.startsWith(tok::hash)) 2060 return true; 2061 if (Right.is(TT_TrailingUnaryOperator)) 2062 return false; 2063 if (Left.is(TT_RegexLiteral)) 2064 return false; 2065 return spaceRequiredBetween(Line, Left, Right); 2066 } 2067 2068 // Returns 'true' if 'Tok' is a brace we'd want to break before in Allman style. 2069 static bool isAllmanBrace(const FormatToken &Tok) { 2070 return Tok.is(tok::l_brace) && Tok.BlockKind == BK_Block && 2071 !Tok.isOneOf(TT_ObjCBlockLBrace, TT_DictLiteral); 2072 } 2073 2074 bool TokenAnnotator::mustBreakBefore(const AnnotatedLine &Line, 2075 const FormatToken &Right) { 2076 const FormatToken &Left = *Right.Previous; 2077 if (Right.NewlinesBefore > 1 && Style.MaxEmptyLinesToKeep > 0) 2078 return true; 2079 2080 if (Style.Language == FormatStyle::LK_JavaScript) { 2081 // FIXME: This might apply to other languages and token kinds. 2082 if (Right.is(tok::char_constant) && Left.is(tok::plus) && Left.Previous && 2083 Left.Previous->is(tok::char_constant)) 2084 return true; 2085 if (Left.is(TT_DictLiteral) && Left.is(tok::l_brace) && Line.Level == 0 && 2086 Left.Previous && Left.Previous->is(tok::equal) && 2087 Line.First->isOneOf(tok::identifier, Keywords.kw_import, tok::kw_export, 2088 tok::kw_const) && 2089 // kw_var/kw_let are pseudo-tokens that are tok::identifier, so match 2090 // above. 2091 !Line.First->isOneOf(Keywords.kw_var, Keywords.kw_let)) 2092 // Object literals on the top level of a file are treated as "enum-style". 2093 // Each key/value pair is put on a separate line, instead of bin-packing. 2094 return true; 2095 if (Left.is(tok::l_brace) && Line.Level == 0 && 2096 (Line.startsWith(tok::kw_enum) || 2097 Line.startsWith(tok::kw_export, tok::kw_enum))) 2098 // JavaScript top-level enum key/value pairs are put on separate lines 2099 // instead of bin-packing. 2100 return true; 2101 if (Right.is(tok::r_brace) && Left.is(tok::l_brace) && 2102 !Left.Children.empty()) 2103 // Support AllowShortFunctionsOnASingleLine for JavaScript. 2104 return Style.AllowShortFunctionsOnASingleLine == FormatStyle::SFS_None || 2105 (Left.NestingLevel == 0 && Line.Level == 0 && 2106 Style.AllowShortFunctionsOnASingleLine == 2107 FormatStyle::SFS_Inline); 2108 } else if (Style.Language == FormatStyle::LK_Java) { 2109 if (Right.is(tok::plus) && Left.is(tok::string_literal) && Right.Next && 2110 Right.Next->is(tok::string_literal)) 2111 return true; 2112 } 2113 2114 // If the last token before a '}' is a comma or a trailing comment, the 2115 // intention is to insert a line break after it in order to make shuffling 2116 // around entries easier. 2117 const FormatToken *BeforeClosingBrace = nullptr; 2118 if (Left.isOneOf(tok::l_brace, TT_ArrayInitializerLSquare) && 2119 Left.BlockKind != BK_Block && Left.MatchingParen) 2120 BeforeClosingBrace = Left.MatchingParen->Previous; 2121 else if (Right.MatchingParen && 2122 Right.MatchingParen->isOneOf(tok::l_brace, 2123 TT_ArrayInitializerLSquare)) 2124 BeforeClosingBrace = &Left; 2125 if (BeforeClosingBrace && (BeforeClosingBrace->is(tok::comma) || 2126 BeforeClosingBrace->isTrailingComment())) 2127 return true; 2128 2129 if (Right.is(tok::comment)) 2130 return Left.BlockKind != BK_BracedInit && 2131 Left.isNot(TT_CtorInitializerColon) && 2132 (Right.NewlinesBefore > 0 && Right.HasUnescapedNewline); 2133 if (Left.isTrailingComment()) 2134 return true; 2135 if (Left.isStringLiteral() && 2136 (Right.isStringLiteral() || Right.is(TT_ObjCStringLiteral))) 2137 return true; 2138 if (Right.Previous->IsUnterminatedLiteral) 2139 return true; 2140 if (Right.is(tok::lessless) && Right.Next && 2141 Right.Previous->is(tok::string_literal) && 2142 Right.Next->is(tok::string_literal)) 2143 return true; 2144 if (Right.Previous->ClosesTemplateDeclaration && 2145 Right.Previous->MatchingParen && 2146 Right.Previous->MatchingParen->NestingLevel == 0 && 2147 Style.AlwaysBreakTemplateDeclarations) 2148 return true; 2149 if ((Right.isOneOf(TT_CtorInitializerComma, TT_CtorInitializerColon)) && 2150 Style.BreakConstructorInitializersBeforeComma && 2151 !Style.ConstructorInitializerAllOnOneLineOrOnePerLine) 2152 return true; 2153 if (Right.is(tok::string_literal) && Right.TokenText.startswith("R\"")) 2154 // Raw string literals are special wrt. line breaks. The author has made a 2155 // deliberate choice and might have aligned the contents of the string 2156 // literal accordingly. Thus, we try keep existing line breaks. 2157 return Right.NewlinesBefore > 0; 2158 if (Right.Previous->is(tok::l_brace) && Right.NestingLevel == 1 && 2159 Style.Language == FormatStyle::LK_Proto) 2160 // Don't put enums onto single lines in protocol buffers. 2161 return true; 2162 if (Right.is(TT_InlineASMBrace)) 2163 return Right.HasUnescapedNewline; 2164 if (isAllmanBrace(Left) || isAllmanBrace(Right)) 2165 return (Line.startsWith(tok::kw_enum) && Style.BraceWrapping.AfterEnum) || 2166 (Line.startsWith(tok::kw_class) && Style.BraceWrapping.AfterClass) || 2167 (Line.startsWith(tok::kw_struct) && Style.BraceWrapping.AfterStruct); 2168 if (Style.Language == FormatStyle::LK_Proto && Left.isNot(tok::l_brace) && 2169 Right.is(TT_SelectorName)) 2170 return true; 2171 if (Left.is(TT_ObjCBlockLBrace) && !Style.AllowShortBlocksOnASingleLine) 2172 return true; 2173 2174 if ((Style.Language == FormatStyle::LK_Java || 2175 Style.Language == FormatStyle::LK_JavaScript) && 2176 Left.is(TT_LeadingJavaAnnotation) && 2177 Right.isNot(TT_LeadingJavaAnnotation) && Right.isNot(tok::l_paren) && 2178 (Line.Last->is(tok::l_brace) || Style.BreakAfterJavaFieldAnnotations)) 2179 return true; 2180 2181 return false; 2182 } 2183 2184 bool TokenAnnotator::canBreakBefore(const AnnotatedLine &Line, 2185 const FormatToken &Right) { 2186 const FormatToken &Left = *Right.Previous; 2187 2188 // Language-specific stuff. 2189 if (Style.Language == FormatStyle::LK_Java) { 2190 if (Left.isOneOf(Keywords.kw_throws, Keywords.kw_extends, 2191 Keywords.kw_implements)) 2192 return false; 2193 if (Right.isOneOf(Keywords.kw_throws, Keywords.kw_extends, 2194 Keywords.kw_implements)) 2195 return true; 2196 } else if (Style.Language == FormatStyle::LK_JavaScript) { 2197 if (Left.is(TT_JsFatArrow) && Right.is(tok::l_brace)) 2198 return false; 2199 if (Left.is(TT_JsTypeColon)) 2200 return true; 2201 } 2202 2203 if (Left.is(tok::at)) 2204 return false; 2205 if (Left.Tok.getObjCKeywordID() == tok::objc_interface) 2206 return false; 2207 if (Left.isOneOf(TT_JavaAnnotation, TT_LeadingJavaAnnotation)) 2208 return !Right.is(tok::l_paren); 2209 if (Right.is(TT_PointerOrReference)) 2210 return Line.IsMultiVariableDeclStmt || 2211 (Style.PointerAlignment == FormatStyle::PAS_Right && 2212 (!Right.Next || Right.Next->isNot(TT_FunctionDeclarationName))); 2213 if (Right.isOneOf(TT_StartOfName, TT_FunctionDeclarationName) || 2214 Right.is(tok::kw_operator)) 2215 return true; 2216 if (Left.is(TT_PointerOrReference)) 2217 return false; 2218 if (Right.isTrailingComment()) 2219 // We rely on MustBreakBefore being set correctly here as we should not 2220 // change the "binding" behavior of a comment. 2221 // The first comment in a braced lists is always interpreted as belonging to 2222 // the first list element. Otherwise, it should be placed outside of the 2223 // list. 2224 return Left.BlockKind == BK_BracedInit; 2225 if (Left.is(tok::question) && Right.is(tok::colon)) 2226 return false; 2227 if (Right.is(TT_ConditionalExpr) || Right.is(tok::question)) 2228 return Style.BreakBeforeTernaryOperators; 2229 if (Left.is(TT_ConditionalExpr) || Left.is(tok::question)) 2230 return !Style.BreakBeforeTernaryOperators; 2231 if (Right.is(TT_InheritanceColon)) 2232 return true; 2233 if (Right.is(tok::colon) && 2234 !Right.isOneOf(TT_CtorInitializerColon, TT_InlineASMColon)) 2235 return false; 2236 if (Left.is(tok::colon) && (Left.isOneOf(TT_DictLiteral, TT_ObjCMethodExpr))) 2237 return true; 2238 if (Right.is(TT_SelectorName) || (Right.is(tok::identifier) && Right.Next && 2239 Right.Next->is(TT_ObjCMethodExpr))) 2240 return Left.isNot(tok::period); // FIXME: Properly parse ObjC calls. 2241 if (Left.is(tok::r_paren) && Line.Type == LT_ObjCProperty) 2242 return true; 2243 if (Left.ClosesTemplateDeclaration || Left.is(TT_FunctionAnnotationRParen)) 2244 return true; 2245 if (Right.isOneOf(TT_RangeBasedForLoopColon, TT_OverloadedOperatorLParen, 2246 TT_OverloadedOperator)) 2247 return false; 2248 if (Left.is(TT_RangeBasedForLoopColon)) 2249 return true; 2250 if (Right.is(TT_RangeBasedForLoopColon)) 2251 return false; 2252 if (Left.isOneOf(TT_TemplateCloser, TT_UnaryOperator) || 2253 Left.is(tok::kw_operator)) 2254 return false; 2255 if (Left.is(tok::equal) && !Right.isOneOf(tok::kw_default, tok::kw_delete) && 2256 Line.Type == LT_VirtualFunctionDecl && Left.NestingLevel == 0) 2257 return false; 2258 if (Left.is(tok::l_paren) && Left.is(TT_AttributeParen)) 2259 return false; 2260 if (Left.is(tok::l_paren) && Left.Previous && 2261 (Left.Previous->isOneOf(TT_BinaryOperator, TT_CastRParen))) 2262 return false; 2263 if (Right.is(TT_ImplicitStringLiteral)) 2264 return false; 2265 2266 if (Right.is(tok::r_paren) || Right.is(TT_TemplateCloser)) 2267 return false; 2268 if (Right.is(tok::r_square) && Right.MatchingParen && 2269 Right.MatchingParen->is(TT_LambdaLSquare)) 2270 return false; 2271 2272 // We only break before r_brace if there was a corresponding break before 2273 // the l_brace, which is tracked by BreakBeforeClosingBrace. 2274 if (Right.is(tok::r_brace)) 2275 return Right.MatchingParen && Right.MatchingParen->BlockKind == BK_Block; 2276 2277 // Allow breaking after a trailing annotation, e.g. after a method 2278 // declaration. 2279 if (Left.is(TT_TrailingAnnotation)) 2280 return !Right.isOneOf(tok::l_brace, tok::semi, tok::equal, tok::l_paren, 2281 tok::less, tok::coloncolon); 2282 2283 if (Right.is(tok::kw___attribute)) 2284 return true; 2285 2286 if (Left.is(tok::identifier) && Right.is(tok::string_literal)) 2287 return true; 2288 2289 if (Right.is(tok::identifier) && Right.Next && Right.Next->is(TT_DictLiteral)) 2290 return true; 2291 2292 if (Left.is(TT_CtorInitializerComma) && 2293 Style.BreakConstructorInitializersBeforeComma) 2294 return false; 2295 if (Right.is(TT_CtorInitializerComma) && 2296 Style.BreakConstructorInitializersBeforeComma) 2297 return true; 2298 if ((Left.is(tok::greater) && Right.is(tok::greater)) || 2299 (Left.is(tok::less) && Right.is(tok::less))) 2300 return false; 2301 if (Right.is(TT_BinaryOperator) && 2302 Style.BreakBeforeBinaryOperators != FormatStyle::BOS_None && 2303 (Style.BreakBeforeBinaryOperators == FormatStyle::BOS_All || 2304 Right.getPrecedence() != prec::Assignment)) 2305 return true; 2306 if (Left.is(TT_ArrayInitializerLSquare)) 2307 return true; 2308 if (Right.is(tok::kw_typename) && Left.isNot(tok::kw_const)) 2309 return true; 2310 if ((Left.isBinaryOperator() || Left.is(TT_BinaryOperator)) && 2311 !Left.isOneOf(tok::arrowstar, tok::lessless) && 2312 Style.BreakBeforeBinaryOperators != FormatStyle::BOS_All && 2313 (Style.BreakBeforeBinaryOperators == FormatStyle::BOS_None || 2314 Left.getPrecedence() == prec::Assignment)) 2315 return true; 2316 return Left.isOneOf(tok::comma, tok::coloncolon, tok::semi, tok::l_brace, 2317 tok::kw_class, tok::kw_struct) || 2318 Right.isMemberAccess() || 2319 Right.isOneOf(TT_TrailingReturnArrow, TT_LambdaArrow, tok::lessless, 2320 tok::colon, tok::l_square, tok::at) || 2321 (Left.is(tok::r_paren) && 2322 Right.isOneOf(tok::identifier, tok::kw_const)) || 2323 (Left.is(tok::l_paren) && !Right.is(tok::r_paren)); 2324 } 2325 2326 void TokenAnnotator::printDebugInfo(const AnnotatedLine &Line) { 2327 llvm::errs() << "AnnotatedTokens:\n"; 2328 const FormatToken *Tok = Line.First; 2329 while (Tok) { 2330 llvm::errs() << " M=" << Tok->MustBreakBefore 2331 << " C=" << Tok->CanBreakBefore 2332 << " T=" << getTokenTypeName(Tok->Type) 2333 << " S=" << Tok->SpacesRequiredBefore 2334 << " B=" << Tok->BlockParameterCount 2335 << " P=" << Tok->SplitPenalty << " Name=" << Tok->Tok.getName() 2336 << " L=" << Tok->TotalLength << " PPK=" << Tok->PackingKind 2337 << " FakeLParens="; 2338 for (unsigned i = 0, e = Tok->FakeLParens.size(); i != e; ++i) 2339 llvm::errs() << Tok->FakeLParens[i] << "/"; 2340 llvm::errs() << " FakeRParens=" << Tok->FakeRParens << "\n"; 2341 if (!Tok->Next) 2342 assert(Tok == Line.Last); 2343 Tok = Tok->Next; 2344 } 2345 llvm::errs() << "----\n"; 2346 } 2347 2348 } // namespace format 2349 } // namespace clang 2350