1 //===--- WhitespaceManager.cpp - Format C++ code --------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 /// 9 /// \file 10 /// This file implements WhitespaceManager class. 11 /// 12 //===----------------------------------------------------------------------===// 13 14 #include "WhitespaceManager.h" 15 #include "llvm/ADT/STLExtras.h" 16 17 namespace clang { 18 namespace format { 19 20 bool WhitespaceManager::Change::IsBeforeInFile::operator()( 21 const Change &C1, const Change &C2) const { 22 return SourceMgr.isBeforeInTranslationUnit( 23 C1.OriginalWhitespaceRange.getBegin(), 24 C2.OriginalWhitespaceRange.getBegin()); 25 } 26 27 WhitespaceManager::Change::Change(const FormatToken &Tok, 28 bool CreateReplacement, 29 SourceRange OriginalWhitespaceRange, 30 int Spaces, unsigned StartOfTokenColumn, 31 unsigned NewlinesBefore, 32 StringRef PreviousLinePostfix, 33 StringRef CurrentLinePrefix, bool IsAligned, 34 bool ContinuesPPDirective, bool IsInsideToken) 35 : Tok(&Tok), CreateReplacement(CreateReplacement), 36 OriginalWhitespaceRange(OriginalWhitespaceRange), 37 StartOfTokenColumn(StartOfTokenColumn), NewlinesBefore(NewlinesBefore), 38 PreviousLinePostfix(PreviousLinePostfix), 39 CurrentLinePrefix(CurrentLinePrefix), IsAligned(IsAligned), 40 ContinuesPPDirective(ContinuesPPDirective), Spaces(Spaces), 41 IsInsideToken(IsInsideToken), IsTrailingComment(false), TokenLength(0), 42 PreviousEndOfTokenColumn(0), EscapedNewlineColumn(0), 43 StartOfBlockComment(nullptr), IndentationOffset(0), ConditionalsLevel(0) { 44 } 45 46 void WhitespaceManager::replaceWhitespace(FormatToken &Tok, unsigned Newlines, 47 unsigned Spaces, 48 unsigned StartOfTokenColumn, 49 bool IsAligned, bool InPPDirective) { 50 if (Tok.Finalized) 51 return; 52 Tok.setDecision((Newlines > 0) ? FD_Break : FD_Continue); 53 Changes.push_back(Change(Tok, /*CreateReplacement=*/true, Tok.WhitespaceRange, 54 Spaces, StartOfTokenColumn, Newlines, "", "", 55 IsAligned, InPPDirective && !Tok.IsFirst, 56 /*IsInsideToken=*/false)); 57 } 58 59 void WhitespaceManager::addUntouchableToken(const FormatToken &Tok, 60 bool InPPDirective) { 61 if (Tok.Finalized) 62 return; 63 Changes.push_back(Change(Tok, /*CreateReplacement=*/false, 64 Tok.WhitespaceRange, /*Spaces=*/0, 65 Tok.OriginalColumn, Tok.NewlinesBefore, "", "", 66 /*IsAligned=*/false, InPPDirective && !Tok.IsFirst, 67 /*IsInsideToken=*/false)); 68 } 69 70 llvm::Error 71 WhitespaceManager::addReplacement(const tooling::Replacement &Replacement) { 72 return Replaces.add(Replacement); 73 } 74 75 void WhitespaceManager::replaceWhitespaceInToken( 76 const FormatToken &Tok, unsigned Offset, unsigned ReplaceChars, 77 StringRef PreviousPostfix, StringRef CurrentPrefix, bool InPPDirective, 78 unsigned Newlines, int Spaces) { 79 if (Tok.Finalized) 80 return; 81 SourceLocation Start = Tok.getStartOfNonWhitespace().getLocWithOffset(Offset); 82 Changes.push_back( 83 Change(Tok, /*CreateReplacement=*/true, 84 SourceRange(Start, Start.getLocWithOffset(ReplaceChars)), Spaces, 85 std::max(0, Spaces), Newlines, PreviousPostfix, CurrentPrefix, 86 /*IsAligned=*/true, InPPDirective && !Tok.IsFirst, 87 /*IsInsideToken=*/true)); 88 } 89 90 const tooling::Replacements &WhitespaceManager::generateReplacements() { 91 if (Changes.empty()) 92 return Replaces; 93 94 llvm::sort(Changes, Change::IsBeforeInFile(SourceMgr)); 95 calculateLineBreakInformation(); 96 alignConsecutiveMacros(); 97 alignConsecutiveDeclarations(); 98 alignConsecutiveBitFields(); 99 alignConsecutiveAssignments(); 100 alignChainedConditionals(); 101 alignTrailingComments(); 102 alignEscapedNewlines(); 103 generateChanges(); 104 105 return Replaces; 106 } 107 108 void WhitespaceManager::calculateLineBreakInformation() { 109 Changes[0].PreviousEndOfTokenColumn = 0; 110 Change *LastOutsideTokenChange = &Changes[0]; 111 for (unsigned i = 1, e = Changes.size(); i != e; ++i) { 112 SourceLocation OriginalWhitespaceStart = 113 Changes[i].OriginalWhitespaceRange.getBegin(); 114 SourceLocation PreviousOriginalWhitespaceEnd = 115 Changes[i - 1].OriginalWhitespaceRange.getEnd(); 116 unsigned OriginalWhitespaceStartOffset = 117 SourceMgr.getFileOffset(OriginalWhitespaceStart); 118 unsigned PreviousOriginalWhitespaceEndOffset = 119 SourceMgr.getFileOffset(PreviousOriginalWhitespaceEnd); 120 assert(PreviousOriginalWhitespaceEndOffset <= 121 OriginalWhitespaceStartOffset); 122 const char *const PreviousOriginalWhitespaceEndData = 123 SourceMgr.getCharacterData(PreviousOriginalWhitespaceEnd); 124 StringRef Text(PreviousOriginalWhitespaceEndData, 125 SourceMgr.getCharacterData(OriginalWhitespaceStart) - 126 PreviousOriginalWhitespaceEndData); 127 // Usually consecutive changes would occur in consecutive tokens. This is 128 // not the case however when analyzing some preprocessor runs of the 129 // annotated lines. For example, in this code: 130 // 131 // #if A // line 1 132 // int i = 1; 133 // #else B // line 2 134 // int i = 2; 135 // #endif // line 3 136 // 137 // one of the runs will produce the sequence of lines marked with line 1, 2 138 // and 3. So the two consecutive whitespace changes just before '// line 2' 139 // and before '#endif // line 3' span multiple lines and tokens: 140 // 141 // #else B{change X}[// line 2 142 // int i = 2; 143 // ]{change Y}#endif // line 3 144 // 145 // For this reason, if the text between consecutive changes spans multiple 146 // newlines, the token length must be adjusted to the end of the original 147 // line of the token. 148 auto NewlinePos = Text.find_first_of('\n'); 149 if (NewlinePos == StringRef::npos) { 150 Changes[i - 1].TokenLength = OriginalWhitespaceStartOffset - 151 PreviousOriginalWhitespaceEndOffset + 152 Changes[i].PreviousLinePostfix.size() + 153 Changes[i - 1].CurrentLinePrefix.size(); 154 } else { 155 Changes[i - 1].TokenLength = 156 NewlinePos + Changes[i - 1].CurrentLinePrefix.size(); 157 } 158 159 // If there are multiple changes in this token, sum up all the changes until 160 // the end of the line. 161 if (Changes[i - 1].IsInsideToken && Changes[i - 1].NewlinesBefore == 0) 162 LastOutsideTokenChange->TokenLength += 163 Changes[i - 1].TokenLength + Changes[i - 1].Spaces; 164 else 165 LastOutsideTokenChange = &Changes[i - 1]; 166 167 Changes[i].PreviousEndOfTokenColumn = 168 Changes[i - 1].StartOfTokenColumn + Changes[i - 1].TokenLength; 169 170 Changes[i - 1].IsTrailingComment = 171 (Changes[i].NewlinesBefore > 0 || Changes[i].Tok->is(tok::eof) || 172 (Changes[i].IsInsideToken && Changes[i].Tok->is(tok::comment))) && 173 Changes[i - 1].Tok->is(tok::comment) && 174 // FIXME: This is a dirty hack. The problem is that 175 // BreakableLineCommentSection does comment reflow changes and here is 176 // the aligning of trailing comments. Consider the case where we reflow 177 // the second line up in this example: 178 // 179 // // line 1 180 // // line 2 181 // 182 // That amounts to 2 changes by BreakableLineCommentSection: 183 // - the first, delimited by (), for the whitespace between the tokens, 184 // - and second, delimited by [], for the whitespace at the beginning 185 // of the second token: 186 // 187 // // line 1( 188 // )[// ]line 2 189 // 190 // So in the end we have two changes like this: 191 // 192 // // line1()[ ]line 2 193 // 194 // Note that the OriginalWhitespaceStart of the second change is the 195 // same as the PreviousOriginalWhitespaceEnd of the first change. 196 // In this case, the below check ensures that the second change doesn't 197 // get treated as a trailing comment change here, since this might 198 // trigger additional whitespace to be wrongly inserted before "line 2" 199 // by the comment aligner here. 200 // 201 // For a proper solution we need a mechanism to say to WhitespaceManager 202 // that a particular change breaks the current sequence of trailing 203 // comments. 204 OriginalWhitespaceStart != PreviousOriginalWhitespaceEnd; 205 } 206 // FIXME: The last token is currently not always an eof token; in those 207 // cases, setting TokenLength of the last token to 0 is wrong. 208 Changes.back().TokenLength = 0; 209 Changes.back().IsTrailingComment = Changes.back().Tok->is(tok::comment); 210 211 const WhitespaceManager::Change *LastBlockComment = nullptr; 212 for (auto &Change : Changes) { 213 // Reset the IsTrailingComment flag for changes inside of trailing comments 214 // so they don't get realigned later. Comment line breaks however still need 215 // to be aligned. 216 if (Change.IsInsideToken && Change.NewlinesBefore == 0) 217 Change.IsTrailingComment = false; 218 Change.StartOfBlockComment = nullptr; 219 Change.IndentationOffset = 0; 220 if (Change.Tok->is(tok::comment)) { 221 if (Change.Tok->is(TT_LineComment) || !Change.IsInsideToken) 222 LastBlockComment = &Change; 223 else { 224 if ((Change.StartOfBlockComment = LastBlockComment)) 225 Change.IndentationOffset = 226 Change.StartOfTokenColumn - 227 Change.StartOfBlockComment->StartOfTokenColumn; 228 } 229 } else { 230 LastBlockComment = nullptr; 231 } 232 } 233 234 // Compute conditional nesting level 235 // Level is increased for each conditional, unless this conditional continues 236 // a chain of conditional, i.e. starts immediately after the colon of another 237 // conditional. 238 SmallVector<bool, 16> ScopeStack; 239 int ConditionalsLevel = 0; 240 for (auto &Change : Changes) { 241 for (unsigned i = 0, e = Change.Tok->FakeLParens.size(); i != e; ++i) { 242 bool isNestedConditional = 243 Change.Tok->FakeLParens[e - 1 - i] == prec::Conditional && 244 !(i == 0 && Change.Tok->Previous && 245 Change.Tok->Previous->is(TT_ConditionalExpr) && 246 Change.Tok->Previous->is(tok::colon)); 247 if (isNestedConditional) 248 ++ConditionalsLevel; 249 ScopeStack.push_back(isNestedConditional); 250 } 251 252 Change.ConditionalsLevel = ConditionalsLevel; 253 254 for (unsigned i = Change.Tok->FakeRParens; i > 0 && ScopeStack.size(); 255 --i) { 256 if (ScopeStack.pop_back_val()) 257 --ConditionalsLevel; 258 } 259 } 260 } 261 262 // Align a single sequence of tokens, see AlignTokens below. 263 template <typename F> 264 static void 265 AlignTokenSequence(unsigned Start, unsigned End, unsigned Column, F &&Matches, 266 SmallVector<WhitespaceManager::Change, 16> &Changes) { 267 bool FoundMatchOnLine = false; 268 int Shift = 0; 269 270 // ScopeStack keeps track of the current scope depth. It contains indices of 271 // the first token on each scope. 272 // We only run the "Matches" function on tokens from the outer-most scope. 273 // However, we do need to pay special attention to one class of tokens 274 // that are not in the outer-most scope, and that is function parameters 275 // which are split across multiple lines, as illustrated by this example: 276 // double a(int x); 277 // int b(int y, 278 // double z); 279 // In the above example, we need to take special care to ensure that 280 // 'double z' is indented along with it's owning function 'b'. 281 // Special handling is required for 'nested' ternary operators. 282 SmallVector<unsigned, 16> ScopeStack; 283 284 for (unsigned i = Start; i != End; ++i) { 285 if (ScopeStack.size() != 0 && 286 Changes[i].indentAndNestingLevel() < 287 Changes[ScopeStack.back()].indentAndNestingLevel()) 288 ScopeStack.pop_back(); 289 290 // Compare current token to previous non-comment token to ensure whether 291 // it is in a deeper scope or not. 292 unsigned PreviousNonComment = i - 1; 293 while (PreviousNonComment > Start && 294 Changes[PreviousNonComment].Tok->is(tok::comment)) 295 PreviousNonComment--; 296 if (i != Start && Changes[i].indentAndNestingLevel() > 297 Changes[PreviousNonComment].indentAndNestingLevel()) 298 ScopeStack.push_back(i); 299 300 bool InsideNestedScope = ScopeStack.size() != 0; 301 302 if (Changes[i].NewlinesBefore > 0 && !InsideNestedScope) { 303 Shift = 0; 304 FoundMatchOnLine = false; 305 } 306 307 // If this is the first matching token to be aligned, remember by how many 308 // spaces it has to be shifted, so the rest of the changes on the line are 309 // shifted by the same amount 310 if (!FoundMatchOnLine && !InsideNestedScope && Matches(Changes[i])) { 311 FoundMatchOnLine = true; 312 Shift = Column - Changes[i].StartOfTokenColumn; 313 Changes[i].Spaces += Shift; 314 } 315 316 // This is for function parameters that are split across multiple lines, 317 // as mentioned in the ScopeStack comment. 318 if (InsideNestedScope && Changes[i].NewlinesBefore > 0) { 319 unsigned ScopeStart = ScopeStack.back(); 320 if (Changes[ScopeStart - 1].Tok->is(TT_FunctionDeclarationName) || 321 (ScopeStart > Start + 1 && 322 Changes[ScopeStart - 2].Tok->is(TT_FunctionDeclarationName)) || 323 Changes[i].Tok->is(TT_ConditionalExpr) || 324 (Changes[i].Tok->Previous && 325 Changes[i].Tok->Previous->is(TT_ConditionalExpr))) 326 Changes[i].Spaces += Shift; 327 } 328 329 assert(Shift >= 0); 330 Changes[i].StartOfTokenColumn += Shift; 331 if (i + 1 != Changes.size()) 332 Changes[i + 1].PreviousEndOfTokenColumn += Shift; 333 } 334 } 335 336 // Walk through a subset of the changes, starting at StartAt, and find 337 // sequences of matching tokens to align. To do so, keep track of the lines and 338 // whether or not a matching token was found on a line. If a matching token is 339 // found, extend the current sequence. If the current line cannot be part of a 340 // sequence, e.g. because there is an empty line before it or it contains only 341 // non-matching tokens, finalize the previous sequence. 342 // The value returned is the token on which we stopped, either because we 343 // exhausted all items inside Changes, or because we hit a scope level higher 344 // than our initial scope. 345 // This function is recursive. Each invocation processes only the scope level 346 // equal to the initial level, which is the level of Changes[StartAt]. 347 // If we encounter a scope level greater than the initial level, then we call 348 // ourselves recursively, thereby avoiding the pollution of the current state 349 // with the alignment requirements of the nested sub-level. This recursive 350 // behavior is necessary for aligning function prototypes that have one or more 351 // arguments. 352 // If this function encounters a scope level less than the initial level, 353 // it returns the current position. 354 // There is a non-obvious subtlety in the recursive behavior: Even though we 355 // defer processing of nested levels to recursive invocations of this 356 // function, when it comes time to align a sequence of tokens, we run the 357 // alignment on the entire sequence, including the nested levels. 358 // When doing so, most of the nested tokens are skipped, because their 359 // alignment was already handled by the recursive invocations of this function. 360 // However, the special exception is that we do NOT skip function parameters 361 // that are split across multiple lines. See the test case in FormatTest.cpp 362 // that mentions "split function parameter alignment" for an example of this. 363 template <typename F> 364 static unsigned AlignTokens( 365 const FormatStyle &Style, F &&Matches, 366 SmallVector<WhitespaceManager::Change, 16> &Changes, unsigned StartAt, 367 const FormatStyle::AlignConsecutiveStyle &ACS = FormatStyle::ACS_None) { 368 unsigned MinColumn = 0; 369 unsigned MaxColumn = UINT_MAX; 370 371 // Line number of the start and the end of the current token sequence. 372 unsigned StartOfSequence = 0; 373 unsigned EndOfSequence = 0; 374 375 // Measure the scope level (i.e. depth of (), [], {}) of the first token, and 376 // abort when we hit any token in a higher scope than the starting one. 377 auto IndentAndNestingLevel = StartAt < Changes.size() 378 ? Changes[StartAt].indentAndNestingLevel() 379 : std::tuple<unsigned, unsigned, unsigned>(); 380 381 // Keep track of the number of commas before the matching tokens, we will only 382 // align a sequence of matching tokens if they are preceded by the same number 383 // of commas. 384 unsigned CommasBeforeLastMatch = 0; 385 unsigned CommasBeforeMatch = 0; 386 387 // Whether a matching token has been found on the current line. 388 bool FoundMatchOnLine = false; 389 390 // Whether the current line consists purely of comments. 391 bool LineIsComment = true; 392 393 // Aligns a sequence of matching tokens, on the MinColumn column. 394 // 395 // Sequences start from the first matching token to align, and end at the 396 // first token of the first line that doesn't need to be aligned. 397 // 398 // We need to adjust the StartOfTokenColumn of each Change that is on a line 399 // containing any matching token to be aligned and located after such token. 400 auto AlignCurrentSequence = [&] { 401 if (StartOfSequence > 0 && StartOfSequence < EndOfSequence) 402 AlignTokenSequence(StartOfSequence, EndOfSequence, MinColumn, Matches, 403 Changes); 404 MinColumn = 0; 405 MaxColumn = UINT_MAX; 406 StartOfSequence = 0; 407 EndOfSequence = 0; 408 }; 409 410 unsigned i = StartAt; 411 for (unsigned e = Changes.size(); i != e; ++i) { 412 if (Changes[i].indentAndNestingLevel() < IndentAndNestingLevel) 413 break; 414 415 if (Changes[i].NewlinesBefore != 0) { 416 CommasBeforeMatch = 0; 417 EndOfSequence = i; 418 419 // Whether to break the alignment sequence because of an empty line. 420 bool EmptyLineBreak = 421 (Changes[i].NewlinesBefore > 1) && 422 (ACS != FormatStyle::ACS_AcrossEmptyLines) && 423 (ACS != FormatStyle::ACS_AcrossEmptyLinesAndComments); 424 425 // Whether to break the alignment sequence because of a line without a 426 // match. 427 bool NoMatchBreak = 428 !FoundMatchOnLine && 429 !(LineIsComment && 430 ((ACS == FormatStyle::ACS_AcrossComments) || 431 (ACS == FormatStyle::ACS_AcrossEmptyLinesAndComments))); 432 433 if (EmptyLineBreak || NoMatchBreak) 434 AlignCurrentSequence(); 435 436 // A new line starts, re-initialize line status tracking bools. 437 FoundMatchOnLine = false; 438 LineIsComment = true; 439 } 440 441 if (!Changes[i].Tok->is(tok::comment)) { 442 LineIsComment = false; 443 } 444 445 if (Changes[i].Tok->is(tok::comma)) { 446 ++CommasBeforeMatch; 447 } else if (Changes[i].indentAndNestingLevel() > IndentAndNestingLevel) { 448 // Call AlignTokens recursively, skipping over this scope block. 449 unsigned StoppedAt = AlignTokens(Style, Matches, Changes, i, ACS); 450 i = StoppedAt - 1; 451 continue; 452 } 453 454 if (!Matches(Changes[i])) 455 continue; 456 457 // If there is more than one matching token per line, or if the number of 458 // preceding commas, do not match anymore, end the sequence. 459 if (FoundMatchOnLine || CommasBeforeMatch != CommasBeforeLastMatch) 460 AlignCurrentSequence(); 461 462 CommasBeforeLastMatch = CommasBeforeMatch; 463 FoundMatchOnLine = true; 464 465 if (StartOfSequence == 0) 466 StartOfSequence = i; 467 468 unsigned ChangeMinColumn = Changes[i].StartOfTokenColumn; 469 int LineLengthAfter = Changes[i].TokenLength; 470 for (unsigned j = i + 1; j != e && Changes[j].NewlinesBefore == 0; ++j) { 471 LineLengthAfter += Changes[j].Spaces; 472 // Changes are generally 1:1 with the tokens, but a change could also be 473 // inside of a token, in which case it's counted more than once: once for 474 // the whitespace surrounding the token (!IsInsideToken) and once for 475 // each whitespace change within it (IsInsideToken). 476 // Therefore, changes inside of a token should only count the space. 477 if (!Changes[j].IsInsideToken) 478 LineLengthAfter += Changes[j].TokenLength; 479 } 480 unsigned ChangeMaxColumn = Style.ColumnLimit - LineLengthAfter; 481 482 // If we are restricted by the maximum column width, end the sequence. 483 if (ChangeMinColumn > MaxColumn || ChangeMaxColumn < MinColumn || 484 CommasBeforeLastMatch != CommasBeforeMatch) { 485 AlignCurrentSequence(); 486 StartOfSequence = i; 487 } 488 489 MinColumn = std::max(MinColumn, ChangeMinColumn); 490 MaxColumn = std::min(MaxColumn, ChangeMaxColumn); 491 } 492 493 EndOfSequence = i; 494 AlignCurrentSequence(); 495 return i; 496 } 497 498 // Aligns a sequence of matching tokens, on the MinColumn column. 499 // 500 // Sequences start from the first matching token to align, and end at the 501 // first token of the first line that doesn't need to be aligned. 502 // 503 // We need to adjust the StartOfTokenColumn of each Change that is on a line 504 // containing any matching token to be aligned and located after such token. 505 static void AlignMacroSequence( 506 unsigned &StartOfSequence, unsigned &EndOfSequence, unsigned &MinColumn, 507 unsigned &MaxColumn, bool &FoundMatchOnLine, 508 std::function<bool(const WhitespaceManager::Change &C)> AlignMacrosMatches, 509 SmallVector<WhitespaceManager::Change, 16> &Changes) { 510 if (StartOfSequence > 0 && StartOfSequence < EndOfSequence) { 511 512 FoundMatchOnLine = false; 513 int Shift = 0; 514 515 for (unsigned I = StartOfSequence; I != EndOfSequence; ++I) { 516 if (Changes[I].NewlinesBefore > 0) { 517 Shift = 0; 518 FoundMatchOnLine = false; 519 } 520 521 // If this is the first matching token to be aligned, remember by how many 522 // spaces it has to be shifted, so the rest of the changes on the line are 523 // shifted by the same amount 524 if (!FoundMatchOnLine && AlignMacrosMatches(Changes[I])) { 525 FoundMatchOnLine = true; 526 Shift = MinColumn - Changes[I].StartOfTokenColumn; 527 Changes[I].Spaces += Shift; 528 } 529 530 assert(Shift >= 0); 531 Changes[I].StartOfTokenColumn += Shift; 532 if (I + 1 != Changes.size()) 533 Changes[I + 1].PreviousEndOfTokenColumn += Shift; 534 } 535 } 536 537 MinColumn = 0; 538 MaxColumn = UINT_MAX; 539 StartOfSequence = 0; 540 EndOfSequence = 0; 541 } 542 543 void WhitespaceManager::alignConsecutiveMacros() { 544 if (Style.AlignConsecutiveMacros == FormatStyle::ACS_None) 545 return; 546 547 auto AlignMacrosMatches = [](const Change &C) { 548 const FormatToken *Current = C.Tok; 549 unsigned SpacesRequiredBefore = 1; 550 551 if (Current->SpacesRequiredBefore == 0 || !Current->Previous) 552 return false; 553 554 Current = Current->Previous; 555 556 // If token is a ")", skip over the parameter list, to the 557 // token that precedes the "(" 558 if (Current->is(tok::r_paren) && Current->MatchingParen) { 559 Current = Current->MatchingParen->Previous; 560 SpacesRequiredBefore = 0; 561 } 562 563 if (!Current || !Current->is(tok::identifier)) 564 return false; 565 566 if (!Current->Previous || !Current->Previous->is(tok::pp_define)) 567 return false; 568 569 // For a macro function, 0 spaces are required between the 570 // identifier and the lparen that opens the parameter list. 571 // For a simple macro, 1 space is required between the 572 // identifier and the first token of the defined value. 573 return Current->Next->SpacesRequiredBefore == SpacesRequiredBefore; 574 }; 575 576 unsigned MinColumn = 0; 577 unsigned MaxColumn = UINT_MAX; 578 579 // Start and end of the token sequence we're processing. 580 unsigned StartOfSequence = 0; 581 unsigned EndOfSequence = 0; 582 583 // Whether a matching token has been found on the current line. 584 bool FoundMatchOnLine = false; 585 586 // Whether the current line consists only of comments 587 bool LineIsComment = true; 588 589 unsigned I = 0; 590 for (unsigned E = Changes.size(); I != E; ++I) { 591 if (Changes[I].NewlinesBefore != 0) { 592 EndOfSequence = I; 593 594 // Whether to break the alignment sequence because of an empty line. 595 bool EmptyLineBreak = 596 (Changes[I].NewlinesBefore > 1) && 597 (Style.AlignConsecutiveMacros != FormatStyle::ACS_AcrossEmptyLines) && 598 (Style.AlignConsecutiveMacros != 599 FormatStyle::ACS_AcrossEmptyLinesAndComments); 600 601 // Whether to break the alignment sequence because of a line without a 602 // match. 603 bool NoMatchBreak = 604 !FoundMatchOnLine && 605 !(LineIsComment && ((Style.AlignConsecutiveMacros == 606 FormatStyle::ACS_AcrossComments) || 607 (Style.AlignConsecutiveMacros == 608 FormatStyle::ACS_AcrossEmptyLinesAndComments))); 609 610 if (EmptyLineBreak || NoMatchBreak) 611 AlignMacroSequence(StartOfSequence, EndOfSequence, MinColumn, MaxColumn, 612 FoundMatchOnLine, AlignMacrosMatches, Changes); 613 614 // A new line starts, re-initialize line status tracking bools. 615 FoundMatchOnLine = false; 616 LineIsComment = true; 617 } 618 619 if (!Changes[I].Tok->is(tok::comment)) { 620 LineIsComment = false; 621 } 622 623 if (!AlignMacrosMatches(Changes[I])) 624 continue; 625 626 FoundMatchOnLine = true; 627 628 if (StartOfSequence == 0) 629 StartOfSequence = I; 630 631 unsigned ChangeMinColumn = Changes[I].StartOfTokenColumn; 632 int LineLengthAfter = -Changes[I].Spaces; 633 for (unsigned j = I; j != E && Changes[j].NewlinesBefore == 0; ++j) 634 LineLengthAfter += Changes[j].Spaces + Changes[j].TokenLength; 635 unsigned ChangeMaxColumn = Style.ColumnLimit - LineLengthAfter; 636 637 MinColumn = std::max(MinColumn, ChangeMinColumn); 638 MaxColumn = std::min(MaxColumn, ChangeMaxColumn); 639 } 640 641 EndOfSequence = I; 642 AlignMacroSequence(StartOfSequence, EndOfSequence, MinColumn, MaxColumn, 643 FoundMatchOnLine, AlignMacrosMatches, Changes); 644 } 645 646 void WhitespaceManager::alignConsecutiveAssignments() { 647 if (Style.AlignConsecutiveAssignments == FormatStyle::ACS_None) 648 return; 649 650 AlignTokens( 651 Style, 652 [&](const Change &C) { 653 // Do not align on equal signs that are first on a line. 654 if (C.NewlinesBefore > 0) 655 return false; 656 657 // Do not align on equal signs that are last on a line. 658 if (&C != &Changes.back() && (&C + 1)->NewlinesBefore > 0) 659 return false; 660 661 return C.Tok->is(tok::equal); 662 }, 663 Changes, /*StartAt=*/0, Style.AlignConsecutiveAssignments); 664 } 665 666 void WhitespaceManager::alignConsecutiveBitFields() { 667 if (Style.AlignConsecutiveBitFields == FormatStyle::ACS_None) 668 return; 669 670 AlignTokens( 671 Style, 672 [&](Change const &C) { 673 // Do not align on ':' that is first on a line. 674 if (C.NewlinesBefore > 0) 675 return false; 676 677 // Do not align on ':' that is last on a line. 678 if (&C != &Changes.back() && (&C + 1)->NewlinesBefore > 0) 679 return false; 680 681 return C.Tok->is(TT_BitFieldColon); 682 }, 683 Changes, /*StartAt=*/0, Style.AlignConsecutiveBitFields); 684 } 685 686 void WhitespaceManager::alignConsecutiveDeclarations() { 687 if (Style.AlignConsecutiveDeclarations == FormatStyle::ACS_None) 688 return; 689 690 // FIXME: Currently we don't handle properly the PointerAlignment: Right 691 // The * and & are not aligned and are left dangling. Something has to be done 692 // about it, but it raises the question of alignment of code like: 693 // const char* const* v1; 694 // float const* v2; 695 // SomeVeryLongType const& v3; 696 AlignTokens( 697 Style, 698 [](Change const &C) { 699 // tok::kw_operator is necessary for aligning operator overload 700 // definitions. 701 if (C.Tok->isOneOf(TT_FunctionDeclarationName, tok::kw_operator)) 702 return true; 703 if (C.Tok->isNot(TT_StartOfName)) 704 return false; 705 if (C.Tok->Previous && 706 C.Tok->Previous->is(TT_StatementAttributeLikeMacro)) 707 return false; 708 // Check if there is a subsequent name that starts the same declaration. 709 for (FormatToken *Next = C.Tok->Next; Next; Next = Next->Next) { 710 if (Next->is(tok::comment)) 711 continue; 712 if (Next->is(TT_PointerOrReference)) 713 return false; 714 if (!Next->Tok.getIdentifierInfo()) 715 break; 716 if (Next->isOneOf(TT_StartOfName, TT_FunctionDeclarationName, 717 tok::kw_operator)) 718 return false; 719 } 720 return true; 721 }, 722 Changes, /*StartAt=*/0, Style.AlignConsecutiveDeclarations); 723 } 724 725 void WhitespaceManager::alignChainedConditionals() { 726 if (Style.BreakBeforeTernaryOperators) { 727 AlignTokens( 728 Style, 729 [](Change const &C) { 730 // Align question operators and last colon 731 return C.Tok->is(TT_ConditionalExpr) && 732 ((C.Tok->is(tok::question) && !C.NewlinesBefore) || 733 (C.Tok->is(tok::colon) && C.Tok->Next && 734 (C.Tok->Next->FakeLParens.size() == 0 || 735 C.Tok->Next->FakeLParens.back() != prec::Conditional))); 736 }, 737 Changes, /*StartAt=*/0); 738 } else { 739 static auto AlignWrappedOperand = [](Change const &C) { 740 auto Previous = C.Tok->getPreviousNonComment(); // Previous; 741 return C.NewlinesBefore && Previous && Previous->is(TT_ConditionalExpr) && 742 (Previous->is(tok::question) || 743 (Previous->is(tok::colon) && 744 (C.Tok->FakeLParens.size() == 0 || 745 C.Tok->FakeLParens.back() != prec::Conditional))); 746 }; 747 // Ensure we keep alignment of wrapped operands with non-wrapped operands 748 // Since we actually align the operators, the wrapped operands need the 749 // extra offset to be properly aligned. 750 for (Change &C : Changes) { 751 if (AlignWrappedOperand(C)) 752 C.StartOfTokenColumn -= 2; 753 } 754 AlignTokens( 755 Style, 756 [this](Change const &C) { 757 // Align question operators if next operand is not wrapped, as 758 // well as wrapped operands after question operator or last 759 // colon in conditional sequence 760 return (C.Tok->is(TT_ConditionalExpr) && C.Tok->is(tok::question) && 761 &C != &Changes.back() && (&C + 1)->NewlinesBefore == 0 && 762 !(&C + 1)->IsTrailingComment) || 763 AlignWrappedOperand(C); 764 }, 765 Changes, /*StartAt=*/0); 766 } 767 } 768 769 void WhitespaceManager::alignTrailingComments() { 770 unsigned MinColumn = 0; 771 unsigned MaxColumn = UINT_MAX; 772 unsigned StartOfSequence = 0; 773 bool BreakBeforeNext = false; 774 unsigned Newlines = 0; 775 for (unsigned i = 0, e = Changes.size(); i != e; ++i) { 776 if (Changes[i].StartOfBlockComment) 777 continue; 778 Newlines += Changes[i].NewlinesBefore; 779 if (!Changes[i].IsTrailingComment) 780 continue; 781 782 unsigned ChangeMinColumn = Changes[i].StartOfTokenColumn; 783 unsigned ChangeMaxColumn; 784 785 if (Style.ColumnLimit == 0) 786 ChangeMaxColumn = UINT_MAX; 787 else if (Style.ColumnLimit >= Changes[i].TokenLength) 788 ChangeMaxColumn = Style.ColumnLimit - Changes[i].TokenLength; 789 else 790 ChangeMaxColumn = ChangeMinColumn; 791 792 // If we don't create a replacement for this change, we have to consider 793 // it to be immovable. 794 if (!Changes[i].CreateReplacement) 795 ChangeMaxColumn = ChangeMinColumn; 796 797 if (i + 1 != e && Changes[i + 1].ContinuesPPDirective) 798 ChangeMaxColumn -= 2; 799 // If this comment follows an } in column 0, it probably documents the 800 // closing of a namespace and we don't want to align it. 801 bool FollowsRBraceInColumn0 = i > 0 && Changes[i].NewlinesBefore == 0 && 802 Changes[i - 1].Tok->is(tok::r_brace) && 803 Changes[i - 1].StartOfTokenColumn == 0; 804 bool WasAlignedWithStartOfNextLine = false; 805 if (Changes[i].NewlinesBefore == 1) { // A comment on its own line. 806 unsigned CommentColumn = SourceMgr.getSpellingColumnNumber( 807 Changes[i].OriginalWhitespaceRange.getEnd()); 808 for (unsigned j = i + 1; j != e; ++j) { 809 if (Changes[j].Tok->is(tok::comment)) 810 continue; 811 812 unsigned NextColumn = SourceMgr.getSpellingColumnNumber( 813 Changes[j].OriginalWhitespaceRange.getEnd()); 814 // The start of the next token was previously aligned with the 815 // start of this comment. 816 WasAlignedWithStartOfNextLine = 817 CommentColumn == NextColumn || 818 CommentColumn == NextColumn + Style.IndentWidth; 819 break; 820 } 821 } 822 if (!Style.AlignTrailingComments || FollowsRBraceInColumn0) { 823 alignTrailingComments(StartOfSequence, i, MinColumn); 824 MinColumn = ChangeMinColumn; 825 MaxColumn = ChangeMinColumn; 826 StartOfSequence = i; 827 } else if (BreakBeforeNext || Newlines > 1 || 828 (ChangeMinColumn > MaxColumn || ChangeMaxColumn < MinColumn) || 829 // Break the comment sequence if the previous line did not end 830 // in a trailing comment. 831 (Changes[i].NewlinesBefore == 1 && i > 0 && 832 !Changes[i - 1].IsTrailingComment) || 833 WasAlignedWithStartOfNextLine) { 834 alignTrailingComments(StartOfSequence, i, MinColumn); 835 MinColumn = ChangeMinColumn; 836 MaxColumn = ChangeMaxColumn; 837 StartOfSequence = i; 838 } else { 839 MinColumn = std::max(MinColumn, ChangeMinColumn); 840 MaxColumn = std::min(MaxColumn, ChangeMaxColumn); 841 } 842 BreakBeforeNext = (i == 0) || (Changes[i].NewlinesBefore > 1) || 843 // Never start a sequence with a comment at the beginning 844 // of the line. 845 (Changes[i].NewlinesBefore == 1 && StartOfSequence == i); 846 Newlines = 0; 847 } 848 alignTrailingComments(StartOfSequence, Changes.size(), MinColumn); 849 } 850 851 void WhitespaceManager::alignTrailingComments(unsigned Start, unsigned End, 852 unsigned Column) { 853 for (unsigned i = Start; i != End; ++i) { 854 int Shift = 0; 855 if (Changes[i].IsTrailingComment) { 856 Shift = Column - Changes[i].StartOfTokenColumn; 857 } 858 if (Changes[i].StartOfBlockComment) { 859 Shift = Changes[i].IndentationOffset + 860 Changes[i].StartOfBlockComment->StartOfTokenColumn - 861 Changes[i].StartOfTokenColumn; 862 } 863 assert(Shift >= 0); 864 Changes[i].Spaces += Shift; 865 if (i + 1 != Changes.size()) 866 Changes[i + 1].PreviousEndOfTokenColumn += Shift; 867 Changes[i].StartOfTokenColumn += Shift; 868 } 869 } 870 871 void WhitespaceManager::alignEscapedNewlines() { 872 if (Style.AlignEscapedNewlines == FormatStyle::ENAS_DontAlign) 873 return; 874 875 bool AlignLeft = Style.AlignEscapedNewlines == FormatStyle::ENAS_Left; 876 unsigned MaxEndOfLine = AlignLeft ? 0 : Style.ColumnLimit; 877 unsigned StartOfMacro = 0; 878 for (unsigned i = 1, e = Changes.size(); i < e; ++i) { 879 Change &C = Changes[i]; 880 if (C.NewlinesBefore > 0) { 881 if (C.ContinuesPPDirective) { 882 MaxEndOfLine = std::max(C.PreviousEndOfTokenColumn + 2, MaxEndOfLine); 883 } else { 884 alignEscapedNewlines(StartOfMacro + 1, i, MaxEndOfLine); 885 MaxEndOfLine = AlignLeft ? 0 : Style.ColumnLimit; 886 StartOfMacro = i; 887 } 888 } 889 } 890 alignEscapedNewlines(StartOfMacro + 1, Changes.size(), MaxEndOfLine); 891 } 892 893 void WhitespaceManager::alignEscapedNewlines(unsigned Start, unsigned End, 894 unsigned Column) { 895 for (unsigned i = Start; i < End; ++i) { 896 Change &C = Changes[i]; 897 if (C.NewlinesBefore > 0) { 898 assert(C.ContinuesPPDirective); 899 if (C.PreviousEndOfTokenColumn + 1 > Column) 900 C.EscapedNewlineColumn = 0; 901 else 902 C.EscapedNewlineColumn = Column; 903 } 904 } 905 } 906 907 void WhitespaceManager::generateChanges() { 908 for (unsigned i = 0, e = Changes.size(); i != e; ++i) { 909 const Change &C = Changes[i]; 910 if (i > 0) { 911 assert(Changes[i - 1].OriginalWhitespaceRange.getBegin() != 912 C.OriginalWhitespaceRange.getBegin() && 913 "Generating two replacements for the same location"); 914 } 915 if (C.CreateReplacement) { 916 std::string ReplacementText = C.PreviousLinePostfix; 917 if (C.ContinuesPPDirective) 918 appendEscapedNewlineText(ReplacementText, C.NewlinesBefore, 919 C.PreviousEndOfTokenColumn, 920 C.EscapedNewlineColumn); 921 else 922 appendNewlineText(ReplacementText, C.NewlinesBefore); 923 appendIndentText( 924 ReplacementText, C.Tok->IndentLevel, std::max(0, C.Spaces), 925 C.StartOfTokenColumn - std::max(0, C.Spaces), C.IsAligned); 926 ReplacementText.append(C.CurrentLinePrefix); 927 storeReplacement(C.OriginalWhitespaceRange, ReplacementText); 928 } 929 } 930 } 931 932 void WhitespaceManager::storeReplacement(SourceRange Range, StringRef Text) { 933 unsigned WhitespaceLength = SourceMgr.getFileOffset(Range.getEnd()) - 934 SourceMgr.getFileOffset(Range.getBegin()); 935 // Don't create a replacement, if it does not change anything. 936 if (StringRef(SourceMgr.getCharacterData(Range.getBegin()), 937 WhitespaceLength) == Text) 938 return; 939 auto Err = Replaces.add(tooling::Replacement( 940 SourceMgr, CharSourceRange::getCharRange(Range), Text)); 941 // FIXME: better error handling. For now, just print an error message in the 942 // release version. 943 if (Err) { 944 llvm::errs() << llvm::toString(std::move(Err)) << "\n"; 945 assert(false); 946 } 947 } 948 949 void WhitespaceManager::appendNewlineText(std::string &Text, 950 unsigned Newlines) { 951 for (unsigned i = 0; i < Newlines; ++i) 952 Text.append(UseCRLF ? "\r\n" : "\n"); 953 } 954 955 void WhitespaceManager::appendEscapedNewlineText( 956 std::string &Text, unsigned Newlines, unsigned PreviousEndOfTokenColumn, 957 unsigned EscapedNewlineColumn) { 958 if (Newlines > 0) { 959 unsigned Spaces = 960 std::max<int>(1, EscapedNewlineColumn - PreviousEndOfTokenColumn - 1); 961 for (unsigned i = 0; i < Newlines; ++i) { 962 Text.append(Spaces, ' '); 963 Text.append(UseCRLF ? "\\\r\n" : "\\\n"); 964 Spaces = std::max<int>(0, EscapedNewlineColumn - 1); 965 } 966 } 967 } 968 969 void WhitespaceManager::appendIndentText(std::string &Text, 970 unsigned IndentLevel, unsigned Spaces, 971 unsigned WhitespaceStartColumn, 972 bool IsAligned) { 973 switch (Style.UseTab) { 974 case FormatStyle::UT_Never: 975 Text.append(Spaces, ' '); 976 break; 977 case FormatStyle::UT_Always: { 978 if (Style.TabWidth) { 979 unsigned FirstTabWidth = 980 Style.TabWidth - WhitespaceStartColumn % Style.TabWidth; 981 982 // Insert only spaces when we want to end up before the next tab. 983 if (Spaces < FirstTabWidth || Spaces == 1) { 984 Text.append(Spaces, ' '); 985 break; 986 } 987 // Align to the next tab. 988 Spaces -= FirstTabWidth; 989 Text.append("\t"); 990 991 Text.append(Spaces / Style.TabWidth, '\t'); 992 Text.append(Spaces % Style.TabWidth, ' '); 993 } else if (Spaces == 1) { 994 Text.append(Spaces, ' '); 995 } 996 break; 997 } 998 case FormatStyle::UT_ForIndentation: 999 if (WhitespaceStartColumn == 0) { 1000 unsigned Indentation = IndentLevel * Style.IndentWidth; 1001 Spaces = appendTabIndent(Text, Spaces, Indentation); 1002 } 1003 Text.append(Spaces, ' '); 1004 break; 1005 case FormatStyle::UT_ForContinuationAndIndentation: 1006 if (WhitespaceStartColumn == 0) 1007 Spaces = appendTabIndent(Text, Spaces, Spaces); 1008 Text.append(Spaces, ' '); 1009 break; 1010 case FormatStyle::UT_AlignWithSpaces: 1011 if (WhitespaceStartColumn == 0) { 1012 unsigned Indentation = 1013 IsAligned ? IndentLevel * Style.IndentWidth : Spaces; 1014 Spaces = appendTabIndent(Text, Spaces, Indentation); 1015 } 1016 Text.append(Spaces, ' '); 1017 break; 1018 } 1019 } 1020 1021 unsigned WhitespaceManager::appendTabIndent(std::string &Text, unsigned Spaces, 1022 unsigned Indentation) { 1023 // This happens, e.g. when a line in a block comment is indented less than the 1024 // first one. 1025 if (Indentation > Spaces) 1026 Indentation = Spaces; 1027 if (Style.TabWidth) { 1028 unsigned Tabs = Indentation / Style.TabWidth; 1029 Text.append(Tabs, '\t'); 1030 Spaces -= Tabs * Style.TabWidth; 1031 } 1032 return Spaces; 1033 } 1034 1035 } // namespace format 1036 } // namespace clang 1037