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/Support/Debug.h"
19 
20 #define DEBUG_TYPE "format-token-annotator"
21 
22 namespace clang {
23 namespace format {
24 
25 namespace {
26 
27 /// \brief A parser that gathers additional information about tokens.
28 ///
29 /// The \c TokenAnnotator tries to match parenthesis and square brakets and
30 /// store a parenthesis levels. It also tries to resolve matching "<" and ">"
31 /// into template parameter lists.
32 class AnnotatingParser {
33 public:
34   AnnotatingParser(const FormatStyle &Style, AnnotatedLine &Line,
35                    IdentifierInfo &Ident_in)
36       : Style(Style), Line(Line), CurrentToken(Line.First),
37         KeywordVirtualFound(false), AutoFound(false), Ident_in(Ident_in) {
38     Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false));
39     resetTokenMetadata(CurrentToken);
40   }
41 
42 private:
43   bool parseAngle() {
44     if (!CurrentToken)
45       return false;
46     ScopedContextCreator ContextCreator(*this, tok::less, 10);
47     FormatToken *Left = CurrentToken->Previous;
48     Contexts.back().IsExpression = false;
49     // If there's a template keyword before the opening angle bracket, this is a
50     // template parameter, not an argument.
51     Contexts.back().InTemplateArgument =
52         Left->Previous && Left->Previous->Tok.isNot(tok::kw_template);
53 
54     while (CurrentToken) {
55       if (CurrentToken->is(tok::greater)) {
56         Left->MatchingParen = CurrentToken;
57         CurrentToken->MatchingParen = Left;
58         CurrentToken->Type = TT_TemplateCloser;
59         next();
60         return true;
61       }
62       if (CurrentToken->isOneOf(tok::r_paren, tok::r_square, tok::r_brace,
63                                 tok::question, tok::colon))
64         return false;
65       // If a && or || is found and interpreted as a binary operator, this set
66       // of angles is likely part of something like "a < b && c > d". If the
67       // angles are inside an expression, the ||/&& might also be a binary
68       // operator that was misinterpreted because we are parsing template
69       // parameters.
70       // FIXME: This is getting out of hand, write a decent parser.
71       if (CurrentToken->Previous->isOneOf(tok::pipepipe, tok::ampamp) &&
72           ((CurrentToken->Previous->Type == TT_BinaryOperator &&
73             // Toplevel bool expressions do not make lots of sense;
74             // If we're on the top level, it contains only the base context and
75             // the context for the current opening angle bracket.
76             Contexts.size() > 2) ||
77            Contexts[Contexts.size() - 2].IsExpression) &&
78           Line.First->isNot(tok::kw_template))
79         return false;
80       updateParameterCount(Left, CurrentToken);
81       if (!consumeToken())
82         return false;
83     }
84     return false;
85   }
86 
87   bool parseParens(bool LookForDecls = false) {
88     if (!CurrentToken)
89       return false;
90     ScopedContextCreator ContextCreator(*this, tok::l_paren, 1);
91 
92     // FIXME: This is a bit of a hack. Do better.
93     Contexts.back().ColonIsForRangeExpr =
94         Contexts.size() == 2 && Contexts[0].ColonIsForRangeExpr;
95 
96     bool StartsObjCMethodExpr = false;
97     FormatToken *Left = CurrentToken->Previous;
98     if (CurrentToken->is(tok::caret)) {
99       // (^ can start a block type.
100       Left->Type = TT_ObjCBlockLParen;
101     } else if (FormatToken *MaybeSel = Left->Previous) {
102       // @selector( starts a selector.
103       if (MaybeSel->isObjCAtKeyword(tok::objc_selector) && MaybeSel->Previous &&
104           MaybeSel->Previous->is(tok::at)) {
105         StartsObjCMethodExpr = true;
106       }
107     }
108 
109     if (Left->Previous &&
110         (Left->Previous->isOneOf(tok::kw_static_assert, tok::kw_if,
111                                  tok::kw_while, tok::l_paren, tok::comma) ||
112          Left->Previous->Type == TT_BinaryOperator)) {
113       // static_assert, if and while usually contain expressions.
114       Contexts.back().IsExpression = true;
115     } else if (Line.InPPDirective &&
116                (!Left->Previous ||
117                 (Left->Previous->isNot(tok::identifier) &&
118                  Left->Previous->Type != TT_OverloadedOperator))) {
119       Contexts.back().IsExpression = true;
120     } else if (Left->Previous && Left->Previous->is(tok::r_square) &&
121                Left->Previous->MatchingParen &&
122                Left->Previous->MatchingParen->Type == TT_LambdaLSquare) {
123       // This is a parameter list of a lambda expression.
124       Contexts.back().IsExpression = false;
125     } else if (Contexts[Contexts.size() - 2].CaretFound) {
126       // This is the parameter list of an ObjC block.
127       Contexts.back().IsExpression = false;
128     } else if (Left->Previous && Left->Previous->is(tok::kw___attribute)) {
129       Left->Type = TT_AttributeParen;
130     } else if (Left->Previous && Left->Previous->IsForEachMacro) {
131       // The first argument to a foreach macro is a declaration.
132       Contexts.back().IsForEachMacro = true;
133       Contexts.back().IsExpression = false;
134     }
135 
136     if (StartsObjCMethodExpr) {
137       Contexts.back().ColonIsObjCMethodExpr = true;
138       Left->Type = TT_ObjCMethodExpr;
139     }
140 
141     bool MightBeFunctionType = CurrentToken->is(tok::star);
142     bool HasMultipleLines = false;
143     bool HasMultipleParametersOnALine = false;
144     while (CurrentToken) {
145       // LookForDecls is set when "if (" has been seen. Check for
146       // 'identifier' '*' 'identifier' followed by not '=' -- this
147       // '*' has to be a binary operator but determineStarAmpUsage() will
148       // categorize it as an unary operator, so set the right type here.
149       if (LookForDecls && CurrentToken->Next) {
150         FormatToken *Prev = CurrentToken->getPreviousNonComment();
151         if (Prev) {
152           FormatToken *PrevPrev = Prev->getPreviousNonComment();
153           FormatToken *Next = CurrentToken->Next;
154           if (PrevPrev && PrevPrev->is(tok::identifier) &&
155               Prev->isOneOf(tok::star, tok::amp, tok::ampamp) &&
156               CurrentToken->is(tok::identifier) && Next->isNot(tok::equal)) {
157             Prev->Type = TT_BinaryOperator;
158             LookForDecls = false;
159           }
160         }
161       }
162 
163       if (CurrentToken->Previous->Type == TT_PointerOrReference &&
164           CurrentToken->Previous->Previous->isOneOf(tok::l_paren,
165                                                     tok::coloncolon))
166         MightBeFunctionType = true;
167       if (CurrentToken->is(tok::r_paren)) {
168         if (MightBeFunctionType && CurrentToken->Next &&
169             (CurrentToken->Next->is(tok::l_paren) ||
170              (CurrentToken->Next->is(tok::l_square) &&
171               !Contexts.back().IsExpression)))
172           Left->Type = TT_FunctionTypeLParen;
173         Left->MatchingParen = CurrentToken;
174         CurrentToken->MatchingParen = Left;
175 
176         if (StartsObjCMethodExpr) {
177           CurrentToken->Type = TT_ObjCMethodExpr;
178           if (Contexts.back().FirstObjCSelectorName) {
179             Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName =
180                 Contexts.back().LongestObjCSelectorName;
181           }
182         }
183 
184         if (Left->Type == TT_AttributeParen)
185           CurrentToken->Type = TT_AttributeParen;
186 
187         if (!HasMultipleLines)
188           Left->PackingKind = PPK_Inconclusive;
189         else if (HasMultipleParametersOnALine)
190           Left->PackingKind = PPK_BinPacked;
191         else
192           Left->PackingKind = PPK_OnePerLine;
193 
194         next();
195         return true;
196       }
197       if (CurrentToken->isOneOf(tok::r_square, tok::r_brace))
198         return false;
199       else if (CurrentToken->is(tok::l_brace))
200         Left->Type = TT_Unknown; // Not TT_ObjCBlockLParen
201       if (CurrentToken->is(tok::comma) && CurrentToken->Next &&
202           !CurrentToken->Next->HasUnescapedNewline &&
203           !CurrentToken->Next->isTrailingComment())
204         HasMultipleParametersOnALine = true;
205       if (CurrentToken->isOneOf(tok::kw_const, tok::kw_auto) ||
206           CurrentToken->isSimpleTypeSpecifier())
207         Contexts.back().IsExpression = false;
208       FormatToken *Tok = CurrentToken;
209       if (!consumeToken())
210         return false;
211       updateParameterCount(Left, Tok);
212       if (CurrentToken && CurrentToken->HasUnescapedNewline)
213         HasMultipleLines = true;
214     }
215     return false;
216   }
217 
218   bool parseSquare() {
219     if (!CurrentToken)
220       return false;
221 
222     // A '[' could be an index subscript (after an identifier or after
223     // ')' or ']'), it could be the start of an Objective-C method
224     // expression, or it could the the start of an Objective-C array literal.
225     FormatToken *Left = CurrentToken->Previous;
226     FormatToken *Parent = Left->getPreviousNonComment();
227     bool StartsObjCMethodExpr =
228         Contexts.back().CanBeExpression && Left->Type != TT_LambdaLSquare &&
229         CurrentToken->isNot(tok::l_brace) &&
230         (!Parent || Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren,
231                                     tok::kw_return, tok::kw_throw) ||
232          Parent->isUnaryOperator() || Parent->Type == TT_ObjCForIn ||
233          Parent->Type == TT_CastRParen ||
234          getBinOpPrecedence(Parent->Tok.getKind(), true, true) > prec::Unknown);
235     ScopedContextCreator ContextCreator(*this, tok::l_square, 10);
236     Contexts.back().IsExpression = true;
237     bool ColonFound = false;
238 
239     if (StartsObjCMethodExpr) {
240       Contexts.back().ColonIsObjCMethodExpr = true;
241       Left->Type = TT_ObjCMethodExpr;
242     } else if (Parent && Parent->is(tok::at)) {
243       Left->Type = TT_ArrayInitializerLSquare;
244     } else if (Left->Type == TT_Unknown) {
245       Left->Type = TT_ArraySubscriptLSquare;
246     }
247 
248     while (CurrentToken) {
249       if (CurrentToken->is(tok::r_square)) {
250         if (CurrentToken->Next && CurrentToken->Next->is(tok::l_paren) &&
251             Left->Type == TT_ObjCMethodExpr) {
252           // An ObjC method call is rarely followed by an open parenthesis.
253           // FIXME: Do we incorrectly label ":" with this?
254           StartsObjCMethodExpr = false;
255           Left->Type = TT_Unknown;
256         }
257         if (StartsObjCMethodExpr && CurrentToken->Previous != Left) {
258           CurrentToken->Type = TT_ObjCMethodExpr;
259           // determineStarAmpUsage() thinks that '*' '[' is allocating an
260           // array of pointers, but if '[' starts a selector then '*' is a
261           // binary operator.
262           if (Parent && Parent->Type == TT_PointerOrReference)
263             Parent->Type = TT_BinaryOperator;
264         }
265         Left->MatchingParen = CurrentToken;
266         CurrentToken->MatchingParen = Left;
267         if (Contexts.back().FirstObjCSelectorName) {
268           Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName =
269               Contexts.back().LongestObjCSelectorName;
270           if (Left->BlockParameterCount > 1)
271             Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName = 0;
272         }
273         next();
274         return true;
275       }
276       if (CurrentToken->isOneOf(tok::r_paren, tok::r_brace))
277         return false;
278       if (CurrentToken->is(tok::colon))
279         ColonFound = true;
280       if (CurrentToken->is(tok::comma) &&
281           Style.Language != FormatStyle::LK_Proto &&
282           (Left->Type == TT_ArraySubscriptLSquare ||
283            (Left->Type == TT_ObjCMethodExpr && !ColonFound)))
284         Left->Type = TT_ArrayInitializerLSquare;
285       FormatToken* Tok = CurrentToken;
286       if (!consumeToken())
287         return false;
288       updateParameterCount(Left, Tok);
289     }
290     return false;
291   }
292 
293   bool parseBrace() {
294     if (CurrentToken) {
295       FormatToken *Left = CurrentToken->Previous;
296 
297       if (Contexts.back().CaretFound)
298         Left->Type = TT_ObjCBlockLBrace;
299       Contexts.back().CaretFound = false;
300 
301       ScopedContextCreator ContextCreator(*this, tok::l_brace, 1);
302       Contexts.back().ColonIsDictLiteral = true;
303       if (Left->BlockKind == BK_BracedInit)
304         Contexts.back().IsExpression = true;
305 
306       while (CurrentToken) {
307         if (CurrentToken->is(tok::r_brace)) {
308           Left->MatchingParen = CurrentToken;
309           CurrentToken->MatchingParen = Left;
310           next();
311           return true;
312         }
313         if (CurrentToken->isOneOf(tok::r_paren, tok::r_square))
314           return false;
315         updateParameterCount(Left, CurrentToken);
316         if (CurrentToken->is(tok::colon) &&
317             Style.Language != FormatStyle::LK_Proto) {
318           if (CurrentToken->getPreviousNonComment()->is(tok::identifier))
319             CurrentToken->getPreviousNonComment()->Type = TT_SelectorName;
320           Left->Type = TT_DictLiteral;
321         }
322         if (!consumeToken())
323           return false;
324       }
325     }
326     // No closing "}" found, this probably starts a definition.
327     Line.StartsDefinition = true;
328     return true;
329   }
330 
331   void updateParameterCount(FormatToken *Left, FormatToken *Current) {
332     if (Current->Type == TT_LambdaLSquare ||
333         (Current->is(tok::caret) && Current->Type == TT_UnaryOperator) ||
334         (Style.Language == FormatStyle::LK_JavaScript &&
335          Current->TokenText == "function")) {
336       ++Left->BlockParameterCount;
337     }
338     if (Current->is(tok::comma)) {
339       ++Left->ParameterCount;
340       if (!Left->Role)
341         Left->Role.reset(new CommaSeparatedList(Style));
342       Left->Role->CommaFound(Current);
343     } else if (Left->ParameterCount == 0 && Current->isNot(tok::comment)) {
344       Left->ParameterCount = 1;
345     }
346   }
347 
348   bool parseConditional() {
349     while (CurrentToken) {
350       if (CurrentToken->is(tok::colon)) {
351         CurrentToken->Type = TT_ConditionalExpr;
352         next();
353         return true;
354       }
355       if (!consumeToken())
356         return false;
357     }
358     return false;
359   }
360 
361   bool parseTemplateDeclaration() {
362     if (CurrentToken && CurrentToken->is(tok::less)) {
363       CurrentToken->Type = TT_TemplateOpener;
364       next();
365       if (!parseAngle())
366         return false;
367       if (CurrentToken)
368         CurrentToken->Previous->ClosesTemplateDeclaration = true;
369       return true;
370     }
371     return false;
372   }
373 
374   bool consumeToken() {
375     FormatToken *Tok = CurrentToken;
376     next();
377     switch (Tok->Tok.getKind()) {
378     case tok::plus:
379     case tok::minus:
380       if (!Tok->Previous && Line.MustBeDeclaration)
381         Tok->Type = TT_ObjCMethodSpecifier;
382       break;
383     case tok::colon:
384       if (!Tok->Previous)
385         return false;
386       // Colons from ?: are handled in parseConditional().
387       if (Tok->Previous->is(tok::r_paren) && Contexts.size() == 1 &&
388           Line.First->isNot(tok::kw_case)) {
389         Tok->Type = TT_CtorInitializerColon;
390       } else if (Contexts.back().ColonIsDictLiteral) {
391         Tok->Type = TT_DictLiteral;
392       } else if (Contexts.back().ColonIsObjCMethodExpr ||
393                  Line.First->Type == TT_ObjCMethodSpecifier) {
394         Tok->Type = TT_ObjCMethodExpr;
395         Tok->Previous->Type = TT_SelectorName;
396         if (Tok->Previous->ColumnWidth >
397             Contexts.back().LongestObjCSelectorName) {
398           Contexts.back().LongestObjCSelectorName = Tok->Previous->ColumnWidth;
399         }
400         if (!Contexts.back().FirstObjCSelectorName)
401           Contexts.back().FirstObjCSelectorName = Tok->Previous;
402       } else if (Contexts.back().ColonIsForRangeExpr) {
403         Tok->Type = TT_RangeBasedForLoopColon;
404       } else if (CurrentToken && CurrentToken->is(tok::numeric_constant)) {
405         Tok->Type = TT_BitFieldColon;
406       } else if (Contexts.size() == 1 &&
407                  !Line.First->isOneOf(tok::kw_enum, tok::kw_case)) {
408         Tok->Type = TT_InheritanceColon;
409       } else if (Contexts.back().ContextKind == tok::l_paren) {
410         Tok->Type = TT_InlineASMColon;
411       }
412       break;
413     case tok::kw_if:
414     case tok::kw_while:
415       if (CurrentToken && CurrentToken->is(tok::l_paren)) {
416         next();
417         if (!parseParens(/*LookForDecls=*/true))
418           return false;
419       }
420       break;
421     case tok::kw_for:
422       Contexts.back().ColonIsForRangeExpr = true;
423       next();
424       if (!parseParens())
425         return false;
426       break;
427     case tok::l_paren:
428       if (!parseParens())
429         return false;
430       if (Line.MustBeDeclaration && Contexts.size() == 1 &&
431           !Contexts.back().IsExpression &&
432           Line.First->Type != TT_ObjCProperty &&
433           (!Tok->Previous || Tok->Previous->isNot(tok::kw_decltype)))
434         Line.MightBeFunctionDecl = true;
435       break;
436     case tok::l_square:
437       if (!parseSquare())
438         return false;
439       break;
440     case tok::l_brace:
441       if (!parseBrace())
442         return false;
443       break;
444     case tok::less:
445       if (Tok->Previous && !Tok->Previous->Tok.isLiteral() && parseAngle())
446         Tok->Type = TT_TemplateOpener;
447       else {
448         Tok->Type = TT_BinaryOperator;
449         CurrentToken = Tok;
450         next();
451       }
452       break;
453     case tok::r_paren:
454     case tok::r_square:
455       return false;
456     case tok::r_brace:
457       // Lines can start with '}'.
458       if (Tok->Previous)
459         return false;
460       break;
461     case tok::greater:
462       Tok->Type = TT_BinaryOperator;
463       break;
464     case tok::kw_operator:
465       while (CurrentToken &&
466              !CurrentToken->isOneOf(tok::l_paren, tok::semi, tok::r_paren)) {
467         if (CurrentToken->isOneOf(tok::star, tok::amp))
468           CurrentToken->Type = TT_PointerOrReference;
469         consumeToken();
470         if (CurrentToken && CurrentToken->Previous->Type == TT_BinaryOperator)
471           CurrentToken->Previous->Type = TT_OverloadedOperator;
472       }
473       if (CurrentToken) {
474         CurrentToken->Type = TT_OverloadedOperatorLParen;
475         if (CurrentToken->Previous->Type == TT_BinaryOperator)
476           CurrentToken->Previous->Type = TT_OverloadedOperator;
477       }
478       break;
479     case tok::question:
480       parseConditional();
481       break;
482     case tok::kw_template:
483       parseTemplateDeclaration();
484       break;
485     case tok::identifier:
486       if (Line.First->is(tok::kw_for) &&
487           Tok->Tok.getIdentifierInfo() == &Ident_in)
488         Tok->Type = TT_ObjCForIn;
489       break;
490     case tok::comma:
491       if (Contexts.back().FirstStartOfName)
492         Contexts.back().FirstStartOfName->PartOfMultiVariableDeclStmt = true;
493       if (Contexts.back().InCtorInitializer)
494         Tok->Type = TT_CtorInitializerComma;
495       if (Contexts.back().IsForEachMacro)
496         Contexts.back().IsExpression = true;
497       break;
498     default:
499       break;
500     }
501     return true;
502   }
503 
504   void parseIncludeDirective() {
505     next();
506     if (CurrentToken && CurrentToken->is(tok::less)) {
507       next();
508       while (CurrentToken) {
509         if (CurrentToken->isNot(tok::comment) || CurrentToken->Next)
510           CurrentToken->Type = TT_ImplicitStringLiteral;
511         next();
512       }
513     } else {
514       while (CurrentToken) {
515         if (CurrentToken->is(tok::string_literal))
516           // Mark these string literals as "implicit" literals, too, so that
517           // they are not split or line-wrapped.
518           CurrentToken->Type = TT_ImplicitStringLiteral;
519         next();
520       }
521     }
522   }
523 
524   void parseWarningOrError() {
525     next();
526     // We still want to format the whitespace left of the first token of the
527     // warning or error.
528     next();
529     while (CurrentToken) {
530       CurrentToken->Type = TT_ImplicitStringLiteral;
531       next();
532     }
533   }
534 
535   void parsePragma() {
536     next(); // Consume "pragma".
537     if (CurrentToken && CurrentToken->TokenText == "mark") {
538       next(); // Consume "mark".
539       next(); // Consume first token (so we fix leading whitespace).
540       while (CurrentToken) {
541         CurrentToken->Type = TT_ImplicitStringLiteral;
542         next();
543       }
544     }
545   }
546 
547   void parsePreprocessorDirective() {
548     next();
549     if (!CurrentToken)
550       return;
551     if (CurrentToken->Tok.is(tok::numeric_constant)) {
552       CurrentToken->SpacesRequiredBefore = 1;
553       return;
554     }
555     // Hashes in the middle of a line can lead to any strange token
556     // sequence.
557     if (!CurrentToken->Tok.getIdentifierInfo())
558       return;
559     switch (CurrentToken->Tok.getIdentifierInfo()->getPPKeywordID()) {
560     case tok::pp_include:
561     case tok::pp_import:
562       parseIncludeDirective();
563       break;
564     case tok::pp_error:
565     case tok::pp_warning:
566       parseWarningOrError();
567       break;
568     case tok::pp_pragma:
569       parsePragma();
570       break;
571     case tok::pp_if:
572     case tok::pp_elif:
573       Contexts.back().IsExpression = true;
574       parseLine();
575       break;
576     default:
577       break;
578     }
579     while (CurrentToken)
580       next();
581   }
582 
583 public:
584   LineType parseLine() {
585     if (CurrentToken->is(tok::hash)) {
586       parsePreprocessorDirective();
587       return LT_PreprocessorDirective;
588     }
589 
590     // Directly allow to 'import <string-literal>' to support protocol buffer
591     // definitions (code.google.com/p/protobuf) or missing "#" (either way we
592     // should not break the line).
593     IdentifierInfo *Info = CurrentToken->Tok.getIdentifierInfo();
594     if (Info && Info->getPPKeywordID() == tok::pp_import &&
595         CurrentToken->Next && CurrentToken->Next->is(tok::string_literal))
596       parseIncludeDirective();
597 
598     while (CurrentToken) {
599       if (CurrentToken->is(tok::kw_virtual))
600         KeywordVirtualFound = true;
601       if (!consumeToken())
602         return LT_Invalid;
603     }
604     if (KeywordVirtualFound)
605       return LT_VirtualFunctionDecl;
606 
607     if (Line.First->Type == TT_ObjCMethodSpecifier) {
608       if (Contexts.back().FirstObjCSelectorName)
609         Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName =
610             Contexts.back().LongestObjCSelectorName;
611       return LT_ObjCMethodDecl;
612     }
613 
614     return LT_Other;
615   }
616 
617 private:
618   void resetTokenMetadata(FormatToken *Token) {
619     if (!Token)
620       return;
621 
622     // Reset token type in case we have already looked at it and then
623     // recovered from an error (e.g. failure to find the matching >).
624     if (CurrentToken->Type != TT_LambdaLSquare &&
625         CurrentToken->Type != TT_FunctionLBrace &&
626         CurrentToken->Type != TT_ImplicitStringLiteral &&
627         CurrentToken->Type != TT_RegexLiteral &&
628         CurrentToken->Type != TT_TrailingReturnArrow)
629       CurrentToken->Type = TT_Unknown;
630     if (CurrentToken->Role)
631       CurrentToken->Role.reset(nullptr);
632     CurrentToken->FakeLParens.clear();
633     CurrentToken->FakeRParens = 0;
634   }
635 
636   void next() {
637     if (CurrentToken) {
638       determineTokenType(*CurrentToken);
639       CurrentToken->BindingStrength = Contexts.back().BindingStrength;
640       CurrentToken->NestingLevel = Contexts.size() - 1;
641       CurrentToken = CurrentToken->Next;
642     }
643 
644     resetTokenMetadata(CurrentToken);
645   }
646 
647   /// \brief A struct to hold information valid in a specific context, e.g.
648   /// a pair of parenthesis.
649   struct Context {
650     Context(tok::TokenKind ContextKind, unsigned BindingStrength,
651             bool IsExpression)
652         : ContextKind(ContextKind), BindingStrength(BindingStrength),
653           LongestObjCSelectorName(0), ColonIsForRangeExpr(false),
654           ColonIsDictLiteral(false), ColonIsObjCMethodExpr(false),
655           FirstObjCSelectorName(nullptr), FirstStartOfName(nullptr),
656           IsExpression(IsExpression), CanBeExpression(true),
657           InTemplateArgument(false), InCtorInitializer(false),
658           CaretFound(false), IsForEachMacro(false) {}
659 
660     tok::TokenKind ContextKind;
661     unsigned BindingStrength;
662     unsigned LongestObjCSelectorName;
663     bool ColonIsForRangeExpr;
664     bool ColonIsDictLiteral;
665     bool ColonIsObjCMethodExpr;
666     FormatToken *FirstObjCSelectorName;
667     FormatToken *FirstStartOfName;
668     bool IsExpression;
669     bool CanBeExpression;
670     bool InTemplateArgument;
671     bool InCtorInitializer;
672     bool CaretFound;
673     bool IsForEachMacro;
674   };
675 
676   /// \brief Puts a new \c Context onto the stack \c Contexts for the lifetime
677   /// of each instance.
678   struct ScopedContextCreator {
679     AnnotatingParser &P;
680 
681     ScopedContextCreator(AnnotatingParser &P, tok::TokenKind ContextKind,
682                          unsigned Increase)
683         : P(P) {
684       P.Contexts.push_back(Context(ContextKind,
685                                    P.Contexts.back().BindingStrength + Increase,
686                                    P.Contexts.back().IsExpression));
687     }
688 
689     ~ScopedContextCreator() { P.Contexts.pop_back(); }
690   };
691 
692   void determineTokenType(FormatToken &Current) {
693     if (Current.getPrecedence() == prec::Assignment &&
694         !Line.First->isOneOf(tok::kw_template, tok::kw_using) &&
695         (!Current.Previous || Current.Previous->isNot(tok::kw_operator))) {
696       Contexts.back().IsExpression = true;
697       for (FormatToken *Previous = Current.Previous;
698            Previous && !Previous->isOneOf(tok::comma, tok::semi);
699            Previous = Previous->Previous) {
700         if (Previous->isOneOf(tok::r_square, tok::r_paren))
701           Previous = Previous->MatchingParen;
702         if (Previous->Type == TT_BinaryOperator &&
703             Previous->isOneOf(tok::star, tok::amp)) {
704           Previous->Type = TT_PointerOrReference;
705         }
706       }
707     } else if (Current.isOneOf(tok::kw_return, tok::kw_throw)) {
708       Contexts.back().IsExpression = true;
709     } else if (Current.is(tok::l_paren) && !Line.MustBeDeclaration &&
710                !Line.InPPDirective &&
711                (!Current.Previous ||
712                 Current.Previous->isNot(tok::kw_decltype))) {
713       bool ParametersOfFunctionType =
714           Current.Previous && Current.Previous->is(tok::r_paren) &&
715           Current.Previous->MatchingParen &&
716           Current.Previous->MatchingParen->Type == TT_FunctionTypeLParen;
717       bool IsForOrCatch = Current.Previous &&
718                           Current.Previous->isOneOf(tok::kw_for, tok::kw_catch);
719       Contexts.back().IsExpression = !ParametersOfFunctionType && !IsForOrCatch;
720     } else if (Current.isOneOf(tok::r_paren, tok::greater, tok::comma)) {
721       for (FormatToken *Previous = Current.Previous;
722            Previous && Previous->isOneOf(tok::star, tok::amp);
723            Previous = Previous->Previous)
724         Previous->Type = TT_PointerOrReference;
725     } else if (Current.Previous &&
726                Current.Previous->Type == TT_CtorInitializerColon) {
727       Contexts.back().IsExpression = true;
728       Contexts.back().InCtorInitializer = true;
729     } else if (Current.is(tok::kw_new)) {
730       Contexts.back().CanBeExpression = false;
731     } else if (Current.is(tok::semi) || Current.is(tok::exclaim)) {
732       // This should be the condition or increment in a for-loop.
733       Contexts.back().IsExpression = true;
734     }
735 
736     if (Current.Type == TT_Unknown) {
737       // Line.MightBeFunctionDecl can only be true after the parentheses of a
738       // function declaration have been found. In this case, 'Current' is a
739       // trailing token of this declaration and thus cannot be a name.
740       if (isStartOfName(Current) && !Line.MightBeFunctionDecl) {
741         Contexts.back().FirstStartOfName = &Current;
742         Current.Type = TT_StartOfName;
743       } else if (Current.is(tok::kw_auto)) {
744         AutoFound = true;
745       } else if (Current.is(tok::arrow) && AutoFound &&
746                  Line.MustBeDeclaration) {
747         Current.Type = TT_TrailingReturnArrow;
748       } else if (Current.isOneOf(tok::star, tok::amp, tok::ampamp)) {
749         Current.Type =
750             determineStarAmpUsage(Current, Contexts.back().CanBeExpression &&
751                                                Contexts.back().IsExpression,
752                                   Contexts.back().InTemplateArgument);
753       } else if (Current.isOneOf(tok::minus, tok::plus, tok::caret)) {
754         Current.Type = determinePlusMinusCaretUsage(Current);
755         if (Current.Type == TT_UnaryOperator && Current.is(tok::caret))
756           Contexts.back().CaretFound = true;
757       } else if (Current.isOneOf(tok::minusminus, tok::plusplus)) {
758         Current.Type = determineIncrementUsage(Current);
759       } else if (Current.is(tok::exclaim)) {
760         Current.Type = TT_UnaryOperator;
761       } else if (Current.is(tok::question)) {
762         Current.Type = TT_ConditionalExpr;
763       } else if (Current.isBinaryOperator() &&
764                  (!Current.Previous ||
765                   Current.Previous->isNot(tok::l_square))) {
766         Current.Type = TT_BinaryOperator;
767       } else if (Current.is(tok::comment)) {
768         if (Current.TokenText.startswith("//"))
769           Current.Type = TT_LineComment;
770         else
771           Current.Type = TT_BlockComment;
772       } else if (Current.is(tok::r_paren)) {
773         if (rParenEndsCast(Current))
774           Current.Type = TT_CastRParen;
775       } else if (Current.is(tok::at) && Current.Next) {
776         switch (Current.Next->Tok.getObjCKeywordID()) {
777         case tok::objc_interface:
778         case tok::objc_implementation:
779         case tok::objc_protocol:
780           Current.Type = TT_ObjCDecl;
781           break;
782         case tok::objc_property:
783           Current.Type = TT_ObjCProperty;
784           break;
785         default:
786           break;
787         }
788       } else if (Current.is(tok::period)) {
789         FormatToken *PreviousNoComment = Current.getPreviousNonComment();
790         if (PreviousNoComment &&
791             PreviousNoComment->isOneOf(tok::comma, tok::l_brace))
792           Current.Type = TT_DesignatedInitializerPeriod;
793       } else if (Current.isOneOf(tok::identifier, tok::kw_const) &&
794                  Current.Previous && Current.Previous->isNot(tok::equal) &&
795                  Line.MightBeFunctionDecl && Contexts.size() == 1) {
796         // Line.MightBeFunctionDecl can only be true after the parentheses of a
797         // function declaration have been found.
798         Current.Type = TT_TrailingAnnotation;
799       }
800     }
801   }
802 
803   /// \brief Take a guess at whether \p Tok starts a name of a function or
804   /// variable declaration.
805   ///
806   /// This is a heuristic based on whether \p Tok is an identifier following
807   /// something that is likely a type.
808   bool isStartOfName(const FormatToken &Tok) {
809     if (Tok.isNot(tok::identifier) || !Tok.Previous)
810       return false;
811 
812     // Skip "const" as it does not have an influence on whether this is a name.
813     FormatToken *PreviousNotConst = Tok.Previous;
814     while (PreviousNotConst && PreviousNotConst->is(tok::kw_const))
815       PreviousNotConst = PreviousNotConst->Previous;
816 
817     if (!PreviousNotConst)
818       return false;
819 
820     bool IsPPKeyword = PreviousNotConst->is(tok::identifier) &&
821                        PreviousNotConst->Previous &&
822                        PreviousNotConst->Previous->is(tok::hash);
823 
824     if (PreviousNotConst->Type == TT_TemplateCloser)
825       return PreviousNotConst && PreviousNotConst->MatchingParen &&
826              PreviousNotConst->MatchingParen->Previous &&
827              PreviousNotConst->MatchingParen->Previous->isNot(tok::kw_template);
828 
829     if (PreviousNotConst->is(tok::r_paren) && PreviousNotConst->MatchingParen &&
830         PreviousNotConst->MatchingParen->Previous &&
831         PreviousNotConst->MatchingParen->Previous->is(tok::kw_decltype))
832       return true;
833 
834     return (!IsPPKeyword && PreviousNotConst->is(tok::identifier)) ||
835            PreviousNotConst->Type == TT_PointerOrReference ||
836            PreviousNotConst->isSimpleTypeSpecifier();
837   }
838 
839   /// \brief Determine whether ')' is ending a cast.
840   bool rParenEndsCast(const FormatToken &Tok) {
841     FormatToken *LeftOfParens = nullptr;
842     if (Tok.MatchingParen)
843       LeftOfParens = Tok.MatchingParen->getPreviousNonComment();
844     bool IsCast = false;
845     bool ParensAreEmpty = Tok.Previous == Tok.MatchingParen;
846     bool ParensAreType = !Tok.Previous ||
847                          Tok.Previous->Type == TT_PointerOrReference ||
848                          Tok.Previous->Type == TT_TemplateCloser ||
849                          Tok.Previous->isSimpleTypeSpecifier();
850     bool ParensCouldEndDecl =
851         Tok.Next && Tok.Next->isOneOf(tok::equal, tok::semi, tok::l_brace);
852     bool IsSizeOfOrAlignOf =
853         LeftOfParens && LeftOfParens->isOneOf(tok::kw_sizeof, tok::kw_alignof);
854     if (ParensAreType && !ParensCouldEndDecl && !IsSizeOfOrAlignOf &&
855         ((Contexts.size() > 1 && Contexts[Contexts.size() - 2].IsExpression) ||
856          (Tok.Next && Tok.Next->isBinaryOperator())))
857       IsCast = true;
858     else if (Tok.Next && Tok.Next->isNot(tok::string_literal) &&
859              (Tok.Next->Tok.isLiteral() ||
860               Tok.Next->isOneOf(tok::kw_sizeof, tok::kw_alignof)))
861       IsCast = true;
862     // If there is an identifier after the (), it is likely a cast, unless
863     // there is also an identifier before the ().
864     else if (LeftOfParens &&
865              (LeftOfParens->Tok.getIdentifierInfo() == nullptr ||
866               LeftOfParens->is(tok::kw_return)) &&
867              LeftOfParens->Type != TT_OverloadedOperator &&
868              LeftOfParens->isNot(tok::at) &&
869              LeftOfParens->Type != TT_TemplateCloser && Tok.Next) {
870       if (Tok.Next->isOneOf(tok::identifier, tok::numeric_constant)) {
871         IsCast = true;
872       } else {
873         // Use heuristics to recognize c style casting.
874         FormatToken *Prev = Tok.Previous;
875         if (Prev && Prev->isOneOf(tok::amp, tok::star))
876           Prev = Prev->Previous;
877 
878         if (Prev && Tok.Next && Tok.Next->Next) {
879           bool NextIsUnary = Tok.Next->isUnaryOperator() ||
880                              Tok.Next->isOneOf(tok::amp, tok::star);
881           IsCast = NextIsUnary && Tok.Next->Next->isOneOf(
882                                       tok::identifier, tok::numeric_constant);
883         }
884 
885         for (; Prev != Tok.MatchingParen; Prev = Prev->Previous) {
886           if (!Prev || !Prev->isOneOf(tok::kw_const, tok::identifier)) {
887             IsCast = false;
888             break;
889           }
890         }
891       }
892     }
893     return IsCast && !ParensAreEmpty;
894   }
895 
896   /// \brief Return the type of the given token assuming it is * or &.
897   TokenType determineStarAmpUsage(const FormatToken &Tok, bool IsExpression,
898                                   bool InTemplateArgument) {
899     const FormatToken *PrevToken = Tok.getPreviousNonComment();
900     if (!PrevToken)
901       return TT_UnaryOperator;
902 
903     const FormatToken *NextToken = Tok.getNextNonComment();
904     if (!NextToken)
905       return TT_Unknown;
906 
907     if (PrevToken->is(tok::coloncolon) ||
908         (PrevToken->is(tok::l_paren) && !IsExpression))
909       return TT_PointerOrReference;
910 
911     if (PrevToken->isOneOf(tok::l_paren, tok::l_square, tok::l_brace,
912                            tok::comma, tok::semi, tok::kw_return, tok::colon,
913                            tok::equal, tok::kw_delete, tok::kw_sizeof) ||
914         PrevToken->Type == TT_BinaryOperator ||
915         PrevToken->Type == TT_ConditionalExpr ||
916         PrevToken->Type == TT_UnaryOperator || PrevToken->Type == TT_CastRParen)
917       return TT_UnaryOperator;
918 
919     if (NextToken->is(tok::l_square) && NextToken->Type != TT_LambdaLSquare)
920       return TT_PointerOrReference;
921 
922     if (PrevToken->is(tok::r_paren) && PrevToken->MatchingParen &&
923         PrevToken->MatchingParen->Previous &&
924         PrevToken->MatchingParen->Previous->isOneOf(tok::kw_typeof,
925                                                     tok::kw_decltype))
926       return TT_PointerOrReference;
927 
928     if (PrevToken->Tok.isLiteral() ||
929         PrevToken->isOneOf(tok::r_paren, tok::r_square, tok::kw_true,
930                            tok::kw_false) ||
931         NextToken->Tok.isLiteral() ||
932         NextToken->isOneOf(tok::kw_true, tok::kw_false) ||
933         NextToken->isUnaryOperator() ||
934         // If we know we're in a template argument, there are no named
935         // declarations. Thus, having an identifier on the right-hand side
936         // indicates a binary operator.
937         (InTemplateArgument && NextToken->Tok.isAnyIdentifier()))
938       return TT_BinaryOperator;
939 
940     // This catches some cases where evaluation order is used as control flow:
941     //   aaa && aaa->f();
942     const FormatToken *NextNextToken = NextToken->getNextNonComment();
943     if (NextNextToken && NextNextToken->is(tok::arrow))
944       return TT_BinaryOperator;
945 
946     // It is very unlikely that we are going to find a pointer or reference type
947     // definition on the RHS of an assignment.
948     if (IsExpression)
949       return TT_BinaryOperator;
950 
951     return TT_PointerOrReference;
952   }
953 
954   TokenType determinePlusMinusCaretUsage(const FormatToken &Tok) {
955     const FormatToken *PrevToken = Tok.getPreviousNonComment();
956     if (!PrevToken || PrevToken->Type == TT_CastRParen)
957       return TT_UnaryOperator;
958 
959     // Use heuristics to recognize unary operators.
960     if (PrevToken->isOneOf(tok::equal, tok::l_paren, tok::comma, tok::l_square,
961                            tok::question, tok::colon, tok::kw_return,
962                            tok::kw_case, tok::at, tok::l_brace))
963       return TT_UnaryOperator;
964 
965     // There can't be two consecutive binary operators.
966     if (PrevToken->Type == TT_BinaryOperator)
967       return TT_UnaryOperator;
968 
969     // Fall back to marking the token as binary operator.
970     return TT_BinaryOperator;
971   }
972 
973   /// \brief Determine whether ++/-- are pre- or post-increments/-decrements.
974   TokenType determineIncrementUsage(const FormatToken &Tok) {
975     const FormatToken *PrevToken = Tok.getPreviousNonComment();
976     if (!PrevToken || PrevToken->Type == TT_CastRParen)
977       return TT_UnaryOperator;
978     if (PrevToken->isOneOf(tok::r_paren, tok::r_square, tok::identifier))
979       return TT_TrailingUnaryOperator;
980 
981     return TT_UnaryOperator;
982   }
983 
984   SmallVector<Context, 8> Contexts;
985 
986   const FormatStyle &Style;
987   AnnotatedLine &Line;
988   FormatToken *CurrentToken;
989   bool KeywordVirtualFound;
990   bool AutoFound;
991   IdentifierInfo &Ident_in;
992 };
993 
994 static int PrecedenceUnaryOperator = prec::PointerToMember + 1;
995 static int PrecedenceArrowAndPeriod = prec::PointerToMember + 2;
996 
997 /// \brief Parses binary expressions by inserting fake parenthesis based on
998 /// operator precedence.
999 class ExpressionParser {
1000 public:
1001   ExpressionParser(AnnotatedLine &Line) : Current(Line.First) {
1002     // Skip leading "}", e.g. in "} else if (...) {".
1003     if (Current->is(tok::r_brace))
1004       next();
1005   }
1006 
1007   /// \brief Parse expressions with the given operatore precedence.
1008   void parse(int Precedence = 0) {
1009     // Skip 'return' and ObjC selector colons as they are not part of a binary
1010     // expression.
1011     while (Current &&
1012            (Current->is(tok::kw_return) ||
1013             (Current->is(tok::colon) && (Current->Type == TT_ObjCMethodExpr ||
1014                                          Current->Type == TT_DictLiteral))))
1015       next();
1016 
1017     if (!Current || Precedence > PrecedenceArrowAndPeriod)
1018       return;
1019 
1020     // Conditional expressions need to be parsed separately for proper nesting.
1021     if (Precedence == prec::Conditional) {
1022       parseConditionalExpr();
1023       return;
1024     }
1025 
1026     // Parse unary operators, which all have a higher precedence than binary
1027     // operators.
1028     if (Precedence == PrecedenceUnaryOperator) {
1029       parseUnaryOperator();
1030       return;
1031     }
1032 
1033     FormatToken *Start = Current;
1034     FormatToken *LatestOperator = nullptr;
1035     unsigned OperatorIndex = 0;
1036 
1037     while (Current) {
1038       // Consume operators with higher precedence.
1039       parse(Precedence + 1);
1040 
1041       int CurrentPrecedence = getCurrentPrecedence();
1042 
1043       if (Current && Current->Type == TT_SelectorName &&
1044           Precedence == CurrentPrecedence) {
1045         if (LatestOperator)
1046           addFakeParenthesis(Start, prec::Level(Precedence));
1047         Start = Current;
1048       }
1049 
1050       // At the end of the line or when an operator with higher precedence is
1051       // found, insert fake parenthesis and return.
1052       if (!Current || Current->closesScope() ||
1053           (CurrentPrecedence != -1 && CurrentPrecedence < Precedence)) {
1054         if (LatestOperator) {
1055           LatestOperator->LastOperator = true;
1056           if (Precedence == PrecedenceArrowAndPeriod) {
1057             // Call expressions don't have a binary operator precedence.
1058             addFakeParenthesis(Start, prec::Unknown);
1059           } else {
1060             addFakeParenthesis(Start, prec::Level(Precedence));
1061           }
1062         }
1063         return;
1064       }
1065 
1066       // Consume scopes: (), [], <> and {}
1067       if (Current->opensScope()) {
1068         while (Current && !Current->closesScope()) {
1069           next();
1070           parse();
1071         }
1072         next();
1073       } else {
1074         // Operator found.
1075         if (CurrentPrecedence == Precedence) {
1076           LatestOperator = Current;
1077           Current->OperatorIndex = OperatorIndex;
1078           ++OperatorIndex;
1079         }
1080 
1081         next();
1082       }
1083     }
1084   }
1085 
1086 private:
1087   /// \brief Gets the precedence (+1) of the given token for binary operators
1088   /// and other tokens that we treat like binary operators.
1089   int getCurrentPrecedence() {
1090     if (Current) {
1091       if (Current->Type == TT_ConditionalExpr)
1092         return prec::Conditional;
1093       else if (Current->is(tok::semi) || Current->Type == TT_InlineASMColon ||
1094                Current->Type == TT_SelectorName)
1095         return 0;
1096       else if (Current->Type == TT_RangeBasedForLoopColon)
1097         return prec::Comma;
1098       else if (Current->Type == TT_BinaryOperator || Current->is(tok::comma))
1099         return Current->getPrecedence();
1100       else if (Current->isOneOf(tok::period, tok::arrow))
1101         return PrecedenceArrowAndPeriod;
1102     }
1103     return -1;
1104   }
1105 
1106   void addFakeParenthesis(FormatToken *Start, prec::Level Precedence) {
1107     Start->FakeLParens.push_back(Precedence);
1108     if (Precedence > prec::Unknown)
1109       Start->StartsBinaryExpression = true;
1110     if (Current) {
1111       ++Current->Previous->FakeRParens;
1112       if (Precedence > prec::Unknown)
1113         Current->Previous->EndsBinaryExpression = true;
1114     }
1115   }
1116 
1117   /// \brief Parse unary operator expressions and surround them with fake
1118   /// parentheses if appropriate.
1119   void parseUnaryOperator() {
1120     if (!Current || Current->Type != TT_UnaryOperator) {
1121       parse(PrecedenceArrowAndPeriod);
1122       return;
1123     }
1124 
1125     FormatToken *Start = Current;
1126     next();
1127     parseUnaryOperator();
1128 
1129     // The actual precedence doesn't matter.
1130     addFakeParenthesis(Start, prec::Unknown);
1131   }
1132 
1133   void parseConditionalExpr() {
1134     FormatToken *Start = Current;
1135     parse(prec::LogicalOr);
1136     if (!Current || !Current->is(tok::question))
1137       return;
1138     next();
1139     parse(prec::LogicalOr);
1140     if (!Current || Current->Type != TT_ConditionalExpr)
1141       return;
1142     next();
1143     parseConditionalExpr();
1144     addFakeParenthesis(Start, prec::Conditional);
1145   }
1146 
1147   void next() {
1148     if (Current)
1149       Current = Current->Next;
1150     while (Current && Current->isTrailingComment())
1151       Current = Current->Next;
1152   }
1153 
1154   FormatToken *Current;
1155 };
1156 
1157 } // end anonymous namespace
1158 
1159 void
1160 TokenAnnotator::setCommentLineLevels(SmallVectorImpl<AnnotatedLine *> &Lines) {
1161   const AnnotatedLine *NextNonCommentLine = nullptr;
1162   for (SmallVectorImpl<AnnotatedLine *>::reverse_iterator I = Lines.rbegin(),
1163                                                           E = Lines.rend();
1164        I != E; ++I) {
1165     if (NextNonCommentLine && (*I)->First->is(tok::comment) &&
1166         (*I)->First->Next == nullptr)
1167       (*I)->Level = NextNonCommentLine->Level;
1168     else
1169       NextNonCommentLine = (*I)->First->isNot(tok::r_brace) ? (*I) : nullptr;
1170 
1171     setCommentLineLevels((*I)->Children);
1172   }
1173 }
1174 
1175 void TokenAnnotator::annotate(AnnotatedLine &Line) {
1176   for (SmallVectorImpl<AnnotatedLine *>::iterator I = Line.Children.begin(),
1177                                                   E = Line.Children.end();
1178        I != E; ++I) {
1179     annotate(**I);
1180   }
1181   AnnotatingParser Parser(Style, Line, Ident_in);
1182   Line.Type = Parser.parseLine();
1183   if (Line.Type == LT_Invalid)
1184     return;
1185 
1186   ExpressionParser ExprParser(Line);
1187   ExprParser.parse();
1188 
1189   if (Line.First->Type == TT_ObjCMethodSpecifier)
1190     Line.Type = LT_ObjCMethodDecl;
1191   else if (Line.First->Type == TT_ObjCDecl)
1192     Line.Type = LT_ObjCDecl;
1193   else if (Line.First->Type == TT_ObjCProperty)
1194     Line.Type = LT_ObjCProperty;
1195 
1196   Line.First->SpacesRequiredBefore = 1;
1197   Line.First->CanBreakBefore = Line.First->MustBreakBefore;
1198 }
1199 
1200 void TokenAnnotator::calculateFormattingInformation(AnnotatedLine &Line) {
1201   for (SmallVectorImpl<AnnotatedLine *>::iterator I = Line.Children.begin(),
1202                                                   E = Line.Children.end();
1203        I != E; ++I) {
1204     calculateFormattingInformation(**I);
1205   }
1206 
1207   Line.First->TotalLength =
1208       Line.First->IsMultiline ? Style.ColumnLimit : Line.First->ColumnWidth;
1209   if (!Line.First->Next)
1210     return;
1211   FormatToken *Current = Line.First->Next;
1212   bool InFunctionDecl = Line.MightBeFunctionDecl;
1213   while (Current) {
1214     if (Current->Type == TT_LineComment) {
1215       if (Current->Previous->BlockKind == BK_BracedInit &&
1216           Current->Previous->opensScope())
1217         Current->SpacesRequiredBefore = Style.Cpp11BracedListStyle ? 0 : 1;
1218       else
1219         Current->SpacesRequiredBefore = Style.SpacesBeforeTrailingComments;
1220 
1221       // If we find a trailing comment, iterate backwards to determine whether
1222       // it seems to relate to a specific parameter. If so, break before that
1223       // parameter to avoid changing the comment's meaning. E.g. don't move 'b'
1224       // to the previous line in:
1225       //   SomeFunction(a,
1226       //                b, // comment
1227       //                c);
1228       if (!Current->HasUnescapedNewline) {
1229         for (FormatToken *Parameter = Current->Previous; Parameter;
1230              Parameter = Parameter->Previous) {
1231           if (Parameter->isOneOf(tok::comment, tok::r_brace))
1232             break;
1233           if (Parameter->Previous && Parameter->Previous->is(tok::comma)) {
1234             if (Parameter->Previous->Type != TT_CtorInitializerComma &&
1235                 Parameter->HasUnescapedNewline)
1236               Parameter->MustBreakBefore = true;
1237             break;
1238           }
1239         }
1240       }
1241     } else if (Current->SpacesRequiredBefore == 0 &&
1242                spaceRequiredBefore(Line, *Current)) {
1243       Current->SpacesRequiredBefore = 1;
1244     }
1245 
1246     Current->MustBreakBefore =
1247         Current->MustBreakBefore || mustBreakBefore(Line, *Current);
1248 
1249     Current->CanBreakBefore =
1250         Current->MustBreakBefore || canBreakBefore(Line, *Current);
1251     unsigned ChildSize = 0;
1252     if (Current->Previous->Children.size() == 1) {
1253       FormatToken &LastOfChild = *Current->Previous->Children[0]->Last;
1254       ChildSize = LastOfChild.isTrailingComment() ? Style.ColumnLimit
1255                                                   : LastOfChild.TotalLength + 1;
1256     }
1257     if (Current->MustBreakBefore || Current->Previous->Children.size() > 1 ||
1258         Current->IsMultiline)
1259       Current->TotalLength = Current->Previous->TotalLength + Style.ColumnLimit;
1260     else
1261       Current->TotalLength = Current->Previous->TotalLength +
1262                              Current->ColumnWidth + ChildSize +
1263                              Current->SpacesRequiredBefore;
1264 
1265     if (Current->Type == TT_CtorInitializerColon)
1266       InFunctionDecl = false;
1267 
1268     // FIXME: Only calculate this if CanBreakBefore is true once static
1269     // initializers etc. are sorted out.
1270     // FIXME: Move magic numbers to a better place.
1271     Current->SplitPenalty = 20 * Current->BindingStrength +
1272                             splitPenalty(Line, *Current, InFunctionDecl);
1273 
1274     Current = Current->Next;
1275   }
1276 
1277   calculateUnbreakableTailLengths(Line);
1278   for (Current = Line.First; Current != nullptr; Current = Current->Next) {
1279     if (Current->Role)
1280       Current->Role->precomputeFormattingInfos(Current);
1281   }
1282 
1283   DEBUG({ printDebugInfo(Line); });
1284 }
1285 
1286 void TokenAnnotator::calculateUnbreakableTailLengths(AnnotatedLine &Line) {
1287   unsigned UnbreakableTailLength = 0;
1288   FormatToken *Current = Line.Last;
1289   while (Current) {
1290     Current->UnbreakableTailLength = UnbreakableTailLength;
1291     if (Current->CanBreakBefore ||
1292         Current->isOneOf(tok::comment, tok::string_literal)) {
1293       UnbreakableTailLength = 0;
1294     } else {
1295       UnbreakableTailLength +=
1296           Current->ColumnWidth + Current->SpacesRequiredBefore;
1297     }
1298     Current = Current->Previous;
1299   }
1300 }
1301 
1302 unsigned TokenAnnotator::splitPenalty(const AnnotatedLine &Line,
1303                                       const FormatToken &Tok,
1304                                       bool InFunctionDecl) {
1305   const FormatToken &Left = *Tok.Previous;
1306   const FormatToken &Right = Tok;
1307 
1308   if (Left.is(tok::semi))
1309     return 0;
1310   if (Left.is(tok::comma) || (Right.is(tok::identifier) && Right.Next &&
1311                               Right.Next->Type == TT_DictLiteral))
1312     return 1;
1313   if (Right.is(tok::l_square)) {
1314     if (Style.Language == FormatStyle::LK_Proto)
1315       return 1;
1316     if (Right.Type != TT_ObjCMethodExpr)
1317       return 500;
1318   }
1319   if (Right.Type == TT_StartOfName || Right.is(tok::kw_operator)) {
1320     if (Line.First->is(tok::kw_for) && Right.PartOfMultiVariableDeclStmt)
1321       return 3;
1322     if (Left.Type == TT_StartOfName)
1323       return 20;
1324     if (InFunctionDecl && Right.NestingLevel == 0)
1325       return Style.PenaltyReturnTypeOnItsOwnLine;
1326     return 200;
1327   }
1328   if (Left.is(tok::equal) && Right.is(tok::l_brace))
1329     return 150;
1330   if (Left.Type == TT_CastRParen)
1331     return 100;
1332   if (Left.is(tok::coloncolon) ||
1333       (Right.is(tok::period) && Style.Language == FormatStyle::LK_Proto))
1334     return 500;
1335   if (Left.isOneOf(tok::kw_class, tok::kw_struct))
1336     return 5000;
1337 
1338   if (Left.Type == TT_RangeBasedForLoopColon ||
1339       Left.Type == TT_InheritanceColon)
1340     return 2;
1341 
1342   if (Right.isMemberAccess()) {
1343     if (Left.is(tok::r_paren) && Left.MatchingParen &&
1344         Left.MatchingParen->ParameterCount > 0)
1345       return 20; // Should be smaller than breaking at a nested comma.
1346     return 150;
1347   }
1348 
1349   if (Right.Type == TT_TrailingAnnotation &&
1350       (!Right.Next || Right.Next->isNot(tok::l_paren))) {
1351     // Generally, breaking before a trailing annotation is bad unless it is
1352     // function-like. It seems to be especially preferable to keep standard
1353     // annotations (i.e. "const", "final" and "override") on the same line.
1354     // Use a slightly higher penalty after ")" so that annotations like
1355     // "const override" are kept together.
1356     bool is_short_annotation = Right.TokenText.size() < 10;
1357     return (Left.is(tok::r_paren) ? 100 : 120) + (is_short_annotation ? 50 : 0);
1358   }
1359 
1360   // In for-loops, prefer breaking at ',' and ';'.
1361   if (Line.First->is(tok::kw_for) && Left.is(tok::equal))
1362     return 4;
1363 
1364   // In Objective-C method expressions, prefer breaking before "param:" over
1365   // breaking after it.
1366   if (Right.Type == TT_SelectorName)
1367     return 0;
1368   if (Left.is(tok::colon) && Left.Type == TT_ObjCMethodExpr)
1369     return Line.MightBeFunctionDecl ? 50 : 500;
1370 
1371   if (Left.is(tok::l_paren) && InFunctionDecl)
1372     return 100;
1373   if (Left.is(tok::equal) && InFunctionDecl)
1374     return 110;
1375   if (Left.opensScope())
1376     return Left.ParameterCount > 1 ? Style.PenaltyBreakBeforeFirstCallParameter
1377                                    : 19;
1378 
1379   if (Right.is(tok::lessless)) {
1380     if (Left.is(tok::string_literal)) {
1381       StringRef Content = Left.TokenText;
1382       if (Content.startswith("\""))
1383         Content = Content.drop_front(1);
1384       if (Content.endswith("\""))
1385         Content = Content.drop_back(1);
1386       Content = Content.trim();
1387       if (Content.size() > 1 &&
1388           (Content.back() == ':' || Content.back() == '='))
1389         return 25;
1390     }
1391     return 1; // Breaking at a << is really cheap.
1392   }
1393   if (Left.Type == TT_ConditionalExpr)
1394     return prec::Conditional;
1395   prec::Level Level = Left.getPrecedence();
1396 
1397   if (Level != prec::Unknown)
1398     return Level;
1399 
1400   return 3;
1401 }
1402 
1403 bool TokenAnnotator::spaceRequiredBetween(const AnnotatedLine &Line,
1404                                           const FormatToken &Left,
1405                                           const FormatToken &Right) {
1406   if (Style.Language == FormatStyle::LK_Proto) {
1407     if (Right.is(tok::l_paren) &&
1408         (Left.TokenText == "returns" || Left.TokenText == "option"))
1409       return true;
1410   } else if (Style.Language == FormatStyle::LK_JavaScript) {
1411     if (Left.TokenText == "var")
1412       return true;
1413   }
1414   if (Left.is(tok::kw_return) && Right.isNot(tok::semi))
1415     return true;
1416   if (Style.ObjCSpaceAfterProperty && Line.Type == LT_ObjCProperty &&
1417       Left.Tok.getObjCKeywordID() == tok::objc_property)
1418     return true;
1419   if (Right.is(tok::hashhash))
1420     return Left.is(tok::hash);
1421   if (Left.isOneOf(tok::hashhash, tok::hash))
1422     return Right.is(tok::hash);
1423   if (Left.is(tok::l_paren) && Right.is(tok::r_paren))
1424     return Style.SpaceInEmptyParentheses;
1425   if (Left.is(tok::l_paren) || Right.is(tok::r_paren))
1426     return (Right.Type == TT_CastRParen ||
1427             (Left.MatchingParen && Left.MatchingParen->Type == TT_CastRParen))
1428                ? Style.SpacesInCStyleCastParentheses
1429                : Style.SpacesInParentheses;
1430   if (Style.SpacesInAngles &&
1431       ((Left.Type == TT_TemplateOpener) != (Right.Type == TT_TemplateCloser)))
1432     return true;
1433   if (Right.isOneOf(tok::semi, tok::comma))
1434     return false;
1435   if (Right.is(tok::less) &&
1436       (Left.is(tok::kw_template) ||
1437        (Line.Type == LT_ObjCDecl && Style.ObjCSpaceBeforeProtocolList)))
1438     return true;
1439   if (Left.is(tok::arrow) || Right.is(tok::arrow))
1440     return false;
1441   if (Left.isOneOf(tok::exclaim, tok::tilde))
1442     return false;
1443   if (Left.is(tok::at) &&
1444       Right.isOneOf(tok::identifier, tok::string_literal, tok::char_constant,
1445                     tok::numeric_constant, tok::l_paren, tok::l_brace,
1446                     tok::kw_true, tok::kw_false))
1447     return false;
1448   if (Left.is(tok::coloncolon))
1449     return false;
1450   if (Right.is(tok::coloncolon) && Left.isNot(tok::l_brace))
1451     return (Left.is(tok::less) && Style.Standard == FormatStyle::LS_Cpp03) ||
1452            !Left.isOneOf(tok::identifier, tok::greater, tok::l_paren,
1453                          tok::r_paren, tok::less);
1454   if (Left.is(tok::less) || Right.isOneOf(tok::greater, tok::less))
1455     return false;
1456   if (Right.is(tok::ellipsis))
1457     return Left.Tok.isLiteral();
1458   if (Left.is(tok::l_square) && Right.is(tok::amp))
1459     return false;
1460   if (Right.Type == TT_PointerOrReference)
1461     return Left.Tok.isLiteral() ||
1462            ((Left.Type != TT_PointerOrReference) && Left.isNot(tok::l_paren) &&
1463             Style.PointerAlignment != FormatStyle::PAS_Left);
1464   if (Right.Type == TT_FunctionTypeLParen && Left.isNot(tok::l_paren) &&
1465       (Left.Type != TT_PointerOrReference || Style.PointerAlignment != FormatStyle::PAS_Right))
1466     return true;
1467   if (Left.Type == TT_PointerOrReference)
1468     return Right.Tok.isLiteral() || Right.Type == TT_BlockComment ||
1469            ((Right.Type != TT_PointerOrReference) &&
1470             Right.isNot(tok::l_paren) && Style.PointerAlignment != FormatStyle::PAS_Right &&
1471             Left.Previous &&
1472             !Left.Previous->isOneOf(tok::l_paren, tok::coloncolon));
1473   if (Right.is(tok::star) && Left.is(tok::l_paren))
1474     return false;
1475   if (Left.is(tok::l_square))
1476     return Left.Type == TT_ArrayInitializerLSquare &&
1477            Style.SpacesInContainerLiterals && Right.isNot(tok::r_square);
1478   if (Right.is(tok::r_square))
1479     return Right.MatchingParen && Style.SpacesInContainerLiterals &&
1480            Right.MatchingParen->Type == TT_ArrayInitializerLSquare;
1481   if (Right.is(tok::l_square) && Right.Type != TT_ObjCMethodExpr &&
1482       Right.Type != TT_LambdaLSquare && Left.isNot(tok::numeric_constant) &&
1483       Left.Type != TT_DictLiteral)
1484     return false;
1485   if (Left.is(tok::colon))
1486     return Left.Type != TT_ObjCMethodExpr;
1487   if (Left.Type == TT_BlockComment)
1488     return !Left.TokenText.endswith("=*/");
1489   if (Right.is(tok::l_paren)) {
1490     if (Left.is(tok::r_paren) && Left.Type == TT_AttributeParen)
1491       return true;
1492     return Line.Type == LT_ObjCDecl ||
1493            Left.isOneOf(tok::kw_new, tok::kw_delete, tok::semi) ||
1494            (Style.SpaceBeforeParens != FormatStyle::SBPO_Never &&
1495             (Left.isOneOf(tok::kw_if, tok::kw_for, tok::kw_while,
1496                           tok::kw_switch, tok::kw_catch, tok::kw_case) ||
1497              Left.IsForEachMacro)) ||
1498            (Style.SpaceBeforeParens == FormatStyle::SBPO_Always &&
1499             Left.isOneOf(tok::identifier, tok::kw___attribute) &&
1500             Line.Type != LT_PreprocessorDirective);
1501   }
1502   if (Left.is(tok::at) && Right.Tok.getObjCKeywordID() != tok::objc_not_keyword)
1503     return false;
1504   if (Left.is(tok::l_brace) && Right.is(tok::r_brace))
1505     return !Left.Children.empty(); // No spaces in "{}".
1506   if ((Left.is(tok::l_brace) && Left.BlockKind != BK_Block) ||
1507       (Right.is(tok::r_brace) && Right.MatchingParen &&
1508        Right.MatchingParen->BlockKind != BK_Block))
1509     return !Style.Cpp11BracedListStyle;
1510   if (Right.Type == TT_UnaryOperator)
1511     return !Left.isOneOf(tok::l_paren, tok::l_square, tok::at) &&
1512            (Left.isNot(tok::colon) || Left.Type != TT_ObjCMethodExpr);
1513   if ((Left.isOneOf(tok::identifier, tok::greater, tok::r_square,
1514                     tok::r_paren) ||
1515        Left.isSimpleTypeSpecifier()) &&
1516       Right.is(tok::l_brace) && Right.getNextNonComment() &&
1517       Right.BlockKind != BK_Block)
1518     return false;
1519   if (Left.is(tok::period) || Right.is(tok::period))
1520     return false;
1521   if (Right.is(tok::hash) && Left.is(tok::identifier) && Left.TokenText == "L")
1522     return false;
1523   return true;
1524 }
1525 
1526 bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line,
1527                                          const FormatToken &Tok) {
1528   if (Tok.Tok.getIdentifierInfo() && Tok.Previous->Tok.getIdentifierInfo())
1529     return true; // Never ever merge two identifiers.
1530   if (Tok.Previous->Type == TT_ImplicitStringLiteral)
1531     return Tok.WhitespaceRange.getBegin() != Tok.WhitespaceRange.getEnd();
1532   if (Line.Type == LT_ObjCMethodDecl) {
1533     if (Tok.Previous->Type == TT_ObjCMethodSpecifier)
1534       return true;
1535     if (Tok.Previous->is(tok::r_paren) && Tok.is(tok::identifier))
1536       // Don't space between ')' and <id>
1537       return false;
1538   }
1539   if (Line.Type == LT_ObjCProperty &&
1540       (Tok.is(tok::equal) || Tok.Previous->is(tok::equal)))
1541     return false;
1542 
1543   if (Tok.Type == TT_TrailingReturnArrow ||
1544       Tok.Previous->Type == TT_TrailingReturnArrow)
1545     return true;
1546   if (Tok.Previous->is(tok::comma))
1547     return true;
1548   if (Tok.is(tok::comma))
1549     return false;
1550   if (Tok.Type == TT_CtorInitializerColon || Tok.Type == TT_ObjCBlockLParen)
1551     return true;
1552   if (Tok.Previous->Tok.is(tok::kw_operator))
1553     return Tok.is(tok::coloncolon);
1554   if (Tok.Type == TT_OverloadedOperatorLParen)
1555     return false;
1556   if (Tok.is(tok::colon))
1557     return !Line.First->isOneOf(tok::kw_case, tok::kw_default) &&
1558            Tok.getNextNonComment() && Tok.Type != TT_ObjCMethodExpr &&
1559            !Tok.Previous->is(tok::question) &&
1560            (Tok.Type != TT_DictLiteral || Style.SpacesInContainerLiterals);
1561   if (Tok.Previous->Type == TT_UnaryOperator ||
1562       Tok.Previous->Type == TT_CastRParen)
1563     return Tok.Type == TT_BinaryOperator;
1564   if (Tok.Previous->is(tok::greater) && Tok.is(tok::greater)) {
1565     return Tok.Type == TT_TemplateCloser &&
1566            Tok.Previous->Type == TT_TemplateCloser &&
1567            (Style.Standard != FormatStyle::LS_Cpp11 || Style.SpacesInAngles);
1568   }
1569   if (Tok.isOneOf(tok::arrowstar, tok::periodstar) ||
1570       Tok.Previous->isOneOf(tok::arrowstar, tok::periodstar))
1571     return false;
1572   if (!Style.SpaceBeforeAssignmentOperators &&
1573       Tok.getPrecedence() == prec::Assignment)
1574     return false;
1575   if ((Tok.Type == TT_BinaryOperator && !Tok.Previous->is(tok::l_paren)) ||
1576       Tok.Previous->Type == TT_BinaryOperator ||
1577       Tok.Previous->Type == TT_ConditionalExpr)
1578     return true;
1579   if (Tok.Previous->Type == TT_TemplateCloser && Tok.is(tok::l_paren))
1580     return false;
1581   if (Tok.is(tok::less) && Tok.Previous->isNot(tok::l_paren) &&
1582       Line.First->is(tok::hash))
1583     return true;
1584   if (Tok.Type == TT_TrailingUnaryOperator)
1585     return false;
1586   if (Tok.Previous->Type == TT_RegexLiteral)
1587     return false;
1588   return spaceRequiredBetween(Line, *Tok.Previous, Tok);
1589 }
1590 
1591 // Returns 'true' if 'Tok' is a brace we'd want to break before in Allman style.
1592 static bool isAllmanBrace(const FormatToken &Tok) {
1593   return Tok.is(tok::l_brace) && Tok.BlockKind == BK_Block &&
1594          Tok.Type != TT_ObjCBlockLBrace && Tok.Type != TT_DictLiteral;
1595 }
1596 
1597 bool TokenAnnotator::mustBreakBefore(const AnnotatedLine &Line,
1598                                      const FormatToken &Right) {
1599   const FormatToken &Left = *Right.Previous;
1600   if (Right.NewlinesBefore > 1)
1601     return true;
1602   if (Right.is(tok::comment)) {
1603     return Right.Previous->BlockKind != BK_BracedInit &&
1604            Right.Previous->Type != TT_CtorInitializerColon &&
1605            (Right.NewlinesBefore > 0 && Right.HasUnescapedNewline);
1606   } else if (Right.Previous->isTrailingComment() ||
1607              (Right.isStringLiteral() && Right.Previous->isStringLiteral())) {
1608     return true;
1609   } else if (Right.Previous->IsUnterminatedLiteral) {
1610     return true;
1611   } else if (Right.is(tok::lessless) && Right.Next &&
1612              Right.Previous->is(tok::string_literal) &&
1613              Right.Next->is(tok::string_literal)) {
1614     return true;
1615   } else if (Right.Previous->ClosesTemplateDeclaration &&
1616              Right.Previous->MatchingParen &&
1617              Right.Previous->MatchingParen->NestingLevel == 0 &&
1618              Style.AlwaysBreakTemplateDeclarations) {
1619     return true;
1620   } else if ((Right.Type == TT_CtorInitializerComma ||
1621               Right.Type == TT_CtorInitializerColon) &&
1622              Style.BreakConstructorInitializersBeforeComma &&
1623              !Style.ConstructorInitializerAllOnOneLineOrOnePerLine) {
1624     return true;
1625   } else if (Right.is(tok::string_literal) &&
1626              Right.TokenText.startswith("R\"")) {
1627     // Raw string literals are special wrt. line breaks. The author has made a
1628     // deliberate choice and might have aligned the contents of the string
1629     // literal accordingly. Thus, we try keep existing line breaks.
1630     return Right.NewlinesBefore > 0;
1631   } else if (Right.Previous->is(tok::l_brace) && Right.NestingLevel == 1 &&
1632              Style.Language == FormatStyle::LK_Proto) {
1633     // Don't enums onto single lines in protocol buffers.
1634     return true;
1635   } else if (isAllmanBrace(Left) || isAllmanBrace(Right)) {
1636     return Style.BreakBeforeBraces == FormatStyle::BS_Allman ||
1637            Style.BreakBeforeBraces == FormatStyle::BS_GNU;
1638   }
1639 
1640   // If the last token before a '}' is a comma or a comment, the intention is to
1641   // insert a line break after it in order to make shuffling around entries
1642   // easier.
1643   const FormatToken *BeforeClosingBrace = nullptr;
1644   if (Left.is(tok::l_brace) && Left.MatchingParen)
1645     BeforeClosingBrace = Left.MatchingParen->Previous;
1646   else if (Right.is(tok::r_brace))
1647     BeforeClosingBrace = Right.Previous;
1648   if (BeforeClosingBrace &&
1649       BeforeClosingBrace->isOneOf(tok::comma, tok::comment))
1650     return true;
1651 
1652   if (Style.Language == FormatStyle::LK_JavaScript) {
1653     // FIXME: This might apply to other languages and token kinds.
1654     if (Right.is(tok::char_constant) && Left.is(tok::plus) && Left.Previous &&
1655         Left.Previous->is(tok::char_constant))
1656       return true;
1657   }
1658 
1659   return false;
1660 }
1661 
1662 bool TokenAnnotator::canBreakBefore(const AnnotatedLine &Line,
1663                                     const FormatToken &Right) {
1664   const FormatToken &Left = *Right.Previous;
1665   if (Left.is(tok::at))
1666     return false;
1667   if (Left.Tok.getObjCKeywordID() == tok::objc_interface)
1668     return false;
1669   if (Right.Type == TT_StartOfName || Right.is(tok::kw_operator))
1670     return true;
1671   if (Right.isTrailingComment())
1672     // We rely on MustBreakBefore being set correctly here as we should not
1673     // change the "binding" behavior of a comment.
1674     // The first comment in a braced lists is always interpreted as belonging to
1675     // the first list element. Otherwise, it should be placed outside of the
1676     // list.
1677     return Left.BlockKind == BK_BracedInit;
1678   if (Left.is(tok::question) && Right.is(tok::colon))
1679     return false;
1680   if (Right.Type == TT_ConditionalExpr || Right.is(tok::question))
1681     return Style.BreakBeforeTernaryOperators;
1682   if (Left.Type == TT_ConditionalExpr || Left.is(tok::question))
1683     return !Style.BreakBeforeTernaryOperators;
1684   if (Right.Type == TT_InheritanceColon)
1685     return true;
1686   if (Right.is(tok::colon) && (Right.Type != TT_CtorInitializerColon &&
1687                                Right.Type != TT_InlineASMColon))
1688     return false;
1689   if (Left.is(tok::colon) &&
1690       (Left.Type == TT_DictLiteral || Left.Type == TT_ObjCMethodExpr))
1691     return true;
1692   if (Right.Type == TT_SelectorName)
1693     return true;
1694   if (Left.is(tok::r_paren) && Line.Type == LT_ObjCProperty)
1695     return true;
1696   if (Left.ClosesTemplateDeclaration)
1697     return true;
1698   if (Right.Type == TT_RangeBasedForLoopColon ||
1699       Right.Type == TT_OverloadedOperatorLParen ||
1700       Right.Type == TT_OverloadedOperator)
1701     return false;
1702   if (Left.Type == TT_RangeBasedForLoopColon)
1703     return true;
1704   if (Right.Type == TT_RangeBasedForLoopColon)
1705     return false;
1706   if (Left.Type == TT_PointerOrReference || Left.Type == TT_TemplateCloser ||
1707       Left.Type == TT_UnaryOperator || Left.is(tok::kw_operator))
1708     return false;
1709   if (Left.is(tok::equal) && Line.Type == LT_VirtualFunctionDecl)
1710     return false;
1711   if (Left.is(tok::l_paren) && Left.Type == TT_AttributeParen)
1712     return false;
1713   if (Left.is(tok::l_paren) && Left.Previous &&
1714       (Left.Previous->Type == TT_BinaryOperator ||
1715        Left.Previous->Type == TT_CastRParen || Left.Previous->is(tok::kw_if)))
1716     return false;
1717   if (Right.Type == TT_ImplicitStringLiteral)
1718     return false;
1719 
1720   if (Right.is(tok::r_paren) || Right.Type == TT_TemplateCloser)
1721     return false;
1722 
1723   // We only break before r_brace if there was a corresponding break before
1724   // the l_brace, which is tracked by BreakBeforeClosingBrace.
1725   if (Right.is(tok::r_brace))
1726     return Right.MatchingParen && Right.MatchingParen->BlockKind == BK_Block;
1727 
1728   // Allow breaking after a trailing annotation, e.g. after a method
1729   // declaration.
1730   if (Left.Type == TT_TrailingAnnotation)
1731     return !Right.isOneOf(tok::l_brace, tok::semi, tok::equal, tok::l_paren,
1732                           tok::less, tok::coloncolon);
1733 
1734   if (Right.is(tok::kw___attribute))
1735     return true;
1736 
1737   if (Left.is(tok::identifier) && Right.is(tok::string_literal))
1738     return true;
1739 
1740   if (Right.is(tok::identifier) && Right.Next &&
1741       Right.Next->Type == TT_DictLiteral)
1742     return true;
1743 
1744   if (Left.Type == TT_CtorInitializerComma &&
1745       Style.BreakConstructorInitializersBeforeComma)
1746     return false;
1747   if (Right.Type == TT_CtorInitializerComma &&
1748       Style.BreakConstructorInitializersBeforeComma)
1749     return true;
1750   if (Left.is(tok::greater) && Right.is(tok::greater) &&
1751       Left.Type != TT_TemplateCloser)
1752     return false;
1753   if (Right.Type == TT_BinaryOperator && Style.BreakBeforeBinaryOperators)
1754     return true;
1755   if (Left.Type == TT_ArrayInitializerLSquare)
1756     return true;
1757   return (Left.isBinaryOperator() && Left.isNot(tok::lessless) &&
1758           !Style.BreakBeforeBinaryOperators) ||
1759          Left.isOneOf(tok::comma, tok::coloncolon, tok::semi, tok::l_brace,
1760                       tok::kw_class, tok::kw_struct) ||
1761          Right.isOneOf(tok::lessless, tok::arrow, tok::period, tok::colon,
1762                        tok::l_square, tok::at) ||
1763          (Left.is(tok::r_paren) &&
1764           Right.isOneOf(tok::identifier, tok::kw_const)) ||
1765          (Left.is(tok::l_paren) && !Right.is(tok::r_paren));
1766 }
1767 
1768 void TokenAnnotator::printDebugInfo(const AnnotatedLine &Line) {
1769   llvm::errs() << "AnnotatedTokens:\n";
1770   const FormatToken *Tok = Line.First;
1771   while (Tok) {
1772     llvm::errs() << " M=" << Tok->MustBreakBefore
1773                  << " C=" << Tok->CanBreakBefore << " T=" << Tok->Type
1774                  << " S=" << Tok->SpacesRequiredBefore
1775                  << " B=" << Tok->BlockParameterCount
1776                  << " P=" << Tok->SplitPenalty << " Name=" << Tok->Tok.getName()
1777                  << " L=" << Tok->TotalLength << " PPK=" << Tok->PackingKind
1778                  << " FakeLParens=";
1779     for (unsigned i = 0, e = Tok->FakeLParens.size(); i != e; ++i)
1780       llvm::errs() << Tok->FakeLParens[i] << "/";
1781     llvm::errs() << " FakeRParens=" << Tok->FakeRParens << "\n";
1782     if (!Tok->Next)
1783       assert(Tok == Line.Last);
1784     Tok = Tok->Next;
1785   }
1786   llvm::errs() << "----\n";
1787 }
1788 
1789 } // namespace format
1790 } // namespace clang
1791