1 //===--- FormatToken.h - Format C++ code ------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 /// 9 /// \file 10 /// This file contains the declaration of the FormatToken, a wrapper 11 /// around Token with additional information related to formatting. 12 /// 13 //===----------------------------------------------------------------------===// 14 15 #ifndef LLVM_CLANG_LIB_FORMAT_FORMATTOKEN_H 16 #define LLVM_CLANG_LIB_FORMAT_FORMATTOKEN_H 17 18 #include "clang/Basic/IdentifierTable.h" 19 #include "clang/Basic/OperatorPrecedence.h" 20 #include "clang/Format/Format.h" 21 #include "clang/Lex/Lexer.h" 22 #include <memory> 23 #include <unordered_set> 24 25 namespace clang { 26 namespace format { 27 28 #define LIST_TOKEN_TYPES \ 29 TYPE(ArrayInitializerLSquare) \ 30 TYPE(ArraySubscriptLSquare) \ 31 TYPE(AttributeColon) \ 32 TYPE(AttributeMacro) \ 33 TYPE(AttributeParen) \ 34 TYPE(AttributeSquare) \ 35 TYPE(BinaryOperator) \ 36 TYPE(BitFieldColon) \ 37 TYPE(BlockComment) \ 38 TYPE(CastRParen) \ 39 TYPE(ConditionalExpr) \ 40 TYPE(ConflictAlternative) \ 41 TYPE(ConflictEnd) \ 42 TYPE(ConflictStart) \ 43 TYPE(ConstraintJunctions) \ 44 TYPE(CtorInitializerColon) \ 45 TYPE(CtorInitializerComma) \ 46 TYPE(DesignatedInitializerLSquare) \ 47 TYPE(DesignatedInitializerPeriod) \ 48 TYPE(DictLiteral) \ 49 TYPE(FatArrow) \ 50 TYPE(ForEachMacro) \ 51 TYPE(FunctionAnnotationRParen) \ 52 TYPE(FunctionDeclarationName) \ 53 TYPE(FunctionLBrace) \ 54 TYPE(FunctionTypeLParen) \ 55 TYPE(IfMacro) \ 56 TYPE(ImplicitStringLiteral) \ 57 TYPE(InheritanceColon) \ 58 TYPE(InheritanceComma) \ 59 TYPE(InlineASMBrace) \ 60 TYPE(InlineASMColon) \ 61 TYPE(InlineASMSymbolicNameLSquare) \ 62 TYPE(JavaAnnotation) \ 63 TYPE(JsComputedPropertyName) \ 64 TYPE(JsExponentiation) \ 65 TYPE(JsExponentiationEqual) \ 66 TYPE(JsPipePipeEqual) \ 67 TYPE(JsPrivateIdentifier) \ 68 TYPE(JsTypeColon) \ 69 TYPE(JsTypeOperator) \ 70 TYPE(JsTypeOptionalQuestion) \ 71 TYPE(JsAndAndEqual) \ 72 TYPE(LambdaArrow) \ 73 TYPE(LambdaLBrace) \ 74 TYPE(LambdaLSquare) \ 75 TYPE(LeadingJavaAnnotation) \ 76 TYPE(LineComment) \ 77 TYPE(MacroBlockBegin) \ 78 TYPE(MacroBlockEnd) \ 79 TYPE(ModulePartitionColon) \ 80 TYPE(NamespaceMacro) \ 81 TYPE(NonNullAssertion) \ 82 TYPE(NullCoalescingEqual) \ 83 TYPE(NullCoalescingOperator) \ 84 TYPE(NullPropagatingOperator) \ 85 TYPE(ObjCBlockLBrace) \ 86 TYPE(ObjCBlockLParen) \ 87 TYPE(ObjCDecl) \ 88 TYPE(ObjCForIn) \ 89 TYPE(ObjCMethodExpr) \ 90 TYPE(ObjCMethodSpecifier) \ 91 TYPE(ObjCProperty) \ 92 TYPE(ObjCStringLiteral) \ 93 TYPE(OverloadedOperator) \ 94 TYPE(OverloadedOperatorLParen) \ 95 TYPE(PointerOrReference) \ 96 TYPE(PureVirtualSpecifier) \ 97 TYPE(RangeBasedForLoopColon) \ 98 TYPE(RegexLiteral) \ 99 TYPE(SelectorName) \ 100 TYPE(StartOfName) \ 101 TYPE(StatementAttributeLikeMacro) \ 102 TYPE(StatementMacro) \ 103 TYPE(StructuredBindingLSquare) \ 104 TYPE(TemplateCloser) \ 105 TYPE(TemplateOpener) \ 106 TYPE(TemplateString) \ 107 TYPE(ProtoExtensionLSquare) \ 108 TYPE(TrailingAnnotation) \ 109 TYPE(TrailingReturnArrow) \ 110 TYPE(TrailingUnaryOperator) \ 111 TYPE(TypeDeclarationParen) \ 112 TYPE(TypenameMacro) \ 113 TYPE(UnaryOperator) \ 114 TYPE(UntouchableMacroFunc) \ 115 TYPE(CSharpStringLiteral) \ 116 TYPE(CSharpNamedArgumentColon) \ 117 TYPE(CSharpNullable) \ 118 TYPE(CSharpNullConditionalLSquare) \ 119 TYPE(CSharpGenericTypeConstraint) \ 120 TYPE(CSharpGenericTypeConstraintColon) \ 121 TYPE(CSharpGenericTypeConstraintComma) \ 122 TYPE(Unknown) 123 124 /// Determines the semantic type of a syntactic token, e.g. whether "<" is a 125 /// template opener or binary operator. 126 enum TokenType : uint8_t { 127 #define TYPE(X) TT_##X, 128 LIST_TOKEN_TYPES 129 #undef TYPE 130 NUM_TOKEN_TYPES 131 }; 132 133 /// Determines the name of a token type. 134 const char *getTokenTypeName(TokenType Type); 135 136 // Represents what type of block a set of braces open. 137 enum BraceBlockKind { BK_Unknown, BK_Block, BK_BracedInit }; 138 139 // The packing kind of a function's parameters. 140 enum ParameterPackingKind { PPK_BinPacked, PPK_OnePerLine, PPK_Inconclusive }; 141 142 enum FormatDecision { FD_Unformatted, FD_Continue, FD_Break }; 143 144 /// Roles a token can take in a configured macro expansion. 145 enum MacroRole { 146 /// The token was expanded from a macro argument when formatting the expanded 147 /// token sequence. 148 MR_ExpandedArg, 149 /// The token is part of a macro argument that was previously formatted as 150 /// expansion when formatting the unexpanded macro call. 151 MR_UnexpandedArg, 152 /// The token was expanded from a macro definition, and is not visible as part 153 /// of the macro call. 154 MR_Hidden, 155 }; 156 157 struct FormatToken; 158 159 /// Contains information on the token's role in a macro expansion. 160 /// 161 /// Given the following definitions: 162 /// A(X) = [ X ] 163 /// B(X) = < X > 164 /// C(X) = X 165 /// 166 /// Consider the macro call: 167 /// A({B(C(C(x)))}) -> [{<x>}] 168 /// 169 /// In this case, the tokens of the unexpanded macro call will have the 170 /// following relevant entries in their macro context (note that formatting 171 /// the unexpanded macro call happens *after* formatting the expanded macro 172 /// call): 173 /// A( { B( C( C(x) ) ) } ) 174 /// Role: NN U NN NN NNUN N N U N (N=None, U=UnexpandedArg) 175 /// 176 /// [ { < x > } ] 177 /// Role: H E H E H E H (H=Hidden, E=ExpandedArg) 178 /// ExpandedFrom[0]: A A A A A A A 179 /// ExpandedFrom[1]: B B B 180 /// ExpandedFrom[2]: C 181 /// ExpandedFrom[3]: C 182 /// StartOfExpansion: 1 0 1 2 0 0 0 183 /// EndOfExpansion: 0 0 0 2 1 0 1 184 struct MacroExpansion { 185 MacroExpansion(MacroRole Role) : Role(Role) {} 186 187 /// The token's role in the macro expansion. 188 /// When formatting an expanded macro, all tokens that are part of macro 189 /// arguments will be MR_ExpandedArg, while all tokens that are not visible in 190 /// the macro call will be MR_Hidden. 191 /// When formatting an unexpanded macro call, all tokens that are part of 192 /// macro arguments will be MR_UnexpandedArg. 193 MacroRole Role; 194 195 /// The stack of macro call identifier tokens this token was expanded from. 196 llvm::SmallVector<FormatToken *, 1> ExpandedFrom; 197 198 /// The number of expansions of which this macro is the first entry. 199 unsigned StartOfExpansion = 0; 200 201 /// The number of currently open expansions in \c ExpandedFrom this macro is 202 /// the last token in. 203 unsigned EndOfExpansion = 0; 204 }; 205 206 class TokenRole; 207 class AnnotatedLine; 208 209 /// A wrapper around a \c Token storing information about the 210 /// whitespace characters preceding it. 211 struct FormatToken { 212 FormatToken() 213 : HasUnescapedNewline(false), IsMultiline(false), IsFirst(false), 214 MustBreakBefore(false), IsUnterminatedLiteral(false), 215 CanBreakBefore(false), ClosesTemplateDeclaration(false), 216 StartsBinaryExpression(false), EndsBinaryExpression(false), 217 PartOfMultiVariableDeclStmt(false), ContinuesLineCommentSection(false), 218 Finalized(false), BlockKind(BK_Unknown), Decision(FD_Unformatted), 219 PackingKind(PPK_Inconclusive), Type(TT_Unknown) {} 220 221 /// The \c Token. 222 Token Tok; 223 224 /// The raw text of the token. 225 /// 226 /// Contains the raw token text without leading whitespace and without leading 227 /// escaped newlines. 228 StringRef TokenText; 229 230 /// A token can have a special role that can carry extra information 231 /// about the token's formatting. 232 /// FIXME: Make FormatToken for parsing and AnnotatedToken two different 233 /// classes and make this a unique_ptr in the AnnotatedToken class. 234 std::shared_ptr<TokenRole> Role; 235 236 /// The range of the whitespace immediately preceding the \c Token. 237 SourceRange WhitespaceRange; 238 239 /// Whether there is at least one unescaped newline before the \c 240 /// Token. 241 unsigned HasUnescapedNewline : 1; 242 243 /// Whether the token text contains newlines (escaped or not). 244 unsigned IsMultiline : 1; 245 246 /// Indicates that this is the first token of the file. 247 unsigned IsFirst : 1; 248 249 /// Whether there must be a line break before this token. 250 /// 251 /// This happens for example when a preprocessor directive ended directly 252 /// before the token. 253 unsigned MustBreakBefore : 1; 254 255 /// Set to \c true if this token is an unterminated literal. 256 unsigned IsUnterminatedLiteral : 1; 257 258 /// \c true if it is allowed to break before this token. 259 unsigned CanBreakBefore : 1; 260 261 /// \c true if this is the ">" of "template<..>". 262 unsigned ClosesTemplateDeclaration : 1; 263 264 /// \c true if this token starts a binary expression, i.e. has at least 265 /// one fake l_paren with a precedence greater than prec::Unknown. 266 unsigned StartsBinaryExpression : 1; 267 /// \c true if this token ends a binary expression. 268 unsigned EndsBinaryExpression : 1; 269 270 /// Is this token part of a \c DeclStmt defining multiple variables? 271 /// 272 /// Only set if \c Type == \c TT_StartOfName. 273 unsigned PartOfMultiVariableDeclStmt : 1; 274 275 /// Does this line comment continue a line comment section? 276 /// 277 /// Only set to true if \c Type == \c TT_LineComment. 278 unsigned ContinuesLineCommentSection : 1; 279 280 /// If \c true, this token has been fully formatted (indented and 281 /// potentially re-formatted inside), and we do not allow further formatting 282 /// changes. 283 unsigned Finalized : 1; 284 285 private: 286 /// Contains the kind of block if this token is a brace. 287 unsigned BlockKind : 2; 288 289 public: 290 BraceBlockKind getBlockKind() const { 291 return static_cast<BraceBlockKind>(BlockKind); 292 } 293 void setBlockKind(BraceBlockKind BBK) { 294 BlockKind = BBK; 295 assert(getBlockKind() == BBK && "BraceBlockKind overflow!"); 296 } 297 298 private: 299 /// Stores the formatting decision for the token once it was made. 300 unsigned Decision : 2; 301 302 public: 303 FormatDecision getDecision() const { 304 return static_cast<FormatDecision>(Decision); 305 } 306 void setDecision(FormatDecision D) { 307 Decision = D; 308 assert(getDecision() == D && "FormatDecision overflow!"); 309 } 310 311 private: 312 /// If this is an opening parenthesis, how are the parameters packed? 313 unsigned PackingKind : 2; 314 315 public: 316 ParameterPackingKind getPackingKind() const { 317 return static_cast<ParameterPackingKind>(PackingKind); 318 } 319 void setPackingKind(ParameterPackingKind K) { 320 PackingKind = K; 321 assert(getPackingKind() == K && "ParameterPackingKind overflow!"); 322 } 323 324 private: 325 TokenType Type; 326 327 public: 328 /// Returns the token's type, e.g. whether "<" is a template opener or 329 /// binary operator. 330 TokenType getType() const { return Type; } 331 void setType(TokenType T) { Type = T; } 332 333 /// The number of newlines immediately before the \c Token. 334 /// 335 /// This can be used to determine what the user wrote in the original code 336 /// and thereby e.g. leave an empty line between two function definitions. 337 unsigned NewlinesBefore = 0; 338 339 /// The offset just past the last '\n' in this token's leading 340 /// whitespace (relative to \c WhiteSpaceStart). 0 if there is no '\n'. 341 unsigned LastNewlineOffset = 0; 342 343 /// The width of the non-whitespace parts of the token (or its first 344 /// line for multi-line tokens) in columns. 345 /// We need this to correctly measure number of columns a token spans. 346 unsigned ColumnWidth = 0; 347 348 /// Contains the width in columns of the last line of a multi-line 349 /// token. 350 unsigned LastLineColumnWidth = 0; 351 352 /// The number of spaces that should be inserted before this token. 353 unsigned SpacesRequiredBefore = 0; 354 355 /// Number of parameters, if this is "(", "[" or "<". 356 unsigned ParameterCount = 0; 357 358 /// Number of parameters that are nested blocks, 359 /// if this is "(", "[" or "<". 360 unsigned BlockParameterCount = 0; 361 362 /// If this is a bracket ("<", "(", "[" or "{"), contains the kind of 363 /// the surrounding bracket. 364 tok::TokenKind ParentBracket = tok::unknown; 365 366 /// The total length of the unwrapped line up to and including this 367 /// token. 368 unsigned TotalLength = 0; 369 370 /// The original 0-based column of this token, including expanded tabs. 371 /// The configured TabWidth is used as tab width. 372 unsigned OriginalColumn = 0; 373 374 /// The length of following tokens until the next natural split point, 375 /// or the next token that can be broken. 376 unsigned UnbreakableTailLength = 0; 377 378 // FIXME: Come up with a 'cleaner' concept. 379 /// The binding strength of a token. This is a combined value of 380 /// operator precedence, parenthesis nesting, etc. 381 unsigned BindingStrength = 0; 382 383 /// The nesting level of this token, i.e. the number of surrounding (), 384 /// [], {} or <>. 385 unsigned NestingLevel = 0; 386 387 /// The indent level of this token. Copied from the surrounding line. 388 unsigned IndentLevel = 0; 389 390 /// Penalty for inserting a line break before this token. 391 unsigned SplitPenalty = 0; 392 393 /// If this is the first ObjC selector name in an ObjC method 394 /// definition or call, this contains the length of the longest name. 395 /// 396 /// This being set to 0 means that the selectors should not be colon-aligned, 397 /// e.g. because several of them are block-type. 398 unsigned LongestObjCSelectorName = 0; 399 400 /// If this is the first ObjC selector name in an ObjC method 401 /// definition or call, this contains the number of parts that the whole 402 /// selector consist of. 403 unsigned ObjCSelectorNameParts = 0; 404 405 /// The 0-based index of the parameter/argument. For ObjC it is set 406 /// for the selector name token. 407 /// For now calculated only for ObjC. 408 unsigned ParameterIndex = 0; 409 410 /// Stores the number of required fake parentheses and the 411 /// corresponding operator precedence. 412 /// 413 /// If multiple fake parentheses start at a token, this vector stores them in 414 /// reverse order, i.e. inner fake parenthesis first. 415 SmallVector<prec::Level, 4> FakeLParens; 416 /// Insert this many fake ) after this token for correct indentation. 417 unsigned FakeRParens = 0; 418 419 /// If this is an operator (or "."/"->") in a sequence of operators 420 /// with the same precedence, contains the 0-based operator index. 421 unsigned OperatorIndex = 0; 422 423 /// If this is an operator (or "."/"->") in a sequence of operators 424 /// with the same precedence, points to the next operator. 425 FormatToken *NextOperator = nullptr; 426 427 /// If this is a bracket, this points to the matching one. 428 FormatToken *MatchingParen = nullptr; 429 430 /// The previous token in the unwrapped line. 431 FormatToken *Previous = nullptr; 432 433 /// The next token in the unwrapped line. 434 FormatToken *Next = nullptr; 435 436 /// The first token in set of column elements. 437 bool StartsColumn = false; 438 439 /// This notes the start of the line of an array initializer. 440 bool ArrayInitializerLineStart = false; 441 442 /// This starts an array initializer. 443 bool IsArrayInitializer = false; 444 445 /// If this token starts a block, this contains all the unwrapped lines 446 /// in it. 447 SmallVector<AnnotatedLine *, 1> Children; 448 449 // Contains all attributes related to how this token takes part 450 // in a configured macro expansion. 451 llvm::Optional<MacroExpansion> MacroCtx; 452 453 bool is(tok::TokenKind Kind) const { return Tok.is(Kind); } 454 bool is(TokenType TT) const { return getType() == TT; } 455 bool is(const IdentifierInfo *II) const { 456 return II && II == Tok.getIdentifierInfo(); 457 } 458 bool is(tok::PPKeywordKind Kind) const { 459 return Tok.getIdentifierInfo() && 460 Tok.getIdentifierInfo()->getPPKeywordID() == Kind; 461 } 462 bool is(BraceBlockKind BBK) const { return getBlockKind() == BBK; } 463 bool is(ParameterPackingKind PPK) const { return getPackingKind() == PPK; } 464 465 template <typename A, typename B> bool isOneOf(A K1, B K2) const { 466 return is(K1) || is(K2); 467 } 468 template <typename A, typename B, typename... Ts> 469 bool isOneOf(A K1, B K2, Ts... Ks) const { 470 return is(K1) || isOneOf(K2, Ks...); 471 } 472 template <typename T> bool isNot(T Kind) const { return !is(Kind); } 473 474 bool isIf(bool AllowConstexprMacro = true) const { 475 return is(tok::kw_if) || endsSequence(tok::kw_constexpr, tok::kw_if) || 476 (endsSequence(tok::identifier, tok::kw_if) && AllowConstexprMacro); 477 } 478 479 bool closesScopeAfterBlock() const { 480 if (getBlockKind() == BK_Block) 481 return true; 482 if (closesScope()) 483 return Previous->closesScopeAfterBlock(); 484 return false; 485 } 486 487 /// \c true if this token starts a sequence with the given tokens in order, 488 /// following the ``Next`` pointers, ignoring comments. 489 template <typename A, typename... Ts> 490 bool startsSequence(A K1, Ts... Tokens) const { 491 return startsSequenceInternal(K1, Tokens...); 492 } 493 494 /// \c true if this token ends a sequence with the given tokens in order, 495 /// following the ``Previous`` pointers, ignoring comments. 496 /// For example, given tokens [T1, T2, T3], the function returns true if 497 /// 3 tokens ending at this (ignoring comments) are [T3, T2, T1]. In other 498 /// words, the tokens passed to this function need to the reverse of the 499 /// order the tokens appear in code. 500 template <typename A, typename... Ts> 501 bool endsSequence(A K1, Ts... Tokens) const { 502 return endsSequenceInternal(K1, Tokens...); 503 } 504 505 bool isStringLiteral() const { return tok::isStringLiteral(Tok.getKind()); } 506 507 bool isObjCAtKeyword(tok::ObjCKeywordKind Kind) const { 508 return Tok.isObjCAtKeyword(Kind); 509 } 510 511 bool isAccessSpecifier(bool ColonRequired = true) const { 512 return isOneOf(tok::kw_public, tok::kw_protected, tok::kw_private) && 513 (!ColonRequired || (Next && Next->is(tok::colon))); 514 } 515 516 bool canBePointerOrReferenceQualifier() const { 517 return isOneOf(tok::kw_const, tok::kw_restrict, tok::kw_volatile, 518 tok::kw___attribute, tok::kw__Nonnull, tok::kw__Nullable, 519 tok::kw__Null_unspecified, tok::kw___ptr32, tok::kw___ptr64, 520 TT_AttributeMacro); 521 } 522 523 /// Determine whether the token is a simple-type-specifier. 524 LLVM_NODISCARD bool isSimpleTypeSpecifier() const; 525 526 LLVM_NODISCARD bool isTypeOrIdentifier() const; 527 528 bool isObjCAccessSpecifier() const { 529 return is(tok::at) && Next && 530 (Next->isObjCAtKeyword(tok::objc_public) || 531 Next->isObjCAtKeyword(tok::objc_protected) || 532 Next->isObjCAtKeyword(tok::objc_package) || 533 Next->isObjCAtKeyword(tok::objc_private)); 534 } 535 536 /// Returns whether \p Tok is ([{ or an opening < of a template or in 537 /// protos. 538 bool opensScope() const { 539 if (is(TT_TemplateString) && TokenText.endswith("${")) 540 return true; 541 if (is(TT_DictLiteral) && is(tok::less)) 542 return true; 543 return isOneOf(tok::l_paren, tok::l_brace, tok::l_square, 544 TT_TemplateOpener); 545 } 546 /// Returns whether \p Tok is )]} or a closing > of a template or in 547 /// protos. 548 bool closesScope() const { 549 if (is(TT_TemplateString) && TokenText.startswith("}")) 550 return true; 551 if (is(TT_DictLiteral) && is(tok::greater)) 552 return true; 553 return isOneOf(tok::r_paren, tok::r_brace, tok::r_square, 554 TT_TemplateCloser); 555 } 556 557 /// Returns \c true if this is a "." or "->" accessing a member. 558 bool isMemberAccess() const { 559 return isOneOf(tok::arrow, tok::period, tok::arrowstar) && 560 !isOneOf(TT_DesignatedInitializerPeriod, TT_TrailingReturnArrow, 561 TT_LambdaArrow, TT_LeadingJavaAnnotation); 562 } 563 564 bool isUnaryOperator() const { 565 switch (Tok.getKind()) { 566 case tok::plus: 567 case tok::plusplus: 568 case tok::minus: 569 case tok::minusminus: 570 case tok::exclaim: 571 case tok::tilde: 572 case tok::kw_sizeof: 573 case tok::kw_alignof: 574 return true; 575 default: 576 return false; 577 } 578 } 579 580 bool isBinaryOperator() const { 581 // Comma is a binary operator, but does not behave as such wrt. formatting. 582 return getPrecedence() > prec::Comma; 583 } 584 585 bool isTrailingComment() const { 586 return is(tok::comment) && 587 (is(TT_LineComment) || !Next || Next->NewlinesBefore > 0); 588 } 589 590 /// Returns \c true if this is a keyword that can be used 591 /// like a function call (e.g. sizeof, typeid, ...). 592 bool isFunctionLikeKeyword() const { 593 switch (Tok.getKind()) { 594 case tok::kw_throw: 595 case tok::kw_typeid: 596 case tok::kw_return: 597 case tok::kw_sizeof: 598 case tok::kw_alignof: 599 case tok::kw_alignas: 600 case tok::kw_decltype: 601 case tok::kw_noexcept: 602 case tok::kw_static_assert: 603 case tok::kw__Atomic: 604 case tok::kw___attribute: 605 case tok::kw___underlying_type: 606 case tok::kw_requires: 607 return true; 608 default: 609 return false; 610 } 611 } 612 613 /// Returns \c true if this is a string literal that's like a label, 614 /// e.g. ends with "=" or ":". 615 bool isLabelString() const { 616 if (!is(tok::string_literal)) 617 return false; 618 StringRef Content = TokenText; 619 if (Content.startswith("\"") || Content.startswith("'")) 620 Content = Content.drop_front(1); 621 if (Content.endswith("\"") || Content.endswith("'")) 622 Content = Content.drop_back(1); 623 Content = Content.trim(); 624 return Content.size() > 1 && 625 (Content.back() == ':' || Content.back() == '='); 626 } 627 628 /// Returns actual token start location without leading escaped 629 /// newlines and whitespace. 630 /// 631 /// This can be different to Tok.getLocation(), which includes leading escaped 632 /// newlines. 633 SourceLocation getStartOfNonWhitespace() const { 634 return WhitespaceRange.getEnd(); 635 } 636 637 prec::Level getPrecedence() const { 638 return getBinOpPrecedence(Tok.getKind(), /*GreaterThanIsOperator=*/true, 639 /*CPlusPlus11=*/true); 640 } 641 642 /// Returns the previous token ignoring comments. 643 FormatToken *getPreviousNonComment() const { 644 FormatToken *Tok = Previous; 645 while (Tok && Tok->is(tok::comment)) 646 Tok = Tok->Previous; 647 return Tok; 648 } 649 650 /// Returns the next token ignoring comments. 651 const FormatToken *getNextNonComment() const { 652 const FormatToken *Tok = Next; 653 while (Tok && Tok->is(tok::comment)) 654 Tok = Tok->Next; 655 return Tok; 656 } 657 658 /// Returns \c true if this tokens starts a block-type list, i.e. a 659 /// list that should be indented with a block indent. 660 bool opensBlockOrBlockTypeList(const FormatStyle &Style) const { 661 // C# Does not indent object initialisers as continuations. 662 if (is(tok::l_brace) && getBlockKind() == BK_BracedInit && Style.isCSharp()) 663 return true; 664 if (is(TT_TemplateString) && opensScope()) 665 return true; 666 return is(TT_ArrayInitializerLSquare) || is(TT_ProtoExtensionLSquare) || 667 (is(tok::l_brace) && 668 (getBlockKind() == BK_Block || is(TT_DictLiteral) || 669 (!Style.Cpp11BracedListStyle && NestingLevel == 0))) || 670 (is(tok::less) && (Style.Language == FormatStyle::LK_Proto || 671 Style.Language == FormatStyle::LK_TextProto)); 672 } 673 674 /// Returns whether the token is the left square bracket of a C++ 675 /// structured binding declaration. 676 bool isCppStructuredBinding(const FormatStyle &Style) const { 677 if (!Style.isCpp() || isNot(tok::l_square)) 678 return false; 679 const FormatToken *T = this; 680 do { 681 T = T->getPreviousNonComment(); 682 } while (T && T->isOneOf(tok::kw_const, tok::kw_volatile, tok::amp, 683 tok::ampamp)); 684 return T && T->is(tok::kw_auto); 685 } 686 687 /// Same as opensBlockOrBlockTypeList, but for the closing token. 688 bool closesBlockOrBlockTypeList(const FormatStyle &Style) const { 689 if (is(TT_TemplateString) && closesScope()) 690 return true; 691 return MatchingParen && MatchingParen->opensBlockOrBlockTypeList(Style); 692 } 693 694 /// Return the actual namespace token, if this token starts a namespace 695 /// block. 696 const FormatToken *getNamespaceToken() const { 697 const FormatToken *NamespaceTok = this; 698 if (is(tok::comment)) 699 NamespaceTok = NamespaceTok->getNextNonComment(); 700 // Detect "(inline|export)? namespace" in the beginning of a line. 701 if (NamespaceTok && NamespaceTok->isOneOf(tok::kw_inline, tok::kw_export)) 702 NamespaceTok = NamespaceTok->getNextNonComment(); 703 return NamespaceTok && 704 NamespaceTok->isOneOf(tok::kw_namespace, TT_NamespaceMacro) 705 ? NamespaceTok 706 : nullptr; 707 } 708 709 void copyFrom(const FormatToken &Tok) { *this = Tok; } 710 711 private: 712 // Only allow copying via the explicit copyFrom method. 713 FormatToken(const FormatToken &) = delete; 714 FormatToken &operator=(const FormatToken &) = default; 715 716 template <typename A, typename... Ts> 717 bool startsSequenceInternal(A K1, Ts... Tokens) const { 718 if (is(tok::comment) && Next) 719 return Next->startsSequenceInternal(K1, Tokens...); 720 return is(K1) && Next && Next->startsSequenceInternal(Tokens...); 721 } 722 723 template <typename A> bool startsSequenceInternal(A K1) const { 724 if (is(tok::comment) && Next) 725 return Next->startsSequenceInternal(K1); 726 return is(K1); 727 } 728 729 template <typename A, typename... Ts> bool endsSequenceInternal(A K1) const { 730 if (is(tok::comment) && Previous) 731 return Previous->endsSequenceInternal(K1); 732 return is(K1); 733 } 734 735 template <typename A, typename... Ts> 736 bool endsSequenceInternal(A K1, Ts... Tokens) const { 737 if (is(tok::comment) && Previous) 738 return Previous->endsSequenceInternal(K1, Tokens...); 739 return is(K1) && Previous && Previous->endsSequenceInternal(Tokens...); 740 } 741 }; 742 743 class ContinuationIndenter; 744 struct LineState; 745 746 class TokenRole { 747 public: 748 TokenRole(const FormatStyle &Style) : Style(Style) {} 749 virtual ~TokenRole(); 750 751 /// After the \c TokenAnnotator has finished annotating all the tokens, 752 /// this function precomputes required information for formatting. 753 virtual void precomputeFormattingInfos(const FormatToken *Token); 754 755 /// Apply the special formatting that the given role demands. 756 /// 757 /// Assumes that the token having this role is already formatted. 758 /// 759 /// Continues formatting from \p State leaving indentation to \p Indenter and 760 /// returns the total penalty that this formatting incurs. 761 virtual unsigned formatFromToken(LineState &State, 762 ContinuationIndenter *Indenter, 763 bool DryRun) { 764 return 0; 765 } 766 767 /// Same as \c formatFromToken, but assumes that the first token has 768 /// already been set thereby deciding on the first line break. 769 virtual unsigned formatAfterToken(LineState &State, 770 ContinuationIndenter *Indenter, 771 bool DryRun) { 772 return 0; 773 } 774 775 /// Notifies the \c Role that a comma was found. 776 virtual void CommaFound(const FormatToken *Token) {} 777 778 virtual const FormatToken *lastComma() { return nullptr; } 779 780 protected: 781 const FormatStyle &Style; 782 }; 783 784 class CommaSeparatedList : public TokenRole { 785 public: 786 CommaSeparatedList(const FormatStyle &Style) 787 : TokenRole(Style), HasNestedBracedList(false) {} 788 789 void precomputeFormattingInfos(const FormatToken *Token) override; 790 791 unsigned formatAfterToken(LineState &State, ContinuationIndenter *Indenter, 792 bool DryRun) override; 793 794 unsigned formatFromToken(LineState &State, ContinuationIndenter *Indenter, 795 bool DryRun) override; 796 797 /// Adds \p Token as the next comma to the \c CommaSeparated list. 798 void CommaFound(const FormatToken *Token) override { 799 Commas.push_back(Token); 800 } 801 802 const FormatToken *lastComma() override { 803 if (Commas.empty()) 804 return nullptr; 805 return Commas.back(); 806 } 807 808 private: 809 /// A struct that holds information on how to format a given list with 810 /// a specific number of columns. 811 struct ColumnFormat { 812 /// The number of columns to use. 813 unsigned Columns; 814 815 /// The total width in characters. 816 unsigned TotalWidth; 817 818 /// The number of lines required for this format. 819 unsigned LineCount; 820 821 /// The size of each column in characters. 822 SmallVector<unsigned, 8> ColumnSizes; 823 }; 824 825 /// Calculate which \c ColumnFormat fits best into 826 /// \p RemainingCharacters. 827 const ColumnFormat *getColumnFormat(unsigned RemainingCharacters) const; 828 829 /// The ordered \c FormatTokens making up the commas of this list. 830 SmallVector<const FormatToken *, 8> Commas; 831 832 /// The length of each of the list's items in characters including the 833 /// trailing comma. 834 SmallVector<unsigned, 8> ItemLengths; 835 836 /// Precomputed formats that can be used for this list. 837 SmallVector<ColumnFormat, 4> Formats; 838 839 bool HasNestedBracedList; 840 }; 841 842 /// Encapsulates keywords that are context sensitive or for languages not 843 /// properly supported by Clang's lexer. 844 struct AdditionalKeywords { 845 AdditionalKeywords(IdentifierTable &IdentTable) { 846 kw_final = &IdentTable.get("final"); 847 kw_override = &IdentTable.get("override"); 848 kw_in = &IdentTable.get("in"); 849 kw_of = &IdentTable.get("of"); 850 kw_CF_CLOSED_ENUM = &IdentTable.get("CF_CLOSED_ENUM"); 851 kw_CF_ENUM = &IdentTable.get("CF_ENUM"); 852 kw_CF_OPTIONS = &IdentTable.get("CF_OPTIONS"); 853 kw_NS_CLOSED_ENUM = &IdentTable.get("NS_CLOSED_ENUM"); 854 kw_NS_ENUM = &IdentTable.get("NS_ENUM"); 855 kw_NS_OPTIONS = &IdentTable.get("NS_OPTIONS"); 856 857 kw_as = &IdentTable.get("as"); 858 kw_async = &IdentTable.get("async"); 859 kw_await = &IdentTable.get("await"); 860 kw_declare = &IdentTable.get("declare"); 861 kw_finally = &IdentTable.get("finally"); 862 kw_from = &IdentTable.get("from"); 863 kw_function = &IdentTable.get("function"); 864 kw_get = &IdentTable.get("get"); 865 kw_import = &IdentTable.get("import"); 866 kw_infer = &IdentTable.get("infer"); 867 kw_is = &IdentTable.get("is"); 868 kw_let = &IdentTable.get("let"); 869 kw_module = &IdentTable.get("module"); 870 kw_readonly = &IdentTable.get("readonly"); 871 kw_set = &IdentTable.get("set"); 872 kw_type = &IdentTable.get("type"); 873 kw_typeof = &IdentTable.get("typeof"); 874 kw_var = &IdentTable.get("var"); 875 kw_yield = &IdentTable.get("yield"); 876 877 kw_abstract = &IdentTable.get("abstract"); 878 kw_assert = &IdentTable.get("assert"); 879 kw_extends = &IdentTable.get("extends"); 880 kw_implements = &IdentTable.get("implements"); 881 kw_instanceof = &IdentTable.get("instanceof"); 882 kw_interface = &IdentTable.get("interface"); 883 kw_native = &IdentTable.get("native"); 884 kw_package = &IdentTable.get("package"); 885 kw_synchronized = &IdentTable.get("synchronized"); 886 kw_throws = &IdentTable.get("throws"); 887 kw___except = &IdentTable.get("__except"); 888 kw___has_include = &IdentTable.get("__has_include"); 889 kw___has_include_next = &IdentTable.get("__has_include_next"); 890 891 kw_mark = &IdentTable.get("mark"); 892 893 kw_extend = &IdentTable.get("extend"); 894 kw_option = &IdentTable.get("option"); 895 kw_optional = &IdentTable.get("optional"); 896 kw_repeated = &IdentTable.get("repeated"); 897 kw_required = &IdentTable.get("required"); 898 kw_returns = &IdentTable.get("returns"); 899 900 kw_signals = &IdentTable.get("signals"); 901 kw_qsignals = &IdentTable.get("Q_SIGNALS"); 902 kw_slots = &IdentTable.get("slots"); 903 kw_qslots = &IdentTable.get("Q_SLOTS"); 904 905 // C# keywords 906 kw_dollar = &IdentTable.get("dollar"); 907 kw_base = &IdentTable.get("base"); 908 kw_byte = &IdentTable.get("byte"); 909 kw_checked = &IdentTable.get("checked"); 910 kw_decimal = &IdentTable.get("decimal"); 911 kw_delegate = &IdentTable.get("delegate"); 912 kw_event = &IdentTable.get("event"); 913 kw_fixed = &IdentTable.get("fixed"); 914 kw_foreach = &IdentTable.get("foreach"); 915 kw_implicit = &IdentTable.get("implicit"); 916 kw_internal = &IdentTable.get("internal"); 917 kw_lock = &IdentTable.get("lock"); 918 kw_null = &IdentTable.get("null"); 919 kw_object = &IdentTable.get("object"); 920 kw_out = &IdentTable.get("out"); 921 kw_params = &IdentTable.get("params"); 922 kw_ref = &IdentTable.get("ref"); 923 kw_string = &IdentTable.get("string"); 924 kw_stackalloc = &IdentTable.get("stackalloc"); 925 kw_sbyte = &IdentTable.get("sbyte"); 926 kw_sealed = &IdentTable.get("sealed"); 927 kw_uint = &IdentTable.get("uint"); 928 kw_ulong = &IdentTable.get("ulong"); 929 kw_unchecked = &IdentTable.get("unchecked"); 930 kw_unsafe = &IdentTable.get("unsafe"); 931 kw_ushort = &IdentTable.get("ushort"); 932 kw_when = &IdentTable.get("when"); 933 kw_where = &IdentTable.get("where"); 934 935 // Keep this at the end of the constructor to make sure everything here 936 // is 937 // already initialized. 938 JsExtraKeywords = std::unordered_set<IdentifierInfo *>( 939 {kw_as, kw_async, kw_await, kw_declare, kw_finally, kw_from, 940 kw_function, kw_get, kw_import, kw_is, kw_let, kw_module, kw_override, 941 kw_readonly, kw_set, kw_type, kw_typeof, kw_var, kw_yield, 942 // Keywords from the Java section. 943 kw_abstract, kw_extends, kw_implements, kw_instanceof, kw_interface}); 944 945 CSharpExtraKeywords = std::unordered_set<IdentifierInfo *>( 946 {kw_base, kw_byte, kw_checked, kw_decimal, kw_delegate, kw_event, 947 kw_fixed, kw_foreach, kw_implicit, kw_in, kw_interface, kw_internal, 948 kw_is, kw_lock, kw_null, kw_object, kw_out, kw_override, kw_params, 949 kw_readonly, kw_ref, kw_string, kw_stackalloc, kw_sbyte, kw_sealed, 950 kw_uint, kw_ulong, kw_unchecked, kw_unsafe, kw_ushort, kw_when, 951 kw_where, 952 // Keywords from the JavaScript section. 953 kw_as, kw_async, kw_await, kw_declare, kw_finally, kw_from, 954 kw_function, kw_get, kw_import, kw_is, kw_let, kw_module, kw_readonly, 955 kw_set, kw_type, kw_typeof, kw_var, kw_yield, 956 // Keywords from the Java section. 957 kw_abstract, kw_extends, kw_implements, kw_instanceof, kw_interface}); 958 } 959 960 // Context sensitive keywords. 961 IdentifierInfo *kw_final; 962 IdentifierInfo *kw_override; 963 IdentifierInfo *kw_in; 964 IdentifierInfo *kw_of; 965 IdentifierInfo *kw_CF_CLOSED_ENUM; 966 IdentifierInfo *kw_CF_ENUM; 967 IdentifierInfo *kw_CF_OPTIONS; 968 IdentifierInfo *kw_NS_CLOSED_ENUM; 969 IdentifierInfo *kw_NS_ENUM; 970 IdentifierInfo *kw_NS_OPTIONS; 971 IdentifierInfo *kw___except; 972 IdentifierInfo *kw___has_include; 973 IdentifierInfo *kw___has_include_next; 974 975 // JavaScript keywords. 976 IdentifierInfo *kw_as; 977 IdentifierInfo *kw_async; 978 IdentifierInfo *kw_await; 979 IdentifierInfo *kw_declare; 980 IdentifierInfo *kw_finally; 981 IdentifierInfo *kw_from; 982 IdentifierInfo *kw_function; 983 IdentifierInfo *kw_get; 984 IdentifierInfo *kw_import; 985 IdentifierInfo *kw_infer; 986 IdentifierInfo *kw_is; 987 IdentifierInfo *kw_let; 988 IdentifierInfo *kw_module; 989 IdentifierInfo *kw_readonly; 990 IdentifierInfo *kw_set; 991 IdentifierInfo *kw_type; 992 IdentifierInfo *kw_typeof; 993 IdentifierInfo *kw_var; 994 IdentifierInfo *kw_yield; 995 996 // Java keywords. 997 IdentifierInfo *kw_abstract; 998 IdentifierInfo *kw_assert; 999 IdentifierInfo *kw_extends; 1000 IdentifierInfo *kw_implements; 1001 IdentifierInfo *kw_instanceof; 1002 IdentifierInfo *kw_interface; 1003 IdentifierInfo *kw_native; 1004 IdentifierInfo *kw_package; 1005 IdentifierInfo *kw_synchronized; 1006 IdentifierInfo *kw_throws; 1007 1008 // Pragma keywords. 1009 IdentifierInfo *kw_mark; 1010 1011 // Proto keywords. 1012 IdentifierInfo *kw_extend; 1013 IdentifierInfo *kw_option; 1014 IdentifierInfo *kw_optional; 1015 IdentifierInfo *kw_repeated; 1016 IdentifierInfo *kw_required; 1017 IdentifierInfo *kw_returns; 1018 1019 // QT keywords. 1020 IdentifierInfo *kw_signals; 1021 IdentifierInfo *kw_qsignals; 1022 IdentifierInfo *kw_slots; 1023 IdentifierInfo *kw_qslots; 1024 1025 // C# keywords 1026 IdentifierInfo *kw_dollar; 1027 IdentifierInfo *kw_base; 1028 IdentifierInfo *kw_byte; 1029 IdentifierInfo *kw_checked; 1030 IdentifierInfo *kw_decimal; 1031 IdentifierInfo *kw_delegate; 1032 IdentifierInfo *kw_event; 1033 IdentifierInfo *kw_fixed; 1034 IdentifierInfo *kw_foreach; 1035 IdentifierInfo *kw_implicit; 1036 IdentifierInfo *kw_internal; 1037 1038 IdentifierInfo *kw_lock; 1039 IdentifierInfo *kw_null; 1040 IdentifierInfo *kw_object; 1041 IdentifierInfo *kw_out; 1042 1043 IdentifierInfo *kw_params; 1044 1045 IdentifierInfo *kw_ref; 1046 IdentifierInfo *kw_string; 1047 IdentifierInfo *kw_stackalloc; 1048 IdentifierInfo *kw_sbyte; 1049 IdentifierInfo *kw_sealed; 1050 IdentifierInfo *kw_uint; 1051 IdentifierInfo *kw_ulong; 1052 IdentifierInfo *kw_unchecked; 1053 IdentifierInfo *kw_unsafe; 1054 IdentifierInfo *kw_ushort; 1055 IdentifierInfo *kw_when; 1056 IdentifierInfo *kw_where; 1057 1058 /// Returns \c true if \p Tok is a true JavaScript identifier, returns 1059 /// \c false if it is a keyword or a pseudo keyword. 1060 /// If \c AcceptIdentifierName is true, returns true not only for keywords, 1061 // but also for IdentifierName tokens (aka pseudo-keywords), such as 1062 // ``yield``. 1063 bool IsJavaScriptIdentifier(const FormatToken &Tok, 1064 bool AcceptIdentifierName = true) const { 1065 // Based on the list of JavaScript & TypeScript keywords here: 1066 // https://github.com/microsoft/TypeScript/blob/main/src/compiler/scanner.ts#L74 1067 switch (Tok.Tok.getKind()) { 1068 case tok::kw_break: 1069 case tok::kw_case: 1070 case tok::kw_catch: 1071 case tok::kw_class: 1072 case tok::kw_continue: 1073 case tok::kw_const: 1074 case tok::kw_default: 1075 case tok::kw_delete: 1076 case tok::kw_do: 1077 case tok::kw_else: 1078 case tok::kw_enum: 1079 case tok::kw_export: 1080 case tok::kw_false: 1081 case tok::kw_for: 1082 case tok::kw_if: 1083 case tok::kw_import: 1084 case tok::kw_module: 1085 case tok::kw_new: 1086 case tok::kw_private: 1087 case tok::kw_protected: 1088 case tok::kw_public: 1089 case tok::kw_return: 1090 case tok::kw_static: 1091 case tok::kw_switch: 1092 case tok::kw_this: 1093 case tok::kw_throw: 1094 case tok::kw_true: 1095 case tok::kw_try: 1096 case tok::kw_typeof: 1097 case tok::kw_void: 1098 case tok::kw_while: 1099 // These are JS keywords that are lexed by LLVM/clang as keywords. 1100 return false; 1101 case tok::identifier: { 1102 // For identifiers, make sure they are true identifiers, excluding the 1103 // JavaScript pseudo-keywords (not lexed by LLVM/clang as keywords). 1104 bool IsPseudoKeyword = 1105 JsExtraKeywords.find(Tok.Tok.getIdentifierInfo()) != 1106 JsExtraKeywords.end(); 1107 return AcceptIdentifierName || !IsPseudoKeyword; 1108 } 1109 default: 1110 // Other keywords are handled in the switch below, to avoid problems due 1111 // to duplicate case labels when using the #include trick. 1112 break; 1113 } 1114 1115 switch (Tok.Tok.getKind()) { 1116 // Handle C++ keywords not included above: these are all JS identifiers. 1117 #define KEYWORD(X, Y) case tok::kw_##X: 1118 #include "clang/Basic/TokenKinds.def" 1119 // #undef KEYWORD is not needed -- it's #undef-ed at the end of 1120 // TokenKinds.def 1121 return true; 1122 default: 1123 // All other tokens (punctuation etc) are not JS identifiers. 1124 return false; 1125 } 1126 } 1127 1128 /// Returns \c true if \p Tok is a C# keyword, returns 1129 /// \c false if it is a anything else. 1130 bool isCSharpKeyword(const FormatToken &Tok) const { 1131 switch (Tok.Tok.getKind()) { 1132 case tok::kw_bool: 1133 case tok::kw_break: 1134 case tok::kw_case: 1135 case tok::kw_catch: 1136 case tok::kw_char: 1137 case tok::kw_class: 1138 case tok::kw_const: 1139 case tok::kw_continue: 1140 case tok::kw_default: 1141 case tok::kw_do: 1142 case tok::kw_double: 1143 case tok::kw_else: 1144 case tok::kw_enum: 1145 case tok::kw_explicit: 1146 case tok::kw_extern: 1147 case tok::kw_false: 1148 case tok::kw_float: 1149 case tok::kw_for: 1150 case tok::kw_goto: 1151 case tok::kw_if: 1152 case tok::kw_int: 1153 case tok::kw_long: 1154 case tok::kw_namespace: 1155 case tok::kw_new: 1156 case tok::kw_operator: 1157 case tok::kw_private: 1158 case tok::kw_protected: 1159 case tok::kw_public: 1160 case tok::kw_return: 1161 case tok::kw_short: 1162 case tok::kw_sizeof: 1163 case tok::kw_static: 1164 case tok::kw_struct: 1165 case tok::kw_switch: 1166 case tok::kw_this: 1167 case tok::kw_throw: 1168 case tok::kw_true: 1169 case tok::kw_try: 1170 case tok::kw_typeof: 1171 case tok::kw_using: 1172 case tok::kw_virtual: 1173 case tok::kw_void: 1174 case tok::kw_volatile: 1175 case tok::kw_while: 1176 return true; 1177 default: 1178 return Tok.is(tok::identifier) && 1179 CSharpExtraKeywords.find(Tok.Tok.getIdentifierInfo()) == 1180 CSharpExtraKeywords.end(); 1181 } 1182 } 1183 1184 private: 1185 /// The JavaScript keywords beyond the C++ keyword set. 1186 std::unordered_set<IdentifierInfo *> JsExtraKeywords; 1187 1188 /// The C# keywords beyond the C++ keyword set 1189 std::unordered_set<IdentifierInfo *> CSharpExtraKeywords; 1190 }; 1191 1192 } // namespace format 1193 } // namespace clang 1194 1195 #endif 1196