blob: ba5bf03a63464ed0d98ba711532313646a8aab7c [file] [log] [blame]
Daniel Jasper8de9ed02013-08-22 15:00:41 +00001//===--- FormatToken.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 specific functions of \c FormatTokens and their
12/// roles.
13///
14//===----------------------------------------------------------------------===//
15
Daniel Jasperd89ae9d2015-09-23 08:30:47 +000016#include "FormatToken.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000017#include "ContinuationIndenter.h"
Daniel Jasper8de9ed02013-08-22 15:00:41 +000018#include "llvm/ADT/SmallVector.h"
19#include "llvm/Support/Debug.h"
Daniel Jasperd9ff0352015-05-11 13:52:13 +000020#include <climits>
Daniel Jasper8de9ed02013-08-22 15:00:41 +000021
22namespace clang {
23namespace format {
24
Birunthan Mohanathas67d81c82015-07-13 16:19:34 +000025const char *getTokenTypeName(TokenType Type) {
26 static const char *const TokNames[] = {
27#define TYPE(X) #X,
28LIST_TOKEN_TYPES
29#undef TYPE
30 nullptr
31 };
32
33 if (Type < NUM_TOKEN_TYPES)
34 return TokNames[Type];
35 llvm_unreachable("unknown TokenType");
36 return nullptr;
37}
38
Daniel Jaspercb51cf42014-01-16 09:11:55 +000039// FIXME: This is copy&pasted from Sema. Put it in a common place and remove
40// duplication.
41bool FormatToken::isSimpleTypeSpecifier() const {
42 switch (Tok.getKind()) {
43 case tok::kw_short:
44 case tok::kw_long:
45 case tok::kw___int64:
46 case tok::kw___int128:
47 case tok::kw_signed:
48 case tok::kw_unsigned:
49 case tok::kw_void:
50 case tok::kw_char:
51 case tok::kw_int:
52 case tok::kw_half:
53 case tok::kw_float:
54 case tok::kw_double:
Nemanja Ivanovicbb1ea2d2016-05-09 08:52:33 +000055 case tok::kw___float128:
Daniel Jaspercb51cf42014-01-16 09:11:55 +000056 case tok::kw_wchar_t:
57 case tok::kw_bool:
58 case tok::kw___underlying_type:
59 case tok::annot_typename:
60 case tok::kw_char16_t:
61 case tok::kw_char32_t:
62 case tok::kw_typeof:
63 case tok::kw_decltype:
64 return true;
65 default:
66 return false;
67 }
68}
69
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +000070TokenRole::~TokenRole() {}
Daniel Jasper8de9ed02013-08-22 15:00:41 +000071
72void TokenRole::precomputeFormattingInfos(const FormatToken *Token) {}
73
Daniel Jasper01603472014-01-09 13:42:56 +000074unsigned CommaSeparatedList::formatAfterToken(LineState &State,
75 ContinuationIndenter *Indenter,
76 bool DryRun) {
Daniel Jasper60c27072015-05-13 08:16:00 +000077 if (State.NextToken == nullptr || !State.NextToken->Previous)
Daniel Jasper8de9ed02013-08-22 15:00:41 +000078 return 0;
79
Daniel Jasper083d1702016-12-21 17:02:06 +000080 if (Formats.size() == 1)
81 return 0; // Handled by formatFromToken
82
Daniel Jasper8de9ed02013-08-22 15:00:41 +000083 // Ensure that we start on the opening brace.
Daniel Jasper60c27072015-05-13 08:16:00 +000084 const FormatToken *LBrace =
85 State.NextToken->Previous->getPreviousNonComment();
Daniel Jaspere2deb592015-12-22 15:48:15 +000086 if (!LBrace || !LBrace->isOneOf(tok::l_brace, TT_ArrayInitializerLSquare) ||
87 LBrace->BlockKind == BK_Block || LBrace->Type == TT_DictLiteral ||
Daniel Jasper8de9ed02013-08-22 15:00:41 +000088 LBrace->Next->Type == TT_DesignatedInitializerPeriod)
89 return 0;
90
Daniel Jaspercb3f0ed2013-08-27 08:43:47 +000091 // Calculate the number of code points we have to format this list. As the
92 // first token is already placed, we have to subtract it.
Daniel Jasperb05a81d2014-05-09 13:11:16 +000093 unsigned RemainingCodePoints =
94 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth;
Daniel Jaspercb3f0ed2013-08-27 08:43:47 +000095
Daniel Jasper8de9ed02013-08-22 15:00:41 +000096 // Find the best ColumnFormat, i.e. the best number of columns to use.
Daniel Jaspercb3f0ed2013-08-27 08:43:47 +000097 const ColumnFormat *Format = getColumnFormat(RemainingCodePoints);
Daniel Jasperff8d61362016-12-19 08:40:56 +000098
Daniel Jasper1a1a2ab2013-11-23 10:22:59 +000099 // If no ColumnFormat can be used, the braced list would generally be
100 // bin-packed. Add a severe penalty to this so that column layouts are
Alp Tokerf6a24ce2013-12-05 16:25:25 +0000101 // preferred if possible.
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000102 if (!Format)
Daniel Jasper1a1a2ab2013-11-23 10:22:59 +0000103 return 10000;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000104
105 // Format the entire list.
106 unsigned Penalty = 0;
107 unsigned Column = 0;
108 unsigned Item = 0;
109 while (State.NextToken != LBrace->MatchingParen) {
110 bool NewLine = false;
111 unsigned ExtraSpaces = 0;
112
113 // If the previous token was one of our commas, we are now on the next item.
114 if (Item < Commas.size() && State.NextToken->Previous == Commas[Item]) {
115 if (!State.NextToken->isTrailingComment()) {
116 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item];
117 ++Column;
118 }
119 ++Item;
120 }
121
122 if (Column == Format->Columns || State.NextToken->MustBreakBefore) {
123 Column = 0;
124 NewLine = true;
125 }
126
127 // Place token using the continuation indenter and store the penalty.
128 Penalty += Indenter->addTokenToState(State, NewLine, DryRun, ExtraSpaces);
129 }
130 return Penalty;
131}
132
Daniel Jasper01603472014-01-09 13:42:56 +0000133unsigned CommaSeparatedList::formatFromToken(LineState &State,
134 ContinuationIndenter *Indenter,
135 bool DryRun) {
Daniel Jasper083d1702016-12-21 17:02:06 +0000136 // Formatting with 1 Column isn't really a column layout, so we don't need the
137 // special logic here. We can just avoid bin packing any of the parameters.
138 if (Formats.size() == 1 || HasNestedBracedList)
Daniel Jasper01603472014-01-09 13:42:56 +0000139 State.Stack.back().AvoidBinPacking = true;
140 return 0;
141}
142
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000143// Returns the lengths in code points between Begin and End (both included),
144// assuming that the entire sequence is put on a single line.
145static unsigned CodePointsBetween(const FormatToken *Begin,
146 const FormatToken *End) {
Daniel Jasper8863ada2013-08-26 08:10:17 +0000147 assert(End->TotalLength >= Begin->TotalLength);
Alexander Kornienko39856b72013-09-10 09:38:25 +0000148 return End->TotalLength - Begin->TotalLength + Begin->ColumnWidth;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000149}
150
151void CommaSeparatedList::precomputeFormattingInfos(const FormatToken *Token) {
Daniel Jasper8863ada2013-08-26 08:10:17 +0000152 // FIXME: At some point we might want to do this for other lists, too.
Daniel Jaspere2deb592015-12-22 15:48:15 +0000153 if (!Token->MatchingParen ||
154 !Token->isOneOf(tok::l_brace, TT_ArrayInitializerLSquare))
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000155 return;
156
Daniel Jasper839922e2014-08-13 08:46:21 +0000157 // In C++11 braced list style, we should not format in columns unless they
Daniel Jasper08434342015-05-26 07:26:26 +0000158 // have many items (20 or more) or we allow bin-packing of function call
159 // arguments.
160 if (Style.Cpp11BracedListStyle && !Style.BinPackArguments &&
Daniel Jasper839922e2014-08-13 08:46:21 +0000161 Commas.size() < 19)
Daniel Jasperae8e0d82014-04-17 11:32:02 +0000162 return;
163
Daniel Jaspere2deb592015-12-22 15:48:15 +0000164 // Limit column layout for JavaScript array initializers to 20 or more items
165 // for now to introduce it carefully. We can become more aggressive if this
166 // necessary.
167 if (Token->is(TT_ArrayInitializerLSquare) && Commas.size() < 19)
168 return;
169
Daniel Jasper13404da2014-11-27 14:40:48 +0000170 // Column format doesn't really make sense if we don't align after brackets.
Daniel Jasper6501f7e2015-10-27 12:38:37 +0000171 if (Style.AlignAfterOpenBracket == FormatStyle::BAS_DontAlign)
Daniel Jasper13404da2014-11-27 14:40:48 +0000172 return;
173
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000174 FormatToken *ItemBegin = Token->Next;
Daniel Jasper60c27072015-05-13 08:16:00 +0000175 while (ItemBegin->isTrailingComment())
176 ItemBegin = ItemBegin->Next;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000177 SmallVector<bool, 8> MustBreakBeforeItem;
178
179 // The lengths of an item if it is put at the end of the line. This includes
180 // trailing comments which are otherwise ignored for column alignment.
181 SmallVector<unsigned, 8> EndOfLineItemLength;
182
Daniel Jasper731dde92015-05-15 09:41:59 +0000183 bool HasSeparatingComment = false;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000184 for (unsigned i = 0, e = Commas.size() + 1; i != e; ++i) {
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000185 // Skip comments on their own line.
Daniel Jasper731dde92015-05-15 09:41:59 +0000186 while (ItemBegin->HasUnescapedNewline && ItemBegin->isTrailingComment()) {
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000187 ItemBegin = ItemBegin->Next;
Daniel Jasper731dde92015-05-15 09:41:59 +0000188 HasSeparatingComment = i > 0;
189 }
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000190
191 MustBreakBeforeItem.push_back(ItemBegin->MustBreakBefore);
Daniel Jasper7c72d9f2013-10-24 14:14:49 +0000192 if (ItemBegin->is(tok::l_brace))
193 HasNestedBracedList = true;
Craig Topper2145bc02014-05-09 08:15:10 +0000194 const FormatToken *ItemEnd = nullptr;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000195 if (i == Commas.size()) {
196 ItemEnd = Token->MatchingParen;
197 const FormatToken *NonCommentEnd = ItemEnd->getPreviousNonComment();
198 ItemLengths.push_back(CodePointsBetween(ItemBegin, NonCommentEnd));
Daniel Jasper00fb2a12015-07-15 16:26:47 +0000199 if (Style.Cpp11BracedListStyle &&
200 !ItemEnd->Previous->isTrailingComment()) {
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000201 // In Cpp11 braced list style, the } and possibly other subsequent
202 // tokens will need to stay on a line with the last element.
203 while (ItemEnd->Next && !ItemEnd->Next->CanBreakBefore)
204 ItemEnd = ItemEnd->Next;
205 } else {
206 // In other braced lists styles, the "}" can be wrapped to the new line.
207 ItemEnd = Token->MatchingParen->Previous;
208 }
209 } else {
210 ItemEnd = Commas[i];
211 // The comma is counted as part of the item when calculating the length.
Daniel Jasper8863ada2013-08-26 08:10:17 +0000212 ItemLengths.push_back(CodePointsBetween(ItemBegin, ItemEnd));
Daniel Jasper540dbe22014-09-19 08:28:43 +0000213
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000214 // Consume trailing comments so the are included in EndOfLineItemLength.
215 if (ItemEnd->Next && !ItemEnd->Next->HasUnescapedNewline &&
216 ItemEnd->Next->isTrailingComment())
217 ItemEnd = ItemEnd->Next;
218 }
219 EndOfLineItemLength.push_back(CodePointsBetween(ItemBegin, ItemEnd));
Daniel Jasper8863ada2013-08-26 08:10:17 +0000220 // If there is a trailing comma in the list, the next item will start at the
221 // closing brace. Don't create an extra item for this.
222 if (ItemEnd->getNextNonComment() == Token->MatchingParen)
223 break;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000224 ItemBegin = ItemEnd->Next;
225 }
226
Daniel Jasper55582072016-01-04 07:30:44 +0000227 // Don't use column layout for lists with few elements and in presence of
228 // separating comments.
229 if (Commas.size() < 5 || HasSeparatingComment)
230 return;
231
232 if (Token->NestingLevel != 0 && Token->is(tok::l_brace) && Commas.size() < 19)
Daniel Jasper01603472014-01-09 13:42:56 +0000233 return;
234
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000235 // We can never place more than ColumnLimit / 3 items in a row (because of the
236 // spaces and the comma).
Benjamin Kramer3aa55db2015-06-12 13:06:57 +0000237 unsigned MaxItems = Style.ColumnLimit / 3;
238 std::vector<unsigned> MinSizeInColumn;
239 MinSizeInColumn.reserve(MaxItems);
240 for (unsigned Columns = 1; Columns <= MaxItems; ++Columns) {
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000241 ColumnFormat Format;
242 Format.Columns = Columns;
243 Format.ColumnSizes.resize(Columns);
Benjamin Kramer3aa55db2015-06-12 13:06:57 +0000244 MinSizeInColumn.assign(Columns, UINT_MAX);
Daniel Jasper7c72d9f2013-10-24 14:14:49 +0000245 Format.LineCount = 1;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000246 bool HasRowWithSufficientColumns = false;
247 unsigned Column = 0;
248 for (unsigned i = 0, e = ItemLengths.size(); i != e; ++i) {
Manuel Klimek71814b42013-10-11 21:25:45 +0000249 assert(i < MustBreakBeforeItem.size());
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000250 if (MustBreakBeforeItem[i] || Column == Columns) {
251 ++Format.LineCount;
252 Column = 0;
253 }
254 if (Column == Columns - 1)
255 HasRowWithSufficientColumns = true;
Daniel Jasperd57843d2015-05-11 13:35:40 +0000256 unsigned Length =
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000257 (Column == Columns - 1) ? EndOfLineItemLength[i] : ItemLengths[i];
Daniel Jasperd57843d2015-05-11 13:35:40 +0000258 Format.ColumnSizes[Column] = std::max(Format.ColumnSizes[Column], Length);
259 MinSizeInColumn[Column] = std::min(MinSizeInColumn[Column], Length);
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000260 ++Column;
261 }
262 // If all rows are terminated early (e.g. by trailing comments), we don't
263 // need to look further.
264 if (!HasRowWithSufficientColumns)
265 break;
266 Format.TotalWidth = Columns - 1; // Width of the N-1 spaces.
Daniel Jasperd57843d2015-05-11 13:35:40 +0000267
268 for (unsigned i = 0; i < Columns; ++i)
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000269 Format.TotalWidth += Format.ColumnSizes[i];
Daniel Jasperd57843d2015-05-11 13:35:40 +0000270
271 // Don't use this Format, if the difference between the longest and shortest
272 // element in a column exceeds a threshold to avoid excessive spaces.
273 if ([&] {
274 for (unsigned i = 0; i < Columns - 1; ++i)
275 if (Format.ColumnSizes[i] - MinSizeInColumn[i] > 10)
276 return true;
277 return false;
278 }())
279 continue;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000280
281 // Ignore layouts that are bound to violate the column limit.
Daniel Jaspere6169662016-12-19 07:26:11 +0000282 if (Format.TotalWidth > Style.ColumnLimit && Columns > 1)
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000283 continue;
284
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000285 Formats.push_back(Format);
286 }
287}
288
289const CommaSeparatedList::ColumnFormat *
290CommaSeparatedList::getColumnFormat(unsigned RemainingCharacters) const {
Craig Topper2145bc02014-05-09 08:15:10 +0000291 const ColumnFormat *BestFormat = nullptr;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000292 for (SmallVector<ColumnFormat, 4>::const_reverse_iterator
293 I = Formats.rbegin(),
294 E = Formats.rend();
295 I != E; ++I) {
Daniel Jaspere6169662016-12-19 07:26:11 +0000296 if (I->TotalWidth <= RemainingCharacters || I->Columns == 1) {
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000297 if (BestFormat && I->LineCount > BestFormat->LineCount)
298 break;
299 BestFormat = &*I;
300 }
301 }
302 return BestFormat;
303}
304
305} // namespace format
306} // namespace clang