blob: cbb9d7f96435fa01693fb4376fbcec705533adde [file] [log] [blame]
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001//===--- 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"
Daniel Jasper6bee6822013-04-08 20:33:42 +000018#include "llvm/Support/Debug.h"
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000019
Chandler Carruth57f5fbe2014-04-21 22:55:36 +000020#define DEBUG_TYPE "format-token-annotator"
21
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000022namespace clang {
23namespace format {
24
Craig Topper318ed7c2013-07-01 04:03:19 +000025namespace {
26
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000027/// \brief A parser that gathers additional information about tokens.
28///
Alexander Kornienkoa5151272013-03-12 16:28:18 +000029/// The \c TokenAnnotator tries to match parenthesis and square brakets and
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000030/// store a parenthesis levels. It also tries to resolve matching "<" and ">"
31/// into template parameter lists.
32class AnnotatingParser {
33public:
Daniel Jasper8de9ed02013-08-22 15:00:41 +000034 AnnotatingParser(const FormatStyle &Style, AnnotatedLine &Line,
35 IdentifierInfo &Ident_in)
36 : Style(Style), Line(Line), CurrentToken(Line.First),
Daniel Jasperbc5cb4e2013-11-07 17:43:07 +000037 KeywordVirtualFound(false), AutoFound(false), Ident_in(Ident_in) {
Nico Weber9096fc02013-06-26 00:30:14 +000038 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false));
Manuel Klimek819788d2014-03-18 11:22:45 +000039 resetTokenMetadata(CurrentToken);
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000040 }
41
Nico Weber44449172013-02-12 16:17:07 +000042private:
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000043 bool parseAngle() {
Craig Topper2145bc02014-05-09 08:15:10 +000044 if (!CurrentToken)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000045 return false;
Daniel Jasper40aacf42013-03-14 13:45:21 +000046 ScopedContextCreator ContextCreator(*this, tok::less, 10);
Manuel Klimek6e6310e2013-05-29 14:47:47 +000047 FormatToken *Left = CurrentToken->Previous;
Daniel Jasperc697ad22013-02-06 10:05:46 +000048 Contexts.back().IsExpression = false;
Manuel Klimekf81e5c02014-03-27 11:17:36 +000049 // If there's a template keyword before the opening angle bracket, this is a
50 // template parameter, not an argument.
51 Contexts.back().InTemplateArgument =
Craig Topper2145bc02014-05-09 08:15:10 +000052 Left->Previous && Left->Previous->Tok.isNot(tok::kw_template);
Manuel Klimekf81e5c02014-03-27 11:17:36 +000053
Craig Topper2145bc02014-05-09 08:15:10 +000054 while (CurrentToken) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000055 if (CurrentToken->is(tok::greater)) {
56 Left->MatchingParen = CurrentToken;
57 CurrentToken->MatchingParen = Left;
58 CurrentToken->Type = TT_TemplateCloser;
59 next();
60 return true;
61 }
Alexander Kornienko62b85b92013-03-13 14:41:29 +000062 if (CurrentToken->isOneOf(tok::r_paren, tok::r_square, tok::r_brace,
Daniel Jasper6f05e592013-05-15 13:46:48 +000063 tok::question, tok::colon))
64 return false;
Daniel Jasperd5893912013-06-01 18:56:00 +000065 // If a && or || is found and interpreted as a binary operator, this set
Daniel Jasper1027c6e2013-06-03 16:16:41 +000066 // of angles is likely part of something like "a < b && c > d". If the
Daniel Jasperd5893912013-06-01 18:56:00 +000067 // 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.
Manuel Klimek6e6310e2013-05-29 14:47:47 +000071 if (CurrentToken->Previous->isOneOf(tok::pipepipe, tok::ampamp) &&
Manuel Klimek1f9d80a2014-03-27 19:00:52 +000072 ((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) ||
Daniel Jasperd5893912013-06-01 18:56:00 +000077 Contexts[Contexts.size() - 2].IsExpression) &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +000078 Line.First->isNot(tok::kw_template))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000079 return false;
Daniel Jaspere11095a2013-02-14 15:01:34 +000080 updateParameterCount(Left, CurrentToken);
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000081 if (!consumeToken())
82 return false;
83 }
84 return false;
85 }
86
87 bool parseParens(bool LookForDecls = false) {
Craig Topper2145bc02014-05-09 08:15:10 +000088 if (!CurrentToken)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000089 return false;
Daniel Jasper40aacf42013-03-14 13:45:21 +000090 ScopedContextCreator ContextCreator(*this, tok::l_paren, 1);
Daniel Jasperc697ad22013-02-06 10:05:46 +000091
92 // FIXME: This is a bit of a hack. Do better.
93 Contexts.back().ColonIsForRangeExpr =
94 Contexts.size() == 2 && Contexts[0].ColonIsForRangeExpr;
95
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000096 bool StartsObjCMethodExpr = false;
Manuel Klimek6e6310e2013-05-29 14:47:47 +000097 FormatToken *Left = CurrentToken->Previous;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000098 if (CurrentToken->is(tok::caret)) {
Daniel Jasperb88b25f2013-12-23 07:29:06 +000099 // (^ can start a block type.
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000100 Left->Type = TT_ObjCBlockLParen;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000101 } else if (FormatToken *MaybeSel = Left->Previous) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000102 // @selector( starts a selector.
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000103 if (MaybeSel->isObjCAtKeyword(tok::objc_selector) && MaybeSel->Previous &&
104 MaybeSel->Previous->is(tok::at)) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000105 StartsObjCMethodExpr = true;
106 }
107 }
108
Daniel Jaspera65e8872014-03-25 10:52:45 +0000109 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)) {
Daniel Jasperd46e07e2013-10-20 18:15:30 +0000113 // static_assert, if and while usually contain expressions.
Daniel Jasper8b1c6352013-08-01 17:58:23 +0000114 Contexts.back().IsExpression = true;
Daniel Jasper72ab43b2014-04-14 12:50:02 +0000115 } else if (Line.InPPDirective &&
Daniel Jasper866468a2014-04-14 13:15:29 +0000116 (!Left->Previous ||
117 (Left->Previous->isNot(tok::identifier) &&
118 Left->Previous->Type != TT_OverloadedOperator))) {
Daniel Jasper72ab43b2014-04-14 12:50:02 +0000119 Contexts.back().IsExpression = true;
Daniel Jasperd46e07e2013-10-20 18:15:30 +0000120 } 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;
Daniel Jasperc13ee342014-03-27 09:43:54 +0000125 } else if (Contexts[Contexts.size() - 2].CaretFound) {
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000126 // This is the parameter list of an ObjC block.
127 Contexts.back().IsExpression = false;
Daniel Jasper559b63c2014-01-28 20:13:43 +0000128 } else if (Left->Previous && Left->Previous->is(tok::kw___attribute)) {
129 Left->Type = TT_AttributeParen;
Daniel Jaspere1e43192014-04-01 12:55:11 +0000130 } 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;
Daniel Jasperd46e07e2013-10-20 18:15:30 +0000134 }
Daniel Jasper8b1c6352013-08-01 17:58:23 +0000135
Daniel Jasperc697ad22013-02-06 10:05:46 +0000136 if (StartsObjCMethodExpr) {
137 Contexts.back().ColonIsObjCMethodExpr = true;
138 Left->Type = TT_ObjCMethodExpr;
139 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000140
Daniel Jasper37194282013-05-28 08:33:00 +0000141 bool MightBeFunctionType = CurrentToken->is(tok::star);
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000142 bool HasMultipleLines = false;
143 bool HasMultipleParametersOnALine = false;
Craig Topper2145bc02014-05-09 08:15:10 +0000144 while (CurrentToken) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000145 // 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.
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000149 if (LookForDecls && CurrentToken->Next) {
Alexander Kornienko1efe0a02013-07-04 14:47:51 +0000150 FormatToken *Prev = CurrentToken->getPreviousNonComment();
Alexander Kornienkodd7ece52013-06-07 16:02:52 +0000151 if (Prev) {
Alexander Kornienko1efe0a02013-07-04 14:47:51 +0000152 FormatToken *PrevPrev = Prev->getPreviousNonComment();
Alexander Kornienkodd7ece52013-06-07 16:02:52 +0000153 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 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000160 }
161 }
162
Daniel Jasper59036852013-08-12 12:16:34 +0000163 if (CurrentToken->Previous->Type == TT_PointerOrReference &&
164 CurrentToken->Previous->Previous->isOneOf(tok::l_paren,
165 tok::coloncolon))
166 MightBeFunctionType = true;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000167 if (CurrentToken->is(tok::r_paren)) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000168 if (MightBeFunctionType && CurrentToken->Next &&
Daniel Jasper655d96a2013-07-16 11:37:21 +0000169 (CurrentToken->Next->is(tok::l_paren) ||
170 (CurrentToken->Next->is(tok::l_square) &&
171 !Contexts.back().IsExpression)))
Daniel Jasper37194282013-05-28 08:33:00 +0000172 Left->Type = TT_FunctionTypeLParen;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000173 Left->MatchingParen = CurrentToken;
174 CurrentToken->MatchingParen = Left;
175
Daniel Jasper1ac3e052013-02-05 10:07:47 +0000176 if (StartsObjCMethodExpr) {
Daniel Jasperc697ad22013-02-06 10:05:46 +0000177 CurrentToken->Type = TT_ObjCMethodExpr;
Craig Topper2145bc02014-05-09 08:15:10 +0000178 if (Contexts.back().FirstObjCSelectorName) {
Daniel Jasperc697ad22013-02-06 10:05:46 +0000179 Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName =
180 Contexts.back().LongestObjCSelectorName;
Daniel Jasper1ac3e052013-02-05 10:07:47 +0000181 }
182 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000183
Daniel Jasper559b63c2014-01-28 20:13:43 +0000184 if (Left->Type == TT_AttributeParen)
185 CurrentToken->Type = TT_AttributeParen;
186
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000187 if (!HasMultipleLines)
188 Left->PackingKind = PPK_Inconclusive;
189 else if (HasMultipleParametersOnALine)
190 Left->PackingKind = PPK_BinPacked;
191 else
192 Left->PackingKind = PPK_OnePerLine;
193
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000194 next();
195 return true;
196 }
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000197 if (CurrentToken->isOneOf(tok::r_square, tok::r_brace))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000198 return false;
Daniel Jasper31745732014-01-19 07:46:32 +0000199 else if (CurrentToken->is(tok::l_brace))
200 Left->Type = TT_Unknown; // Not TT_ObjCBlockLParen
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000201 if (CurrentToken->is(tok::comma) && CurrentToken->Next &&
202 !CurrentToken->Next->HasUnescapedNewline &&
203 !CurrentToken->Next->isTrailingComment())
204 HasMultipleParametersOnALine = true;
Daniel Jaspercc7bf7f2014-04-03 09:00:49 +0000205 if (CurrentToken->isOneOf(tok::kw_const, tok::kw_auto) ||
Daniel Jasperc580af92014-03-11 09:29:46 +0000206 CurrentToken->isSimpleTypeSpecifier())
207 Contexts.back().IsExpression = false;
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000208 FormatToken *Tok = CurrentToken;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000209 if (!consumeToken())
210 return false;
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000211 updateParameterCount(Left, Tok);
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000212 if (CurrentToken && CurrentToken->HasUnescapedNewline)
213 HasMultipleLines = true;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000214 }
215 return false;
216 }
217
218 bool parseSquare() {
219 if (!CurrentToken)
220 return false;
221
Alexander Kornienkoafaa8f52013-06-17 13:19:53 +0000222 // A '[' could be an index subscript (after an identifier or after
Nico Weber2a726b62013-02-10 02:08:05 +0000223 // ')' 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.
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000225 FormatToken *Left = CurrentToken->Previous;
Alexander Kornienko1efe0a02013-07-04 14:47:51 +0000226 FormatToken *Parent = Left->getPreviousNonComment();
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000227 bool StartsObjCMethodExpr =
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +0000228 Contexts.back().CanBeExpression && Left->Type != TT_LambdaLSquare &&
Daniel Jasper89519082014-05-09 10:26:08 +0000229 CurrentToken->isNot(tok::l_brace) &&
Daniel Jasperb05a81d2014-05-09 13:11:16 +0000230 (!Parent || Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren,
231 tok::kw_return, tok::kw_throw) ||
Daniel Jasperc04baae2013-04-10 09:49:49 +0000232 Parent->isUnaryOperator() || Parent->Type == TT_ObjCForIn ||
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000233 Parent->Type == TT_CastRParen ||
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000234 getBinOpPrecedence(Parent->Tok.getKind(), true, true) > prec::Unknown);
Daniel Jasper40aacf42013-03-14 13:45:21 +0000235 ScopedContextCreator ContextCreator(*this, tok::l_square, 10);
Daniel Jasper97b89482013-03-13 07:49:51 +0000236 Contexts.back().IsExpression = true;
Daniel Jaspera1ea4cb2013-10-26 17:00:22 +0000237 bool ColonFound = false;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000238
Daniel Jasperc697ad22013-02-06 10:05:46 +0000239 if (StartsObjCMethodExpr) {
240 Contexts.back().ColonIsObjCMethodExpr = true;
241 Left->Type = TT_ObjCMethodExpr;
Daniel Jasper1db6c382013-10-22 15:30:28 +0000242 } else if (Parent && Parent->is(tok::at)) {
243 Left->Type = TT_ArrayInitializerLSquare;
244 } else if (Left->Type == TT_Unknown) {
245 Left->Type = TT_ArraySubscriptLSquare;
Daniel Jasperc697ad22013-02-06 10:05:46 +0000246 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000247
Craig Topper2145bc02014-05-09 08:15:10 +0000248 while (CurrentToken) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000249 if (CurrentToken->is(tok::r_square)) {
Daniel Jasper9a8d48b2013-09-05 10:04:31 +0000250 if (CurrentToken->Next && CurrentToken->Next->is(tok::l_paren) &&
251 Left->Type == TT_ObjCMethodExpr) {
Nico Weber5d2624e2013-02-06 06:20:11 +0000252 // An ObjC method call is rarely followed by an open parenthesis.
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000253 // FIXME: Do we incorrectly label ":" with this?
254 StartsObjCMethodExpr = false;
255 Left->Type = TT_Unknown;
256 }
Daniel Jasper139d4a32014-04-08 13:07:41 +0000257 if (StartsObjCMethodExpr && CurrentToken->Previous != Left) {
Daniel Jasperc697ad22013-02-06 10:05:46 +0000258 CurrentToken->Type = TT_ObjCMethodExpr;
Nico Weber5d2624e2013-02-06 06:20:11 +0000259 // determineStarAmpUsage() thinks that '*' '[' is allocating an
260 // array of pointers, but if '[' starts a selector then '*' is a
261 // binary operator.
Craig Topper2145bc02014-05-09 08:15:10 +0000262 if (Parent && Parent->Type == TT_PointerOrReference)
Nico Weberac9bde22013-02-06 16:54:35 +0000263 Parent->Type = TT_BinaryOperator;
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000264 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000265 Left->MatchingParen = CurrentToken;
266 CurrentToken->MatchingParen = Left;
Craig Topper2145bc02014-05-09 08:15:10 +0000267 if (Contexts.back().FirstObjCSelectorName) {
Daniel Jasperc697ad22013-02-06 10:05:46 +0000268 Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName =
269 Contexts.back().LongestObjCSelectorName;
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000270 if (Left->BlockParameterCount > 1)
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000271 Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName = 0;
272 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000273 next();
274 return true;
275 }
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000276 if (CurrentToken->isOneOf(tok::r_paren, tok::r_brace))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000277 return false;
Daniel Jaspera1ea4cb2013-10-26 17:00:22 +0000278 if (CurrentToken->is(tok::colon))
279 ColonFound = true;
Daniel Jasper1db6c382013-10-22 15:30:28 +0000280 if (CurrentToken->is(tok::comma) &&
Daniel Jaspera0e9be22014-01-28 18:51:11 +0000281 Style.Language != FormatStyle::LK_Proto &&
Daniel Jasperb596fb22013-10-24 10:31:50 +0000282 (Left->Type == TT_ArraySubscriptLSquare ||
Daniel Jaspera1ea4cb2013-10-26 17:00:22 +0000283 (Left->Type == TT_ObjCMethodExpr && !ColonFound)))
Daniel Jasper1db6c382013-10-22 15:30:28 +0000284 Left->Type = TT_ArrayInitializerLSquare;
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000285 FormatToken* Tok = CurrentToken;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000286 if (!consumeToken())
287 return false;
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000288 updateParameterCount(Left, Tok);
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000289 }
290 return false;
291 }
292
293 bool parseBrace() {
Craig Topper2145bc02014-05-09 08:15:10 +0000294 if (CurrentToken) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000295 FormatToken *Left = CurrentToken->Previous;
Daniel Jasperc13ee342014-03-27 09:43:54 +0000296
297 if (Contexts.back().CaretFound)
298 Left->Type = TT_ObjCBlockLBrace;
299 Contexts.back().CaretFound = false;
300
Daniel Jasperb596fb22013-10-24 10:31:50 +0000301 ScopedContextCreator ContextCreator(*this, tok::l_brace, 1);
302 Contexts.back().ColonIsDictLiteral = true;
Daniel Jasper39485162014-05-22 09:00:33 +0000303 if (Left->BlockKind == BK_BracedInit)
304 Contexts.back().IsExpression = true;
Nico Weberced7d412013-05-26 05:39:26 +0000305
Craig Topper2145bc02014-05-09 08:15:10 +0000306 while (CurrentToken) {
Daniel Jasper8e357692013-05-06 08:27:33 +0000307 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);
Daniel Jasperf24301d2014-01-29 18:52:43 +0000316 if (CurrentToken->is(tok::colon) &&
317 Style.Language != FormatStyle::LK_Proto)
Daniel Jasperb596fb22013-10-24 10:31:50 +0000318 Left->Type = TT_DictLiteral;
Daniel Jasper8e357692013-05-06 08:27:33 +0000319 if (!consumeToken())
320 return false;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000321 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000322 }
Daniel Jasper8e357692013-05-06 08:27:33 +0000323 // No closing "}" found, this probably starts a definition.
324 Line.StartsDefinition = true;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000325 return true;
326 }
Daniel Jasperdc7d5812013-02-20 12:56:39 +0000327
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000328 void updateParameterCount(FormatToken *Left, FormatToken *Current) {
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000329 if (Current->Type == TT_LambdaLSquare ||
330 (Current->is(tok::caret) && Current->Type == TT_UnaryOperator) ||
331 (Style.Language == FormatStyle::LK_JavaScript &&
332 Current->TokenText == "function")) {
333 ++Left->BlockParameterCount;
334 }
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000335 if (Current->is(tok::comma)) {
Daniel Jaspere11095a2013-02-14 15:01:34 +0000336 ++Left->ParameterCount;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000337 if (!Left->Role)
338 Left->Role.reset(new CommaSeparatedList(Style));
339 Left->Role->CommaFound(Current);
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000340 } else if (Left->ParameterCount == 0 && Current->isNot(tok::comment)) {
Daniel Jaspere11095a2013-02-14 15:01:34 +0000341 Left->ParameterCount = 1;
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000342 }
Daniel Jaspere11095a2013-02-14 15:01:34 +0000343 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000344
345 bool parseConditional() {
Craig Topper2145bc02014-05-09 08:15:10 +0000346 while (CurrentToken) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000347 if (CurrentToken->is(tok::colon)) {
348 CurrentToken->Type = TT_ConditionalExpr;
349 next();
350 return true;
351 }
352 if (!consumeToken())
353 return false;
354 }
355 return false;
356 }
357
358 bool parseTemplateDeclaration() {
Craig Topper2145bc02014-05-09 08:15:10 +0000359 if (CurrentToken && CurrentToken->is(tok::less)) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000360 CurrentToken->Type = TT_TemplateOpener;
361 next();
362 if (!parseAngle())
363 return false;
Craig Topper2145bc02014-05-09 08:15:10 +0000364 if (CurrentToken)
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000365 CurrentToken->Previous->ClosesTemplateDeclaration = true;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000366 return true;
367 }
368 return false;
369 }
370
371 bool consumeToken() {
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000372 FormatToken *Tok = CurrentToken;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000373 next();
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000374 switch (Tok->Tok.getKind()) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000375 case tok::plus:
376 case tok::minus:
Craig Topper2145bc02014-05-09 08:15:10 +0000377 if (!Tok->Previous && Line.MustBeDeclaration)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000378 Tok->Type = TT_ObjCMethodSpecifier;
379 break;
380 case tok::colon:
Craig Topper2145bc02014-05-09 08:15:10 +0000381 if (!Tok->Previous)
Daniel Jasper850677d2013-03-18 12:50:26 +0000382 return false;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000383 // Colons from ?: are handled in parseConditional().
Daniel Jasper031e2402014-04-28 07:48:36 +0000384 if (Tok->Previous->is(tok::r_paren) && Contexts.size() == 1 &&
385 Line.First->isNot(tok::kw_case)) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000386 Tok->Type = TT_CtorInitializerColon;
Daniel Jasperb596fb22013-10-24 10:31:50 +0000387 } else if (Contexts.back().ColonIsDictLiteral) {
388 Tok->Type = TT_DictLiteral;
Daniel Jasperc697ad22013-02-06 10:05:46 +0000389 } else if (Contexts.back().ColonIsObjCMethodExpr ||
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000390 Line.First->Type == TT_ObjCMethodSpecifier) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000391 Tok->Type = TT_ObjCMethodExpr;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000392 Tok->Previous->Type = TT_ObjCSelectorName;
Alexander Kornienko39856b72013-09-10 09:38:25 +0000393 if (Tok->Previous->ColumnWidth >
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000394 Contexts.back().LongestObjCSelectorName) {
Alexander Kornienko60d1b042013-10-10 13:36:20 +0000395 Contexts.back().LongestObjCSelectorName = Tok->Previous->ColumnWidth;
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000396 }
Craig Topper2145bc02014-05-09 08:15:10 +0000397 if (!Contexts.back().FirstObjCSelectorName)
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000398 Contexts.back().FirstObjCSelectorName = Tok->Previous;
Daniel Jasperc697ad22013-02-06 10:05:46 +0000399 } else if (Contexts.back().ColonIsForRangeExpr) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000400 Tok->Type = TT_RangeBasedForLoopColon;
Daniel Jasperb05a81d2014-05-09 13:11:16 +0000401 } else if (CurrentToken && CurrentToken->is(tok::numeric_constant)) {
Alexander Kornienko60d1b042013-10-10 13:36:20 +0000402 Tok->Type = TT_BitFieldColon;
Daniel Jasperd39312ec2014-05-28 10:09:11 +0000403 } else if (Contexts.size() == 1 &&
404 !Line.First->isOneOf(tok::kw_enum, tok::kw_case)) {
Daniel Jaspereead02b2013-02-14 08:42:54 +0000405 Tok->Type = TT_InheritanceColon;
Daniel Jasper40aacf42013-03-14 13:45:21 +0000406 } else if (Contexts.back().ContextKind == tok::l_paren) {
407 Tok->Type = TT_InlineASMColon;
Daniel Jasper1ac3e052013-02-05 10:07:47 +0000408 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000409 break;
410 case tok::kw_if:
411 case tok::kw_while:
Craig Topper2145bc02014-05-09 08:15:10 +0000412 if (CurrentToken && CurrentToken->is(tok::l_paren)) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000413 next();
Nico Weber9096fc02013-06-26 00:30:14 +0000414 if (!parseParens(/*LookForDecls=*/true))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000415 return false;
416 }
417 break;
418 case tok::kw_for:
Daniel Jasperc697ad22013-02-06 10:05:46 +0000419 Contexts.back().ColonIsForRangeExpr = true;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000420 next();
421 if (!parseParens())
422 return false;
423 break;
424 case tok::l_paren:
425 if (!parseParens())
426 return false;
Daniel Jasperbc5cb4e2013-11-07 17:43:07 +0000427 if (Line.MustBeDeclaration && Contexts.size() == 1 &&
Daniel Jasperf10a28d2014-05-05 13:48:09 +0000428 !Contexts.back().IsExpression &&
429 Line.First->Type != TT_ObjCProperty &&
430 (!Tok->Previous || Tok->Previous->isNot(tok::kw_decltype)))
Daniel Jasper26d1b1d2013-02-24 18:54:32 +0000431 Line.MightBeFunctionDecl = true;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000432 break;
433 case tok::l_square:
434 if (!parseSquare())
435 return false;
436 break;
437 case tok::l_brace:
438 if (!parseBrace())
439 return false;
440 break;
441 case tok::less:
Daniel Jasper62c0ac02013-07-30 22:37:19 +0000442 if (Tok->Previous && !Tok->Previous->Tok.isLiteral() && parseAngle())
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000443 Tok->Type = TT_TemplateOpener;
444 else {
445 Tok->Type = TT_BinaryOperator;
446 CurrentToken = Tok;
447 next();
448 }
449 break;
450 case tok::r_paren:
451 case tok::r_square:
452 return false;
453 case tok::r_brace:
454 // Lines can start with '}'.
Craig Topper2145bc02014-05-09 08:15:10 +0000455 if (Tok->Previous)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000456 return false;
457 break;
458 case tok::greater:
459 Tok->Type = TT_BinaryOperator;
460 break;
461 case tok::kw_operator:
Daniel Jasper42401c82013-09-02 09:20:39 +0000462 while (CurrentToken &&
463 !CurrentToken->isOneOf(tok::l_paren, tok::semi, tok::r_paren)) {
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000464 if (CurrentToken->isOneOf(tok::star, tok::amp))
Daniel Jasper35d2dc72013-02-11 08:01:18 +0000465 CurrentToken->Type = TT_PointerOrReference;
466 consumeToken();
Daniel Jasper42401c82013-09-02 09:20:39 +0000467 if (CurrentToken && CurrentToken->Previous->Type == TT_BinaryOperator)
Daniel Jasperd215b8b2013-08-28 07:27:35 +0000468 CurrentToken->Previous->Type = TT_OverloadedOperator;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000469 }
Daniel Jasper8f9624b2013-05-10 07:59:58 +0000470 if (CurrentToken) {
Daniel Jasper35d2dc72013-02-11 08:01:18 +0000471 CurrentToken->Type = TT_OverloadedOperatorLParen;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000472 if (CurrentToken->Previous->Type == TT_BinaryOperator)
473 CurrentToken->Previous->Type = TT_OverloadedOperator;
Daniel Jasper8f9624b2013-05-10 07:59:58 +0000474 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000475 break;
476 case tok::question:
477 parseConditional();
478 break;
479 case tok::kw_template:
480 parseTemplateDeclaration();
481 break;
Nico Weber29f9dea2013-02-11 15:32:15 +0000482 case tok::identifier:
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000483 if (Line.First->is(tok::kw_for) &&
484 Tok->Tok.getIdentifierInfo() == &Ident_in)
Nico Weber29f9dea2013-02-11 15:32:15 +0000485 Tok->Type = TT_ObjCForIn;
486 break;
Daniel Jaspera628c982013-04-03 13:36:17 +0000487 case tok::comma:
488 if (Contexts.back().FirstStartOfName)
489 Contexts.back().FirstStartOfName->PartOfMultiVariableDeclStmt = true;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000490 if (Contexts.back().InCtorInitializer)
491 Tok->Type = TT_CtorInitializerComma;
Daniel Jaspere1e43192014-04-01 12:55:11 +0000492 if (Contexts.back().IsForEachMacro)
493 Contexts.back().IsExpression = true;
Daniel Jaspera628c982013-04-03 13:36:17 +0000494 break;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000495 default:
496 break;
497 }
498 return true;
499 }
500
501 void parseIncludeDirective() {
502 next();
Craig Topper2145bc02014-05-09 08:15:10 +0000503 if (CurrentToken && CurrentToken->is(tok::less)) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000504 next();
Craig Topper2145bc02014-05-09 08:15:10 +0000505 while (CurrentToken) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000506 if (CurrentToken->isNot(tok::comment) || CurrentToken->Next)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000507 CurrentToken->Type = TT_ImplicitStringLiteral;
508 next();
509 }
510 } else {
Craig Topper2145bc02014-05-09 08:15:10 +0000511 while (CurrentToken) {
Daniel Jasperaf5ba0e2013-02-23 07:46:38 +0000512 if (CurrentToken->is(tok::string_literal))
513 // Mark these string literals as "implicit" literals, too, so that
514 // they are not split or line-wrapped.
515 CurrentToken->Type = TT_ImplicitStringLiteral;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000516 next();
517 }
518 }
519 }
520
521 void parseWarningOrError() {
522 next();
523 // We still want to format the whitespace left of the first token of the
524 // warning or error.
525 next();
Craig Topper2145bc02014-05-09 08:15:10 +0000526 while (CurrentToken) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000527 CurrentToken->Type = TT_ImplicitStringLiteral;
528 next();
529 }
530 }
531
Daniel Jasperdc32c1b2014-01-09 13:56:49 +0000532 void parsePragma() {
533 next(); // Consume "pragma".
534 if (CurrentToken && CurrentToken->TokenText == "mark") {
535 next(); // Consume "mark".
536 next(); // Consume first token (so we fix leading whitespace).
Craig Topper2145bc02014-05-09 08:15:10 +0000537 while (CurrentToken) {
Daniel Jasperdc32c1b2014-01-09 13:56:49 +0000538 CurrentToken->Type = TT_ImplicitStringLiteral;
539 next();
540 }
541 }
542 }
543
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000544 void parsePreprocessorDirective() {
545 next();
Craig Topper2145bc02014-05-09 08:15:10 +0000546 if (!CurrentToken)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000547 return;
Alexander Kornienko384b40b2013-10-11 21:43:05 +0000548 if (CurrentToken->Tok.is(tok::numeric_constant)) {
549 CurrentToken->SpacesRequiredBefore = 1;
550 return;
551 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000552 // Hashes in the middle of a line can lead to any strange token
553 // sequence.
Craig Topper2145bc02014-05-09 08:15:10 +0000554 if (!CurrentToken->Tok.getIdentifierInfo())
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000555 return;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000556 switch (CurrentToken->Tok.getIdentifierInfo()->getPPKeywordID()) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000557 case tok::pp_include:
558 case tok::pp_import:
559 parseIncludeDirective();
560 break;
561 case tok::pp_error:
562 case tok::pp_warning:
563 parseWarningOrError();
564 break;
Daniel Jasperdc32c1b2014-01-09 13:56:49 +0000565 case tok::pp_pragma:
566 parsePragma();
567 break;
Daniel Jasper4431aa92013-04-23 13:54:04 +0000568 case tok::pp_if:
569 case tok::pp_elif:
Daniel Jasper7cfde412014-01-21 08:56:09 +0000570 Contexts.back().IsExpression = true;
Daniel Jasper4431aa92013-04-23 13:54:04 +0000571 parseLine();
572 break;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000573 default:
574 break;
575 }
Craig Topper2145bc02014-05-09 08:15:10 +0000576 while (CurrentToken)
Daniel Jaspera885dbe2013-02-05 09:34:14 +0000577 next();
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000578 }
579
Nico Weber44449172013-02-12 16:17:07 +0000580public:
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000581 LineType parseLine() {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000582 if (CurrentToken->is(tok::hash)) {
583 parsePreprocessorDirective();
584 return LT_PreprocessorDirective;
585 }
Daniel Jasper7cfde412014-01-21 08:56:09 +0000586
Daniel Jasper47ef6dd2014-01-17 16:21:39 +0000587 // Directly allow to 'import <string-literal>' to support protocol buffer
588 // definitions (code.google.com/p/protobuf) or missing "#" (either way we
589 // should not break the line).
590 IdentifierInfo *Info = CurrentToken->Tok.getIdentifierInfo();
591 if (Info && Info->getPPKeywordID() == tok::pp_import &&
592 CurrentToken->Next && CurrentToken->Next->is(tok::string_literal))
593 parseIncludeDirective();
594
Craig Topper2145bc02014-05-09 08:15:10 +0000595 while (CurrentToken) {
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000596 if (CurrentToken->is(tok::kw_virtual))
597 KeywordVirtualFound = true;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000598 if (!consumeToken())
599 return LT_Invalid;
600 }
601 if (KeywordVirtualFound)
602 return LT_VirtualFunctionDecl;
603
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000604 if (Line.First->Type == TT_ObjCMethodSpecifier) {
Craig Topper2145bc02014-05-09 08:15:10 +0000605 if (Contexts.back().FirstObjCSelectorName)
Daniel Jasperc697ad22013-02-06 10:05:46 +0000606 Contexts.back().FirstObjCSelectorName->LongestObjCSelectorName =
607 Contexts.back().LongestObjCSelectorName;
Daniel Jasper1ac3e052013-02-05 10:07:47 +0000608 return LT_ObjCMethodDecl;
609 }
610
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000611 return LT_Other;
612 }
613
Nico Weber44449172013-02-12 16:17:07 +0000614private:
Manuel Klimek819788d2014-03-18 11:22:45 +0000615 void resetTokenMetadata(FormatToken *Token) {
Daniel Jasperb05a81d2014-05-09 13:11:16 +0000616 if (!Token)
617 return;
Manuel Klimek819788d2014-03-18 11:22:45 +0000618
619 // Reset token type in case we have already looked at it and then
620 // recovered from an error (e.g. failure to find the matching >).
621 if (CurrentToken->Type != TT_LambdaLSquare &&
622 CurrentToken->Type != TT_FunctionLBrace &&
623 CurrentToken->Type != TT_ImplicitStringLiteral &&
Daniel Jasperf9ae3122014-05-08 07:01:45 +0000624 CurrentToken->Type != TT_RegexLiteral &&
Manuel Klimek819788d2014-03-18 11:22:45 +0000625 CurrentToken->Type != TT_TrailingReturnArrow)
626 CurrentToken->Type = TT_Unknown;
627 if (CurrentToken->Role)
Craig Topper2145bc02014-05-09 08:15:10 +0000628 CurrentToken->Role.reset(nullptr);
Manuel Klimek819788d2014-03-18 11:22:45 +0000629 CurrentToken->FakeLParens.clear();
630 CurrentToken->FakeRParens = 0;
631 }
632
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000633 void next() {
Craig Topper2145bc02014-05-09 08:15:10 +0000634 if (CurrentToken) {
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000635 determineTokenType(*CurrentToken);
Daniel Jasperc697ad22013-02-06 10:05:46 +0000636 CurrentToken->BindingStrength = Contexts.back().BindingStrength;
Daniel Jasper63af7c42013-12-09 14:40:19 +0000637 CurrentToken->NestingLevel = Contexts.size() - 1;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000638 CurrentToken = CurrentToken->Next;
Daniel Jasperf9ae3122014-05-08 07:01:45 +0000639 }
Daniel Jasper5065bc42013-02-18 12:44:35 +0000640
Manuel Klimek819788d2014-03-18 11:22:45 +0000641 resetTokenMetadata(CurrentToken);
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000642 }
643
Daniel Jasperc697ad22013-02-06 10:05:46 +0000644 /// \brief A struct to hold information valid in a specific context, e.g.
645 /// a pair of parenthesis.
646 struct Context {
Daniel Jasper40aacf42013-03-14 13:45:21 +0000647 Context(tok::TokenKind ContextKind, unsigned BindingStrength,
648 bool IsExpression)
649 : ContextKind(ContextKind), BindingStrength(BindingStrength),
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000650 LongestObjCSelectorName(0), ColonIsForRangeExpr(false),
651 ColonIsDictLiteral(false), ColonIsObjCMethodExpr(false),
652 FirstObjCSelectorName(nullptr), FirstStartOfName(nullptr),
653 IsExpression(IsExpression), CanBeExpression(true),
654 InTemplateArgument(false), InCtorInitializer(false),
655 CaretFound(false), IsForEachMacro(false) {}
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000656
Daniel Jasper40aacf42013-03-14 13:45:21 +0000657 tok::TokenKind ContextKind;
Daniel Jasperc697ad22013-02-06 10:05:46 +0000658 unsigned BindingStrength;
659 unsigned LongestObjCSelectorName;
660 bool ColonIsForRangeExpr;
Daniel Jasperb596fb22013-10-24 10:31:50 +0000661 bool ColonIsDictLiteral;
Daniel Jasperc697ad22013-02-06 10:05:46 +0000662 bool ColonIsObjCMethodExpr;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000663 FormatToken *FirstObjCSelectorName;
664 FormatToken *FirstStartOfName;
Daniel Jasperc697ad22013-02-06 10:05:46 +0000665 bool IsExpression;
Daniel Jasper97b89482013-03-13 07:49:51 +0000666 bool CanBeExpression;
Manuel Klimekf81e5c02014-03-27 11:17:36 +0000667 bool InTemplateArgument;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000668 bool InCtorInitializer;
Daniel Jaspera225bce2014-01-16 19:14:34 +0000669 bool CaretFound;
Daniel Jaspere1e43192014-04-01 12:55:11 +0000670 bool IsForEachMacro;
Daniel Jasperc697ad22013-02-06 10:05:46 +0000671 };
672
673 /// \brief Puts a new \c Context onto the stack \c Contexts for the lifetime
674 /// of each instance.
675 struct ScopedContextCreator {
676 AnnotatingParser &P;
677
Daniel Jasper40aacf42013-03-14 13:45:21 +0000678 ScopedContextCreator(AnnotatingParser &P, tok::TokenKind ContextKind,
679 unsigned Increase)
680 : P(P) {
Daniel Jasper3ac9b9e2013-07-08 14:34:09 +0000681 P.Contexts.push_back(Context(ContextKind,
682 P.Contexts.back().BindingStrength + Increase,
683 P.Contexts.back().IsExpression));
Daniel Jasperc697ad22013-02-06 10:05:46 +0000684 }
685
686 ~ScopedContextCreator() { P.Contexts.pop_back(); }
687 };
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000688
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000689 void determineTokenType(FormatToken &Current) {
690 if (Current.getPrecedence() == prec::Assignment &&
Daniel Jasper59036852013-08-12 12:16:34 +0000691 !Line.First->isOneOf(tok::kw_template, tok::kw_using) &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000692 (!Current.Previous || Current.Previous->isNot(tok::kw_operator))) {
Daniel Jasperc697ad22013-02-06 10:05:46 +0000693 Contexts.back().IsExpression = true;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000694 for (FormatToken *Previous = Current.Previous;
Daniel Jasper5ca9b712013-09-11 20:37:10 +0000695 Previous && !Previous->isOneOf(tok::comma, tok::semi);
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000696 Previous = Previous->Previous) {
Daniel Jasper942d9712014-04-28 09:19:28 +0000697 if (Previous->isOneOf(tok::r_square, tok::r_paren))
Daniel Jasper8e559272013-02-27 11:43:50 +0000698 Previous = Previous->MatchingParen;
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000699 if (Previous->Type == TT_BinaryOperator &&
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000700 Previous->isOneOf(tok::star, tok::amp)) {
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000701 Previous->Type = TT_PointerOrReference;
702 }
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000703 }
Daniel Jasper3682fcd2013-12-16 08:36:18 +0000704 } else if (Current.isOneOf(tok::kw_return, tok::kw_throw)) {
Daniel Jasperc697ad22013-02-06 10:05:46 +0000705 Contexts.back().IsExpression = true;
Daniel Jasper3682fcd2013-12-16 08:36:18 +0000706 } else if (Current.is(tok::l_paren) && !Line.MustBeDeclaration &&
Dinesh Dwivedi2e92e662014-05-06 11:46:49 +0000707 !Line.InPPDirective &&
708 (!Current.Previous ||
709 Current.Previous->isNot(tok::kw_decltype))) {
Daniel Jasper3682fcd2013-12-16 08:36:18 +0000710 bool ParametersOfFunctionType =
711 Current.Previous && Current.Previous->is(tok::r_paren) &&
712 Current.Previous->MatchingParen &&
713 Current.Previous->MatchingParen->Type == TT_FunctionTypeLParen;
714 bool IsForOrCatch = Current.Previous &&
715 Current.Previous->isOneOf(tok::kw_for, tok::kw_catch);
716 Contexts.back().IsExpression = !ParametersOfFunctionType && !IsForOrCatch;
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000717 } else if (Current.isOneOf(tok::r_paren, tok::greater, tok::comma)) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000718 for (FormatToken *Previous = Current.Previous;
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000719 Previous && Previous->isOneOf(tok::star, tok::amp);
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000720 Previous = Previous->Previous)
Nico Weber44449172013-02-12 16:17:07 +0000721 Previous->Type = TT_PointerOrReference;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000722 } else if (Current.Previous &&
723 Current.Previous->Type == TT_CtorInitializerColon) {
Daniel Jasper5065bc42013-02-18 12:44:35 +0000724 Contexts.back().IsExpression = true;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000725 Contexts.back().InCtorInitializer = true;
Daniel Jasper97b89482013-03-13 07:49:51 +0000726 } else if (Current.is(tok::kw_new)) {
727 Contexts.back().CanBeExpression = false;
Daniel Jaspera98da3d2013-11-07 19:56:07 +0000728 } else if (Current.is(tok::semi) || Current.is(tok::exclaim)) {
Daniel Jasperc37de302013-05-03 14:41:24 +0000729 // This should be the condition or increment in a for-loop.
730 Contexts.back().IsExpression = true;
Nico Weber44449172013-02-12 16:17:07 +0000731 }
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000732
733 if (Current.Type == TT_Unknown) {
Daniel Jasperf3167902013-09-27 08:29:16 +0000734 // Line.MightBeFunctionDecl can only be true after the parentheses of a
735 // function declaration have been found. In this case, 'Current' is a
736 // trailing token of this declaration and thus cannot be a name.
737 if (isStartOfName(Current) && !Line.MightBeFunctionDecl) {
Daniel Jaspera628c982013-04-03 13:36:17 +0000738 Contexts.back().FirstStartOfName = &Current;
Daniel Jasper26d1b1d2013-02-24 18:54:32 +0000739 Current.Type = TT_StartOfName;
Daniel Jasper6cdec7c2013-07-09 14:36:48 +0000740 } else if (Current.is(tok::kw_auto)) {
741 AutoFound = true;
Daniel Jaspera3501d42013-07-11 14:33:06 +0000742 } else if (Current.is(tok::arrow) && AutoFound &&
743 Line.MustBeDeclaration) {
Daniel Jasper6cdec7c2013-07-09 14:36:48 +0000744 Current.Type = TT_TrailingReturnArrow;
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000745 } else if (Current.isOneOf(tok::star, tok::amp, tok::ampamp)) {
Daniel Jasperc697ad22013-02-06 10:05:46 +0000746 Current.Type =
Daniel Jasper6f9c8d22013-07-05 13:30:40 +0000747 determineStarAmpUsage(Current, Contexts.back().CanBeExpression &&
Manuel Klimekf81e5c02014-03-27 11:17:36 +0000748 Contexts.back().IsExpression,
749 Contexts.back().InTemplateArgument);
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000750 } else if (Current.isOneOf(tok::minus, tok::plus, tok::caret)) {
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000751 Current.Type = determinePlusMinusCaretUsage(Current);
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000752 if (Current.Type == TT_UnaryOperator && Current.is(tok::caret))
Daniel Jasperb77105d2014-04-08 14:04:31 +0000753 Contexts.back().CaretFound = true;
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000754 } else if (Current.isOneOf(tok::minusminus, tok::plusplus)) {
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000755 Current.Type = determineIncrementUsage(Current);
756 } else if (Current.is(tok::exclaim)) {
757 Current.Type = TT_UnaryOperator;
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000758 } else if (Current.is(tok::question)) {
759 Current.Type = TT_ConditionalExpr;
Manuel Klimekbab25fd2013-09-04 08:20:47 +0000760 } else if (Current.isBinaryOperator() &&
761 (!Current.Previous ||
762 Current.Previous->isNot(tok::l_square))) {
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000763 Current.Type = TT_BinaryOperator;
764 } else if (Current.is(tok::comment)) {
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000765 if (Current.TokenText.startswith("//"))
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000766 Current.Type = TT_LineComment;
767 else
768 Current.Type = TT_BlockComment;
Nico Weberc6fe2162013-02-13 04:13:13 +0000769 } else if (Current.is(tok::r_paren)) {
Dinesh Dwivedi13b9b7e2014-05-06 09:08:34 +0000770 if (rParenEndsCast(Current))
Nico Weberc6fe2162013-02-13 04:13:13 +0000771 Current.Type = TT_CastRParen;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000772 } else if (Current.is(tok::at) && Current.Next) {
773 switch (Current.Next->Tok.getObjCKeywordID()) {
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000774 case tok::objc_interface:
775 case tok::objc_implementation:
776 case tok::objc_protocol:
777 Current.Type = TT_ObjCDecl;
778 break;
779 case tok::objc_property:
780 Current.Type = TT_ObjCProperty;
781 break;
782 default:
783 break;
784 }
Daniel Jasperbca4bbe2013-05-28 11:30:49 +0000785 } else if (Current.is(tok::period)) {
Alexander Kornienko1efe0a02013-07-04 14:47:51 +0000786 FormatToken *PreviousNoComment = Current.getPreviousNonComment();
Daniel Jasperbca4bbe2013-05-28 11:30:49 +0000787 if (PreviousNoComment &&
788 PreviousNoComment->isOneOf(tok::comma, tok::l_brace))
789 Current.Type = TT_DesignatedInitializerPeriod;
Daniel Jasper43e6a282013-12-16 15:01:54 +0000790 } else if (Current.isOneOf(tok::identifier, tok::kw_const) &&
Daniel Jasper35ec2b22014-04-14 08:15:20 +0000791 Current.Previous && Current.Previous->isNot(tok::equal) &&
Daniel Jasper43e6a282013-12-16 15:01:54 +0000792 Line.MightBeFunctionDecl && Contexts.size() == 1) {
793 // Line.MightBeFunctionDecl can only be true after the parentheses of a
794 // function declaration have been found.
795 Current.Type = TT_TrailingAnnotation;
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000796 }
797 }
798 }
799
Daniel Jasperdba1c552013-07-02 09:47:29 +0000800 /// \brief Take a guess at whether \p Tok starts a name of a function or
801 /// variable declaration.
802 ///
803 /// This is a heuristic based on whether \p Tok is an identifier following
804 /// something that is likely a type.
805 bool isStartOfName(const FormatToken &Tok) {
Craig Topper2145bc02014-05-09 08:15:10 +0000806 if (Tok.isNot(tok::identifier) || !Tok.Previous)
Daniel Jasperdba1c552013-07-02 09:47:29 +0000807 return false;
808
809 // Skip "const" as it does not have an influence on whether this is a name.
810 FormatToken *PreviousNotConst = Tok.Previous;
Craig Topper2145bc02014-05-09 08:15:10 +0000811 while (PreviousNotConst && PreviousNotConst->is(tok::kw_const))
Daniel Jasperdba1c552013-07-02 09:47:29 +0000812 PreviousNotConst = PreviousNotConst->Previous;
813
Craig Topper2145bc02014-05-09 08:15:10 +0000814 if (!PreviousNotConst)
Daniel Jasperdba1c552013-07-02 09:47:29 +0000815 return false;
816
Daniel Jasper3ac9b9e2013-07-08 14:34:09 +0000817 bool IsPPKeyword = PreviousNotConst->is(tok::identifier) &&
818 PreviousNotConst->Previous &&
819 PreviousNotConst->Previous->is(tok::hash);
Daniel Jasperdba1c552013-07-02 09:47:29 +0000820
Daniel Jasper53643062013-08-19 10:16:18 +0000821 if (PreviousNotConst->Type == TT_TemplateCloser)
822 return PreviousNotConst && PreviousNotConst->MatchingParen &&
823 PreviousNotConst->MatchingParen->Previous &&
824 PreviousNotConst->MatchingParen->Previous->isNot(tok::kw_template);
825
Daniel Jasperf10a28d2014-05-05 13:48:09 +0000826 if (PreviousNotConst->is(tok::r_paren) && PreviousNotConst->MatchingParen &&
827 PreviousNotConst->MatchingParen->Previous &&
828 PreviousNotConst->MatchingParen->Previous->is(tok::kw_decltype))
829 return true;
830
Daniel Jasperdba1c552013-07-02 09:47:29 +0000831 return (!IsPPKeyword && PreviousNotConst->is(tok::identifier)) ||
832 PreviousNotConst->Type == TT_PointerOrReference ||
Daniel Jaspercb51cf42014-01-16 09:11:55 +0000833 PreviousNotConst->isSimpleTypeSpecifier();
Daniel Jasperdba1c552013-07-02 09:47:29 +0000834 }
835
Dinesh Dwivedi13b9b7e2014-05-06 09:08:34 +0000836 /// \brief Determine whether ')' is ending a cast.
837 bool rParenEndsCast(const FormatToken &Tok) {
838 FormatToken *LeftOfParens = NULL;
839 if (Tok.MatchingParen)
840 LeftOfParens = Tok.MatchingParen->getPreviousNonComment();
841 bool IsCast = false;
842 bool ParensAreEmpty = Tok.Previous == Tok.MatchingParen;
843 bool ParensAreType = !Tok.Previous ||
844 Tok.Previous->Type == TT_PointerOrReference ||
845 Tok.Previous->Type == TT_TemplateCloser ||
846 Tok.Previous->isSimpleTypeSpecifier();
847 bool ParensCouldEndDecl =
848 Tok.Next && Tok.Next->isOneOf(tok::equal, tok::semi, tok::l_brace);
849 bool IsSizeOfOrAlignOf =
850 LeftOfParens && LeftOfParens->isOneOf(tok::kw_sizeof, tok::kw_alignof);
851 if (ParensAreType && !ParensCouldEndDecl && !IsSizeOfOrAlignOf &&
852 ((Contexts.size() > 1 && Contexts[Contexts.size() - 2].IsExpression) ||
853 (Tok.Next && Tok.Next->isBinaryOperator())))
854 IsCast = true;
855 else if (Tok.Next && Tok.Next->isNot(tok::string_literal) &&
856 (Tok.Next->Tok.isLiteral() ||
857 Tok.Next->isOneOf(tok::kw_sizeof, tok::kw_alignof)))
858 IsCast = true;
859 // If there is an identifier after the (), it is likely a cast, unless
860 // there is also an identifier before the ().
861 else if (LeftOfParens && (LeftOfParens->Tok.getIdentifierInfo() == NULL ||
862 LeftOfParens->is(tok::kw_return)) &&
863 LeftOfParens->Type != TT_OverloadedOperator &&
864 LeftOfParens->isNot(tok::at) &&
865 LeftOfParens->Type != TT_TemplateCloser && Tok.Next) {
866 if (Tok.Next->isOneOf(tok::identifier, tok::numeric_constant)) {
867 IsCast = true;
868 } else {
869 // Use heuristics to recognize c style casting.
870 FormatToken *Prev = Tok.Previous;
871 if (Prev && Prev->isOneOf(tok::amp, tok::star))
872 Prev = Prev->Previous;
873
874 if (Prev && Tok.Next && Tok.Next->Next) {
875 bool NextIsUnary = Tok.Next->isUnaryOperator() ||
876 Tok.Next->isOneOf(tok::amp, tok::star);
Daniel Jasperb05a81d2014-05-09 13:11:16 +0000877 IsCast = NextIsUnary && Tok.Next->Next->isOneOf(
878 tok::identifier, tok::numeric_constant);
Dinesh Dwivedi13b9b7e2014-05-06 09:08:34 +0000879 }
880
881 for (; Prev != Tok.MatchingParen; Prev = Prev->Previous) {
882 if (!Prev || !Prev->isOneOf(tok::kw_const, tok::identifier)) {
883 IsCast = false;
884 break;
885 }
886 }
887 }
888 }
889 return IsCast && !ParensAreEmpty;
890 }
891
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000892 /// \brief Return the type of the given token assuming it is * or &.
Manuel Klimekf81e5c02014-03-27 11:17:36 +0000893 TokenType determineStarAmpUsage(const FormatToken &Tok, bool IsExpression,
894 bool InTemplateArgument) {
Alexander Kornienko1efe0a02013-07-04 14:47:51 +0000895 const FormatToken *PrevToken = Tok.getPreviousNonComment();
Craig Topper2145bc02014-05-09 08:15:10 +0000896 if (!PrevToken)
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000897 return TT_UnaryOperator;
898
Alexander Kornienko1efe0a02013-07-04 14:47:51 +0000899 const FormatToken *NextToken = Tok.getNextNonComment();
Craig Topper2145bc02014-05-09 08:15:10 +0000900 if (!NextToken)
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000901 return TT_Unknown;
902
Daniel Jasper37194282013-05-28 08:33:00 +0000903 if (PrevToken->is(tok::coloncolon) ||
904 (PrevToken->is(tok::l_paren) && !IsExpression))
Daniel Jasper8eb371b2013-03-01 17:13:29 +0000905 return TT_PointerOrReference;
906
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000907 if (PrevToken->isOneOf(tok::l_paren, tok::l_square, tok::l_brace,
Daniel Jasperae907642013-03-14 10:50:25 +0000908 tok::comma, tok::semi, tok::kw_return, tok::colon,
Daniel Jasperdf620b22013-09-21 17:31:51 +0000909 tok::equal, tok::kw_delete, tok::kw_sizeof) ||
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000910 PrevToken->Type == TT_BinaryOperator ||
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000911 PrevToken->Type == TT_ConditionalExpr ||
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000912 PrevToken->Type == TT_UnaryOperator || PrevToken->Type == TT_CastRParen)
913 return TT_UnaryOperator;
914
Daniel Jasperea2d0422014-05-08 08:50:10 +0000915 if (NextToken->is(tok::l_square) && NextToken->Type != TT_LambdaLSquare)
Nico Weber5d2624e2013-02-06 06:20:11 +0000916 return TT_PointerOrReference;
917
Daniel Jasper71665cd2013-09-10 10:26:38 +0000918 if (PrevToken->is(tok::r_paren) && PrevToken->MatchingParen &&
919 PrevToken->MatchingParen->Previous &&
920 PrevToken->MatchingParen->Previous->is(tok::kw_typeof))
921 return TT_PointerOrReference;
922
Manuel Klimek94815562014-03-28 09:27:09 +0000923 if (PrevToken->Tok.isLiteral() ||
924 PrevToken->isOneOf(tok::r_paren, tok::r_square, tok::kw_true,
925 tok::kw_false) ||
926 NextToken->Tok.isLiteral() ||
927 NextToken->isOneOf(tok::kw_true, tok::kw_false) ||
928 NextToken->isUnaryOperator() ||
Manuel Klimekf81e5c02014-03-27 11:17:36 +0000929 // If we know we're in a template argument, there are no named
930 // declarations. Thus, having an identifier on the right-hand side
931 // indicates a binary operator.
932 (InTemplateArgument && NextToken->Tok.isAnyIdentifier()))
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000933 return TT_BinaryOperator;
934
Daniel Jasper7d028292014-06-02 11:54:20 +0000935 // This catches some cases where evaluation order is used as control flow:
936 // aaa && aaa->f();
937 const FormatToken *NextNextToken = NextToken->getNextNonComment();
938 if (NextNextToken && NextNextToken->is(tok::arrow))
939 return TT_BinaryOperator;
940
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000941 // It is very unlikely that we are going to find a pointer or reference type
942 // definition on the RHS of an assignment.
943 if (IsExpression)
944 return TT_BinaryOperator;
945
946 return TT_PointerOrReference;
947 }
948
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000949 TokenType determinePlusMinusCaretUsage(const FormatToken &Tok) {
Alexander Kornienko1efe0a02013-07-04 14:47:51 +0000950 const FormatToken *PrevToken = Tok.getPreviousNonComment();
Craig Topper2145bc02014-05-09 08:15:10 +0000951 if (!PrevToken || PrevToken->Type == TT_CastRParen)
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000952 return TT_UnaryOperator;
953
954 // Use heuristics to recognize unary operators.
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000955 if (PrevToken->isOneOf(tok::equal, tok::l_paren, tok::comma, tok::l_square,
956 tok::question, tok::colon, tok::kw_return,
957 tok::kw_case, tok::at, tok::l_brace))
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000958 return TT_UnaryOperator;
959
Nico Weberb76de882013-02-05 16:21:00 +0000960 // There can't be two consecutive binary operators.
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000961 if (PrevToken->Type == TT_BinaryOperator)
962 return TT_UnaryOperator;
963
964 // Fall back to marking the token as binary operator.
965 return TT_BinaryOperator;
966 }
967
968 /// \brief Determine whether ++/-- are pre- or post-increments/-decrements.
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000969 TokenType determineIncrementUsage(const FormatToken &Tok) {
Alexander Kornienko1efe0a02013-07-04 14:47:51 +0000970 const FormatToken *PrevToken = Tok.getPreviousNonComment();
Craig Topper2145bc02014-05-09 08:15:10 +0000971 if (!PrevToken || PrevToken->Type == TT_CastRParen)
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000972 return TT_UnaryOperator;
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000973 if (PrevToken->isOneOf(tok::r_paren, tok::r_square, tok::identifier))
Daniel Jasper3a9370c2013-02-04 07:21:18 +0000974 return TT_TrailingUnaryOperator;
975
976 return TT_UnaryOperator;
977 }
Daniel Jasperc697ad22013-02-06 10:05:46 +0000978
979 SmallVector<Context, 8> Contexts;
980
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000981 const FormatStyle &Style;
Daniel Jasperc697ad22013-02-06 10:05:46 +0000982 AnnotatedLine &Line;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000983 FormatToken *CurrentToken;
Daniel Jasperc697ad22013-02-06 10:05:46 +0000984 bool KeywordVirtualFound;
Daniel Jasper6cdec7c2013-07-09 14:36:48 +0000985 bool AutoFound;
Nico Weber29f9dea2013-02-11 15:32:15 +0000986 IdentifierInfo &Ident_in;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +0000987};
988
Daniel Jasperb27c4b72013-08-27 11:09:05 +0000989static int PrecedenceUnaryOperator = prec::PointerToMember + 1;
990static int PrecedenceArrowAndPeriod = prec::PointerToMember + 2;
991
Daniel Jasper400adc62013-02-08 15:28:42 +0000992/// \brief Parses binary expressions by inserting fake parenthesis based on
993/// operator precedence.
994class ExpressionParser {
995public:
Daniel Jasper6dcecb62013-06-06 09:11:58 +0000996 ExpressionParser(AnnotatedLine &Line) : Current(Line.First) {
997 // Skip leading "}", e.g. in "} else if (...) {".
998 if (Current->is(tok::r_brace))
999 next();
1000 }
Daniel Jasper400adc62013-02-08 15:28:42 +00001001
1002 /// \brief Parse expressions with the given operatore precedence.
Daniel Jaspercd8599e2013-02-23 21:01:55 +00001003 void parse(int Precedence = 0) {
Daniel Jasperf48b5ab2013-11-07 19:23:49 +00001004 // Skip 'return' and ObjC selector colons as they are not part of a binary
1005 // expression.
1006 while (Current &&
1007 (Current->is(tok::kw_return) ||
1008 (Current->is(tok::colon) && Current->Type == TT_ObjCMethodExpr)))
Daniel Jaspereabede62013-09-30 08:29:03 +00001009 next();
1010
Craig Topper2145bc02014-05-09 08:15:10 +00001011 if (!Current || Precedence > PrecedenceArrowAndPeriod)
Daniel Jasper0649d362013-08-23 15:14:03 +00001012 return;
1013
Daniel Jasper2c611c02013-05-31 14:56:12 +00001014 // Conditional expressions need to be parsed separately for proper nesting.
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001015 if (Precedence == prec::Conditional) {
Daniel Jasper2c611c02013-05-31 14:56:12 +00001016 parseConditionalExpr();
1017 return;
1018 }
Daniel Jasper0649d362013-08-23 15:14:03 +00001019
1020 // Parse unary operators, which all have a higher precedence than binary
1021 // operators.
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001022 if (Precedence == PrecedenceUnaryOperator) {
Daniel Jasper0649d362013-08-23 15:14:03 +00001023 parseUnaryOperator();
Daniel Jasper400adc62013-02-08 15:28:42 +00001024 return;
Daniel Jasper0649d362013-08-23 15:14:03 +00001025 }
Daniel Jasper400adc62013-02-08 15:28:42 +00001026
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001027 FormatToken *Start = Current;
Craig Topper2145bc02014-05-09 08:15:10 +00001028 FormatToken *LatestOperator = nullptr;
Daniel Jasper0e617842014-04-16 12:26:54 +00001029 unsigned OperatorIndex = 0;
Daniel Jasper400adc62013-02-08 15:28:42 +00001030
Daniel Jaspercd8599e2013-02-23 21:01:55 +00001031 while (Current) {
Daniel Jasper400adc62013-02-08 15:28:42 +00001032 // Consume operators with higher precedence.
Daniel Jasper6bee6822013-04-08 20:33:42 +00001033 parse(Precedence + 1);
Daniel Jasper400adc62013-02-08 15:28:42 +00001034
Daniel Jasper0649d362013-08-23 15:14:03 +00001035 int CurrentPrecedence = getCurrentPrecedence();
1036
1037 if (Current && Current->Type == TT_ObjCSelectorName &&
Daniel Jasperb88b25f2013-12-23 07:29:06 +00001038 Precedence == CurrentPrecedence) {
1039 if (LatestOperator)
1040 addFakeParenthesis(Start, prec::Level(Precedence));
Daniel Jasper0649d362013-08-23 15:14:03 +00001041 Start = Current;
Daniel Jasperb88b25f2013-12-23 07:29:06 +00001042 }
Daniel Jaspercd8599e2013-02-23 21:01:55 +00001043
Daniel Jasper400adc62013-02-08 15:28:42 +00001044 // At the end of the line or when an operator with higher precedence is
1045 // found, insert fake parenthesis and return.
Craig Topper2145bc02014-05-09 08:15:10 +00001046 if (!Current || Current->closesScope() ||
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001047 (CurrentPrecedence != -1 && CurrentPrecedence < Precedence)) {
1048 if (LatestOperator) {
Daniel Jasper0e617842014-04-16 12:26:54 +00001049 LatestOperator->LastOperator = true;
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001050 if (Precedence == PrecedenceArrowAndPeriod) {
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001051 // Call expressions don't have a binary operator precedence.
1052 addFakeParenthesis(Start, prec::Unknown);
1053 } else {
1054 addFakeParenthesis(Start, prec::Level(Precedence));
1055 }
1056 }
Daniel Jasper400adc62013-02-08 15:28:42 +00001057 return;
1058 }
1059
1060 // Consume scopes: (), [], <> and {}
Daniel Jasperc04baae2013-04-10 09:49:49 +00001061 if (Current->opensScope()) {
1062 while (Current && !Current->closesScope()) {
Daniel Jasper400adc62013-02-08 15:28:42 +00001063 next();
1064 parse();
1065 }
1066 next();
1067 } else {
1068 // Operator found.
Daniel Jasper0e617842014-04-16 12:26:54 +00001069 if (CurrentPrecedence == Precedence) {
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001070 LatestOperator = Current;
Daniel Jasper0e617842014-04-16 12:26:54 +00001071 Current->OperatorIndex = OperatorIndex;
1072 ++OperatorIndex;
1073 }
Daniel Jasper400adc62013-02-08 15:28:42 +00001074
1075 next();
1076 }
1077 }
1078 }
1079
1080private:
Daniel Jasper0649d362013-08-23 15:14:03 +00001081 /// \brief Gets the precedence (+1) of the given token for binary operators
1082 /// and other tokens that we treat like binary operators.
1083 int getCurrentPrecedence() {
1084 if (Current) {
1085 if (Current->Type == TT_ConditionalExpr)
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001086 return prec::Conditional;
Daniel Jasperf48b5ab2013-11-07 19:23:49 +00001087 else if (Current->is(tok::semi) || Current->Type == TT_InlineASMColon ||
1088 Current->Type == TT_ObjCSelectorName)
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001089 return 0;
Daniel Jasper9cc3e972014-02-07 10:09:46 +00001090 else if (Current->Type == TT_RangeBasedForLoopColon)
1091 return prec::Comma;
Daniel Jasper0649d362013-08-23 15:14:03 +00001092 else if (Current->Type == TT_BinaryOperator || Current->is(tok::comma))
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001093 return Current->getPrecedence();
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001094 else if (Current->isOneOf(tok::period, tok::arrow))
1095 return PrecedenceArrowAndPeriod;
Daniel Jasper0649d362013-08-23 15:14:03 +00001096 }
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001097 return -1;
Daniel Jasper0649d362013-08-23 15:14:03 +00001098 }
1099
Daniel Jasper2c611c02013-05-31 14:56:12 +00001100 void addFakeParenthesis(FormatToken *Start, prec::Level Precedence) {
1101 Start->FakeLParens.push_back(Precedence);
Daniel Jasper562ecd42013-09-06 08:08:14 +00001102 if (Precedence > prec::Unknown)
1103 Start->StartsBinaryExpression = true;
1104 if (Current) {
Daniel Jasper2c611c02013-05-31 14:56:12 +00001105 ++Current->Previous->FakeRParens;
Daniel Jasper562ecd42013-09-06 08:08:14 +00001106 if (Precedence > prec::Unknown)
1107 Current->Previous->EndsBinaryExpression = true;
1108 }
Daniel Jasper2c611c02013-05-31 14:56:12 +00001109 }
1110
Daniel Jasper0649d362013-08-23 15:14:03 +00001111 /// \brief Parse unary operator expressions and surround them with fake
1112 /// parentheses if appropriate.
1113 void parseUnaryOperator() {
Craig Topper2145bc02014-05-09 08:15:10 +00001114 if (!Current || Current->Type != TT_UnaryOperator) {
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001115 parse(PrecedenceArrowAndPeriod);
Daniel Jasper0649d362013-08-23 15:14:03 +00001116 return;
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001117 }
Daniel Jasper0649d362013-08-23 15:14:03 +00001118
1119 FormatToken *Start = Current;
1120 next();
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001121 parseUnaryOperator();
Daniel Jasper0649d362013-08-23 15:14:03 +00001122
Daniel Jasper0649d362013-08-23 15:14:03 +00001123 // The actual precedence doesn't matter.
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001124 addFakeParenthesis(Start, prec::Unknown);
Daniel Jasper0649d362013-08-23 15:14:03 +00001125 }
1126
Daniel Jasper2c611c02013-05-31 14:56:12 +00001127 void parseConditionalExpr() {
1128 FormatToken *Start = Current;
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001129 parse(prec::LogicalOr);
Daniel Jasper2c611c02013-05-31 14:56:12 +00001130 if (!Current || !Current->is(tok::question))
1131 return;
1132 next();
Daniel Jasperb27c4b72013-08-27 11:09:05 +00001133 parse(prec::LogicalOr);
Daniel Jasper2c611c02013-05-31 14:56:12 +00001134 if (!Current || Current->Type != TT_ConditionalExpr)
1135 return;
1136 next();
1137 parseConditionalExpr();
1138 addFakeParenthesis(Start, prec::Conditional);
1139 }
1140
Daniel Jasper400adc62013-02-08 15:28:42 +00001141 void next() {
Alexander Kornienkoafaa8f52013-06-17 13:19:53 +00001142 if (Current)
1143 Current = Current->Next;
1144 while (Current && Current->isTrailingComment())
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001145 Current = Current->Next;
Daniel Jasper400adc62013-02-08 15:28:42 +00001146 }
1147
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001148 FormatToken *Current;
Daniel Jasper400adc62013-02-08 15:28:42 +00001149};
1150
Craig Topper318ed7c2013-07-01 04:03:19 +00001151} // end anonymous namespace
1152
Daniel Jasper1c5d9df2013-09-06 07:54:20 +00001153void
1154TokenAnnotator::setCommentLineLevels(SmallVectorImpl<AnnotatedLine *> &Lines) {
Craig Topper2145bc02014-05-09 08:15:10 +00001155 const AnnotatedLine *NextNonCommentLine = nullptr;
Daniel Jasperbbf5c1c2013-11-05 19:10:03 +00001156 for (SmallVectorImpl<AnnotatedLine *>::reverse_iterator I = Lines.rbegin(),
1157 E = Lines.rend();
1158 I != E; ++I) {
1159 if (NextNonCommentLine && (*I)->First->is(tok::comment) &&
Craig Topper2145bc02014-05-09 08:15:10 +00001160 (*I)->First->Next == nullptr)
Daniel Jasperbbf5c1c2013-11-05 19:10:03 +00001161 (*I)->Level = NextNonCommentLine->Level;
Daniel Jasper1c5d9df2013-09-06 07:54:20 +00001162 else
Craig Topper2145bc02014-05-09 08:15:10 +00001163 NextNonCommentLine = (*I)->First->isNot(tok::r_brace) ? (*I) : nullptr;
Daniel Jasperbbf5c1c2013-11-05 19:10:03 +00001164
1165 setCommentLineLevels((*I)->Children);
Daniel Jasper1c5d9df2013-09-06 07:54:20 +00001166 }
1167}
1168
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001169void TokenAnnotator::annotate(AnnotatedLine &Line) {
Daniel Jasper1c5d9df2013-09-06 07:54:20 +00001170 for (SmallVectorImpl<AnnotatedLine *>::iterator I = Line.Children.begin(),
1171 E = Line.Children.end();
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001172 I != E; ++I) {
1173 annotate(**I);
1174 }
Daniel Jasper8de9ed02013-08-22 15:00:41 +00001175 AnnotatingParser Parser(Style, Line, Ident_in);
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001176 Line.Type = Parser.parseLine();
1177 if (Line.Type == LT_Invalid)
1178 return;
1179
Daniel Jasper400adc62013-02-08 15:28:42 +00001180 ExpressionParser ExprParser(Line);
1181 ExprParser.parse();
1182
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001183 if (Line.First->Type == TT_ObjCMethodSpecifier)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001184 Line.Type = LT_ObjCMethodDecl;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001185 else if (Line.First->Type == TT_ObjCDecl)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001186 Line.Type = LT_ObjCDecl;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001187 else if (Line.First->Type == TT_ObjCProperty)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001188 Line.Type = LT_ObjCProperty;
1189
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001190 Line.First->SpacesRequiredBefore = 1;
1191 Line.First->CanBreakBefore = Line.First->MustBreakBefore;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001192}
1193
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001194void TokenAnnotator::calculateFormattingInformation(AnnotatedLine &Line) {
Daniel Jasper5f3ea472014-05-22 08:36:53 +00001195 for (SmallVectorImpl<AnnotatedLine *>::iterator I = Line.Children.begin(),
1196 E = Line.Children.end();
1197 I != E; ++I) {
1198 calculateFormattingInformation(**I);
1199 }
1200
Alexander Kornienko39856b72013-09-10 09:38:25 +00001201 Line.First->TotalLength =
1202 Line.First->IsMultiline ? Style.ColumnLimit : Line.First->ColumnWidth;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001203 if (!Line.First->Next)
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001204 return;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001205 FormatToken *Current = Line.First->Next;
Daniel Jasper4fcc8b92013-11-07 17:52:51 +00001206 bool InFunctionDecl = Line.MightBeFunctionDecl;
Craig Topper2145bc02014-05-09 08:15:10 +00001207 while (Current) {
Daniel Jasper5a611392013-12-19 21:41:37 +00001208 if (Current->Type == TT_LineComment) {
Daniel Jasper84a12e12014-03-10 15:06:25 +00001209 if (Current->Previous->BlockKind == BK_BracedInit &&
1210 Current->Previous->opensScope())
Daniel Jasper5a611392013-12-19 21:41:37 +00001211 Current->SpacesRequiredBefore = Style.Cpp11BracedListStyle ? 0 : 1;
1212 else
1213 Current->SpacesRequiredBefore = Style.SpacesBeforeTrailingComments;
Daniel Jasper14e58e52014-03-21 11:58:45 +00001214
1215 // If we find a trailing comment, iterate backwards to determine whether
1216 // it seems to relate to a specific parameter. If so, break before that
1217 // parameter to avoid changing the comment's meaning. E.g. don't move 'b'
1218 // to the previous line in:
1219 // SomeFunction(a,
1220 // b, // comment
1221 // c);
Daniel Jasper28df0a32014-03-21 12:15:40 +00001222 if (!Current->HasUnescapedNewline) {
Daniel Jasper14e58e52014-03-21 11:58:45 +00001223 for (FormatToken *Parameter = Current->Previous; Parameter;
1224 Parameter = Parameter->Previous) {
1225 if (Parameter->isOneOf(tok::comment, tok::r_brace))
1226 break;
1227 if (Parameter->Previous && Parameter->Previous->is(tok::comma)) {
1228 if (Parameter->Previous->Type != TT_CtorInitializerComma &&
1229 Parameter->HasUnescapedNewline)
1230 Parameter->MustBreakBefore = true;
1231 break;
1232 }
1233 }
1234 }
Daniel Jasperb88b25f2013-12-23 07:29:06 +00001235 } else if (Current->SpacesRequiredBefore == 0 &&
Daniel Jasper166c19b2014-05-06 14:12:21 +00001236 spaceRequiredBefore(Line, *Current)) {
Alexander Kornienko384b40b2013-10-11 21:43:05 +00001237 Current->SpacesRequiredBefore = 1;
Daniel Jasper5a611392013-12-19 21:41:37 +00001238 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001239
Daniel Jasperfb81b092013-09-17 09:52:48 +00001240 Current->MustBreakBefore =
1241 Current->MustBreakBefore || mustBreakBefore(Line, *Current);
1242
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001243 Current->CanBreakBefore =
1244 Current->MustBreakBefore || canBreakBefore(Line, *Current);
Daniel Jasper5f3ea472014-05-22 08:36:53 +00001245 unsigned ChildSize = 0;
1246 if (Current->Previous->Children.size() == 1) {
1247 FormatToken &LastOfChild = *Current->Previous->Children[0]->Last;
1248 ChildSize = LastOfChild.isTrailingComment() ? Style.ColumnLimit
1249 : LastOfChild.TotalLength + 1;
1250 }
1251 if (Current->MustBreakBefore || Current->Previous->Children.size() > 1 ||
Alexander Kornienko39856b72013-09-10 09:38:25 +00001252 Current->IsMultiline)
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001253 Current->TotalLength = Current->Previous->TotalLength + Style.ColumnLimit;
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001254 else
Daniel Jasper3ac9b9e2013-07-08 14:34:09 +00001255 Current->TotalLength = Current->Previous->TotalLength +
Daniel Jasper5f3ea472014-05-22 08:36:53 +00001256 Current->ColumnWidth + ChildSize +
Daniel Jasper3ac9b9e2013-07-08 14:34:09 +00001257 Current->SpacesRequiredBefore;
Daniel Jasper4fcc8b92013-11-07 17:52:51 +00001258
1259 if (Current->Type == TT_CtorInitializerColon)
1260 InFunctionDecl = false;
1261
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001262 // FIXME: Only calculate this if CanBreakBefore is true once static
1263 // initializers etc. are sorted out.
1264 // FIXME: Move magic numbers to a better place.
Daniel Jasper4fcc8b92013-11-07 17:52:51 +00001265 Current->SplitPenalty = 20 * Current->BindingStrength +
1266 splitPenalty(Line, *Current, InFunctionDecl);
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001267
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001268 Current = Current->Next;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001269 }
Daniel Jasper6bee6822013-04-08 20:33:42 +00001270
Manuel Klimek4fe43002013-05-22 12:51:29 +00001271 calculateUnbreakableTailLengths(Line);
Craig Topper2145bc02014-05-09 08:15:10 +00001272 for (Current = Line.First; Current != nullptr; Current = Current->Next) {
Daniel Jasper8de9ed02013-08-22 15:00:41 +00001273 if (Current->Role)
1274 Current->Role->precomputeFormattingInfos(Current);
1275 }
1276
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001277 DEBUG({ printDebugInfo(Line); });
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001278}
1279
Manuel Klimek4fe43002013-05-22 12:51:29 +00001280void TokenAnnotator::calculateUnbreakableTailLengths(AnnotatedLine &Line) {
1281 unsigned UnbreakableTailLength = 0;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001282 FormatToken *Current = Line.Last;
Craig Topper2145bc02014-05-09 08:15:10 +00001283 while (Current) {
Manuel Klimek4fe43002013-05-22 12:51:29 +00001284 Current->UnbreakableTailLength = UnbreakableTailLength;
1285 if (Current->CanBreakBefore ||
1286 Current->isOneOf(tok::comment, tok::string_literal)) {
1287 UnbreakableTailLength = 0;
1288 } else {
1289 UnbreakableTailLength +=
Alexander Kornienko39856b72013-09-10 09:38:25 +00001290 Current->ColumnWidth + Current->SpacesRequiredBefore;
Manuel Klimek4fe43002013-05-22 12:51:29 +00001291 }
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001292 Current = Current->Previous;
Manuel Klimek4fe43002013-05-22 12:51:29 +00001293 }
1294}
1295
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001296unsigned TokenAnnotator::splitPenalty(const AnnotatedLine &Line,
Daniel Jasper4fcc8b92013-11-07 17:52:51 +00001297 const FormatToken &Tok,
1298 bool InFunctionDecl) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001299 const FormatToken &Left = *Tok.Previous;
1300 const FormatToken &Right = Tok;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001301
Daniel Jasperbca4bbe2013-05-28 11:30:49 +00001302 if (Left.is(tok::semi))
1303 return 0;
Daniel Jasper783bac62014-04-15 09:54:30 +00001304 if (Left.is(tok::comma) || (Right.is(tok::identifier) && Right.Next &&
1305 Right.Next->Type == TT_DictLiteral))
Daniel Jasperbca4bbe2013-05-28 11:30:49 +00001306 return 1;
Daniel Jasper7052ce62014-01-19 09:04:08 +00001307 if (Right.is(tok::l_square)) {
1308 if (Style.Language == FormatStyle::LK_Proto)
1309 return 1;
1310 if (Right.Type != TT_ObjCMethodExpr)
1311 return 250;
1312 }
Daniel Jasper6331da02013-07-09 07:43:55 +00001313 if (Right.Type == TT_StartOfName || Right.is(tok::kw_operator)) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001314 if (Line.First->is(tok::kw_for) && Right.PartOfMultiVariableDeclStmt)
Daniel Jasper26d1b1d2013-02-24 18:54:32 +00001315 return 3;
Daniel Jasper40db06a2013-07-11 12:34:23 +00001316 if (Left.Type == TT_StartOfName)
1317 return 20;
Daniel Jasper63af7c42013-12-09 14:40:19 +00001318 if (InFunctionDecl && Right.NestingLevel == 0)
Daniel Jasper26d1b1d2013-02-24 18:54:32 +00001319 return Style.PenaltyReturnTypeOnItsOwnLine;
Daniel Jasper53643062013-08-19 10:16:18 +00001320 return 200;
Daniel Jasper26d1b1d2013-02-24 18:54:32 +00001321 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001322 if (Left.is(tok::equal) && Right.is(tok::l_brace))
1323 return 150;
Daniel Jasper1bc1b502013-07-05 07:58:34 +00001324 if (Left.Type == TT_CastRParen)
1325 return 100;
Daniel Jasper215d6c82014-01-22 08:04:52 +00001326 if (Left.is(tok::coloncolon) ||
1327 (Right.is(tok::period) && Style.Language == FormatStyle::LK_Proto))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001328 return 500;
Daniel Jasper83193602013-04-05 17:22:09 +00001329 if (Left.isOneOf(tok::kw_class, tok::kw_struct))
1330 return 5000;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001331
Daniel Jaspereead02b2013-02-14 08:42:54 +00001332 if (Left.Type == TT_RangeBasedForLoopColon ||
1333 Left.Type == TT_InheritanceColon)
Daniel Jasper16b35622013-02-26 13:18:08 +00001334 return 2;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001335
Daniel Jasper4c6e0052013-08-27 14:24:43 +00001336 if (Right.isMemberAccess()) {
Daniel Jasper4d7a97a2014-01-10 08:40:17 +00001337 if (Left.is(tok::r_paren) && Left.MatchingParen &&
Daniel Jasper36c28ce2013-09-06 08:54:24 +00001338 Left.MatchingParen->ParameterCount > 0)
Daniel Jasper70bc8742013-02-26 13:59:14 +00001339 return 20; // Should be smaller than breaking at a nested comma.
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001340 return 150;
1341 }
1342
Daniel Jaspere3f907f2014-06-02 09:52:08 +00001343 if (Right.Type == TT_TrailingAnnotation &&
1344 (!Right.Next || Right.Next->isNot(tok::l_paren))) {
Daniel Jasper5550de62014-02-17 07:57:46 +00001345 // Generally, breaking before a trailing annotation is bad unless it is
1346 // function-like. It seems to be especially preferable to keep standard
1347 // annotations (i.e. "const", "final" and "override") on the same line.
Daniel Jasper43e6a282013-12-16 15:01:54 +00001348 // Use a slightly higher penalty after ")" so that annotations like
1349 // "const override" are kept together.
Daniel Jasperb48d3af2014-04-09 10:01:49 +00001350 bool is_short_annotation = Right.TokenText.size() < 10;
Daniel Jasperb05a81d2014-05-09 13:11:16 +00001351 return (Left.is(tok::r_paren) ? 100 : 120) + (is_short_annotation ? 50 : 0);
Daniel Jasper43e6a282013-12-16 15:01:54 +00001352 }
Daniel Jasper13c37b32013-05-22 08:28:26 +00001353
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001354 // In for-loops, prefer breaking at ',' and ';'.
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001355 if (Line.First->is(tok::kw_for) && Left.is(tok::equal))
Daniel Jasper37905f72013-02-21 15:00:29 +00001356 return 4;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001357
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001358 // In Objective-C method expressions, prefer breaking before "param:" over
1359 // breaking after it.
Daniel Jasper1ac3e052013-02-05 10:07:47 +00001360 if (Right.Type == TT_ObjCSelectorName)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001361 return 0;
Daniel Jasper1ac3e052013-02-05 10:07:47 +00001362 if (Left.is(tok::colon) && Left.Type == TT_ObjCMethodExpr)
Daniel Jasper4bf0d802013-11-23 14:27:27 +00001363 return Line.MightBeFunctionDecl ? 50 : 500;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001364
Daniel Jasper4fcc8b92013-11-07 17:52:51 +00001365 if (Left.is(tok::l_paren) && InFunctionDecl)
Daniel Jasper6728fc12013-04-11 14:29:13 +00001366 return 100;
Daniel Jasper126153a2013-12-27 06:39:56 +00001367 if (Left.is(tok::equal) && InFunctionDecl)
1368 return 110;
Daniel Jasperc04baae2013-04-10 09:49:49 +00001369 if (Left.opensScope())
Daniel Jasper33b909c2013-10-25 14:29:37 +00001370 return Left.ParameterCount > 1 ? Style.PenaltyBreakBeforeFirstCallParameter
1371 : 19;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001372
Daniel Jasperba9ddb62013-02-06 21:04:05 +00001373 if (Right.is(tok::lessless)) {
1374 if (Left.is(tok::string_literal)) {
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001375 StringRef Content = Left.TokenText;
Daniel Jasper0b1f76b2013-09-29 12:02:57 +00001376 if (Content.startswith("\""))
1377 Content = Content.drop_front(1);
1378 if (Content.endswith("\""))
1379 Content = Content.drop_back(1);
1380 Content = Content.trim();
Daniel Jasperf38a0ac2013-03-14 14:00:17 +00001381 if (Content.size() > 1 &&
1382 (Content.back() == ':' || Content.back() == '='))
Daniel Jasperfa21c072013-07-15 14:33:14 +00001383 return 25;
Daniel Jasperba9ddb62013-02-06 21:04:05 +00001384 }
Daniel Jasper49a94482013-07-15 15:04:42 +00001385 return 1; // Breaking at a << is really cheap.
Daniel Jasperba9ddb62013-02-06 21:04:05 +00001386 }
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001387 if (Left.Type == TT_ConditionalExpr)
Daniel Jasper70bc8742013-02-26 13:59:14 +00001388 return prec::Conditional;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001389 prec::Level Level = Left.getPrecedence();
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001390
1391 if (Level != prec::Unknown)
1392 return Level;
Daniel Jasperf9a84b52013-03-01 16:48:32 +00001393
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001394 return 3;
1395}
1396
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001397bool TokenAnnotator::spaceRequiredBetween(const AnnotatedLine &Line,
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001398 const FormatToken &Left,
1399 const FormatToken &Right) {
Daniel Jasper7052ce62014-01-19 09:04:08 +00001400 if (Style.Language == FormatStyle::LK_Proto) {
Daniel Jasper929b1db2014-01-20 16:47:22 +00001401 if (Right.is(tok::l_paren) &&
1402 (Left.TokenText == "returns" || Left.TokenText == "option"))
Daniel Jasper7052ce62014-01-19 09:04:08 +00001403 return true;
Daniel Jasper0dd52912014-05-19 07:37:07 +00001404 } else if (Style.Language == FormatStyle::LK_JavaScript) {
1405 if (Left.TokenText == "var")
1406 return true;
Daniel Jasper7052ce62014-01-19 09:04:08 +00001407 }
Daniel Jasper166c19b2014-05-06 14:12:21 +00001408 if (Left.is(tok::kw_return) && Right.isNot(tok::semi))
1409 return true;
Daniel Jaspere9beea22014-01-28 15:20:33 +00001410 if (Style.ObjCSpaceAfterProperty && Line.Type == LT_ObjCProperty &&
1411 Left.Tok.getObjCKeywordID() == tok::objc_property)
1412 return true;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001413 if (Right.is(tok::hashhash))
1414 return Left.is(tok::hash);
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001415 if (Left.isOneOf(tok::hashhash, tok::hash))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001416 return Right.is(tok::hash);
Daniel Jasperb55acad2013-08-20 12:36:34 +00001417 if (Left.is(tok::l_paren) && Right.is(tok::r_paren))
1418 return Style.SpaceInEmptyParentheses;
1419 if (Left.is(tok::l_paren) || Right.is(tok::r_paren))
Daniel Jasperf110e202013-08-21 08:39:01 +00001420 return (Right.Type == TT_CastRParen ||
1421 (Left.MatchingParen && Left.MatchingParen->Type == TT_CastRParen))
Daniel Jasperb55acad2013-08-20 12:36:34 +00001422 ? Style.SpacesInCStyleCastParentheses
1423 : Style.SpacesInParentheses;
Daniel Jasperdd978ae2013-10-29 14:52:02 +00001424 if (Style.SpacesInAngles &&
1425 ((Left.Type == TT_TemplateOpener) != (Right.Type == TT_TemplateCloser)))
1426 return true;
Daniel Jasperb55acad2013-08-20 12:36:34 +00001427 if (Right.isOneOf(tok::semi, tok::comma))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001428 return false;
1429 if (Right.is(tok::less) &&
1430 (Left.is(tok::kw_template) ||
1431 (Line.Type == LT_ObjCDecl && Style.ObjCSpaceBeforeProtocolList)))
1432 return true;
1433 if (Left.is(tok::arrow) || Right.is(tok::arrow))
1434 return false;
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001435 if (Left.isOneOf(tok::exclaim, tok::tilde))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001436 return false;
1437 if (Left.is(tok::at) &&
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001438 Right.isOneOf(tok::identifier, tok::string_literal, tok::char_constant,
1439 tok::numeric_constant, tok::l_paren, tok::l_brace,
1440 tok::kw_true, tok::kw_false))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001441 return false;
1442 if (Left.is(tok::coloncolon))
1443 return false;
Daniel Jasper7620b662014-01-08 15:41:13 +00001444 if (Right.is(tok::coloncolon) && Left.isNot(tok::l_brace))
Daniel Jasperfba84ff2013-10-12 05:16:06 +00001445 return (Left.is(tok::less) && Style.Standard == FormatStyle::LS_Cpp03) ||
1446 !Left.isOneOf(tok::identifier, tok::greater, tok::l_paren,
1447 tok::r_paren, tok::less);
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001448 if (Left.is(tok::less) || Right.isOneOf(tok::greater, tok::less))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001449 return false;
Daniel Jasperbafa6b72013-07-01 09:47:25 +00001450 if (Right.is(tok::ellipsis))
Daniel Jasper2d0cd492013-10-20 16:56:16 +00001451 return Left.Tok.isLiteral();
Manuel Klimekbab25fd2013-09-04 08:20:47 +00001452 if (Left.is(tok::l_square) && Right.is(tok::amp))
1453 return false;
Alexander Kornienkoa5151272013-03-12 16:28:18 +00001454 if (Right.Type == TT_PointerOrReference)
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001455 return Left.Tok.isLiteral() ||
Alexander Kornienkoa5151272013-03-12 16:28:18 +00001456 ((Left.Type != TT_PointerOrReference) && Left.isNot(tok::l_paren) &&
1457 !Style.PointerBindsToType);
Daniel Jasper4d03d3b2013-05-28 15:27:10 +00001458 if (Right.Type == TT_FunctionTypeLParen && Left.isNot(tok::l_paren) &&
Daniel Jaspercfda5172013-05-08 14:58:20 +00001459 (Left.Type != TT_PointerOrReference || Style.PointerBindsToType))
1460 return true;
Alexander Kornienkoa5151272013-03-12 16:28:18 +00001461 if (Left.Type == TT_PointerOrReference)
Daniel Jasper022612d2013-07-01 09:34:09 +00001462 return Right.Tok.isLiteral() || Right.Type == TT_BlockComment ||
Daniel Jasperb8914dd2013-03-20 09:53:18 +00001463 ((Right.Type != TT_PointerOrReference) &&
Daniel Jasper6e42b1e2013-04-01 17:13:26 +00001464 Right.isNot(tok::l_paren) && Style.PointerBindsToType &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001465 Left.Previous &&
1466 !Left.Previous->isOneOf(tok::l_paren, tok::coloncolon));
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001467 if (Right.is(tok::star) && Left.is(tok::l_paren))
1468 return false;
Nico Weber2a726b62013-02-10 02:08:05 +00001469 if (Left.is(tok::l_square))
Daniel Jasper1db6c382013-10-22 15:30:28 +00001470 return Left.Type == TT_ArrayInitializerLSquare &&
Daniel Jasperb2e10a52014-01-15 15:09:08 +00001471 Style.SpacesInContainerLiterals && Right.isNot(tok::r_square);
Nico Weber2a726b62013-02-10 02:08:05 +00001472 if (Right.is(tok::r_square))
Daniel Jasperb2e10a52014-01-15 15:09:08 +00001473 return Right.MatchingParen && Style.SpacesInContainerLiterals &&
Daniel Jasper1db6c382013-10-22 15:30:28 +00001474 Right.MatchingParen->Type == TT_ArrayInitializerLSquare;
Daniel Jasper8ddfa842013-08-30 10:36:58 +00001475 if (Right.is(tok::l_square) && Right.Type != TT_ObjCMethodExpr &&
Daniel Jasper89519082014-05-09 10:26:08 +00001476 Right.Type != TT_LambdaLSquare && Left.isNot(tok::numeric_constant) &&
1477 Left.Type != TT_DictLiteral)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001478 return false;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001479 if (Left.is(tok::colon))
1480 return Left.Type != TT_ObjCMethodExpr;
Daniel Jasper484033b2014-05-06 14:41:29 +00001481 if (Left.Type == TT_BlockComment)
1482 return !Left.TokenText.endswith("=*/");
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001483 if (Right.is(tok::l_paren)) {
Daniel Jasper559b63c2014-01-28 20:13:43 +00001484 if (Left.is(tok::r_paren) && Left.Type == TT_AttributeParen)
Daniel Jasperee6d6502013-07-17 20:25:02 +00001485 return true;
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001486 return Line.Type == LT_ObjCDecl ||
Daniel Jasper166c19b2014-05-06 14:12:21 +00001487 Left.isOneOf(tok::kw_new, tok::kw_delete, tok::semi) ||
Alexander Kornienkofdca83d2013-12-10 10:18:34 +00001488 (Style.SpaceBeforeParens != FormatStyle::SBPO_Never &&
Daniel Jaspere1e43192014-04-01 12:55:11 +00001489 (Left.isOneOf(tok::kw_if, tok::kw_for, tok::kw_while,
Daniel Jasper031e2402014-04-28 07:48:36 +00001490 tok::kw_switch, tok::kw_catch, tok::kw_case) ||
Daniel Jaspere1e43192014-04-01 12:55:11 +00001491 Left.IsForEachMacro)) ||
Alexander Kornienkofdca83d2013-12-10 10:18:34 +00001492 (Style.SpaceBeforeParens == FormatStyle::SBPO_Always &&
1493 Left.isOneOf(tok::identifier, tok::kw___attribute) &&
1494 Line.Type != LT_PreprocessorDirective);
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001495 }
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001496 if (Left.is(tok::at) && Right.Tok.getObjCKeywordID() != tok::objc_not_keyword)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001497 return false;
1498 if (Left.is(tok::l_brace) && Right.is(tok::r_brace))
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001499 return !Left.Children.empty(); // No spaces in "{}".
Daniel Jasper1a148b42014-01-05 13:23:23 +00001500 if ((Left.is(tok::l_brace) && Left.BlockKind != BK_Block) ||
1501 (Right.is(tok::r_brace) && Right.MatchingParen &&
1502 Right.MatchingParen->BlockKind != BK_Block))
Daniel Jasper6ab54682013-07-16 18:22:10 +00001503 return !Style.Cpp11BracedListStyle;
Daniel Jasper5bd0b9e2013-05-23 18:05:18 +00001504 if (Right.Type == TT_UnaryOperator)
1505 return !Left.isOneOf(tok::l_paren, tok::l_square, tok::at) &&
1506 (Left.isNot(tok::colon) || Left.Type != TT_ObjCMethodExpr);
Daniel Jasper4afc6b32014-06-02 10:57:55 +00001507 if ((Left.isOneOf(tok::identifier, tok::greater, tok::r_square,
1508 tok::r_paren) ||
Daniel Jasper7a2d60e2014-05-07 07:59:03 +00001509 Left.isSimpleTypeSpecifier()) &&
Manuel Klimekbab25fd2013-09-04 08:20:47 +00001510 Right.is(tok::l_brace) && Right.getNextNonComment() &&
1511 Right.BlockKind != BK_Block)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001512 return false;
Daniel Jasperbca4bbe2013-05-28 11:30:49 +00001513 if (Left.is(tok::period) || Right.is(tok::period))
1514 return false;
Alexander Kornienkod8d47fa2013-09-10 13:41:43 +00001515 if (Right.is(tok::hash) && Left.is(tok::identifier) && Left.TokenText == "L")
1516 return false;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001517 return true;
1518}
1519
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001520bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line,
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001521 const FormatToken &Tok) {
1522 if (Tok.Tok.getIdentifierInfo() && Tok.Previous->Tok.getIdentifierInfo())
Daniel Jasper35d2dc72013-02-11 08:01:18 +00001523 return true; // Never ever merge two identifiers.
Daniel Jasper877615c2013-10-11 19:45:02 +00001524 if (Tok.Previous->Type == TT_ImplicitStringLiteral)
1525 return Tok.WhitespaceRange.getBegin() != Tok.WhitespaceRange.getEnd();
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001526 if (Line.Type == LT_ObjCMethodDecl) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001527 if (Tok.Previous->Type == TT_ObjCMethodSpecifier)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001528 return true;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001529 if (Tok.Previous->is(tok::r_paren) && Tok.is(tok::identifier))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001530 // Don't space between ')' and <id>
1531 return false;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001532 }
1533 if (Line.Type == LT_ObjCProperty &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001534 (Tok.is(tok::equal) || Tok.Previous->is(tok::equal)))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001535 return false;
1536
Daniel Jasper6cdec7c2013-07-09 14:36:48 +00001537 if (Tok.Type == TT_TrailingReturnArrow ||
1538 Tok.Previous->Type == TT_TrailingReturnArrow)
1539 return true;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001540 if (Tok.Previous->is(tok::comma))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001541 return true;
Daniel Jasperff6c3a92013-02-28 13:40:17 +00001542 if (Tok.is(tok::comma))
1543 return false;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001544 if (Tok.Type == TT_CtorInitializerColon || Tok.Type == TT_ObjCBlockLParen)
1545 return true;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001546 if (Tok.Previous->Tok.is(tok::kw_operator))
Daniel Jasperedc5f092013-10-29 12:24:23 +00001547 return Tok.is(tok::coloncolon);
Daniel Jasper35d2dc72013-02-11 08:01:18 +00001548 if (Tok.Type == TT_OverloadedOperatorLParen)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001549 return false;
1550 if (Tok.is(tok::colon))
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001551 return !Line.First->isOneOf(tok::kw_case, tok::kw_default) &&
Daniel Jasperb05a81d2014-05-09 13:11:16 +00001552 Tok.getNextNonComment() && Tok.Type != TT_ObjCMethodExpr &&
1553 !Tok.Previous->is(tok::question) &&
Daniel Jasperb2e10a52014-01-15 15:09:08 +00001554 (Tok.Type != TT_DictLiteral || Style.SpacesInContainerLiterals);
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001555 if (Tok.Previous->Type == TT_UnaryOperator ||
1556 Tok.Previous->Type == TT_CastRParen)
Daniel Jasperff974ab2014-01-25 09:16:02 +00001557 return Tok.Type == TT_BinaryOperator;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001558 if (Tok.Previous->is(tok::greater) && Tok.is(tok::greater)) {
Daniel Jasper400adc62013-02-08 15:28:42 +00001559 return Tok.Type == TT_TemplateCloser &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001560 Tok.Previous->Type == TT_TemplateCloser &&
Daniel Jasperdd978ae2013-10-29 14:52:02 +00001561 (Style.Standard != FormatStyle::LS_Cpp11 || Style.SpacesInAngles);
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001562 }
Alexander Kornienko674be0a2013-03-20 16:41:56 +00001563 if (Tok.isOneOf(tok::arrowstar, tok::periodstar) ||
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001564 Tok.Previous->isOneOf(tok::arrowstar, tok::periodstar))
Daniel Jasperff6c3a92013-02-28 13:40:17 +00001565 return false;
Daniel Jasperd94bff32013-09-25 15:15:02 +00001566 if (!Style.SpaceBeforeAssignmentOperators &&
1567 Tok.getPrecedence() == prec::Assignment)
1568 return false;
Daniel Jasper9613c812013-08-07 16:29:23 +00001569 if ((Tok.Type == TT_BinaryOperator && !Tok.Previous->is(tok::l_paren)) ||
Daniel Jasperc0d606a2014-04-14 11:08:45 +00001570 Tok.Previous->Type == TT_BinaryOperator ||
1571 Tok.Previous->Type == TT_ConditionalExpr)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001572 return true;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001573 if (Tok.Previous->Type == TT_TemplateCloser && Tok.is(tok::l_paren))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001574 return false;
Daniel Jaspered8f1c62013-08-28 08:24:04 +00001575 if (Tok.is(tok::less) && Tok.Previous->isNot(tok::l_paren) &&
1576 Line.First->is(tok::hash))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001577 return true;
1578 if (Tok.Type == TT_TrailingUnaryOperator)
1579 return false;
Daniel Jasperf9ae3122014-05-08 07:01:45 +00001580 if (Tok.Previous->Type == TT_RegexLiteral)
1581 return false;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001582 return spaceRequiredBetween(Line, *Tok.Previous, Tok);
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001583}
1584
Daniel Jaspere18ff372014-06-02 10:17:32 +00001585// Returns 'true' if 'Tok' is a brace we'd want to break before in Allman style.
1586static bool isAllmanBrace(const FormatToken &Tok) {
1587 return Tok.is(tok::l_brace) && Tok.BlockKind == BK_Block &&
1588 Tok.Type != TT_ObjCBlockLBrace && Tok.Type != TT_DictLiteral;
1589}
1590
Daniel Jasperfb81b092013-09-17 09:52:48 +00001591bool TokenAnnotator::mustBreakBefore(const AnnotatedLine &Line,
1592 const FormatToken &Right) {
Daniel Jaspera125d532014-03-21 12:38:57 +00001593 const FormatToken &Left = *Right.Previous;
Daniel Jasperfb81b092013-09-17 09:52:48 +00001594 if (Right.is(tok::comment)) {
Daniel Jasper5a611392013-12-19 21:41:37 +00001595 return Right.Previous->BlockKind != BK_BracedInit &&
Daniel Jasperf6c7c182014-01-13 14:10:04 +00001596 Right.Previous->Type != TT_CtorInitializerColon &&
Manuel Klimek1fcbe672014-04-11 12:27:47 +00001597 (Right.NewlinesBefore > 0 && Right.HasUnescapedNewline);
Daniel Jasperfb81b092013-09-17 09:52:48 +00001598 } else if (Right.Previous->isTrailingComment() ||
Daniel Jasper04b6a082013-12-20 06:22:01 +00001599 (Right.isStringLiteral() && Right.Previous->isStringLiteral())) {
Daniel Jasperfb81b092013-09-17 09:52:48 +00001600 return true;
1601 } else if (Right.Previous->IsUnterminatedLiteral) {
1602 return true;
1603 } else if (Right.is(tok::lessless) && Right.Next &&
1604 Right.Previous->is(tok::string_literal) &&
1605 Right.Next->is(tok::string_literal)) {
1606 return true;
1607 } else if (Right.Previous->ClosesTemplateDeclaration &&
1608 Right.Previous->MatchingParen &&
Daniel Jasper63af7c42013-12-09 14:40:19 +00001609 Right.Previous->MatchingParen->NestingLevel == 0 &&
Daniel Jasperfb81b092013-09-17 09:52:48 +00001610 Style.AlwaysBreakTemplateDeclarations) {
Daniel Jasperfb81b092013-09-17 09:52:48 +00001611 return true;
Alexander Kornienkoa594ba82013-12-16 14:35:51 +00001612 } else if ((Right.Type == TT_CtorInitializerComma ||
1613 Right.Type == TT_CtorInitializerColon) &&
Daniel Jasperec01cd62013-10-08 05:11:18 +00001614 Style.BreakConstructorInitializersBeforeComma &&
1615 !Style.ConstructorInitializerAllOnOneLineOrOnePerLine) {
Daniel Jasperfb81b092013-09-17 09:52:48 +00001616 return true;
Daniel Jasperc39b56f2013-12-16 07:23:08 +00001617 } else if (Right.is(tok::string_literal) &&
1618 Right.TokenText.startswith("R\"")) {
1619 // Raw string literals are special wrt. line breaks. The author has made a
1620 // deliberate choice and might have aligned the contents of the string
1621 // literal accordingly. Thus, we try keep existing line breaks.
1622 return Right.NewlinesBefore > 0;
Daniel Jasper6e58fee2014-01-29 18:43:40 +00001623 } else if (Right.Previous->is(tok::l_brace) && Right.NestingLevel == 1 &&
Daniel Jasper7052ce62014-01-19 09:04:08 +00001624 Style.Language == FormatStyle::LK_Proto) {
1625 // Don't enums onto single lines in protocol buffers.
1626 return true;
Daniel Jaspere18ff372014-06-02 10:17:32 +00001627 } else if (isAllmanBrace(Left) || isAllmanBrace(Right)) {
1628 return Style.BreakBeforeBraces == FormatStyle::BS_Allman ||
1629 Style.BreakBeforeBraces == FormatStyle::BS_GNU;
Daniel Jasperfb81b092013-09-17 09:52:48 +00001630 }
Daniel Jasperb175d572014-04-09 09:53:23 +00001631
Daniel Jasperf9fc2152014-04-09 13:18:49 +00001632 // If the last token before a '}' is a comma or a comment, the intention is to
1633 // insert a line break after it in order to make shuffling around entries
1634 // easier.
Daniel Jasperb175d572014-04-09 09:53:23 +00001635 const FormatToken *BeforeClosingBrace = nullptr;
1636 if (Left.is(tok::l_brace) && Left.MatchingParen)
Daniel Jasperf9fc2152014-04-09 13:18:49 +00001637 BeforeClosingBrace = Left.MatchingParen->Previous;
Daniel Jasperb175d572014-04-09 09:53:23 +00001638 else if (Right.is(tok::r_brace))
Daniel Jasperf9fc2152014-04-09 13:18:49 +00001639 BeforeClosingBrace = Right.Previous;
1640 if (BeforeClosingBrace &&
1641 BeforeClosingBrace->isOneOf(tok::comma, tok::comment))
Daniel Jasperb175d572014-04-09 09:53:23 +00001642 return true;
1643
Daniel Jasper49802ef2014-05-22 09:10:04 +00001644 if (Style.Language == FormatStyle::LK_JavaScript) {
1645 // FIXME: This might apply to other languages and token kinds.
1646 if (Right.is(tok::char_constant) && Left.is(tok::plus) && Left.Previous &&
1647 Left.Previous->is(tok::char_constant))
1648 return true;
1649 }
1650
Daniel Jasperfb81b092013-09-17 09:52:48 +00001651 return false;
1652}
1653
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001654bool TokenAnnotator::canBreakBefore(const AnnotatedLine &Line,
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001655 const FormatToken &Right) {
1656 const FormatToken &Left = *Right.Previous;
Daniel Jasper4bf0d802013-11-23 14:27:27 +00001657 if (Left.is(tok::at))
1658 return false;
Daniel Jasper437c3f52014-04-28 07:34:48 +00001659 if (Left.Tok.getObjCKeywordID() == tok::objc_interface)
1660 return false;
Daniel Jasper6331da02013-07-09 07:43:55 +00001661 if (Right.Type == TT_StartOfName || Right.is(tok::kw_operator))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001662 return true;
Daniel Jasper165b29e2013-11-08 00:57:11 +00001663 if (Right.isTrailingComment())
1664 // We rely on MustBreakBefore being set correctly here as we should not
1665 // change the "binding" behavior of a comment.
Daniel Jasper5a611392013-12-19 21:41:37 +00001666 // The first comment in a braced lists is always interpreted as belonging to
1667 // the first list element. Otherwise, it should be placed outside of the
1668 // list.
1669 return Left.BlockKind == BK_BracedInit;
Daniel Jasper165b29e2013-11-08 00:57:11 +00001670 if (Left.is(tok::question) && Right.is(tok::colon))
1671 return false;
1672 if (Right.Type == TT_ConditionalExpr || Right.is(tok::question))
1673 return Style.BreakBeforeTernaryOperators;
1674 if (Left.Type == TT_ConditionalExpr || Left.is(tok::question))
1675 return !Style.BreakBeforeTernaryOperators;
Daniel Jasper3a122c02014-02-14 18:22:40 +00001676 if (Right.Type == TT_InheritanceColon)
1677 return true;
Daniel Jasperd39312ec2014-05-28 10:09:11 +00001678 if (Right.is(tok::colon) && (Right.Type != TT_CtorInitializerColon &&
1679 Right.Type != TT_InlineASMColon))
1680 return false;
Nico Weberced7d412013-05-26 05:39:26 +00001681 if (Left.is(tok::colon) &&
Daniel Jasperb596fb22013-10-24 10:31:50 +00001682 (Left.Type == TT_DictLiteral || Left.Type == TT_ObjCMethodExpr))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001683 return true;
Daniel Jasper1ac3e052013-02-05 10:07:47 +00001684 if (Right.Type == TT_ObjCSelectorName)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001685 return true;
Daniel Jasper9688ff12013-08-01 13:46:58 +00001686 if (Left.is(tok::r_paren) && Line.Type == LT_ObjCProperty)
1687 return true;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001688 if (Left.ClosesTemplateDeclaration)
1689 return true;
Daniel Jaspereead02b2013-02-14 08:42:54 +00001690 if (Right.Type == TT_RangeBasedForLoopColon ||
Daniel Jasperd215b8b2013-08-28 07:27:35 +00001691 Right.Type == TT_OverloadedOperatorLParen ||
1692 Right.Type == TT_OverloadedOperator)
Daniel Jaspereead02b2013-02-14 08:42:54 +00001693 return false;
Daniel Jaspera61aefb2013-05-06 06:45:09 +00001694 if (Left.Type == TT_RangeBasedForLoopColon)
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001695 return true;
Daniel Jasper37905f72013-02-21 15:00:29 +00001696 if (Right.Type == TT_RangeBasedForLoopColon)
1697 return false;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001698 if (Left.Type == TT_PointerOrReference || Left.Type == TT_TemplateCloser ||
Daniel Jasper165b29e2013-11-08 00:57:11 +00001699 Left.Type == TT_UnaryOperator || Left.is(tok::kw_operator))
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001700 return false;
1701 if (Left.is(tok::equal) && Line.Type == LT_VirtualFunctionDecl)
1702 return false;
Daniel Jasper559b63c2014-01-28 20:13:43 +00001703 if (Left.is(tok::l_paren) && Left.Type == TT_AttributeParen)
1704 return false;
1705 if (Left.is(tok::l_paren) && Left.Previous &&
1706 (Left.Previous->Type == TT_BinaryOperator ||
Daniel Jasper8acf8222014-05-07 09:23:05 +00001707 Left.Previous->Type == TT_CastRParen || Left.Previous->is(tok::kw_if)))
Daniel Jasper559b63c2014-01-28 20:13:43 +00001708 return false;
Daniel Jasper98857842013-10-30 13:54:53 +00001709 if (Right.Type == TT_ImplicitStringLiteral)
1710 return false;
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001711
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001712 if (Right.is(tok::r_paren) || Right.Type == TT_TemplateCloser)
1713 return false;
1714
Daniel Jasper13c37b32013-05-22 08:28:26 +00001715 // We only break before r_brace if there was a corresponding break before
1716 // the l_brace, which is tracked by BreakBeforeClosingBrace.
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001717 if (Right.is(tok::r_brace))
1718 return Right.MatchingParen && Right.MatchingParen->BlockKind == BK_Block;
Daniel Jasper13c37b32013-05-22 08:28:26 +00001719
Daniel Jasperf9a09062014-04-09 10:29:11 +00001720 // Allow breaking after a trailing annotation, e.g. after a method
1721 // declaration.
1722 if (Left.Type == TT_TrailingAnnotation)
1723 return !Right.isOneOf(tok::l_brace, tok::semi, tok::equal, tok::l_paren,
1724 tok::less, tok::coloncolon);
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001725
Daniel Jasperbf4755b2013-03-14 09:50:46 +00001726 if (Right.is(tok::kw___attribute))
1727 return true;
1728
Daniel Jasperaf5ba0e2013-02-23 07:46:38 +00001729 if (Left.is(tok::identifier) && Right.is(tok::string_literal))
1730 return true;
Daniel Jaspere33d4af2013-07-26 16:56:36 +00001731
Daniel Jasper783bac62014-04-15 09:54:30 +00001732 if (Right.is(tok::identifier) && Right.Next &&
1733 Right.Next->Type == TT_DictLiteral)
1734 return true;
1735
Daniel Jaspere33d4af2013-07-26 16:56:36 +00001736 if (Left.Type == TT_CtorInitializerComma &&
1737 Style.BreakConstructorInitializersBeforeComma)
1738 return false;
Daniel Jasperec01cd62013-10-08 05:11:18 +00001739 if (Right.Type == TT_CtorInitializerComma &&
1740 Style.BreakConstructorInitializersBeforeComma)
1741 return true;
Daniel Jasper0de8efa2013-09-17 08:15:46 +00001742 if (Left.is(tok::greater) && Right.is(tok::greater) &&
1743 Left.Type != TT_TemplateCloser)
1744 return false;
Daniel Jasper0a1e5ac2014-05-13 08:01:47 +00001745 if (Right.Type == TT_BinaryOperator && Style.BreakBeforeBinaryOperators)
1746 return true;
Daniel Jasper1db6c382013-10-22 15:30:28 +00001747 if (Left.Type == TT_ArrayInitializerLSquare)
1748 return true;
Daniel Jaspere33d4af2013-07-26 16:56:36 +00001749 return (Left.isBinaryOperator() && Left.isNot(tok::lessless) &&
1750 !Style.BreakBeforeBinaryOperators) ||
Daniel Jasper83193602013-04-05 17:22:09 +00001751 Left.isOneOf(tok::comma, tok::coloncolon, tok::semi, tok::l_brace,
1752 tok::kw_class, tok::kw_struct) ||
Daniel Jasper1db6c382013-10-22 15:30:28 +00001753 Right.isOneOf(tok::lessless, tok::arrow, tok::period, tok::colon,
1754 tok::l_square, tok::at) ||
Daniel Jasper1bc1b502013-07-05 07:58:34 +00001755 (Left.is(tok::r_paren) &&
Daniel Jasper559b63c2014-01-28 20:13:43 +00001756 Right.isOneOf(tok::identifier, tok::kw_const)) ||
Daniel Jasper1db6c382013-10-22 15:30:28 +00001757 (Left.is(tok::l_paren) && !Right.is(tok::r_paren));
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001758}
1759
Daniel Jasper6bee6822013-04-08 20:33:42 +00001760void TokenAnnotator::printDebugInfo(const AnnotatedLine &Line) {
1761 llvm::errs() << "AnnotatedTokens:\n";
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001762 const FormatToken *Tok = Line.First;
Daniel Jasper6bee6822013-04-08 20:33:42 +00001763 while (Tok) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001764 llvm::errs() << " M=" << Tok->MustBreakBefore
Daniel Jasperb10cbc42013-07-10 14:02:49 +00001765 << " C=" << Tok->CanBreakBefore << " T=" << Tok->Type
1766 << " S=" << Tok->SpacesRequiredBefore
1767 << " P=" << Tok->SplitPenalty << " Name=" << Tok->Tok.getName()
Manuel Klimek71814b42013-10-11 21:25:45 +00001768 << " L=" << Tok->TotalLength << " PPK=" << Tok->PackingKind
1769 << " FakeLParens=";
Daniel Jasper6bee6822013-04-08 20:33:42 +00001770 for (unsigned i = 0, e = Tok->FakeLParens.size(); i != e; ++i)
1771 llvm::errs() << Tok->FakeLParens[i] << "/";
1772 llvm::errs() << " FakeRParens=" << Tok->FakeRParens << "\n";
Daniel Jasperb05a81d2014-05-09 13:11:16 +00001773 if (!Tok->Next)
Manuel Klimek71814b42013-10-11 21:25:45 +00001774 assert(Tok == Line.Last);
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001775 Tok = Tok->Next;
Daniel Jasper6bee6822013-04-08 20:33:42 +00001776 }
1777 llvm::errs() << "----\n";
1778}
1779
Daniel Jasper7a6d09b2013-01-29 21:01:14 +00001780} // namespace format
1781} // namespace clang