1 //===--- 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 16 #include "FormatToken.h" 17 #include "ContinuationIndenter.h" 18 #include "llvm/ADT/SmallVector.h" 19 #include "llvm/Support/Debug.h" 20 #include <climits> 21 22 namespace clang { 23 namespace format { 24 25 const char *getTokenTypeName(TokenType Type) { 26 static const char *const TokNames[] = { 27 #define TYPE(X) #X, 28 LIST_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 39 // FIXME: This is copy&pasted from Sema. Put it in a common place and remove 40 // duplication. 41 bool 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: 55 case tok::kw___float128: 56 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 70 TokenRole::~TokenRole() {} 71 72 void TokenRole::precomputeFormattingInfos(const FormatToken *Token) {} 73 74 unsigned CommaSeparatedList::formatAfterToken(LineState &State, 75 ContinuationIndenter *Indenter, 76 bool DryRun) { 77 if (State.NextToken == nullptr || !State.NextToken->Previous) 78 return 0; 79 80 // Ensure that we start on the opening brace. 81 const FormatToken *LBrace = 82 State.NextToken->Previous->getPreviousNonComment(); 83 if (!LBrace || !LBrace->isOneOf(tok::l_brace, TT_ArrayInitializerLSquare) || 84 LBrace->BlockKind == BK_Block || LBrace->Type == TT_DictLiteral || 85 LBrace->Next->Type == TT_DesignatedInitializerPeriod) 86 return 0; 87 88 // Calculate the number of code points we have to format this list. As the 89 // first token is already placed, we have to subtract it. 90 unsigned RemainingCodePoints = 91 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth; 92 93 // Find the best ColumnFormat, i.e. the best number of columns to use. 94 const ColumnFormat *Format = getColumnFormat(RemainingCodePoints); 95 96 // Formatting with 1 Column isn't really a column layout, so we don't need the 97 // special logic here. We can just avoid bin packing any of the parameters. 98 if (Format && Format->Columns == 1) { 99 State.Stack.back().AvoidBinPacking = true; 100 return 0; 101 } 102 103 // If no ColumnFormat can be used, the braced list would generally be 104 // bin-packed. Add a severe penalty to this so that column layouts are 105 // preferred if possible. 106 if (!Format) 107 return 10000; 108 109 // Format the entire list. 110 unsigned Penalty = 0; 111 unsigned Column = 0; 112 unsigned Item = 0; 113 while (State.NextToken != LBrace->MatchingParen) { 114 bool NewLine = false; 115 unsigned ExtraSpaces = 0; 116 117 // If the previous token was one of our commas, we are now on the next item. 118 if (Item < Commas.size() && State.NextToken->Previous == Commas[Item]) { 119 if (!State.NextToken->isTrailingComment()) { 120 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item]; 121 ++Column; 122 } 123 ++Item; 124 } 125 126 if (Column == Format->Columns || State.NextToken->MustBreakBefore) { 127 Column = 0; 128 NewLine = true; 129 } 130 131 // Place token using the continuation indenter and store the penalty. 132 Penalty += Indenter->addTokenToState(State, NewLine, DryRun, ExtraSpaces); 133 } 134 return Penalty; 135 } 136 137 unsigned CommaSeparatedList::formatFromToken(LineState &State, 138 ContinuationIndenter *Indenter, 139 bool DryRun) { 140 if (HasNestedBracedList) 141 State.Stack.back().AvoidBinPacking = true; 142 return 0; 143 } 144 145 // Returns the lengths in code points between Begin and End (both included), 146 // assuming that the entire sequence is put on a single line. 147 static unsigned CodePointsBetween(const FormatToken *Begin, 148 const FormatToken *End) { 149 assert(End->TotalLength >= Begin->TotalLength); 150 return End->TotalLength - Begin->TotalLength + Begin->ColumnWidth; 151 } 152 153 void CommaSeparatedList::precomputeFormattingInfos(const FormatToken *Token) { 154 // FIXME: At some point we might want to do this for other lists, too. 155 if (!Token->MatchingParen || 156 !Token->isOneOf(tok::l_brace, TT_ArrayInitializerLSquare)) 157 return; 158 159 // In C++11 braced list style, we should not format in columns unless they 160 // have many items (20 or more) or we allow bin-packing of function call 161 // arguments. 162 if (Style.Cpp11BracedListStyle && !Style.BinPackArguments && 163 Commas.size() < 19) 164 return; 165 166 // Limit column layout for JavaScript array initializers to 20 or more items 167 // for now to introduce it carefully. We can become more aggressive if this 168 // necessary. 169 if (Token->is(TT_ArrayInitializerLSquare) && Commas.size() < 19) 170 return; 171 172 // Column format doesn't really make sense if we don't align after brackets. 173 if (Style.AlignAfterOpenBracket == FormatStyle::BAS_DontAlign) 174 return; 175 176 FormatToken *ItemBegin = Token->Next; 177 while (ItemBegin->isTrailingComment()) 178 ItemBegin = ItemBegin->Next; 179 SmallVector<bool, 8> MustBreakBeforeItem; 180 181 // The lengths of an item if it is put at the end of the line. This includes 182 // trailing comments which are otherwise ignored for column alignment. 183 SmallVector<unsigned, 8> EndOfLineItemLength; 184 185 bool HasSeparatingComment = false; 186 for (unsigned i = 0, e = Commas.size() + 1; i != e; ++i) { 187 // Skip comments on their own line. 188 while (ItemBegin->HasUnescapedNewline && ItemBegin->isTrailingComment()) { 189 ItemBegin = ItemBegin->Next; 190 HasSeparatingComment = i > 0; 191 } 192 193 MustBreakBeforeItem.push_back(ItemBegin->MustBreakBefore); 194 if (ItemBegin->is(tok::l_brace)) 195 HasNestedBracedList = true; 196 const FormatToken *ItemEnd = nullptr; 197 if (i == Commas.size()) { 198 ItemEnd = Token->MatchingParen; 199 const FormatToken *NonCommentEnd = ItemEnd->getPreviousNonComment(); 200 ItemLengths.push_back(CodePointsBetween(ItemBegin, NonCommentEnd)); 201 if (Style.Cpp11BracedListStyle && 202 !ItemEnd->Previous->isTrailingComment()) { 203 // In Cpp11 braced list style, the } and possibly other subsequent 204 // tokens will need to stay on a line with the last element. 205 while (ItemEnd->Next && !ItemEnd->Next->CanBreakBefore) 206 ItemEnd = ItemEnd->Next; 207 } else { 208 // In other braced lists styles, the "}" can be wrapped to the new line. 209 ItemEnd = Token->MatchingParen->Previous; 210 } 211 } else { 212 ItemEnd = Commas[i]; 213 // The comma is counted as part of the item when calculating the length. 214 ItemLengths.push_back(CodePointsBetween(ItemBegin, ItemEnd)); 215 216 // Consume trailing comments so the are included in EndOfLineItemLength. 217 if (ItemEnd->Next && !ItemEnd->Next->HasUnescapedNewline && 218 ItemEnd->Next->isTrailingComment()) 219 ItemEnd = ItemEnd->Next; 220 } 221 EndOfLineItemLength.push_back(CodePointsBetween(ItemBegin, ItemEnd)); 222 // If there is a trailing comma in the list, the next item will start at the 223 // closing brace. Don't create an extra item for this. 224 if (ItemEnd->getNextNonComment() == Token->MatchingParen) 225 break; 226 ItemBegin = ItemEnd->Next; 227 } 228 229 // Don't use column layout for lists with few elements and in presence of 230 // separating comments. 231 if (Commas.size() < 5 || HasSeparatingComment) 232 return; 233 234 if (Token->NestingLevel != 0 && Token->is(tok::l_brace) && Commas.size() < 19) 235 return; 236 237 // We can never place more than ColumnLimit / 3 items in a row (because of the 238 // spaces and the comma). 239 unsigned MaxItems = Style.ColumnLimit / 3; 240 std::vector<unsigned> MinSizeInColumn; 241 MinSizeInColumn.reserve(MaxItems); 242 for (unsigned Columns = 1; Columns <= MaxItems; ++Columns) { 243 ColumnFormat Format; 244 Format.Columns = Columns; 245 Format.ColumnSizes.resize(Columns); 246 MinSizeInColumn.assign(Columns, UINT_MAX); 247 Format.LineCount = 1; 248 bool HasRowWithSufficientColumns = false; 249 unsigned Column = 0; 250 for (unsigned i = 0, e = ItemLengths.size(); i != e; ++i) { 251 assert(i < MustBreakBeforeItem.size()); 252 if (MustBreakBeforeItem[i] || Column == Columns) { 253 ++Format.LineCount; 254 Column = 0; 255 } 256 if (Column == Columns - 1) 257 HasRowWithSufficientColumns = true; 258 unsigned Length = 259 (Column == Columns - 1) ? EndOfLineItemLength[i] : ItemLengths[i]; 260 Format.ColumnSizes[Column] = std::max(Format.ColumnSizes[Column], Length); 261 MinSizeInColumn[Column] = std::min(MinSizeInColumn[Column], Length); 262 ++Column; 263 } 264 // If all rows are terminated early (e.g. by trailing comments), we don't 265 // need to look further. 266 if (!HasRowWithSufficientColumns) 267 break; 268 Format.TotalWidth = Columns - 1; // Width of the N-1 spaces. 269 270 for (unsigned i = 0; i < Columns; ++i) 271 Format.TotalWidth += Format.ColumnSizes[i]; 272 273 // Don't use this Format, if the difference between the longest and shortest 274 // element in a column exceeds a threshold to avoid excessive spaces. 275 if ([&] { 276 for (unsigned i = 0; i < Columns - 1; ++i) 277 if (Format.ColumnSizes[i] - MinSizeInColumn[i] > 10) 278 return true; 279 return false; 280 }()) 281 continue; 282 283 // Ignore layouts that are bound to violate the column limit. 284 if (Format.TotalWidth > Style.ColumnLimit && Columns > 1) 285 continue; 286 287 Formats.push_back(Format); 288 } 289 } 290 291 const CommaSeparatedList::ColumnFormat * 292 CommaSeparatedList::getColumnFormat(unsigned RemainingCharacters) const { 293 const ColumnFormat *BestFormat = nullptr; 294 for (SmallVector<ColumnFormat, 4>::const_reverse_iterator 295 I = Formats.rbegin(), 296 E = Formats.rend(); 297 I != E; ++I) { 298 if (I->TotalWidth <= RemainingCharacters || I->Columns == 1) { 299 if (BestFormat && I->LineCount > BestFormat->LineCount) 300 break; 301 BestFormat = &*I; 302 } 303 } 304 return BestFormat; 305 } 306 307 } // namespace format 308 } // namespace clang 309