blob: 1cda3c711cac0c0c188916177353e7e8ec1b10c2 [file] [log] [blame]
Daniel Jasperbac016b2012-12-03 18:12:45 +00001//===--- Format.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 functions declared in Format.h. This will be
12/// split into separate files as we go.
13///
Daniel Jasperbac016b2012-12-03 18:12:45 +000014//===----------------------------------------------------------------------===//
15
Manuel Klimekca547db2013-01-16 14:55:28 +000016#define DEBUG_TYPE "format-formatter"
17
Alexander Kornienko70ce7882013-04-15 14:28:00 +000018#include "BreakableToken.h"
Daniel Jasper32d28ee2013-01-29 21:01:14 +000019#include "TokenAnnotator.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "UnwrappedLineParser.h"
Alexander Kornienko70ce7882013-04-15 14:28:00 +000021#include "WhitespaceManager.h"
Daniel Jasper8a999452013-05-16 10:40:07 +000022#include "clang/Basic/Diagnostic.h"
Daniel Jasper675d2e32012-12-21 10:20:02 +000023#include "clang/Basic/OperatorPrecedence.h"
Chandler Carruthb99083e2013-01-02 10:28:36 +000024#include "clang/Basic/SourceManager.h"
Manuel Klimekca547db2013-01-16 14:55:28 +000025#include "clang/Format/Format.h"
Daniel Jasperbac016b2012-12-03 18:12:45 +000026#include "clang/Lex/Lexer.h"
Alexander Kornienko5262dd92013-03-27 11:52:18 +000027#include "llvm/ADT/STLExtras.h"
Manuel Klimek32a2fd72013-02-13 10:46:36 +000028#include "llvm/Support/Allocator.h"
Manuel Klimekca547db2013-01-16 14:55:28 +000029#include "llvm/Support/Debug.h"
Alexander Kornienkod71ec162013-05-07 15:32:14 +000030#include "llvm/Support/YAMLTraits.h"
Manuel Klimek32a2fd72013-02-13 10:46:36 +000031#include <queue>
Daniel Jasper8822d3a2012-12-04 13:02:32 +000032#include <string>
33
Alexander Kornienkod71ec162013-05-07 15:32:14 +000034namespace llvm {
35namespace yaml {
36template <>
37struct ScalarEnumerationTraits<clang::format::FormatStyle::LanguageStandard> {
Manuel Klimek44135b82013-05-13 12:51:40 +000038 static void enumeration(IO &IO,
39 clang::format::FormatStyle::LanguageStandard &Value) {
40 IO.enumCase(Value, "C++03", clang::format::FormatStyle::LS_Cpp03);
41 IO.enumCase(Value, "C++11", clang::format::FormatStyle::LS_Cpp11);
42 IO.enumCase(Value, "Auto", clang::format::FormatStyle::LS_Auto);
43 }
44};
45
Daniel Jasper1fb8d882013-05-14 09:30:02 +000046template <>
Manuel Klimek44135b82013-05-13 12:51:40 +000047struct ScalarEnumerationTraits<clang::format::FormatStyle::BraceBreakingStyle> {
48 static void
49 enumeration(IO &IO, clang::format::FormatStyle::BraceBreakingStyle &Value) {
50 IO.enumCase(Value, "Attach", clang::format::FormatStyle::BS_Attach);
51 IO.enumCase(Value, "Linux", clang::format::FormatStyle::BS_Linux);
52 IO.enumCase(Value, "Stroustrup", clang::format::FormatStyle::BS_Stroustrup);
Alexander Kornienkod71ec162013-05-07 15:32:14 +000053 }
54};
55
56template <> struct MappingTraits<clang::format::FormatStyle> {
57 static void mapping(llvm::yaml::IO &IO, clang::format::FormatStyle &Style) {
Alexander Kornienkodd256312013-05-10 11:56:10 +000058 if (IO.outputting()) {
59 StringRef StylesArray[] = { "LLVM", "Google", "Chromium", "Mozilla" };
60 ArrayRef<StringRef> Styles(StylesArray);
61 for (size_t i = 0, e = Styles.size(); i < e; ++i) {
62 StringRef StyleName(Styles[i]);
Alexander Kornienko885f87b2013-05-19 00:53:30 +000063 clang::format::FormatStyle PredefinedStyle;
64 if (clang::format::getPredefinedStyle(StyleName, &PredefinedStyle) &&
65 Style == PredefinedStyle) {
Alexander Kornienkodd256312013-05-10 11:56:10 +000066 IO.mapOptional("# BasedOnStyle", StyleName);
67 break;
68 }
69 }
70 } else {
Alexander Kornienkod71ec162013-05-07 15:32:14 +000071 StringRef BasedOnStyle;
72 IO.mapOptional("BasedOnStyle", BasedOnStyle);
Alexander Kornienkod71ec162013-05-07 15:32:14 +000073 if (!BasedOnStyle.empty())
Alexander Kornienko885f87b2013-05-19 00:53:30 +000074 if (!clang::format::getPredefinedStyle(BasedOnStyle, &Style)) {
75 IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle));
76 return;
77 }
Alexander Kornienkod71ec162013-05-07 15:32:14 +000078 }
79
80 IO.mapOptional("AccessModifierOffset", Style.AccessModifierOffset);
81 IO.mapOptional("AlignEscapedNewlinesLeft", Style.AlignEscapedNewlinesLeft);
82 IO.mapOptional("AllowAllParametersOfDeclarationOnNextLine",
83 Style.AllowAllParametersOfDeclarationOnNextLine);
84 IO.mapOptional("AllowShortIfStatementsOnASingleLine",
85 Style.AllowShortIfStatementsOnASingleLine);
Daniel Jasperf11bbb92013-05-16 12:12:21 +000086 IO.mapOptional("AllowShortLoopsOnASingleLine",
87 Style.AllowShortLoopsOnASingleLine);
Alexander Kornienkod71ec162013-05-07 15:32:14 +000088 IO.mapOptional("BinPackParameters", Style.BinPackParameters);
89 IO.mapOptional("ColumnLimit", Style.ColumnLimit);
90 IO.mapOptional("ConstructorInitializerAllOnOneLineOrOnePerLine",
91 Style.ConstructorInitializerAllOnOneLineOrOnePerLine);
92 IO.mapOptional("DerivePointerBinding", Style.DerivePointerBinding);
93 IO.mapOptional("IndentCaseLabels", Style.IndentCaseLabels);
94 IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep);
95 IO.mapOptional("ObjCSpaceBeforeProtocolList",
96 Style.ObjCSpaceBeforeProtocolList);
97 IO.mapOptional("PenaltyExcessCharacter", Style.PenaltyExcessCharacter);
98 IO.mapOptional("PenaltyReturnTypeOnItsOwnLine",
99 Style.PenaltyReturnTypeOnItsOwnLine);
100 IO.mapOptional("PointerBindsToType", Style.PointerBindsToType);
101 IO.mapOptional("SpacesBeforeTrailingComments",
102 Style.SpacesBeforeTrailingComments);
Daniel Jasper2424eef2013-05-23 10:15:45 +0000103 IO.mapOptional("SpacesInBracedLists",
104 Style.SpacesInBracedLists);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000105 IO.mapOptional("Standard", Style.Standard);
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000106 IO.mapOptional("IndentWidth", Style.IndentWidth);
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000107 IO.mapOptional("UseTab", Style.UseTab);
Manuel Klimek44135b82013-05-13 12:51:40 +0000108 IO.mapOptional("BreakBeforeBraces", Style.BreakBeforeBraces);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000109 }
110};
111}
112}
113
Daniel Jasperbac016b2012-12-03 18:12:45 +0000114namespace clang {
115namespace format {
116
Daniel Jasperbac016b2012-12-03 18:12:45 +0000117FormatStyle getLLVMStyle() {
118 FormatStyle LLVMStyle;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000119 LLVMStyle.AccessModifierOffset = -2;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000120 LLVMStyle.AlignEscapedNewlinesLeft = false;
Daniel Jasperf1579602013-01-29 16:03:49 +0000121 LLVMStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000122 LLVMStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000123 LLVMStyle.AllowShortLoopsOnASingleLine = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000124 LLVMStyle.BinPackParameters = true;
125 LLVMStyle.ColumnLimit = 80;
126 LLVMStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = false;
127 LLVMStyle.DerivePointerBinding = false;
128 LLVMStyle.IndentCaseLabels = false;
129 LLVMStyle.MaxEmptyLinesToKeep = 1;
Nico Weber5f500df2013-01-10 20:12:55 +0000130 LLVMStyle.ObjCSpaceBeforeProtocolList = true;
Daniel Jasper01786732013-02-04 07:21:18 +0000131 LLVMStyle.PenaltyExcessCharacter = 1000000;
Daniel Jasper1407bee2013-04-11 14:29:13 +0000132 LLVMStyle.PenaltyReturnTypeOnItsOwnLine = 75;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000133 LLVMStyle.PointerBindsToType = false;
134 LLVMStyle.SpacesBeforeTrailingComments = 1;
Daniel Jasper2424eef2013-05-23 10:15:45 +0000135 LLVMStyle.SpacesInBracedLists = true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000136 LLVMStyle.Standard = FormatStyle::LS_Cpp03;
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000137 LLVMStyle.IndentWidth = 2;
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000138 LLVMStyle.UseTab = false;
Manuel Klimek44135b82013-05-13 12:51:40 +0000139 LLVMStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000140 return LLVMStyle;
141}
142
143FormatStyle getGoogleStyle() {
144 FormatStyle GoogleStyle;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000145 GoogleStyle.AccessModifierOffset = -1;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000146 GoogleStyle.AlignEscapedNewlinesLeft = true;
Daniel Jasperf1579602013-01-29 16:03:49 +0000147 GoogleStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper94d6ad72013-04-24 13:46:00 +0000148 GoogleStyle.AllowShortIfStatementsOnASingleLine = true;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000149 GoogleStyle.AllowShortLoopsOnASingleLine= true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000150 GoogleStyle.BinPackParameters = true;
151 GoogleStyle.ColumnLimit = 80;
152 GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
153 GoogleStyle.DerivePointerBinding = true;
154 GoogleStyle.IndentCaseLabels = true;
155 GoogleStyle.MaxEmptyLinesToKeep = 1;
Nico Weber5f500df2013-01-10 20:12:55 +0000156 GoogleStyle.ObjCSpaceBeforeProtocolList = false;
Daniel Jasper01786732013-02-04 07:21:18 +0000157 GoogleStyle.PenaltyExcessCharacter = 1000000;
Daniel Jasper1407bee2013-04-11 14:29:13 +0000158 GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000159 GoogleStyle.PointerBindsToType = true;
160 GoogleStyle.SpacesBeforeTrailingComments = 2;
Daniel Jasper2424eef2013-05-23 10:15:45 +0000161 GoogleStyle.SpacesInBracedLists = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000162 GoogleStyle.Standard = FormatStyle::LS_Auto;
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000163 GoogleStyle.IndentWidth = 2;
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000164 GoogleStyle.UseTab = false;
Manuel Klimek44135b82013-05-13 12:51:40 +0000165 GoogleStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000166 return GoogleStyle;
167}
168
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000169FormatStyle getChromiumStyle() {
170 FormatStyle ChromiumStyle = getGoogleStyle();
Daniel Jasperf1579602013-01-29 16:03:49 +0000171 ChromiumStyle.AllowAllParametersOfDeclarationOnNextLine = false;
Daniel Jasper94d6ad72013-04-24 13:46:00 +0000172 ChromiumStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000173 ChromiumStyle.AllowShortLoopsOnASingleLine = false;
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000174 ChromiumStyle.BinPackParameters = false;
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000175 ChromiumStyle.Standard = FormatStyle::LS_Cpp03;
176 ChromiumStyle.DerivePointerBinding = false;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000177 return ChromiumStyle;
178}
179
Alexander Kornienkofb594862013-05-06 14:11:27 +0000180FormatStyle getMozillaStyle() {
181 FormatStyle MozillaStyle = getLLVMStyle();
182 MozillaStyle.AllowAllParametersOfDeclarationOnNextLine = false;
183 MozillaStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
184 MozillaStyle.DerivePointerBinding = true;
185 MozillaStyle.IndentCaseLabels = true;
186 MozillaStyle.ObjCSpaceBeforeProtocolList = false;
187 MozillaStyle.PenaltyReturnTypeOnItsOwnLine = 200;
188 MozillaStyle.PointerBindsToType = true;
189 return MozillaStyle;
190}
191
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000192bool getPredefinedStyle(StringRef Name, FormatStyle *Style) {
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000193 if (Name.equals_lower("llvm"))
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000194 *Style = getLLVMStyle();
195 else if (Name.equals_lower("chromium"))
196 *Style = getChromiumStyle();
197 else if (Name.equals_lower("mozilla"))
198 *Style = getMozillaStyle();
199 else if (Name.equals_lower("google"))
200 *Style = getGoogleStyle();
201 else
202 return false;
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000203
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000204 return true;
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000205}
206
207llvm::error_code parseConfiguration(StringRef Text, FormatStyle *Style) {
Alexander Kornienko107db3c2013-05-20 15:18:01 +0000208 if (Text.trim().empty())
209 return llvm::make_error_code(llvm::errc::invalid_argument);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000210 llvm::yaml::Input Input(Text);
211 Input >> *Style;
212 return Input.error();
213}
214
215std::string configurationAsText(const FormatStyle &Style) {
216 std::string Text;
217 llvm::raw_string_ostream Stream(Text);
218 llvm::yaml::Output Output(Stream);
219 // We use the same mapping method for input and output, so we need a non-const
220 // reference here.
221 FormatStyle NonConstStyle = Style;
222 Output << NonConstStyle;
Alexander Kornienko2b6acb62013-05-13 12:56:35 +0000223 return Stream.str();
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000224}
225
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000226// Returns the length of everything up to the first possible line break after
227// the ), ], } or > matching \c Tok.
228static unsigned getLengthToMatchingParen(const AnnotatedToken &Tok) {
229 if (Tok.MatchingParen == NULL)
230 return 0;
231 AnnotatedToken *End = Tok.MatchingParen;
232 while (!End->Children.empty() && !End->Children[0].CanBreakBefore) {
233 End = &End->Children[0];
234 }
235 return End->TotalLength - Tok.TotalLength + 1;
236}
237
Daniel Jasperbac016b2012-12-03 18:12:45 +0000238class UnwrappedLineFormatter {
239public:
Manuel Klimek94fc6f12013-01-10 19:17:33 +0000240 UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr,
Daniel Jasper995e8202013-01-14 13:08:07 +0000241 const AnnotatedLine &Line, unsigned FirstIndent,
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +0000242 const AnnotatedToken &RootToken,
Manuel Klimek67d080d2013-04-12 14:13:36 +0000243 WhitespaceManager &Whitespaces)
Daniel Jasper1321eb52012-12-18 21:05:13 +0000244 : Style(Style), SourceMgr(SourceMgr), Line(Line),
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000245 FirstIndent(FirstIndent), RootToken(RootToken),
Daniel Jasperf11a7052013-02-21 21:33:55 +0000246 Whitespaces(Whitespaces), Count(0) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +0000247
Manuel Klimekd4397b92013-01-04 23:34:14 +0000248 /// \brief Formats an \c UnwrappedLine.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000249 void format(const AnnotatedLine *NextLine) {
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000250 // Initialize state dependent on indent.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000251 LineState State;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000252 State.Column = FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +0000253 State.NextToken = &RootToken;
Daniel Jasper6f21a982013-03-13 07:49:51 +0000254 State.Stack.push_back(
Daniel Jasper24e19e42013-05-22 08:55:55 +0000255 ParenState(FirstIndent, FirstIndent, /*AvoidBinPacking=*/ false,
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000256 /*NoLineBreak=*/ false));
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000257 State.LineContainsContinuedForLoopSection = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000258 State.ParenLevel = 0;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000259 State.StartOfStringLiteral = 0;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000260 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper54b4e442013-05-22 05:27:42 +0000261 State.IgnoreStackForComparison = false;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000262
263 // The first token has already been indented and thus consumed.
Manuel Klimek8092a942013-02-20 10:15:13 +0000264 moveStateToNextToken(State, /*DryRun=*/ false);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000265
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000266 // If everything fits on a single line, just put it there.
Daniel Jaspera4d46212013-02-28 11:05:57 +0000267 unsigned ColumnLimit = Style.ColumnLimit;
268 if (NextLine && NextLine->InPPDirective &&
269 !NextLine->First.FormatTok.HasUnescapedNewline)
270 ColumnLimit = getColumnLimit();
271 if (Line.Last->TotalLength <= ColumnLimit - FirstIndent) {
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000272 while (State.NextToken != NULL) {
Daniel Jasper1321eb52012-12-18 21:05:13 +0000273 addTokenToState(false, false, State);
Daniel Jasper1321eb52012-12-18 21:05:13 +0000274 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000275 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000276
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000277 // If the ObjC method declaration does not fit on a line, we should format
278 // it with one arg per line.
279 if (Line.Type == LT_ObjCMethodDecl)
280 State.Stack.back().BreakBeforeParameter = true;
281
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000282 // Find best solution in solution space.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000283 analyzeSolutionSpace(State);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000284 }
285
286private:
Manuel Klimekca547db2013-01-16 14:55:28 +0000287 void DebugTokenState(const AnnotatedToken &AnnotatedTok) {
288 const Token &Tok = AnnotatedTok.FormatTok.Tok;
Alexander Kornienkodd256312013-05-10 11:56:10 +0000289 llvm::dbgs() << StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000290 Tok.getLength());
Alexander Kornienkodd256312013-05-10 11:56:10 +0000291 llvm::dbgs();
Manuel Klimekca547db2013-01-16 14:55:28 +0000292 }
293
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000294 struct ParenState {
Daniel Jasperd399bff2013-02-05 09:41:21 +0000295 ParenState(unsigned Indent, unsigned LastSpace, bool AvoidBinPacking,
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000296 bool NoLineBreak)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000297 : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
298 BreakBeforeClosingBrace(false), QuestionColumn(0),
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000299 AvoidBinPacking(AvoidBinPacking), BreakBeforeParameter(false),
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000300 NoLineBreak(NoLineBreak), ColonPos(0), StartOfFunctionCall(0),
301 NestedNameSpecifierContinuation(0), CallContinuation(0),
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000302 VariablePos(0), ForFakeParenthesis(false) {}
Daniel Jaspera4974cf2012-12-24 16:43:00 +0000303
Daniel Jasperbac016b2012-12-03 18:12:45 +0000304 /// \brief The position to which a specific parenthesis level needs to be
305 /// indented.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000306 unsigned Indent;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000307
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000308 /// \brief The position of the last space on each level.
309 ///
310 /// Used e.g. to break like:
311 /// functionCall(Parameter, otherCall(
312 /// OtherParameter));
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000313 unsigned LastSpace;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000314
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000315 /// \brief The position the first "<<" operator encountered on each level.
316 ///
317 /// Used to align "<<" operators. 0 if no such operator has been encountered
318 /// on a level.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000319 unsigned FirstLessLess;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000320
Manuel Klimekc8c8a472013-01-10 15:58:26 +0000321 /// \brief Whether a newline needs to be inserted before the block's closing
322 /// brace.
323 ///
324 /// We only want to insert a newline before the closing brace if there also
325 /// was a newline after the beginning left brace.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000326 bool BreakBeforeClosingBrace;
327
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000328 /// \brief The column of a \c ? in a conditional expression;
329 unsigned QuestionColumn;
330
Daniel Jasperf343cab2013-01-31 14:59:26 +0000331 /// \brief Avoid bin packing, i.e. multiple parameters/elements on multiple
332 /// lines, in this context.
333 bool AvoidBinPacking;
334
335 /// \brief Break after the next comma (or all the commas in this context if
336 /// \c AvoidBinPacking is \c true).
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000337 bool BreakBeforeParameter;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000338
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000339 /// \brief Line breaking in this context would break a formatting rule.
340 bool NoLineBreak;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000341
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000342 /// \brief The position of the colon in an ObjC method declaration/call.
343 unsigned ColonPos;
Daniel Jasperc4615b72013-02-20 12:56:39 +0000344
Daniel Jasper24849712013-03-01 16:48:32 +0000345 /// \brief The start of the most recent function in a builder-type call.
346 unsigned StartOfFunctionCall;
347
Daniel Jasper37911302013-04-02 14:33:13 +0000348 /// \brief If a nested name specifier was broken over multiple lines, this
349 /// contains the start column of the second line. Otherwise 0.
350 unsigned NestedNameSpecifierContinuation;
351
352 /// \brief If a call expression was broken over multiple lines, this
353 /// contains the start column of the second line. Otherwise 0.
354 unsigned CallContinuation;
355
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000356 /// \brief The column of the first variable name in a variable declaration.
357 ///
358 /// Used to align further variables if necessary.
359 unsigned VariablePos;
360
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000361 /// \brief \c true if this \c ParenState was created for a fake parenthesis.
362 ///
363 /// Does not need to be considered for memoization / the comparison function
364 /// as otherwise identical states will have the same fake/non-fake
365 /// \c ParenStates.
366 bool ForFakeParenthesis;
367
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000368 bool operator<(const ParenState &Other) const {
369 if (Indent != Other.Indent)
Daniel Jasper7d19bc22013-01-11 14:23:32 +0000370 return Indent < Other.Indent;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000371 if (LastSpace != Other.LastSpace)
372 return LastSpace < Other.LastSpace;
373 if (FirstLessLess != Other.FirstLessLess)
374 return FirstLessLess < Other.FirstLessLess;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000375 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
376 return BreakBeforeClosingBrace;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000377 if (QuestionColumn != Other.QuestionColumn)
378 return QuestionColumn < Other.QuestionColumn;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000379 if (AvoidBinPacking != Other.AvoidBinPacking)
380 return AvoidBinPacking;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000381 if (BreakBeforeParameter != Other.BreakBeforeParameter)
382 return BreakBeforeParameter;
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000383 if (NoLineBreak != Other.NoLineBreak)
384 return NoLineBreak;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000385 if (ColonPos != Other.ColonPos)
386 return ColonPos < Other.ColonPos;
Daniel Jasper24849712013-03-01 16:48:32 +0000387 if (StartOfFunctionCall != Other.StartOfFunctionCall)
388 return StartOfFunctionCall < Other.StartOfFunctionCall;
Daniel Jasper37911302013-04-02 14:33:13 +0000389 if (CallContinuation != Other.CallContinuation)
390 return CallContinuation < Other.CallContinuation;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000391 if (VariablePos != Other.VariablePos)
392 return VariablePos < Other.VariablePos;
Daniel Jasperb3123142013-01-12 07:36:22 +0000393 return false;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000394 }
395 };
396
397 /// \brief The current state when indenting a unwrapped line.
398 ///
399 /// As the indenting tries different combinations this is copied by value.
400 struct LineState {
401 /// \brief The number of used columns in the current line.
402 unsigned Column;
403
404 /// \brief The token that needs to be next formatted.
405 const AnnotatedToken *NextToken;
406
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000407 /// \brief \c true if this line contains a continued for-loop section.
408 bool LineContainsContinuedForLoopSection;
409
Daniel Jasper29f123b2013-02-08 15:28:42 +0000410 /// \brief The level of nesting inside (), [], <> and {}.
411 unsigned ParenLevel;
412
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000413 /// \brief The \c ParenLevel at the start of this line.
414 unsigned StartOfLineLevel;
415
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000416 /// \brief The start column of the string literal, if we're in a string
417 /// literal sequence, 0 otherwise.
418 unsigned StartOfStringLiteral;
419
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000420 /// \brief A stack keeping track of properties applying to parenthesis
421 /// levels.
422 std::vector<ParenState> Stack;
423
Daniel Jasper54b4e442013-05-22 05:27:42 +0000424 /// \brief Ignore the stack of \c ParenStates for state comparison.
425 ///
426 /// In long and deeply nested unwrapped lines, the current algorithm can
427 /// be insufficient for finding the best formatting with a reasonable amount
428 /// of time and memory. Setting this flag will effectively lead to the
429 /// algorithm not analyzing some combinations. However, these combinations
430 /// rarely contain the optimal solution: In short, accepting a higher
431 /// penalty early would need to lead to different values in the \c
432 /// ParenState stack (in an otherwise identical state) and these different
433 /// values would need to lead to a significant amount of avoided penalty
434 /// later.
435 ///
436 /// FIXME: Come up with a better algorithm instead.
437 bool IgnoreStackForComparison;
438
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000439 /// \brief Comparison operator to be able to used \c LineState in \c map.
440 bool operator<(const LineState &Other) const {
Daniel Jasperd7896702013-02-19 09:28:55 +0000441 if (NextToken != Other.NextToken)
442 return NextToken < Other.NextToken;
443 if (Column != Other.Column)
444 return Column < Other.Column;
Daniel Jasperd7896702013-02-19 09:28:55 +0000445 if (LineContainsContinuedForLoopSection !=
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000446 Other.LineContainsContinuedForLoopSection)
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000447 return LineContainsContinuedForLoopSection;
Daniel Jasperd7896702013-02-19 09:28:55 +0000448 if (ParenLevel != Other.ParenLevel)
449 return ParenLevel < Other.ParenLevel;
450 if (StartOfLineLevel != Other.StartOfLineLevel)
451 return StartOfLineLevel < Other.StartOfLineLevel;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000452 if (StartOfStringLiteral != Other.StartOfStringLiteral)
453 return StartOfStringLiteral < Other.StartOfStringLiteral;
Daniel Jasper54b4e442013-05-22 05:27:42 +0000454 if (IgnoreStackForComparison || Other.IgnoreStackForComparison)
455 return false;
Daniel Jasperd7896702013-02-19 09:28:55 +0000456 return Stack < Other.Stack;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000457 }
458 };
459
Daniel Jasper20409152012-12-04 14:54:30 +0000460 /// \brief Appends the next token to \p State and updates information
461 /// necessary for indentation.
462 ///
463 /// Puts the token on the current line if \p Newline is \c true and adds a
464 /// line break and necessary indentation otherwise.
465 ///
466 /// If \p DryRun is \c false, also creates and stores the required
467 /// \c Replacement.
Manuel Klimek8092a942013-02-20 10:15:13 +0000468 unsigned addTokenToState(bool Newline, bool DryRun, LineState &State) {
Daniel Jasper9c837d02013-01-09 07:06:56 +0000469 const AnnotatedToken &Current = *State.NextToken;
470 const AnnotatedToken &Previous = *State.NextToken->Parent;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000471
Daniel Jasper92f9faf2013-03-20 15:58:10 +0000472 if (State.Stack.size() == 0 || Current.Type == TT_ImplicitStringLiteral) {
Manuel Klimekad3094b2013-05-23 10:56:37 +0000473 // FIXME: Is this correct?
474 int WhitespaceLength =
475 SourceMgr.getSpellingColumnNumber(
476 State.NextToken->FormatTok.WhitespaceRange.getEnd()) -
477 SourceMgr.getSpellingColumnNumber(
478 State.NextToken->FormatTok.WhitespaceRange.getBegin());
479 State.Column += WhitespaceLength + State.NextToken->FormatTok.TokenLength;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000480 if (State.NextToken->Children.empty())
481 State.NextToken = NULL;
482 else
483 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek8092a942013-02-20 10:15:13 +0000484 return 0;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000485 }
486
Daniel Jasper3776ef32013-04-03 07:21:51 +0000487 // If we are continuing an expression, we want to indent an extra 4 spaces.
488 unsigned ContinuationIndent =
Daniel Jasper37911302013-04-02 14:33:13 +0000489 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) + 4;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000490 if (Newline) {
Manuel Klimekbb42bf12013-01-10 11:52:21 +0000491 if (Current.is(tok::r_brace)) {
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000492 State.Column = Line.Level * Style.IndentWidth;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000493 } else if (Current.is(tok::string_literal) &&
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000494 State.StartOfStringLiteral != 0) {
495 State.Column = State.StartOfStringLiteral;
Daniel Jasper66d19bd2013-02-18 11:59:17 +0000496 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000497 } else if (Current.is(tok::lessless) &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000498 State.Stack.back().FirstLessLess != 0) {
499 State.Column = State.Stack.back().FirstLessLess;
Daniel Jasper37911302013-04-02 14:33:13 +0000500 } else if (Current.isOneOf(tok::period, tok::arrow)) {
Daniel Jasper3776ef32013-04-03 07:21:51 +0000501 if (State.Stack.back().CallContinuation == 0) {
502 State.Column = ContinuationIndent;
Daniel Jasper37911302013-04-02 14:33:13 +0000503 State.Stack.back().CallContinuation = State.Column;
Daniel Jasper3776ef32013-04-03 07:21:51 +0000504 } else {
505 State.Column = State.Stack.back().CallContinuation;
506 }
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000507 } else if (Current.Type == TT_ConditionalExpr) {
508 State.Column = State.Stack.back().QuestionColumn;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000509 } else if (Previous.is(tok::comma) &&
510 State.Stack.back().VariablePos != 0) {
511 State.Column = State.Stack.back().VariablePos;
Daniel Jasper3c08a812013-02-24 18:54:32 +0000512 } else if (Previous.ClosesTemplateDeclaration ||
Daniel Jasper53e72cd2013-05-06 08:27:33 +0000513 (Current.Type == TT_StartOfName && State.ParenLevel == 0 &&
514 Line.StartsDefinition)) {
Daniel Jasper37911302013-04-02 14:33:13 +0000515 State.Column = State.Stack.back().Indent;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000516 } else if (Current.Type == TT_ObjCSelectorName) {
517 if (State.Stack.back().ColonPos > Current.FormatTok.TokenLength) {
518 State.Column =
519 State.Stack.back().ColonPos - Current.FormatTok.TokenLength;
520 } else {
521 State.Column = State.Stack.back().Indent;
522 State.Stack.back().ColonPos =
523 State.Column + Current.FormatTok.TokenLength;
524 }
Daniel Jasperb2f063a2013-05-08 10:00:18 +0000525 } else if (Current.Type == TT_StartOfName ||
526 Previous.isOneOf(tok::coloncolon, tok::equal) ||
Daniel Jasper37911302013-04-02 14:33:13 +0000527 Previous.Type == TT_ObjCMethodExpr) {
Daniel Jasper3776ef32013-04-03 07:21:51 +0000528 State.Column = ContinuationIndent;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000529 } else {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000530 State.Column = State.Stack.back().Indent;
Daniel Jasper3776ef32013-04-03 07:21:51 +0000531 // Ensure that we fall back to indenting 4 spaces instead of just
532 // flushing continuations left.
Daniel Jasper37911302013-04-02 14:33:13 +0000533 if (State.Column == FirstIndent)
534 State.Column += 4;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000535 }
536
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000537 if (Current.is(tok::question))
Daniel Jasper237d4c12013-02-23 21:01:55 +0000538 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper11e13802013-05-08 14:12:04 +0000539 if ((Previous.isOneOf(tok::comma, tok::semi) &&
540 !State.Stack.back().AvoidBinPacking) ||
541 Previous.Type == TT_BinaryOperator)
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000542 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasper33f4b902013-05-15 09:35:08 +0000543 if (Previous.Type == TT_TemplateCloser && State.ParenLevel == 0)
544 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000545
Manuel Klimek060143e2013-01-02 18:33:23 +0000546 if (!DryRun) {
Daniel Jasper1ef81d52013-02-26 13:10:34 +0000547 unsigned NewLines = 1;
548 if (Current.Type == TT_LineComment)
549 NewLines =
550 std::max(NewLines, std::min(Current.FormatTok.NewlinesBefore,
551 Style.MaxEmptyLinesToKeep + 1));
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000552 Whitespaces.replaceWhitespace(Current, NewLines, State.Column,
553 State.Column, Line.InPPDirective);
Manuel Klimek060143e2013-01-02 18:33:23 +0000554 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000555
Daniel Jasper29f123b2013-02-08 15:28:42 +0000556 State.Stack.back().LastSpace = State.Column;
Daniel Jasper04abbb22013-05-10 13:37:16 +0000557 if (Current.isOneOf(tok::arrow, tok::period))
558 State.Stack.back().LastSpace += Current.FormatTok.TokenLength;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000559 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper237d4c12013-02-23 21:01:55 +0000560
561 // Any break on this level means that the parent level has been broken
562 // and we need to avoid bin packing there.
563 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i) {
564 State.Stack[i].BreakBeforeParameter = true;
565 }
Daniel Jasper01218ff2013-04-15 22:36:37 +0000566 const AnnotatedToken *TokenBefore = Current.getPreviousNoneComment();
567 if (TokenBefore && !TokenBefore->isOneOf(tok::comma, tok::semi) &&
Daniel Jasper33f4b902013-05-15 09:35:08 +0000568 TokenBefore->Type != TT_TemplateCloser &&
Daniel Jasper11e13802013-05-08 14:12:04 +0000569 TokenBefore->Type != TT_BinaryOperator && !TokenBefore->opensScope())
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000570 State.Stack.back().BreakBeforeParameter = true;
571
Daniel Jasper237d4c12013-02-23 21:01:55 +0000572 // If we break after {, we should also break before the corresponding }.
573 if (Previous.is(tok::l_brace))
574 State.Stack.back().BreakBeforeClosingBrace = true;
575
576 if (State.Stack.back().AvoidBinPacking) {
577 // If we are breaking after '(', '{', '<', this is not bin packing
578 // unless AllowAllParametersOfDeclarationOnNextLine is false.
Daniel Jasperd741f022013-05-14 20:39:56 +0000579 if (!(Previous.isOneOf(tok::l_paren, tok::l_brace) ||
580 Previous.Type == TT_BinaryOperator) ||
Daniel Jasper237d4c12013-02-23 21:01:55 +0000581 (!Style.AllowAllParametersOfDeclarationOnNextLine &&
582 Line.MustBeDeclaration))
583 State.Stack.back().BreakBeforeParameter = true;
584 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000585 } else {
Daniel Jasper9c3e71a2013-02-25 15:59:54 +0000586 if (Current.is(tok::equal) &&
Daniel Jasperadc0f092013-04-05 09:38:50 +0000587 (RootToken.is(tok::kw_for) || State.ParenLevel == 0) &&
588 State.Stack.back().VariablePos == 0) {
589 State.Stack.back().VariablePos = State.Column;
590 // Move over * and & if they are bound to the variable name.
591 const AnnotatedToken *Tok = &Previous;
592 while (Tok &&
593 State.Stack.back().VariablePos >= Tok->FormatTok.TokenLength) {
594 State.Stack.back().VariablePos -= Tok->FormatTok.TokenLength;
595 if (Tok->SpacesRequiredBefore != 0)
596 break;
597 Tok = Tok->Parent;
598 }
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000599 if (Previous.PartOfMultiVariableDeclStmt)
600 State.Stack.back().LastSpace = State.Stack.back().VariablePos;
601 }
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000602
Daniel Jasper729a7432013-02-11 12:36:37 +0000603 unsigned Spaces = State.NextToken->SpacesRequiredBefore;
Daniel Jasper20409152012-12-04 14:54:30 +0000604
Daniel Jasperbac016b2012-12-03 18:12:45 +0000605 if (!DryRun)
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000606 Whitespaces.replaceWhitespace(Current, 0, Spaces,
607 State.Column + Spaces);
Daniel Jasper20409152012-12-04 14:54:30 +0000608
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000609 if (Current.Type == TT_ObjCSelectorName &&
610 State.Stack.back().ColonPos == 0) {
611 if (State.Stack.back().Indent + Current.LongestObjCSelectorName >
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000612 State.Column + Spaces + Current.FormatTok.TokenLength)
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000613 State.Stack.back().ColonPos =
614 State.Stack.back().Indent + Current.LongestObjCSelectorName;
615 else
616 State.Stack.back().ColonPos =
Daniel Jasper9e9e6e02013-02-06 16:00:26 +0000617 State.Column + Spaces + Current.FormatTok.TokenLength;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000618 }
619
Daniel Jasperac3223e2013-04-10 09:49:49 +0000620 if (Previous.opensScope() && Previous.Type != TT_ObjCMethodExpr &&
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000621 Current.Type != TT_LineComment)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000622 State.Stack.back().Indent = State.Column + Spaces;
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000623 if (Previous.is(tok::comma) && !Current.isTrailingComment() &&
624 State.Stack.back().AvoidBinPacking)
625 State.Stack.back().NoLineBreak = true;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000626
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000627 State.Column += Spaces;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000628 if (Current.is(tok::l_paren) && Previous.isOneOf(tok::kw_if, tok::kw_for))
Daniel Jaspere438bac2013-01-23 20:41:06 +0000629 // Treat the condition inside an if as if it was a second function
630 // parameter, i.e. let nested calls have an indent of 4.
631 State.Stack.back().LastSpace = State.Column + 1; // 1 is length of "(".
Daniel Jasperf9955d32013-03-20 12:37:50 +0000632 else if (Previous.is(tok::comma))
Daniel Jaspere438bac2013-01-23 20:41:06 +0000633 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000634 else if ((Previous.Type == TT_BinaryOperator ||
Daniel Jasper02b771e2013-01-28 13:31:35 +0000635 Previous.Type == TT_ConditionalExpr ||
636 Previous.Type == TT_CtorInitializerColon) &&
Daniel Jasperae8699b2013-01-28 09:35:24 +0000637 getPrecedence(Previous) != prec::Assignment)
638 State.Stack.back().LastSpace = State.Column;
Daniel Jasper6cabab42013-02-14 08:42:54 +0000639 else if (Previous.Type == TT_InheritanceColon)
640 State.Stack.back().Indent = State.Column;
Daniel Jasper11e13802013-05-08 14:12:04 +0000641 else if (Previous.opensScope() && !Current.FakeLParens.empty())
642 // If this function has multiple parameters or a binary expression
643 // parameter, indent nested calls from the start of the first parameter.
Daniel Jasper986e17f2013-01-28 07:35:34 +0000644 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000645 }
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000646
Manuel Klimek8092a942013-02-20 10:15:13 +0000647 return moveStateToNextToken(State, DryRun);
Daniel Jasper20409152012-12-04 14:54:30 +0000648 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000649
Daniel Jasper20409152012-12-04 14:54:30 +0000650 /// \brief Mark the next token as consumed in \p State and modify its stacks
651 /// accordingly.
Manuel Klimek8092a942013-02-20 10:15:13 +0000652 unsigned moveStateToNextToken(LineState &State, bool DryRun) {
Daniel Jasper26f7e782013-01-08 14:56:18 +0000653 const AnnotatedToken &Current = *State.NextToken;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000654 assert(State.Stack.size());
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000655
Daniel Jasper6cabab42013-02-14 08:42:54 +0000656 if (Current.Type == TT_InheritanceColon)
657 State.Stack.back().AvoidBinPacking = true;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000658 if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0)
659 State.Stack.back().FirstLessLess = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000660 if (Current.is(tok::question))
661 State.Stack.back().QuestionColumn = State.Column;
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000662 if (Current.isOneOf(tok::period, tok::arrow) &&
Daniel Jasper24849712013-03-01 16:48:32 +0000663 Line.Type == LT_BuilderTypeCall && State.ParenLevel == 0)
664 State.Stack.back().StartOfFunctionCall =
Daniel Jasper04abbb22013-05-10 13:37:16 +0000665 Current.LastInChainOfCalls ? 0 : State.Column +
666 Current.FormatTok.TokenLength;
Daniel Jasper7d812812013-02-21 15:00:29 +0000667 if (Current.Type == TT_CtorInitializerColon) {
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000668 // Indent 2 from the column, so:
669 // SomeClass::SomeClass()
670 // : First(...), ...
671 // Next(...)
672 // ^ line up here.
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000673 State.Stack.back().Indent = State.Column + 2;
Daniel Jasper7d812812013-02-21 15:00:29 +0000674 if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
675 State.Stack.back().AvoidBinPacking = true;
676 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000677 }
Daniel Jasper3776ef32013-04-03 07:21:51 +0000678
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000679 // If return returns a binary expression, align after it.
680 if (Current.is(tok::kw_return) && !Current.FakeLParens.empty())
681 State.Stack.back().LastSpace = State.Column + 7;
682
Daniel Jasper3776ef32013-04-03 07:21:51 +0000683 // In ObjC method declaration we align on the ":" of parameters, but we need
684 // to ensure that we indent parameters on subsequent lines by at least 4.
Daniel Jasper37911302013-04-02 14:33:13 +0000685 if (Current.Type == TT_ObjCMethodSpecifier)
686 State.Stack.back().Indent += 4;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000687
Daniel Jasper29f123b2013-02-08 15:28:42 +0000688 // Insert scopes created by fake parenthesis.
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000689 const AnnotatedToken *Previous = Current.getPreviousNoneComment();
690 // Don't add extra indentation for the first fake parenthesis after
691 // 'return', assignements or opening <({[. The indentation for these cases
692 // is special cased.
693 bool SkipFirstExtraIndent =
694 Current.is(tok::kw_return) ||
Daniel Jasperac3223e2013-04-10 09:49:49 +0000695 (Previous && (Previous->opensScope() ||
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000696 getPrecedence(*Previous) == prec::Assignment));
697 for (SmallVector<prec::Level, 4>::const_reverse_iterator
698 I = Current.FakeLParens.rbegin(),
699 E = Current.FakeLParens.rend();
700 I != E; ++I) {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000701 ParenState NewParenState = State.Stack.back();
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000702 NewParenState.ForFakeParenthesis = true;
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000703 NewParenState.Indent =
704 std::max(std::max(State.Column, NewParenState.Indent),
705 State.Stack.back().LastSpace);
706
707 // Always indent conditional expressions. Never indent expression where
708 // the 'operator' is ',', ';' or an assignment (i.e. *I <=
709 // prec::Assignment) as those have different indentation rules. Indent
710 // other expression, unless the indentation needs to be skipped.
711 if (*I == prec::Conditional ||
712 (!SkipFirstExtraIndent && *I > prec::Assignment))
713 NewParenState.Indent += 4;
Daniel Jasperac3223e2013-04-10 09:49:49 +0000714 if (Previous && !Previous->opensScope())
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000715 NewParenState.BreakBeforeParameter = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000716 State.Stack.push_back(NewParenState);
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000717 SkipFirstExtraIndent = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000718 }
719
Daniel Jaspercf225b62012-12-24 13:43:52 +0000720 // If we encounter an opening (, [, { or <, we add a level to our stacks to
Daniel Jasper20409152012-12-04 14:54:30 +0000721 // prepare for the following tokens.
Daniel Jasperac3223e2013-04-10 09:49:49 +0000722 if (Current.opensScope()) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000723 unsigned NewIndent;
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000724 unsigned LastSpace = State.Stack.back().LastSpace;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000725 bool AvoidBinPacking;
Manuel Klimek2851c162013-01-10 14:36:46 +0000726 if (Current.is(tok::l_brace)) {
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000727 NewIndent = Style.IndentWidth + LastSpace;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000728 AvoidBinPacking = false;
Manuel Klimek2851c162013-01-10 14:36:46 +0000729 } else {
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000730 NewIndent =
731 4 + std::max(LastSpace, State.Stack.back().StartOfFunctionCall);
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000732 AvoidBinPacking = !Style.BinPackParameters;
Manuel Klimek2851c162013-01-10 14:36:46 +0000733 }
Daniel Jasperfca24bc2013-04-25 13:31:51 +0000734
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000735 State.Stack.push_back(ParenState(NewIndent, LastSpace, AvoidBinPacking,
736 State.Stack.back().NoLineBreak));
Daniel Jasper29f123b2013-02-08 15:28:42 +0000737 ++State.ParenLevel;
Daniel Jasper20409152012-12-04 14:54:30 +0000738 }
739
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000740 // If this '[' opens an ObjC call, determine whether all parameters fit into
741 // one line and put one per line if they don't.
742 if (Current.is(tok::l_square) && Current.Type == TT_ObjCMethodExpr &&
743 Current.MatchingParen != NULL) {
744 if (getLengthToMatchingParen(Current) + State.Column > getColumnLimit())
745 State.Stack.back().BreakBeforeParameter = true;
746 }
747
Daniel Jaspercf225b62012-12-24 13:43:52 +0000748 // If we encounter a closing ), ], } or >, we can remove a level from our
Daniel Jasper20409152012-12-04 14:54:30 +0000749 // stacks.
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000750 if (Current.isOneOf(tok::r_paren, tok::r_square) ||
Daniel Jasper26f7e782013-01-08 14:56:18 +0000751 (Current.is(tok::r_brace) && State.NextToken != &RootToken) ||
752 State.NextToken->Type == TT_TemplateCloser) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000753 State.Stack.pop_back();
Daniel Jasper29f123b2013-02-08 15:28:42 +0000754 --State.ParenLevel;
755 }
756
757 // Remove scopes created by fake parenthesis.
758 for (unsigned i = 0, e = Current.FakeRParens; i != e; ++i) {
Daniel Jasperabfc9c12013-04-04 19:31:00 +0000759 unsigned VariablePos = State.Stack.back().VariablePos;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000760 State.Stack.pop_back();
Daniel Jasperabfc9c12013-04-04 19:31:00 +0000761 State.Stack.back().VariablePos = VariablePos;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000762 }
Manuel Klimek2851c162013-01-10 14:36:46 +0000763
Daniel Jasper27c7f542013-05-13 20:50:15 +0000764 if (Current.is(tok::string_literal) && State.StartOfStringLiteral == 0) {
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000765 State.StartOfStringLiteral = State.Column;
Daniel Jasper27c7f542013-05-13 20:50:15 +0000766 } else if (!Current.isOneOf(tok::comment, tok::identifier, tok::hash,
767 tok::string_literal)) {
Daniel Jasper9a2f8d02013-05-16 04:26:02 +0000768 State.StartOfStringLiteral = 0;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000769 }
770
Manuel Klimek8092a942013-02-20 10:15:13 +0000771 State.Column += Current.FormatTok.TokenLength;
772
Daniel Jasper26f7e782013-01-08 14:56:18 +0000773 if (State.NextToken->Children.empty())
774 State.NextToken = NULL;
775 else
776 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek2851c162013-01-10 14:36:46 +0000777
Manuel Klimek8092a942013-02-20 10:15:13 +0000778 return breakProtrudingToken(Current, State, DryRun);
779 }
780
781 /// \brief If the current token sticks out over the end of the line, break
782 /// it if possible.
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000783 ///
784 /// \returns An extra penalty if a token was broken, otherwise 0.
785 ///
786 /// Note that the penalty of the token protruding the allowed line length is
787 /// already handled in \c addNextStateToQueue; the returned penalty will only
788 /// cover the cost of the additional line breaks.
Manuel Klimek8092a942013-02-20 10:15:13 +0000789 unsigned breakProtrudingToken(const AnnotatedToken &Current, LineState &State,
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000790 bool DryRun) {
791 unsigned UnbreakableTailLength = Current.UnbreakableTailLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000792 llvm::OwningPtr<BreakableToken> Token;
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000793 unsigned StartColumn = State.Column - Current.FormatTok.TokenLength;
Daniel Jasper5d5b4242013-05-16 12:59:13 +0000794 if (Current.is(tok::string_literal) &&
795 Current.Type != TT_ImplicitStringLiteral) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000796 // Only break up default narrow strings.
Alexander Kornienko919398b2013-04-17 17:34:05 +0000797 const char *LiteralData = SourceMgr.getCharacterData(
798 Current.FormatTok.getStartOfNonWhitespace());
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000799 if (!LiteralData || *LiteralData != '"')
800 return 0;
801
Alexander Kornienko919398b2013-04-17 17:34:05 +0000802 Token.reset(new BreakableStringLiteral(SourceMgr, Current.FormatTok,
803 StartColumn));
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000804 } else if (Current.Type == TT_BlockComment) {
805 BreakableBlockComment *BBC =
806 new BreakableBlockComment(SourceMgr, Current, StartColumn);
807 if (!DryRun)
808 BBC->alignLines(Whitespaces);
809 Token.reset(BBC);
Daniel Jasper7ff96ed2013-05-06 10:24:51 +0000810 } else if (Current.Type == TT_LineComment &&
811 (Current.Parent == NULL ||
812 Current.Parent->Type != TT_ImplicitStringLiteral)) {
Alexander Kornienko919398b2013-04-17 17:34:05 +0000813 Token.reset(new BreakableLineComment(SourceMgr, Current, StartColumn));
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000814 } else {
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000815 return 0;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000816 }
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000817 if (UnbreakableTailLength >= getColumnLimit())
818 return 0;
819 unsigned RemainingSpace = getColumnLimit() - UnbreakableTailLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000820
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000821 bool BreakInserted = false;
822 unsigned Penalty = 0;
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000823 unsigned PositionAfterLastLineInToken = 0;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000824 for (unsigned LineIndex = 0; LineIndex < Token->getLineCount();
825 ++LineIndex) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000826 unsigned TailOffset = 0;
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000827 unsigned RemainingTokenLength =
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000828 Token->getLineLengthAfterSplit(LineIndex, TailOffset);
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000829 while (RemainingTokenLength > RemainingSpace) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000830 BreakableToken::Split Split =
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000831 Token->getSplit(LineIndex, TailOffset, getColumnLimit());
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000832 if (Split.first == StringRef::npos)
833 break;
834 assert(Split.first != 0);
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000835 unsigned NewRemainingTokenLength = Token->getLineLengthAfterSplit(
Alexander Kornienko919398b2013-04-17 17:34:05 +0000836 LineIndex, TailOffset + Split.first + Split.second);
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000837 if (NewRemainingTokenLength >= RemainingTokenLength)
Alexander Kornienko919398b2013-04-17 17:34:05 +0000838 break;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000839 if (!DryRun) {
840 Token->insertBreak(LineIndex, TailOffset, Split, Line.InPPDirective,
841 Whitespaces);
842 }
843 TailOffset += Split.first + Split.second;
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000844 RemainingTokenLength = NewRemainingTokenLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000845 Penalty += Style.PenaltyExcessCharacter;
846 BreakInserted = true;
Manuel Klimek8092a942013-02-20 10:15:13 +0000847 }
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000848 PositionAfterLastLineInToken = RemainingTokenLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000849 if (!DryRun) {
850 Token->trimLine(LineIndex, TailOffset, Line.InPPDirective, Whitespaces);
851 }
852 }
853
854 if (BreakInserted) {
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000855 State.Column = PositionAfterLastLineInToken;
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000856 for (unsigned i = 0, e = State.Stack.size(); i != e; ++i)
857 State.Stack[i].BreakBeforeParameter = true;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000858 State.Stack.back().LastSpace = StartColumn;
Manuel Klimek8092a942013-02-20 10:15:13 +0000859 }
Manuel Klimek8092a942013-02-20 10:15:13 +0000860 return Penalty;
861 }
862
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000863 unsigned getColumnLimit() {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000864 // In preprocessor directives reserve two chars for trailing " \"
865 return Style.ColumnLimit - (Line.InPPDirective ? 2 : 0);
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000866 }
867
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000868 /// \brief An edge in the solution space from \c Previous->State to \c State,
869 /// inserting a newline dependent on the \c NewLine.
870 struct StateNode {
871 StateNode(const LineState &State, bool NewLine, StateNode *Previous)
Daniel Jasperf11a7052013-02-21 21:33:55 +0000872 : State(State), NewLine(NewLine), Previous(Previous) {}
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000873 LineState State;
874 bool NewLine;
875 StateNode *Previous;
876 };
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000877
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000878 /// \brief A pair of <penalty, count> that is used to prioritize the BFS on.
879 ///
880 /// In case of equal penalties, we want to prefer states that were inserted
881 /// first. During state generation we make sure that we insert states first
882 /// that break the line as late as possible.
883 typedef std::pair<unsigned, unsigned> OrderedPenalty;
884
885 /// \brief An item in the prioritized BFS search queue. The \c StateNode's
886 /// \c State has the given \c OrderedPenalty.
887 typedef std::pair<OrderedPenalty, StateNode *> QueueItem;
888
889 /// \brief The BFS queue type.
890 typedef std::priority_queue<QueueItem, std::vector<QueueItem>,
891 std::greater<QueueItem> > QueueType;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000892
893 /// \brief Analyze the entire solution space starting from \p InitialState.
Daniel Jasperbac016b2012-12-03 18:12:45 +0000894 ///
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000895 /// This implements a variant of Dijkstra's algorithm on the graph that spans
896 /// the solution space (\c LineStates are the nodes). The algorithm tries to
897 /// find the shortest path (the one with lowest penalty) from \p InitialState
898 /// to a state where all tokens are placed.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000899 void analyzeSolutionSpace(LineState &InitialState) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000900 std::set<LineState> Seen;
901
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000902 // Insert start element into queue.
Daniel Jasperfc759082013-02-14 14:26:07 +0000903 StateNode *Node =
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000904 new (Allocator.Allocate()) StateNode(InitialState, false, NULL);
905 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
906 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000907
908 // While not empty, take first element and follow edges.
909 while (!Queue.empty()) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000910 unsigned Penalty = Queue.top().first.first;
Daniel Jasperfc759082013-02-14 14:26:07 +0000911 StateNode *Node = Queue.top().second;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000912 if (Node->State.NextToken == NULL) {
Alexander Kornienkodd256312013-05-10 11:56:10 +0000913 DEBUG(llvm::dbgs() << "\n---\nPenalty for line: " << Penalty << "\n");
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000914 break;
Daniel Jasper01786732013-02-04 07:21:18 +0000915 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000916 Queue.pop();
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000917
Daniel Jasper54b4e442013-05-22 05:27:42 +0000918 // Cut off the analysis of certain solutions if the analysis gets too
919 // complex. See description of IgnoreStackForComparison.
920 if (Count > 10000)
921 Node->State.IgnoreStackForComparison = true;
922
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000923 if (!Seen.insert(Node->State).second)
924 // State already examined with lower penalty.
925 continue;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000926
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000927 addNextStateToQueue(Penalty, Node, /*NewLine=*/ false);
928 addNextStateToQueue(Penalty, Node, /*NewLine=*/ true);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000929 }
930
931 if (Queue.empty())
932 // We were unable to find a solution, do nothing.
933 // FIXME: Add diagnostic?
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000934 return;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000935
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000936 // Reconstruct the solution.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000937 reconstructPath(InitialState, Queue.top().second);
Alexander Kornienkodd256312013-05-10 11:56:10 +0000938 DEBUG(llvm::dbgs() << "Total number of analyzed states: " << Count << "\n");
939 DEBUG(llvm::dbgs() << "---\n");
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000940 }
941
942 void reconstructPath(LineState &State, StateNode *Current) {
943 // FIXME: This recursive implementation limits the possible number
944 // of tokens per line if compiled into a binary with small stack space.
945 // To become more independent of stack frame limitations we would need
946 // to also change the TokenAnnotator.
947 if (Current->Previous == NULL)
948 return;
949 reconstructPath(State, Current->Previous);
950 DEBUG({
951 if (Current->NewLine) {
Alexander Kornienkodd256312013-05-10 11:56:10 +0000952 llvm::dbgs()
Daniel Jaspera03ab102013-02-13 20:33:44 +0000953 << "Penalty for splitting before "
954 << Current->Previous->State.NextToken->FormatTok.Tok.getName()
955 << ": " << Current->Previous->State.NextToken->SplitPenalty << "\n";
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000956 }
957 });
958 addTokenToState(Current->NewLine, false, State);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000959 }
960
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000961 /// \brief Add the following state to the analysis queue \c Queue.
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000962 ///
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000963 /// Assume the current state is \p PreviousNode and has been reached with a
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000964 /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true.
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000965 void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode,
966 bool NewLine) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000967 if (NewLine && !canBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000968 return;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000969 if (!NewLine && mustBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000970 return;
Daniel Jasperae8699b2013-01-28 09:35:24 +0000971 if (NewLine)
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000972 Penalty += PreviousNode->State.NextToken->SplitPenalty;
973
974 StateNode *Node = new (Allocator.Allocate())
975 StateNode(PreviousNode->State, NewLine, PreviousNode);
Manuel Klimek8092a942013-02-20 10:15:13 +0000976 Penalty += addTokenToState(NewLine, true, Node->State);
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000977 if (Node->State.Column > getColumnLimit()) {
978 unsigned ExcessCharacters = Node->State.Column - getColumnLimit();
Daniel Jasper01786732013-02-04 07:21:18 +0000979 Penalty += Style.PenaltyExcessCharacter * ExcessCharacters;
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000980 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000981
982 Queue.push(QueueItem(OrderedPenalty(Penalty, Count), Node));
983 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000984 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000985
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000986 /// \brief Returns \c true, if a line break after \p State is allowed.
987 bool canBreak(const LineState &State) {
Daniel Jasper399914b2013-05-17 09:35:01 +0000988 const AnnotatedToken &Current = *State.NextToken;
989 const AnnotatedToken &Previous = *Current.Parent;
990 if (!Current.CanBreakBefore &&
991 !(Current.is(tok::r_brace) &&
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000992 State.Stack.back().BreakBeforeClosingBrace))
993 return false;
Daniel Jasper399914b2013-05-17 09:35:01 +0000994 // The opening "{" of a braced list has to be on the same line as the first
995 // element if it is nested in another braced init list or function call.
996 if (!Current.MustBreakBefore && Previous.is(tok::l_brace) &&
997 Previous.Parent &&
998 Previous.Parent->isOneOf(tok::l_brace, tok::l_paren, tok::comma))
999 return false;
Daniel Jasper001bf4e2013-04-22 07:59:53 +00001000 return !State.Stack.back().NoLineBreak;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001001 }
Daniel Jasperbac016b2012-12-03 18:12:45 +00001002
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001003 /// \brief Returns \c true, if a line break after \p State is mandatory.
1004 bool mustBreak(const LineState &State) {
Daniel Jasper11e13802013-05-08 14:12:04 +00001005 const AnnotatedToken &Current = *State.NextToken;
1006 const AnnotatedToken &Previous = *Current.Parent;
1007 if (Current.MustBreakBefore || Current.Type == TT_InlineASMColon)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001008 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001009 if (Current.is(tok::r_brace) && State.Stack.back().BreakBeforeClosingBrace)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001010 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001011 if (Previous.is(tok::semi) && State.LineContainsContinuedForLoopSection)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001012 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001013 if ((Previous.isOneOf(tok::comma, tok::semi) || Current.is(tok::question) ||
1014 Current.Type == TT_ConditionalExpr) &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +00001015 State.Stack.back().BreakBeforeParameter &&
Daniel Jasper11e13802013-05-08 14:12:04 +00001016 !Current.isTrailingComment() &&
1017 !Current.isOneOf(tok::r_paren, tok::r_brace))
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001018 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001019
1020 // If we need to break somewhere inside the LHS of a binary expression, we
1021 // should also break after the operator.
1022 if (Previous.Type == TT_BinaryOperator &&
1023 !Previous.isOneOf(tok::lessless, tok::question) &&
1024 getPrecedence(Previous) != prec::Assignment &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +00001025 State.Stack.back().BreakBeforeParameter)
Daniel Jasper63d7ced2013-02-05 10:07:47 +00001026 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001027
1028 // FIXME: Comparing LongestObjCSelectorName to 0 is a hacky way of finding
1029 // out whether it is the first parameter. Clean this up.
1030 if (Current.Type == TT_ObjCSelectorName &&
1031 Current.LongestObjCSelectorName == 0 &&
1032 State.Stack.back().BreakBeforeParameter)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001033 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001034 if ((Current.Type == TT_CtorInitializerColon ||
1035 (Previous.ClosesTemplateDeclaration && State.ParenLevel == 0)))
Daniel Jasper923ebef2013-03-14 13:45:21 +00001036 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001037
Daniel Jasper3af59ce2013-03-15 14:57:30 +00001038 // This prevents breaks like:
1039 // ...
1040 // SomeParameter, OtherParameter).DoSomething(
1041 // ...
1042 // As they hide "DoSomething" and generally bad for readability.
Daniel Jasper11e13802013-05-08 14:12:04 +00001043 if (Current.isOneOf(tok::period, tok::arrow) &&
Daniel Jasper3af59ce2013-03-15 14:57:30 +00001044 getRemainingLength(State) + State.Column > getColumnLimit() &&
1045 State.ParenLevel < State.StartOfLineLevel)
1046 return true;
Daniel Jasper33f4b902013-05-15 09:35:08 +00001047
1048 if (Current.Type == TT_StartOfName && Line.MightBeFunctionDecl &&
1049 State.Stack.back().BreakBeforeParameter && State.ParenLevel == 0)
1050 return true;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001051 return false;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001052 }
1053
Daniel Jasper3af59ce2013-03-15 14:57:30 +00001054 // Returns the total number of columns required for the remaining tokens.
1055 unsigned getRemainingLength(const LineState &State) {
1056 if (State.NextToken && State.NextToken->Parent)
1057 return Line.Last->TotalLength - State.NextToken->Parent->TotalLength;
1058 return 0;
1059 }
1060
Daniel Jasperbac016b2012-12-03 18:12:45 +00001061 FormatStyle Style;
1062 SourceManager &SourceMgr;
Daniel Jasper995e8202013-01-14 13:08:07 +00001063 const AnnotatedLine &Line;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001064 const unsigned FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +00001065 const AnnotatedToken &RootToken;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001066 WhitespaceManager &Whitespaces;
Manuel Klimek62a48fb2013-02-13 10:54:19 +00001067
1068 llvm::SpecificBumpPtrAllocator<StateNode> Allocator;
1069 QueueType Queue;
1070 // Increasing count of \c StateNode items we have created. This is used
1071 // to create a deterministic order independent of the container.
1072 unsigned Count;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001073};
1074
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001075class LexerBasedFormatTokenSource : public FormatTokenSource {
1076public:
1077 LexerBasedFormatTokenSource(Lexer &Lex, SourceManager &SourceMgr)
Daniel Jasper1321eb52012-12-18 21:05:13 +00001078 : GreaterStashed(false), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001079 IdentTable(Lex.getLangOpts()) {
1080 Lex.SetKeepWhitespaceMode(true);
1081 }
1082
1083 virtual FormatToken getNextToken() {
1084 if (GreaterStashed) {
1085 FormatTok.NewlinesBefore = 0;
Manuel Klimekad3094b2013-05-23 10:56:37 +00001086 SourceLocation GreaterLocation =
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001087 FormatTok.Tok.getLocation().getLocWithOffset(1);
Manuel Klimekad3094b2013-05-23 10:56:37 +00001088 FormatTok.WhitespaceRange = SourceRange(GreaterLocation, GreaterLocation);
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001089 GreaterStashed = false;
1090 return FormatTok;
1091 }
1092
1093 FormatTok = FormatToken();
1094 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +00001095 StringRef Text = rawTokenText(FormatTok.Tok);
Manuel Klimekad3094b2013-05-23 10:56:37 +00001096 SourceLocation WhitespaceStart = FormatTok.Tok.getLocation();
1097 if (SourceMgr.getFileOffset(WhitespaceStart) == 0)
Manuel Klimekf6fd00b2013-01-05 22:56:06 +00001098 FormatTok.IsFirst = true;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001099
1100 // Consume and record whitespace until we find a significant token.
Manuel Klimekad3094b2013-05-23 10:56:37 +00001101 unsigned WhitespaceLength = 0;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001102 while (FormatTok.Tok.is(tok::unknown)) {
Manuel Klimeka28fc062013-02-11 12:33:24 +00001103 unsigned Newlines = Text.count('\n');
Daniel Jasper1eee6c42013-03-04 13:43:19 +00001104 if (Newlines > 0)
Manuel Klimekad3094b2013-05-23 10:56:37 +00001105 FormatTok.LastNewlineOffset = WhitespaceLength + Text.rfind('\n') + 1;
Manuel Klimeka28fc062013-02-11 12:33:24 +00001106 unsigned EscapedNewlines = Text.count("\\\n");
1107 FormatTok.NewlinesBefore += Newlines;
1108 FormatTok.HasUnescapedNewline |= EscapedNewlines != Newlines;
Manuel Klimekad3094b2013-05-23 10:56:37 +00001109 WhitespaceLength += FormatTok.Tok.getLength();
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001110
Manuel Klimekad3094b2013-05-23 10:56:37 +00001111 if (FormatTok.Tok.is(tok::eof)) {
1112 FormatTok.WhitespaceRange =
1113 SourceRange(WhitespaceStart,
1114 WhitespaceStart.getLocWithOffset(WhitespaceLength));
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001115 return FormatTok;
Manuel Klimekad3094b2013-05-23 10:56:37 +00001116 }
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001117 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +00001118 Text = rawTokenText(FormatTok.Tok);
Manuel Klimekd4397b92013-01-04 23:34:14 +00001119 }
Manuel Klimek95419382013-01-07 07:56:50 +00001120
1121 // Now FormatTok is the next non-whitespace token.
1122 FormatTok.TokenLength = Text.size();
1123
Alexander Kornienko919398b2013-04-17 17:34:05 +00001124 if (FormatTok.Tok.is(tok::comment)) {
1125 FormatTok.TrailingWhiteSpaceLength = Text.size() - Text.rtrim().size();
1126 FormatTok.TokenLength -= FormatTok.TrailingWhiteSpaceLength;
1127 }
1128
Manuel Klimekd4397b92013-01-04 23:34:14 +00001129 // In case the token starts with escaped newlines, we want to
1130 // take them into account as whitespace - this pattern is quite frequent
1131 // in macro definitions.
1132 // FIXME: What do we want to do with other escaped spaces, and escaped
1133 // spaces or newlines in the middle of tokens?
1134 // FIXME: Add a more explicit test.
1135 unsigned i = 0;
Daniel Jasper71607512013-01-07 10:48:50 +00001136 while (i + 1 < Text.size() && Text[i] == '\\' && Text[i + 1] == '\n') {
Manuel Klimek86721d22013-01-22 16:31:55 +00001137 // FIXME: ++FormatTok.NewlinesBefore is missing...
Manuel Klimekad3094b2013-05-23 10:56:37 +00001138 WhitespaceLength += 2;
Manuel Klimek95419382013-01-07 07:56:50 +00001139 FormatTok.TokenLength -= 2;
Manuel Klimekd4397b92013-01-04 23:34:14 +00001140 i += 2;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001141 }
1142
1143 if (FormatTok.Tok.is(tok::raw_identifier)) {
Manuel Klimekd4397b92013-01-04 23:34:14 +00001144 IdentifierInfo &Info = IdentTable.get(Text);
Daniel Jaspercd1a32b2012-12-21 17:58:39 +00001145 FormatTok.Tok.setIdentifierInfo(&Info);
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001146 FormatTok.Tok.setKind(Info.getTokenID());
1147 }
1148
1149 if (FormatTok.Tok.is(tok::greatergreater)) {
1150 FormatTok.Tok.setKind(tok::greater);
Daniel Jasperb6f02f32013-02-28 10:06:05 +00001151 FormatTok.TokenLength = 1;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001152 GreaterStashed = true;
1153 }
1154
Manuel Klimekad3094b2013-05-23 10:56:37 +00001155 FormatTok.WhitespaceRange = SourceRange(
1156 WhitespaceStart, WhitespaceStart.getLocWithOffset(WhitespaceLength));
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001157 return FormatTok;
1158 }
1159
Nico Weberc2e6d2a2013-02-11 15:32:15 +00001160 IdentifierTable &getIdentTable() { return IdentTable; }
1161
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001162private:
1163 FormatToken FormatTok;
1164 bool GreaterStashed;
1165 Lexer &Lex;
1166 SourceManager &SourceMgr;
1167 IdentifierTable IdentTable;
1168
1169 /// Returns the text of \c FormatTok.
Manuel Klimek95419382013-01-07 07:56:50 +00001170 StringRef rawTokenText(Token &Tok) {
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001171 return StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
1172 Tok.getLength());
1173 }
1174};
1175
Daniel Jasperbac016b2012-12-03 18:12:45 +00001176class Formatter : public UnwrappedLineConsumer {
1177public:
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001178 Formatter(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr,
Daniel Jasperbac016b2012-12-03 18:12:45 +00001179 const std::vector<CharSourceRange> &Ranges)
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001180 : Style(Style), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko052685c2013-03-19 17:41:36 +00001181 Whitespaces(SourceMgr, Style), Ranges(Ranges) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +00001182
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001183 virtual ~Formatter() {}
Daniel Jasperaccb0b02012-12-04 21:05:31 +00001184
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001185 tooling::Replacements format() {
1186 LexerBasedFormatTokenSource Tokens(Lex, SourceMgr);
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001187 UnwrappedLineParser Parser(Style, Tokens, *this);
Manuel Klimek67d080d2013-04-12 14:13:36 +00001188 bool StructuralError = Parser.parse();
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001189 TokenAnnotator Annotator(Style, SourceMgr, Lex,
1190 Tokens.getIdentTable().get("in"));
1191 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1192 Annotator.annotate(AnnotatedLines[i]);
1193 }
1194 deriveLocalStyle();
1195 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1196 Annotator.calculateFormattingInformation(AnnotatedLines[i]);
1197 }
Daniel Jasper5999f762013-04-09 17:46:55 +00001198
1199 // Adapt level to the next line if this is a comment.
1200 // FIXME: Can/should this be done in the UnwrappedLineParser?
Daniel Jasper1407bee2013-04-11 14:29:13 +00001201 const AnnotatedLine *NextNoneCommentLine = NULL;
Daniel Jasper5999f762013-04-09 17:46:55 +00001202 for (unsigned i = AnnotatedLines.size() - 1; i > 0; --i) {
1203 if (NextNoneCommentLine && AnnotatedLines[i].First.is(tok::comment) &&
1204 AnnotatedLines[i].First.Children.empty())
1205 AnnotatedLines[i].Level = NextNoneCommentLine->Level;
1206 else
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001207 NextNoneCommentLine =
1208 AnnotatedLines[i].First.isNot(tok::r_brace) ? &AnnotatedLines[i]
1209 : NULL;
Daniel Jasper5999f762013-04-09 17:46:55 +00001210 }
1211
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001212 std::vector<int> IndentForLevel;
1213 bool PreviousLineWasTouched = false;
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001214 const AnnotatedToken *PreviousLineLastToken = 0;
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001215 bool FormatPPDirective = false;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001216 for (std::vector<AnnotatedLine>::iterator I = AnnotatedLines.begin(),
1217 E = AnnotatedLines.end();
1218 I != E; ++I) {
1219 const AnnotatedLine &TheLine = *I;
1220 const FormatToken &FirstTok = TheLine.First.FormatTok;
1221 int Offset = getIndentOffset(TheLine.First);
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001222
1223 // Check whether this line is part of a formatted preprocessor directive.
1224 if (FirstTok.HasUnescapedNewline)
1225 FormatPPDirective = false;
1226 if (!FormatPPDirective && TheLine.InPPDirective &&
1227 (touchesLine(TheLine) || touchesPPDirective(I + 1, E)))
1228 FormatPPDirective = true;
1229
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001230 // Determine indent and try to merge multiple unwrapped lines.
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001231 while (IndentForLevel.size() <= TheLine.Level)
1232 IndentForLevel.push_back(-1);
1233 IndentForLevel.resize(TheLine.Level + 1);
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001234 unsigned Indent = getIndent(IndentForLevel, TheLine.Level);
1235 if (static_cast<int>(Indent) + Offset >= 0)
1236 Indent += Offset;
1237 tryFitMultipleLinesInOne(Indent, I, E);
1238
Daniel Jasperf9955d32013-03-20 12:37:50 +00001239 bool WasMoved = PreviousLineWasTouched && FirstTok.NewlinesBefore == 0;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001240 if (TheLine.First.is(tok::eof)) {
1241 if (PreviousLineWasTouched) {
1242 unsigned NewLines = std::min(FirstTok.NewlinesBefore, 1u);
1243 Whitespaces.replaceWhitespace(TheLine.First, NewLines, /*Indent*/ 0,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001244 /*TargetColumn*/ 0);
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001245 }
1246 } else if (TheLine.Type != LT_Invalid &&
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001247 (WasMoved || FormatPPDirective || touchesLine(TheLine))) {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001248 unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level);
Manuel Klimekad3094b2013-05-23 10:56:37 +00001249 if (FirstTok.WhitespaceRange.isValid() &&
Manuel Klimek67d080d2013-04-12 14:13:36 +00001250 // Insert a break even if there is a structural error in case where
1251 // we break apart a line consisting of multiple unwrapped lines.
1252 (FirstTok.NewlinesBefore == 0 || !StructuralError)) {
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001253 formatFirstToken(TheLine.First, PreviousLineLastToken, Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001254 TheLine.InPPDirective);
Manuel Klimek67d080d2013-04-12 14:13:36 +00001255 } else {
1256 Indent = LevelIndent =
1257 SourceMgr.getSpellingColumnNumber(FirstTok.Tok.getLocation()) - 1;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001258 }
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001259 UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, Indent,
Manuel Klimek67d080d2013-04-12 14:13:36 +00001260 TheLine.First, Whitespaces);
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001261 Formatter.format(I + 1 != E ? &*(I + 1) : NULL);
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001262 IndentForLevel[TheLine.Level] = LevelIndent;
1263 PreviousLineWasTouched = true;
1264 } else {
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001265 // Format the first token if necessary, and notify the WhitespaceManager
1266 // about the unchanged whitespace.
1267 for (const AnnotatedToken *Tok = &TheLine.First; Tok != NULL;
1268 Tok = Tok->Children.empty() ? NULL : &Tok->Children[0]) {
1269 if (Tok == &TheLine.First &&
1270 (Tok->FormatTok.NewlinesBefore > 0 || Tok->FormatTok.IsFirst)) {
1271 unsigned LevelIndent = SourceMgr.getSpellingColumnNumber(
1272 Tok->FormatTok.Tok.getLocation()) -
1273 1;
1274 // Remove trailing whitespace of the previous line if it was
1275 // touched.
1276 if (PreviousLineWasTouched || touchesEmptyLineBefore(TheLine)) {
1277 formatFirstToken(*Tok, PreviousLineLastToken, LevelIndent,
1278 TheLine.InPPDirective);
1279 } else {
1280 Whitespaces.addUntouchableToken(Tok->FormatTok,
1281 TheLine.InPPDirective);
1282 }
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001283
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001284 if (static_cast<int>(LevelIndent) - Offset >= 0)
1285 LevelIndent -= Offset;
1286 if (Tok->isNot(tok::comment))
1287 IndentForLevel[TheLine.Level] = LevelIndent;
1288 } else {
1289 Whitespaces.addUntouchableToken(Tok->FormatTok,
1290 TheLine.InPPDirective);
1291 }
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001292 }
1293 // If we did not reformat this unwrapped line, the column at the end of
1294 // the last token is unchanged - thus, we can calculate the end of the
1295 // last token.
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001296 PreviousLineWasTouched = false;
1297 }
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001298 PreviousLineLastToken = I->Last;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001299 }
1300 return Whitespaces.generateReplacements();
1301 }
1302
1303private:
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001304 void deriveLocalStyle() {
1305 unsigned CountBoundToVariable = 0;
1306 unsigned CountBoundToType = 0;
1307 bool HasCpp03IncompatibleFormat = false;
1308 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1309 if (AnnotatedLines[i].First.Children.empty())
1310 continue;
1311 AnnotatedToken *Tok = &AnnotatedLines[i].First.Children[0];
1312 while (!Tok->Children.empty()) {
1313 if (Tok->Type == TT_PointerOrReference) {
Manuel Klimekad3094b2013-05-23 10:56:37 +00001314 bool SpacesBefore = Tok->FormatTok.WhitespaceRange.getBegin() !=
1315 Tok->FormatTok.WhitespaceRange.getEnd();
1316 bool SpacesAfter =
1317 Tok->Children[0].FormatTok.WhitespaceRange.getBegin() !=
1318 Tok->Children[0].FormatTok.WhitespaceRange.getEnd();
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001319 if (SpacesBefore && !SpacesAfter)
1320 ++CountBoundToVariable;
1321 else if (!SpacesBefore && SpacesAfter)
1322 ++CountBoundToType;
1323 }
1324
Daniel Jasper29f123b2013-02-08 15:28:42 +00001325 if (Tok->Type == TT_TemplateCloser &&
1326 Tok->Parent->Type == TT_TemplateCloser &&
Manuel Klimekad3094b2013-05-23 10:56:37 +00001327 Tok->FormatTok.WhitespaceRange.getBegin() ==
1328 Tok->FormatTok.WhitespaceRange.getEnd())
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001329 HasCpp03IncompatibleFormat = true;
1330 Tok = &Tok->Children[0];
1331 }
1332 }
1333 if (Style.DerivePointerBinding) {
1334 if (CountBoundToType > CountBoundToVariable)
1335 Style.PointerBindsToType = true;
1336 else if (CountBoundToType < CountBoundToVariable)
1337 Style.PointerBindsToType = false;
1338 }
1339 if (Style.Standard == FormatStyle::LS_Auto) {
1340 Style.Standard = HasCpp03IncompatibleFormat ? FormatStyle::LS_Cpp11
1341 : FormatStyle::LS_Cpp03;
1342 }
1343 }
1344
Manuel Klimek547d5db2013-02-08 17:38:27 +00001345 /// \brief Get the indent of \p Level from \p IndentForLevel.
1346 ///
1347 /// \p IndentForLevel must contain the indent for the level \c l
1348 /// at \p IndentForLevel[l], or a value < 0 if the indent for
1349 /// that level is unknown.
Daniel Jasperfc759082013-02-14 14:26:07 +00001350 unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001351 if (IndentForLevel[Level] != -1)
1352 return IndentForLevel[Level];
Manuel Klimek52635ff2013-02-08 19:53:32 +00001353 if (Level == 0)
1354 return 0;
Manuel Klimek07a64ec2013-05-13 08:42:42 +00001355 return getIndent(IndentForLevel, Level - 1) + Style.IndentWidth;
Manuel Klimek547d5db2013-02-08 17:38:27 +00001356 }
1357
1358 /// \brief Get the offset of the line relatively to the level.
1359 ///
1360 /// For example, 'public:' labels in classes are offset by 1 or 2
1361 /// characters to the left from their level.
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001362 int getIndentOffset(const AnnotatedToken &RootToken) {
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001363 if (RootToken.isAccessSpecifier(false) || RootToken.isObjCAccessSpecifier())
Manuel Klimek547d5db2013-02-08 17:38:27 +00001364 return Style.AccessModifierOffset;
1365 return 0;
1366 }
1367
Manuel Klimek517e8942013-01-11 17:54:10 +00001368 /// \brief Tries to merge lines into one.
1369 ///
1370 /// This will change \c Line and \c AnnotatedLine to contain the merged line,
1371 /// if possible; note that \c I will be incremented when lines are merged.
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001372 void tryFitMultipleLinesInOne(unsigned Indent,
Daniel Jasper995e8202013-01-14 13:08:07 +00001373 std::vector<AnnotatedLine>::iterator &I,
1374 std::vector<AnnotatedLine>::iterator E) {
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001375 // We can never merge stuff if there are trailing line comments.
1376 if (I->Last->Type == TT_LineComment)
1377 return;
1378
Daniel Jaspera4d46212013-02-28 11:05:57 +00001379 unsigned Limit = Style.ColumnLimit - Indent;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001380 // If we already exceed the column limit, we set 'Limit' to 0. The different
1381 // tryMerge..() functions can then decide whether to still do merging.
1382 Limit = I->Last->TotalLength > Limit ? 0 : Limit - I->Last->TotalLength;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001383
Daniel Jasper9c8c40e2013-01-21 14:18:28 +00001384 if (I + 1 == E || (I + 1)->Type == LT_Invalid)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001385 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001386
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001387 if (I->Last->is(tok::l_brace)) {
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001388 tryMergeSimpleBlock(I, E, Limit);
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001389 } else if (Style.AllowShortIfStatementsOnASingleLine &&
1390 I->First.is(tok::kw_if)) {
1391 tryMergeSimpleControlStatement(I, E, Limit);
1392 } else if (Style.AllowShortLoopsOnASingleLine &&
1393 I->First.isOneOf(tok::kw_for, tok::kw_while)) {
1394 tryMergeSimpleControlStatement(I, E, Limit);
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001395 } else if (I->InPPDirective && (I->First.FormatTok.HasUnescapedNewline ||
1396 I->First.FormatTok.IsFirst)) {
1397 tryMergeSimplePPDirective(I, E, Limit);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001398 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001399 }
1400
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001401 void tryMergeSimplePPDirective(std::vector<AnnotatedLine>::iterator &I,
1402 std::vector<AnnotatedLine>::iterator E,
1403 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001404 if (Limit == 0)
1405 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001406 AnnotatedLine &Line = *I;
Daniel Jasper2b9c10b2013-01-14 15:52:06 +00001407 if (!(I + 1)->InPPDirective || (I + 1)->First.FormatTok.HasUnescapedNewline)
1408 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001409 if (I + 2 != E && (I + 2)->InPPDirective &&
1410 !(I + 2)->First.FormatTok.HasUnescapedNewline)
1411 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001412 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001413 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001414 join(Line, *(++I));
1415 }
1416
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001417 void tryMergeSimpleControlStatement(std::vector<AnnotatedLine>::iterator &I,
1418 std::vector<AnnotatedLine>::iterator E,
1419 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001420 if (Limit == 0)
1421 return;
Manuel Klimek4c128122013-01-18 14:46:43 +00001422 if ((I + 1)->InPPDirective != I->InPPDirective ||
1423 ((I + 1)->InPPDirective &&
1424 (I + 1)->First.FormatTok.HasUnescapedNewline))
1425 return;
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001426 AnnotatedLine &Line = *I;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001427 if (Line.Last->isNot(tok::r_paren))
1428 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001429 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001430 return;
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001431 if ((I + 1)->First.isOneOf(tok::semi, tok::kw_if, tok::kw_for,
1432 tok::kw_while) ||
1433 (I + 1)->First.Type == TT_LineComment)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001434 return;
1435 // Only inline simple if's (no nested if or else).
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001436 if (I + 2 != E && Line.First.is(tok::kw_if) &&
1437 (I + 2)->First.is(tok::kw_else))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001438 return;
1439 join(Line, *(++I));
1440 }
1441
1442 void tryMergeSimpleBlock(std::vector<AnnotatedLine>::iterator &I,
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001443 std::vector<AnnotatedLine>::iterator E,
1444 unsigned Limit) {
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001445 // No merging if the brace already is on the next line.
1446 if (Style.BreakBeforeBraces != FormatStyle::BS_Attach)
1447 return;
1448
Manuel Klimek517e8942013-01-11 17:54:10 +00001449 // First, check that the current line allows merging. This is the case if
1450 // we're not in a control flow statement and the last token is an opening
1451 // brace.
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001452 AnnotatedLine &Line = *I;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001453 if (Line.First.isOneOf(tok::kw_if, tok::kw_while, tok::kw_do, tok::r_brace,
1454 tok::kw_else, tok::kw_try, tok::kw_catch,
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001455 tok::kw_for, tok::kw_namespace,
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001456 // This gets rid of all ObjC @ keywords and methods.
1457 tok::at, tok::minus, tok::plus))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001458 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001459
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001460 AnnotatedToken *Tok = &(I + 1)->First;
Daniel Jasper058f6f82013-05-16 10:17:39 +00001461 if (Tok->getNextNoneComment() == NULL && Tok->is(tok::r_brace) &&
Daniel Jasperf11a7052013-02-21 21:33:55 +00001462 !Tok->MustBreakBefore) {
1463 // We merge empty blocks even if the line exceeds the column limit.
Daniel Jasper729a7432013-02-11 12:36:37 +00001464 Tok->SpacesRequiredBefore = 0;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001465 Tok->CanBreakBefore = true;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001466 join(Line, *(I + 1));
1467 I += 1;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001468 } else if (Limit != 0) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001469 // Check that we still have three lines and they fit into the limit.
1470 if (I + 2 == E || (I + 2)->Type == LT_Invalid ||
1471 !nextTwoLinesFitInto(I, Limit))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001472 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001473
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001474 // Second, check that the next line does not contain any braces - if it
1475 // does, readability declines when putting it into a single line.
1476 if ((I + 1)->Last->Type == TT_LineComment || Tok->MustBreakBefore)
1477 return;
1478 do {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001479 if (Tok->isOneOf(tok::l_brace, tok::r_brace))
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001480 return;
1481 Tok = Tok->Children.empty() ? NULL : &Tok->Children.back();
1482 } while (Tok != NULL);
Manuel Klimek517e8942013-01-11 17:54:10 +00001483
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001484 // Last, check that the third line contains a single closing brace.
1485 Tok = &(I + 2)->First;
Daniel Jasper058f6f82013-05-16 10:17:39 +00001486 if (Tok->getNextNoneComment() != NULL || Tok->isNot(tok::r_brace) ||
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001487 Tok->MustBreakBefore)
1488 return;
1489
1490 join(Line, *(I + 1));
1491 join(Line, *(I + 2));
1492 I += 2;
Manuel Klimek517e8942013-01-11 17:54:10 +00001493 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001494 }
1495
1496 bool nextTwoLinesFitInto(std::vector<AnnotatedLine>::iterator I,
1497 unsigned Limit) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001498 return 1 + (I + 1)->Last->TotalLength + 1 + (I + 2)->Last->TotalLength <=
1499 Limit;
Manuel Klimek517e8942013-01-11 17:54:10 +00001500 }
1501
Daniel Jasper995e8202013-01-14 13:08:07 +00001502 void join(AnnotatedLine &A, const AnnotatedLine &B) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001503 unsigned LengthA = A.Last->TotalLength + B.First.SpacesRequiredBefore;
Daniel Jasper995e8202013-01-14 13:08:07 +00001504 A.Last->Children.push_back(B.First);
1505 while (!A.Last->Children.empty()) {
1506 A.Last->Children[0].Parent = A.Last;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001507 A.Last->Children[0].TotalLength += LengthA;
Daniel Jasper995e8202013-01-14 13:08:07 +00001508 A.Last = &A.Last->Children[0];
1509 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001510 }
1511
Daniel Jasper6f21a982013-03-13 07:49:51 +00001512 bool touchesRanges(const CharSourceRange &Range) {
Daniel Jasperf3023542013-03-07 20:50:00 +00001513 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1514 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),
1515 Ranges[i].getBegin()) &&
1516 !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
1517 Range.getBegin()))
1518 return true;
1519 }
1520 return false;
1521 }
1522
1523 bool touchesLine(const AnnotatedLine &TheLine) {
Daniel Jasper995e8202013-01-14 13:08:07 +00001524 const FormatToken *First = &TheLine.First.FormatTok;
1525 const FormatToken *Last = &TheLine.Last->FormatTok;
Daniel Jasper84f5ddf2013-05-14 10:31:09 +00001526 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001527 First->WhitespaceRange.getBegin().getLocWithOffset(
1528 First->LastNewlineOffset),
Daniel Jasper84f5ddf2013-05-14 10:31:09 +00001529 Last->Tok.getLocation().getLocWithOffset(Last->TokenLength - 1));
Daniel Jasperf3023542013-03-07 20:50:00 +00001530 return touchesRanges(LineRange);
1531 }
1532
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001533 bool touchesPPDirective(std::vector<AnnotatedLine>::iterator I,
1534 std::vector<AnnotatedLine>::iterator E) {
1535 for (; I != E; ++I) {
1536 if (I->First.FormatTok.HasUnescapedNewline)
1537 return false;
1538 if (touchesLine(*I))
1539 return true;
1540 }
1541 return false;
1542 }
1543
Daniel Jasperf3023542013-03-07 20:50:00 +00001544 bool touchesEmptyLineBefore(const AnnotatedLine &TheLine) {
1545 const FormatToken *First = &TheLine.First.FormatTok;
1546 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001547 First->WhitespaceRange.getBegin(),
1548 First->WhitespaceRange.getBegin().getLocWithOffset(
1549 First->LastNewlineOffset));
Daniel Jasperf3023542013-03-07 20:50:00 +00001550 return touchesRanges(LineRange);
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001551 }
1552
1553 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
Daniel Jaspercbb6c412013-01-16 09:10:19 +00001554 AnnotatedLines.push_back(AnnotatedLine(TheLine));
Daniel Jasperbac016b2012-12-03 18:12:45 +00001555 }
1556
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001557 /// \brief Add a new line and the required indent before the first Token
1558 /// of the \c UnwrappedLine if there was no structural parsing error.
1559 /// Returns the indent level of the \c UnwrappedLine.
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001560 void formatFirstToken(const AnnotatedToken &RootToken,
1561 const AnnotatedToken *PreviousToken, unsigned Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001562 bool InPPDirective) {
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001563 const FormatToken &Tok = RootToken.FormatTok;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001564
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001565 unsigned Newlines =
1566 std::min(Tok.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001567 if (Newlines == 0 && !Tok.IsFirst)
1568 Newlines = 1;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001569
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001570 // Insert extra new line before access specifiers.
1571 if (PreviousToken && PreviousToken->isOneOf(tok::semi, tok::r_brace) &&
1572 RootToken.isAccessSpecifier() && Tok.NewlinesBefore == 1)
1573 ++Newlines;
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001574
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001575 Whitespaces.replaceWhitespace(RootToken, Newlines, Indent, Indent,
1576 InPPDirective && !Tok.HasUnescapedNewline);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001577 }
1578
Daniel Jasperbac016b2012-12-03 18:12:45 +00001579 FormatStyle Style;
1580 Lexer &Lex;
1581 SourceManager &SourceMgr;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001582 WhitespaceManager Whitespaces;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001583 std::vector<CharSourceRange> Ranges;
Daniel Jasper995e8202013-01-14 13:08:07 +00001584 std::vector<AnnotatedLine> AnnotatedLines;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001585};
1586
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001587tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
1588 SourceManager &SourceMgr,
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001589 std::vector<CharSourceRange> Ranges) {
1590 Formatter formatter(Style, Lex, SourceMgr, Ranges);
Daniel Jasperbac016b2012-12-03 18:12:45 +00001591 return formatter.format();
1592}
1593
Daniel Jasper8a999452013-05-16 10:40:07 +00001594tooling::Replacements reformat(const FormatStyle &Style, StringRef Code,
1595 std::vector<tooling::Range> Ranges,
1596 StringRef FileName) {
1597 FileManager Files((FileSystemOptions()));
1598 DiagnosticsEngine Diagnostics(
1599 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
1600 new DiagnosticOptions);
1601 SourceManager SourceMgr(Diagnostics, Files);
1602 llvm::MemoryBuffer *Buf = llvm::MemoryBuffer::getMemBuffer(Code, FileName);
1603 const clang::FileEntry *Entry =
1604 Files.getVirtualFile(FileName, Buf->getBufferSize(), 0);
1605 SourceMgr.overrideFileContents(Entry, Buf);
1606 FileID ID =
1607 SourceMgr.createFileID(Entry, SourceLocation(), clang::SrcMgr::C_User);
1608 Lexer Lex(ID, SourceMgr.getBuffer(ID), SourceMgr, getFormattingLangOpts());
1609 SourceLocation StartOfFile = SourceMgr.getLocForStartOfFile(ID);
1610 std::vector<CharSourceRange> CharRanges;
1611 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1612 SourceLocation Start = StartOfFile.getLocWithOffset(Ranges[i].getOffset());
1613 SourceLocation End = Start.getLocWithOffset(Ranges[i].getLength());
1614 CharRanges.push_back(CharSourceRange::getCharRange(Start, End));
1615 }
1616 return reformat(Style, Lex, SourceMgr, CharRanges);
1617}
1618
Daniel Jasper46ef8522013-01-10 13:08:12 +00001619LangOptions getFormattingLangOpts() {
1620 LangOptions LangOpts;
1621 LangOpts.CPlusPlus = 1;
1622 LangOpts.CPlusPlus11 = 1;
Daniel Jasperb64eca02013-03-22 10:01:29 +00001623 LangOpts.LineComment = 1;
Daniel Jasper46ef8522013-01-10 13:08:12 +00001624 LangOpts.Bool = 1;
1625 LangOpts.ObjC1 = 1;
1626 LangOpts.ObjC2 = 1;
1627 return LangOpts;
1628}
1629
Daniel Jaspercd162382013-01-07 13:26:07 +00001630} // namespace format
1631} // namespace clang