blob: 6e81e44fe0335587fec9c9d632053a7314d9b012 [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);
103 IO.mapOptional("Standard", Style.Standard);
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000104 IO.mapOptional("IndentWidth", Style.IndentWidth);
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000105 IO.mapOptional("UseTab", Style.UseTab);
Manuel Klimek44135b82013-05-13 12:51:40 +0000106 IO.mapOptional("BreakBeforeBraces", Style.BreakBeforeBraces);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000107 }
108};
109}
110}
111
Daniel Jasperbac016b2012-12-03 18:12:45 +0000112namespace clang {
113namespace format {
114
Daniel Jasperbac016b2012-12-03 18:12:45 +0000115FormatStyle getLLVMStyle() {
116 FormatStyle LLVMStyle;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000117 LLVMStyle.AccessModifierOffset = -2;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000118 LLVMStyle.AlignEscapedNewlinesLeft = false;
Daniel Jasperf1579602013-01-29 16:03:49 +0000119 LLVMStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000120 LLVMStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000121 LLVMStyle.AllowShortLoopsOnASingleLine = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000122 LLVMStyle.BinPackParameters = true;
123 LLVMStyle.ColumnLimit = 80;
124 LLVMStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = false;
125 LLVMStyle.DerivePointerBinding = false;
126 LLVMStyle.IndentCaseLabels = false;
127 LLVMStyle.MaxEmptyLinesToKeep = 1;
Nico Weber5f500df2013-01-10 20:12:55 +0000128 LLVMStyle.ObjCSpaceBeforeProtocolList = true;
Daniel Jasper01786732013-02-04 07:21:18 +0000129 LLVMStyle.PenaltyExcessCharacter = 1000000;
Daniel Jasper1407bee2013-04-11 14:29:13 +0000130 LLVMStyle.PenaltyReturnTypeOnItsOwnLine = 75;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000131 LLVMStyle.PointerBindsToType = false;
132 LLVMStyle.SpacesBeforeTrailingComments = 1;
133 LLVMStyle.Standard = FormatStyle::LS_Cpp03;
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000134 LLVMStyle.IndentWidth = 2;
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000135 LLVMStyle.UseTab = false;
Manuel Klimek44135b82013-05-13 12:51:40 +0000136 LLVMStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000137 return LLVMStyle;
138}
139
140FormatStyle getGoogleStyle() {
141 FormatStyle GoogleStyle;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000142 GoogleStyle.AccessModifierOffset = -1;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000143 GoogleStyle.AlignEscapedNewlinesLeft = true;
Daniel Jasperf1579602013-01-29 16:03:49 +0000144 GoogleStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper94d6ad72013-04-24 13:46:00 +0000145 GoogleStyle.AllowShortIfStatementsOnASingleLine = true;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000146 GoogleStyle.AllowShortLoopsOnASingleLine= true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000147 GoogleStyle.BinPackParameters = true;
148 GoogleStyle.ColumnLimit = 80;
149 GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
150 GoogleStyle.DerivePointerBinding = true;
151 GoogleStyle.IndentCaseLabels = true;
152 GoogleStyle.MaxEmptyLinesToKeep = 1;
Nico Weber5f500df2013-01-10 20:12:55 +0000153 GoogleStyle.ObjCSpaceBeforeProtocolList = false;
Daniel Jasper01786732013-02-04 07:21:18 +0000154 GoogleStyle.PenaltyExcessCharacter = 1000000;
Daniel Jasper1407bee2013-04-11 14:29:13 +0000155 GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000156 GoogleStyle.PointerBindsToType = true;
157 GoogleStyle.SpacesBeforeTrailingComments = 2;
158 GoogleStyle.Standard = FormatStyle::LS_Auto;
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000159 GoogleStyle.IndentWidth = 2;
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000160 GoogleStyle.UseTab = false;
Manuel Klimek44135b82013-05-13 12:51:40 +0000161 GoogleStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000162 return GoogleStyle;
163}
164
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000165FormatStyle getChromiumStyle() {
166 FormatStyle ChromiumStyle = getGoogleStyle();
Daniel Jasperf1579602013-01-29 16:03:49 +0000167 ChromiumStyle.AllowAllParametersOfDeclarationOnNextLine = false;
Daniel Jasper94d6ad72013-04-24 13:46:00 +0000168 ChromiumStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000169 ChromiumStyle.AllowShortLoopsOnASingleLine = false;
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000170 ChromiumStyle.BinPackParameters = false;
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000171 ChromiumStyle.Standard = FormatStyle::LS_Cpp03;
172 ChromiumStyle.DerivePointerBinding = false;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000173 return ChromiumStyle;
174}
175
Alexander Kornienkofb594862013-05-06 14:11:27 +0000176FormatStyle getMozillaStyle() {
177 FormatStyle MozillaStyle = getLLVMStyle();
178 MozillaStyle.AllowAllParametersOfDeclarationOnNextLine = false;
179 MozillaStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
180 MozillaStyle.DerivePointerBinding = true;
181 MozillaStyle.IndentCaseLabels = true;
182 MozillaStyle.ObjCSpaceBeforeProtocolList = false;
183 MozillaStyle.PenaltyReturnTypeOnItsOwnLine = 200;
184 MozillaStyle.PointerBindsToType = true;
185 return MozillaStyle;
186}
187
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000188bool getPredefinedStyle(StringRef Name, FormatStyle *Style) {
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000189 if (Name.equals_lower("llvm"))
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000190 *Style = getLLVMStyle();
191 else if (Name.equals_lower("chromium"))
192 *Style = getChromiumStyle();
193 else if (Name.equals_lower("mozilla"))
194 *Style = getMozillaStyle();
195 else if (Name.equals_lower("google"))
196 *Style = getGoogleStyle();
197 else
198 return false;
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000199
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000200 return true;
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000201}
202
203llvm::error_code parseConfiguration(StringRef Text, FormatStyle *Style) {
Alexander Kornienko107db3c2013-05-20 15:18:01 +0000204 if (Text.trim().empty())
205 return llvm::make_error_code(llvm::errc::invalid_argument);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000206 llvm::yaml::Input Input(Text);
207 Input >> *Style;
208 return Input.error();
209}
210
211std::string configurationAsText(const FormatStyle &Style) {
212 std::string Text;
213 llvm::raw_string_ostream Stream(Text);
214 llvm::yaml::Output Output(Stream);
215 // We use the same mapping method for input and output, so we need a non-const
216 // reference here.
217 FormatStyle NonConstStyle = Style;
218 Output << NonConstStyle;
Alexander Kornienko2b6acb62013-05-13 12:56:35 +0000219 return Stream.str();
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000220}
221
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000222// Returns the length of everything up to the first possible line break after
223// the ), ], } or > matching \c Tok.
224static unsigned getLengthToMatchingParen(const AnnotatedToken &Tok) {
225 if (Tok.MatchingParen == NULL)
226 return 0;
227 AnnotatedToken *End = Tok.MatchingParen;
228 while (!End->Children.empty() && !End->Children[0].CanBreakBefore) {
229 End = &End->Children[0];
230 }
231 return End->TotalLength - Tok.TotalLength + 1;
232}
233
Daniel Jasperbac016b2012-12-03 18:12:45 +0000234class UnwrappedLineFormatter {
235public:
Manuel Klimek94fc6f12013-01-10 19:17:33 +0000236 UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr,
Daniel Jasper995e8202013-01-14 13:08:07 +0000237 const AnnotatedLine &Line, unsigned FirstIndent,
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +0000238 const AnnotatedToken &RootToken,
Manuel Klimek67d080d2013-04-12 14:13:36 +0000239 WhitespaceManager &Whitespaces)
Daniel Jasper1321eb52012-12-18 21:05:13 +0000240 : Style(Style), SourceMgr(SourceMgr), Line(Line),
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000241 FirstIndent(FirstIndent), RootToken(RootToken),
Daniel Jasperf11a7052013-02-21 21:33:55 +0000242 Whitespaces(Whitespaces), Count(0) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +0000243
Manuel Klimekd4397b92013-01-04 23:34:14 +0000244 /// \brief Formats an \c UnwrappedLine.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000245 void format(const AnnotatedLine *NextLine) {
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000246 // Initialize state dependent on indent.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000247 LineState State;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000248 State.Column = FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +0000249 State.NextToken = &RootToken;
Daniel Jasper6f21a982013-03-13 07:49:51 +0000250 State.Stack.push_back(
Daniel Jasper24e19e42013-05-22 08:55:55 +0000251 ParenState(FirstIndent, FirstIndent, /*AvoidBinPacking=*/ false,
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000252 /*NoLineBreak=*/ false));
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000253 State.LineContainsContinuedForLoopSection = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000254 State.ParenLevel = 0;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000255 State.StartOfStringLiteral = 0;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000256 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper54b4e442013-05-22 05:27:42 +0000257 State.IgnoreStackForComparison = false;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000258
259 // The first token has already been indented and thus consumed.
Manuel Klimek8092a942013-02-20 10:15:13 +0000260 moveStateToNextToken(State, /*DryRun=*/ false);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000261
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000262 // If everything fits on a single line, just put it there.
Daniel Jaspera4d46212013-02-28 11:05:57 +0000263 unsigned ColumnLimit = Style.ColumnLimit;
264 if (NextLine && NextLine->InPPDirective &&
265 !NextLine->First.FormatTok.HasUnescapedNewline)
266 ColumnLimit = getColumnLimit();
267 if (Line.Last->TotalLength <= ColumnLimit - FirstIndent) {
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000268 while (State.NextToken != NULL) {
Daniel Jasper1321eb52012-12-18 21:05:13 +0000269 addTokenToState(false, false, State);
Daniel Jasper1321eb52012-12-18 21:05:13 +0000270 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000271 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000272
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000273 // If the ObjC method declaration does not fit on a line, we should format
274 // it with one arg per line.
275 if (Line.Type == LT_ObjCMethodDecl)
276 State.Stack.back().BreakBeforeParameter = true;
277
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000278 // Find best solution in solution space.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000279 analyzeSolutionSpace(State);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000280 }
281
282private:
Manuel Klimekca547db2013-01-16 14:55:28 +0000283 void DebugTokenState(const AnnotatedToken &AnnotatedTok) {
284 const Token &Tok = AnnotatedTok.FormatTok.Tok;
Alexander Kornienkodd256312013-05-10 11:56:10 +0000285 llvm::dbgs() << StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000286 Tok.getLength());
Alexander Kornienkodd256312013-05-10 11:56:10 +0000287 llvm::dbgs();
Manuel Klimekca547db2013-01-16 14:55:28 +0000288 }
289
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000290 struct ParenState {
Daniel Jasperd399bff2013-02-05 09:41:21 +0000291 ParenState(unsigned Indent, unsigned LastSpace, bool AvoidBinPacking,
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000292 bool NoLineBreak)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000293 : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
294 BreakBeforeClosingBrace(false), QuestionColumn(0),
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000295 AvoidBinPacking(AvoidBinPacking), BreakBeforeParameter(false),
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000296 NoLineBreak(NoLineBreak), ColonPos(0), StartOfFunctionCall(0),
297 NestedNameSpecifierContinuation(0), CallContinuation(0),
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000298 VariablePos(0), ForFakeParenthesis(false) {}
Daniel Jaspera4974cf2012-12-24 16:43:00 +0000299
Daniel Jasperbac016b2012-12-03 18:12:45 +0000300 /// \brief The position to which a specific parenthesis level needs to be
301 /// indented.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000302 unsigned Indent;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000303
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000304 /// \brief The position of the last space on each level.
305 ///
306 /// Used e.g. to break like:
307 /// functionCall(Parameter, otherCall(
308 /// OtherParameter));
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000309 unsigned LastSpace;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000310
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000311 /// \brief The position the first "<<" operator encountered on each level.
312 ///
313 /// Used to align "<<" operators. 0 if no such operator has been encountered
314 /// on a level.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000315 unsigned FirstLessLess;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000316
Manuel Klimekc8c8a472013-01-10 15:58:26 +0000317 /// \brief Whether a newline needs to be inserted before the block's closing
318 /// brace.
319 ///
320 /// We only want to insert a newline before the closing brace if there also
321 /// was a newline after the beginning left brace.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000322 bool BreakBeforeClosingBrace;
323
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000324 /// \brief The column of a \c ? in a conditional expression;
325 unsigned QuestionColumn;
326
Daniel Jasperf343cab2013-01-31 14:59:26 +0000327 /// \brief Avoid bin packing, i.e. multiple parameters/elements on multiple
328 /// lines, in this context.
329 bool AvoidBinPacking;
330
331 /// \brief Break after the next comma (or all the commas in this context if
332 /// \c AvoidBinPacking is \c true).
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000333 bool BreakBeforeParameter;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000334
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000335 /// \brief Line breaking in this context would break a formatting rule.
336 bool NoLineBreak;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000337
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000338 /// \brief The position of the colon in an ObjC method declaration/call.
339 unsigned ColonPos;
Daniel Jasperc4615b72013-02-20 12:56:39 +0000340
Daniel Jasper24849712013-03-01 16:48:32 +0000341 /// \brief The start of the most recent function in a builder-type call.
342 unsigned StartOfFunctionCall;
343
Daniel Jasper37911302013-04-02 14:33:13 +0000344 /// \brief If a nested name specifier was broken over multiple lines, this
345 /// contains the start column of the second line. Otherwise 0.
346 unsigned NestedNameSpecifierContinuation;
347
348 /// \brief If a call expression was broken over multiple lines, this
349 /// contains the start column of the second line. Otherwise 0.
350 unsigned CallContinuation;
351
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000352 /// \brief The column of the first variable name in a variable declaration.
353 ///
354 /// Used to align further variables if necessary.
355 unsigned VariablePos;
356
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000357 /// \brief \c true if this \c ParenState was created for a fake parenthesis.
358 ///
359 /// Does not need to be considered for memoization / the comparison function
360 /// as otherwise identical states will have the same fake/non-fake
361 /// \c ParenStates.
362 bool ForFakeParenthesis;
363
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000364 bool operator<(const ParenState &Other) const {
365 if (Indent != Other.Indent)
Daniel Jasper7d19bc22013-01-11 14:23:32 +0000366 return Indent < Other.Indent;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000367 if (LastSpace != Other.LastSpace)
368 return LastSpace < Other.LastSpace;
369 if (FirstLessLess != Other.FirstLessLess)
370 return FirstLessLess < Other.FirstLessLess;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000371 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
372 return BreakBeforeClosingBrace;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000373 if (QuestionColumn != Other.QuestionColumn)
374 return QuestionColumn < Other.QuestionColumn;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000375 if (AvoidBinPacking != Other.AvoidBinPacking)
376 return AvoidBinPacking;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000377 if (BreakBeforeParameter != Other.BreakBeforeParameter)
378 return BreakBeforeParameter;
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000379 if (NoLineBreak != Other.NoLineBreak)
380 return NoLineBreak;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000381 if (ColonPos != Other.ColonPos)
382 return ColonPos < Other.ColonPos;
Daniel Jasper24849712013-03-01 16:48:32 +0000383 if (StartOfFunctionCall != Other.StartOfFunctionCall)
384 return StartOfFunctionCall < Other.StartOfFunctionCall;
Daniel Jasper37911302013-04-02 14:33:13 +0000385 if (CallContinuation != Other.CallContinuation)
386 return CallContinuation < Other.CallContinuation;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000387 if (VariablePos != Other.VariablePos)
388 return VariablePos < Other.VariablePos;
Daniel Jasperb3123142013-01-12 07:36:22 +0000389 return false;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000390 }
391 };
392
393 /// \brief The current state when indenting a unwrapped line.
394 ///
395 /// As the indenting tries different combinations this is copied by value.
396 struct LineState {
397 /// \brief The number of used columns in the current line.
398 unsigned Column;
399
400 /// \brief The token that needs to be next formatted.
401 const AnnotatedToken *NextToken;
402
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000403 /// \brief \c true if this line contains a continued for-loop section.
404 bool LineContainsContinuedForLoopSection;
405
Daniel Jasper29f123b2013-02-08 15:28:42 +0000406 /// \brief The level of nesting inside (), [], <> and {}.
407 unsigned ParenLevel;
408
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000409 /// \brief The \c ParenLevel at the start of this line.
410 unsigned StartOfLineLevel;
411
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000412 /// \brief The start column of the string literal, if we're in a string
413 /// literal sequence, 0 otherwise.
414 unsigned StartOfStringLiteral;
415
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000416 /// \brief A stack keeping track of properties applying to parenthesis
417 /// levels.
418 std::vector<ParenState> Stack;
419
Daniel Jasper54b4e442013-05-22 05:27:42 +0000420 /// \brief Ignore the stack of \c ParenStates for state comparison.
421 ///
422 /// In long and deeply nested unwrapped lines, the current algorithm can
423 /// be insufficient for finding the best formatting with a reasonable amount
424 /// of time and memory. Setting this flag will effectively lead to the
425 /// algorithm not analyzing some combinations. However, these combinations
426 /// rarely contain the optimal solution: In short, accepting a higher
427 /// penalty early would need to lead to different values in the \c
428 /// ParenState stack (in an otherwise identical state) and these different
429 /// values would need to lead to a significant amount of avoided penalty
430 /// later.
431 ///
432 /// FIXME: Come up with a better algorithm instead.
433 bool IgnoreStackForComparison;
434
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000435 /// \brief Comparison operator to be able to used \c LineState in \c map.
436 bool operator<(const LineState &Other) const {
Daniel Jasperd7896702013-02-19 09:28:55 +0000437 if (NextToken != Other.NextToken)
438 return NextToken < Other.NextToken;
439 if (Column != Other.Column)
440 return Column < Other.Column;
Daniel Jasperd7896702013-02-19 09:28:55 +0000441 if (LineContainsContinuedForLoopSection !=
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000442 Other.LineContainsContinuedForLoopSection)
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000443 return LineContainsContinuedForLoopSection;
Daniel Jasperd7896702013-02-19 09:28:55 +0000444 if (ParenLevel != Other.ParenLevel)
445 return ParenLevel < Other.ParenLevel;
446 if (StartOfLineLevel != Other.StartOfLineLevel)
447 return StartOfLineLevel < Other.StartOfLineLevel;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000448 if (StartOfStringLiteral != Other.StartOfStringLiteral)
449 return StartOfStringLiteral < Other.StartOfStringLiteral;
Daniel Jasper54b4e442013-05-22 05:27:42 +0000450 if (IgnoreStackForComparison || Other.IgnoreStackForComparison)
451 return false;
Daniel Jasperd7896702013-02-19 09:28:55 +0000452 return Stack < Other.Stack;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000453 }
454 };
455
Daniel Jasper20409152012-12-04 14:54:30 +0000456 /// \brief Appends the next token to \p State and updates information
457 /// necessary for indentation.
458 ///
459 /// Puts the token on the current line if \p Newline is \c true and adds a
460 /// line break and necessary indentation otherwise.
461 ///
462 /// If \p DryRun is \c false, also creates and stores the required
463 /// \c Replacement.
Manuel Klimek8092a942013-02-20 10:15:13 +0000464 unsigned addTokenToState(bool Newline, bool DryRun, LineState &State) {
Daniel Jasper9c837d02013-01-09 07:06:56 +0000465 const AnnotatedToken &Current = *State.NextToken;
466 const AnnotatedToken &Previous = *State.NextToken->Parent;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000467
Daniel Jasper92f9faf2013-03-20 15:58:10 +0000468 if (State.Stack.size() == 0 || Current.Type == TT_ImplicitStringLiteral) {
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000469 State.Column += State.NextToken->FormatTok.WhiteSpaceLength +
470 State.NextToken->FormatTok.TokenLength;
471 if (State.NextToken->Children.empty())
472 State.NextToken = NULL;
473 else
474 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek8092a942013-02-20 10:15:13 +0000475 return 0;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000476 }
477
Daniel Jasper3776ef32013-04-03 07:21:51 +0000478 // If we are continuing an expression, we want to indent an extra 4 spaces.
479 unsigned ContinuationIndent =
Daniel Jasper37911302013-04-02 14:33:13 +0000480 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) + 4;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000481 if (Newline) {
Manuel Klimekbb42bf12013-01-10 11:52:21 +0000482 if (Current.is(tok::r_brace)) {
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000483 State.Column = Line.Level * Style.IndentWidth;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000484 } else if (Current.is(tok::string_literal) &&
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000485 State.StartOfStringLiteral != 0) {
486 State.Column = State.StartOfStringLiteral;
Daniel Jasper66d19bd2013-02-18 11:59:17 +0000487 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000488 } else if (Current.is(tok::lessless) &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000489 State.Stack.back().FirstLessLess != 0) {
490 State.Column = State.Stack.back().FirstLessLess;
Daniel Jasper37911302013-04-02 14:33:13 +0000491 } else if (Current.isOneOf(tok::period, tok::arrow)) {
Daniel Jasper3776ef32013-04-03 07:21:51 +0000492 if (State.Stack.back().CallContinuation == 0) {
493 State.Column = ContinuationIndent;
Daniel Jasper37911302013-04-02 14:33:13 +0000494 State.Stack.back().CallContinuation = State.Column;
Daniel Jasper3776ef32013-04-03 07:21:51 +0000495 } else {
496 State.Column = State.Stack.back().CallContinuation;
497 }
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000498 } else if (Current.Type == TT_ConditionalExpr) {
499 State.Column = State.Stack.back().QuestionColumn;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000500 } else if (Previous.is(tok::comma) &&
501 State.Stack.back().VariablePos != 0) {
502 State.Column = State.Stack.back().VariablePos;
Daniel Jasper3c08a812013-02-24 18:54:32 +0000503 } else if (Previous.ClosesTemplateDeclaration ||
Daniel Jasper53e72cd2013-05-06 08:27:33 +0000504 (Current.Type == TT_StartOfName && State.ParenLevel == 0 &&
505 Line.StartsDefinition)) {
Daniel Jasper37911302013-04-02 14:33:13 +0000506 State.Column = State.Stack.back().Indent;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000507 } else if (Current.Type == TT_ObjCSelectorName) {
508 if (State.Stack.back().ColonPos > Current.FormatTok.TokenLength) {
509 State.Column =
510 State.Stack.back().ColonPos - Current.FormatTok.TokenLength;
511 } else {
512 State.Column = State.Stack.back().Indent;
513 State.Stack.back().ColonPos =
514 State.Column + Current.FormatTok.TokenLength;
515 }
Daniel Jasperb2f063a2013-05-08 10:00:18 +0000516 } else if (Current.Type == TT_StartOfName ||
517 Previous.isOneOf(tok::coloncolon, tok::equal) ||
Daniel Jasper37911302013-04-02 14:33:13 +0000518 Previous.Type == TT_ObjCMethodExpr) {
Daniel Jasper3776ef32013-04-03 07:21:51 +0000519 State.Column = ContinuationIndent;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000520 } else {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000521 State.Column = State.Stack.back().Indent;
Daniel Jasper3776ef32013-04-03 07:21:51 +0000522 // Ensure that we fall back to indenting 4 spaces instead of just
523 // flushing continuations left.
Daniel Jasper37911302013-04-02 14:33:13 +0000524 if (State.Column == FirstIndent)
525 State.Column += 4;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000526 }
527
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000528 if (Current.is(tok::question))
Daniel Jasper237d4c12013-02-23 21:01:55 +0000529 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper11e13802013-05-08 14:12:04 +0000530 if ((Previous.isOneOf(tok::comma, tok::semi) &&
531 !State.Stack.back().AvoidBinPacking) ||
532 Previous.Type == TT_BinaryOperator)
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000533 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasper33f4b902013-05-15 09:35:08 +0000534 if (Previous.Type == TT_TemplateCloser && State.ParenLevel == 0)
535 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000536
Manuel Klimek060143e2013-01-02 18:33:23 +0000537 if (!DryRun) {
Daniel Jasper1ef81d52013-02-26 13:10:34 +0000538 unsigned NewLines = 1;
539 if (Current.Type == TT_LineComment)
540 NewLines =
541 std::max(NewLines, std::min(Current.FormatTok.NewlinesBefore,
542 Style.MaxEmptyLinesToKeep + 1));
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000543 Whitespaces.replaceWhitespace(Current, NewLines, State.Column,
544 State.Column, Line.InPPDirective);
Manuel Klimek060143e2013-01-02 18:33:23 +0000545 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000546
Daniel Jasper29f123b2013-02-08 15:28:42 +0000547 State.Stack.back().LastSpace = State.Column;
Daniel Jasper04abbb22013-05-10 13:37:16 +0000548 if (Current.isOneOf(tok::arrow, tok::period))
549 State.Stack.back().LastSpace += Current.FormatTok.TokenLength;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000550 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper237d4c12013-02-23 21:01:55 +0000551
552 // Any break on this level means that the parent level has been broken
553 // and we need to avoid bin packing there.
554 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i) {
555 State.Stack[i].BreakBeforeParameter = true;
556 }
Daniel Jasper01218ff2013-04-15 22:36:37 +0000557 const AnnotatedToken *TokenBefore = Current.getPreviousNoneComment();
558 if (TokenBefore && !TokenBefore->isOneOf(tok::comma, tok::semi) &&
Daniel Jasper33f4b902013-05-15 09:35:08 +0000559 TokenBefore->Type != TT_TemplateCloser &&
Daniel Jasper11e13802013-05-08 14:12:04 +0000560 TokenBefore->Type != TT_BinaryOperator && !TokenBefore->opensScope())
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000561 State.Stack.back().BreakBeforeParameter = true;
562
Daniel Jasper237d4c12013-02-23 21:01:55 +0000563 // If we break after {, we should also break before the corresponding }.
564 if (Previous.is(tok::l_brace))
565 State.Stack.back().BreakBeforeClosingBrace = true;
566
567 if (State.Stack.back().AvoidBinPacking) {
568 // If we are breaking after '(', '{', '<', this is not bin packing
569 // unless AllowAllParametersOfDeclarationOnNextLine is false.
Daniel Jasperd741f022013-05-14 20:39:56 +0000570 if (!(Previous.isOneOf(tok::l_paren, tok::l_brace) ||
571 Previous.Type == TT_BinaryOperator) ||
Daniel Jasper237d4c12013-02-23 21:01:55 +0000572 (!Style.AllowAllParametersOfDeclarationOnNextLine &&
573 Line.MustBeDeclaration))
574 State.Stack.back().BreakBeforeParameter = true;
575 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000576 } else {
Daniel Jasper9c3e71a2013-02-25 15:59:54 +0000577 if (Current.is(tok::equal) &&
Daniel Jasperadc0f092013-04-05 09:38:50 +0000578 (RootToken.is(tok::kw_for) || State.ParenLevel == 0) &&
579 State.Stack.back().VariablePos == 0) {
580 State.Stack.back().VariablePos = State.Column;
581 // Move over * and & if they are bound to the variable name.
582 const AnnotatedToken *Tok = &Previous;
583 while (Tok &&
584 State.Stack.back().VariablePos >= Tok->FormatTok.TokenLength) {
585 State.Stack.back().VariablePos -= Tok->FormatTok.TokenLength;
586 if (Tok->SpacesRequiredBefore != 0)
587 break;
588 Tok = Tok->Parent;
589 }
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000590 if (Previous.PartOfMultiVariableDeclStmt)
591 State.Stack.back().LastSpace = State.Stack.back().VariablePos;
592 }
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000593
Daniel Jasper729a7432013-02-11 12:36:37 +0000594 unsigned Spaces = State.NextToken->SpacesRequiredBefore;
Daniel Jasper20409152012-12-04 14:54:30 +0000595
Daniel Jasperbac016b2012-12-03 18:12:45 +0000596 if (!DryRun)
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000597 Whitespaces.replaceWhitespace(Current, 0, Spaces,
598 State.Column + Spaces);
Daniel Jasper20409152012-12-04 14:54:30 +0000599
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000600 if (Current.Type == TT_ObjCSelectorName &&
601 State.Stack.back().ColonPos == 0) {
602 if (State.Stack.back().Indent + Current.LongestObjCSelectorName >
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000603 State.Column + Spaces + Current.FormatTok.TokenLength)
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000604 State.Stack.back().ColonPos =
605 State.Stack.back().Indent + Current.LongestObjCSelectorName;
606 else
607 State.Stack.back().ColonPos =
Daniel Jasper9e9e6e02013-02-06 16:00:26 +0000608 State.Column + Spaces + Current.FormatTok.TokenLength;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000609 }
610
Daniel Jasperac3223e2013-04-10 09:49:49 +0000611 if (Previous.opensScope() && Previous.Type != TT_ObjCMethodExpr &&
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000612 Current.Type != TT_LineComment)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000613 State.Stack.back().Indent = State.Column + Spaces;
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000614 if (Previous.is(tok::comma) && !Current.isTrailingComment() &&
615 State.Stack.back().AvoidBinPacking)
616 State.Stack.back().NoLineBreak = true;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000617
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000618 State.Column += Spaces;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000619 if (Current.is(tok::l_paren) && Previous.isOneOf(tok::kw_if, tok::kw_for))
Daniel Jaspere438bac2013-01-23 20:41:06 +0000620 // Treat the condition inside an if as if it was a second function
621 // parameter, i.e. let nested calls have an indent of 4.
622 State.Stack.back().LastSpace = State.Column + 1; // 1 is length of "(".
Daniel Jasperf9955d32013-03-20 12:37:50 +0000623 else if (Previous.is(tok::comma))
Daniel Jaspere438bac2013-01-23 20:41:06 +0000624 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000625 else if ((Previous.Type == TT_BinaryOperator ||
Daniel Jasper02b771e2013-01-28 13:31:35 +0000626 Previous.Type == TT_ConditionalExpr ||
627 Previous.Type == TT_CtorInitializerColon) &&
Daniel Jasperae8699b2013-01-28 09:35:24 +0000628 getPrecedence(Previous) != prec::Assignment)
629 State.Stack.back().LastSpace = State.Column;
Daniel Jasper6cabab42013-02-14 08:42:54 +0000630 else if (Previous.Type == TT_InheritanceColon)
631 State.Stack.back().Indent = State.Column;
Daniel Jasper11e13802013-05-08 14:12:04 +0000632 else if (Previous.opensScope() && !Current.FakeLParens.empty())
633 // If this function has multiple parameters or a binary expression
634 // parameter, indent nested calls from the start of the first parameter.
Daniel Jasper986e17f2013-01-28 07:35:34 +0000635 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000636 }
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000637
Manuel Klimek8092a942013-02-20 10:15:13 +0000638 return moveStateToNextToken(State, DryRun);
Daniel Jasper20409152012-12-04 14:54:30 +0000639 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000640
Daniel Jasper20409152012-12-04 14:54:30 +0000641 /// \brief Mark the next token as consumed in \p State and modify its stacks
642 /// accordingly.
Manuel Klimek8092a942013-02-20 10:15:13 +0000643 unsigned moveStateToNextToken(LineState &State, bool DryRun) {
Daniel Jasper26f7e782013-01-08 14:56:18 +0000644 const AnnotatedToken &Current = *State.NextToken;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000645 assert(State.Stack.size());
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000646
Daniel Jasper6cabab42013-02-14 08:42:54 +0000647 if (Current.Type == TT_InheritanceColon)
648 State.Stack.back().AvoidBinPacking = true;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000649 if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0)
650 State.Stack.back().FirstLessLess = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000651 if (Current.is(tok::question))
652 State.Stack.back().QuestionColumn = State.Column;
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000653 if (Current.isOneOf(tok::period, tok::arrow) &&
Daniel Jasper24849712013-03-01 16:48:32 +0000654 Line.Type == LT_BuilderTypeCall && State.ParenLevel == 0)
655 State.Stack.back().StartOfFunctionCall =
Daniel Jasper04abbb22013-05-10 13:37:16 +0000656 Current.LastInChainOfCalls ? 0 : State.Column +
657 Current.FormatTok.TokenLength;
Daniel Jasper7d812812013-02-21 15:00:29 +0000658 if (Current.Type == TT_CtorInitializerColon) {
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000659 // Indent 2 from the column, so:
660 // SomeClass::SomeClass()
661 // : First(...), ...
662 // Next(...)
663 // ^ line up here.
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000664 State.Stack.back().Indent = State.Column + 2;
Daniel Jasper7d812812013-02-21 15:00:29 +0000665 if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
666 State.Stack.back().AvoidBinPacking = true;
667 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000668 }
Daniel Jasper3776ef32013-04-03 07:21:51 +0000669
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000670 // If return returns a binary expression, align after it.
671 if (Current.is(tok::kw_return) && !Current.FakeLParens.empty())
672 State.Stack.back().LastSpace = State.Column + 7;
673
Daniel Jasper3776ef32013-04-03 07:21:51 +0000674 // In ObjC method declaration we align on the ":" of parameters, but we need
675 // to ensure that we indent parameters on subsequent lines by at least 4.
Daniel Jasper37911302013-04-02 14:33:13 +0000676 if (Current.Type == TT_ObjCMethodSpecifier)
677 State.Stack.back().Indent += 4;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000678
Daniel Jasper29f123b2013-02-08 15:28:42 +0000679 // Insert scopes created by fake parenthesis.
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000680 const AnnotatedToken *Previous = Current.getPreviousNoneComment();
681 // Don't add extra indentation for the first fake parenthesis after
682 // 'return', assignements or opening <({[. The indentation for these cases
683 // is special cased.
684 bool SkipFirstExtraIndent =
685 Current.is(tok::kw_return) ||
Daniel Jasperac3223e2013-04-10 09:49:49 +0000686 (Previous && (Previous->opensScope() ||
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000687 getPrecedence(*Previous) == prec::Assignment));
688 for (SmallVector<prec::Level, 4>::const_reverse_iterator
689 I = Current.FakeLParens.rbegin(),
690 E = Current.FakeLParens.rend();
691 I != E; ++I) {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000692 ParenState NewParenState = State.Stack.back();
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000693 NewParenState.ForFakeParenthesis = true;
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000694 NewParenState.Indent =
695 std::max(std::max(State.Column, NewParenState.Indent),
696 State.Stack.back().LastSpace);
697
698 // Always indent conditional expressions. Never indent expression where
699 // the 'operator' is ',', ';' or an assignment (i.e. *I <=
700 // prec::Assignment) as those have different indentation rules. Indent
701 // other expression, unless the indentation needs to be skipped.
702 if (*I == prec::Conditional ||
703 (!SkipFirstExtraIndent && *I > prec::Assignment))
704 NewParenState.Indent += 4;
Daniel Jasperac3223e2013-04-10 09:49:49 +0000705 if (Previous && !Previous->opensScope())
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000706 NewParenState.BreakBeforeParameter = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000707 State.Stack.push_back(NewParenState);
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000708 SkipFirstExtraIndent = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000709 }
710
Daniel Jaspercf225b62012-12-24 13:43:52 +0000711 // If we encounter an opening (, [, { or <, we add a level to our stacks to
Daniel Jasper20409152012-12-04 14:54:30 +0000712 // prepare for the following tokens.
Daniel Jasperac3223e2013-04-10 09:49:49 +0000713 if (Current.opensScope()) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000714 unsigned NewIndent;
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000715 unsigned LastSpace = State.Stack.back().LastSpace;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000716 bool AvoidBinPacking;
Manuel Klimek2851c162013-01-10 14:36:46 +0000717 if (Current.is(tok::l_brace)) {
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000718 NewIndent = Style.IndentWidth + LastSpace;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000719 AvoidBinPacking = false;
Manuel Klimek2851c162013-01-10 14:36:46 +0000720 } else {
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000721 NewIndent =
722 4 + std::max(LastSpace, State.Stack.back().StartOfFunctionCall);
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000723 AvoidBinPacking = !Style.BinPackParameters;
Manuel Klimek2851c162013-01-10 14:36:46 +0000724 }
Daniel Jasperfca24bc2013-04-25 13:31:51 +0000725
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000726 State.Stack.push_back(ParenState(NewIndent, LastSpace, AvoidBinPacking,
727 State.Stack.back().NoLineBreak));
Daniel Jasper29f123b2013-02-08 15:28:42 +0000728 ++State.ParenLevel;
Daniel Jasper20409152012-12-04 14:54:30 +0000729 }
730
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000731 // If this '[' opens an ObjC call, determine whether all parameters fit into
732 // one line and put one per line if they don't.
733 if (Current.is(tok::l_square) && Current.Type == TT_ObjCMethodExpr &&
734 Current.MatchingParen != NULL) {
735 if (getLengthToMatchingParen(Current) + State.Column > getColumnLimit())
736 State.Stack.back().BreakBeforeParameter = true;
737 }
738
Daniel Jaspercf225b62012-12-24 13:43:52 +0000739 // If we encounter a closing ), ], } or >, we can remove a level from our
Daniel Jasper20409152012-12-04 14:54:30 +0000740 // stacks.
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000741 if (Current.isOneOf(tok::r_paren, tok::r_square) ||
Daniel Jasper26f7e782013-01-08 14:56:18 +0000742 (Current.is(tok::r_brace) && State.NextToken != &RootToken) ||
743 State.NextToken->Type == TT_TemplateCloser) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000744 State.Stack.pop_back();
Daniel Jasper29f123b2013-02-08 15:28:42 +0000745 --State.ParenLevel;
746 }
747
748 // Remove scopes created by fake parenthesis.
749 for (unsigned i = 0, e = Current.FakeRParens; i != e; ++i) {
Daniel Jasperabfc9c12013-04-04 19:31:00 +0000750 unsigned VariablePos = State.Stack.back().VariablePos;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000751 State.Stack.pop_back();
Daniel Jasperabfc9c12013-04-04 19:31:00 +0000752 State.Stack.back().VariablePos = VariablePos;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000753 }
Manuel Klimek2851c162013-01-10 14:36:46 +0000754
Daniel Jasper27c7f542013-05-13 20:50:15 +0000755 if (Current.is(tok::string_literal) && State.StartOfStringLiteral == 0) {
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000756 State.StartOfStringLiteral = State.Column;
Daniel Jasper27c7f542013-05-13 20:50:15 +0000757 } else if (!Current.isOneOf(tok::comment, tok::identifier, tok::hash,
758 tok::string_literal)) {
Daniel Jasper9a2f8d02013-05-16 04:26:02 +0000759 State.StartOfStringLiteral = 0;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000760 }
761
Manuel Klimek8092a942013-02-20 10:15:13 +0000762 State.Column += Current.FormatTok.TokenLength;
763
Daniel Jasper26f7e782013-01-08 14:56:18 +0000764 if (State.NextToken->Children.empty())
765 State.NextToken = NULL;
766 else
767 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek2851c162013-01-10 14:36:46 +0000768
Manuel Klimek8092a942013-02-20 10:15:13 +0000769 return breakProtrudingToken(Current, State, DryRun);
770 }
771
772 /// \brief If the current token sticks out over the end of the line, break
773 /// it if possible.
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000774 ///
775 /// \returns An extra penalty if a token was broken, otherwise 0.
776 ///
777 /// Note that the penalty of the token protruding the allowed line length is
778 /// already handled in \c addNextStateToQueue; the returned penalty will only
779 /// cover the cost of the additional line breaks.
Manuel Klimek8092a942013-02-20 10:15:13 +0000780 unsigned breakProtrudingToken(const AnnotatedToken &Current, LineState &State,
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000781 bool DryRun) {
782 unsigned UnbreakableTailLength = Current.UnbreakableTailLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000783 llvm::OwningPtr<BreakableToken> Token;
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000784 unsigned StartColumn = State.Column - Current.FormatTok.TokenLength;
Daniel Jasper5d5b4242013-05-16 12:59:13 +0000785 if (Current.is(tok::string_literal) &&
786 Current.Type != TT_ImplicitStringLiteral) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000787 // Only break up default narrow strings.
Alexander Kornienko919398b2013-04-17 17:34:05 +0000788 const char *LiteralData = SourceMgr.getCharacterData(
789 Current.FormatTok.getStartOfNonWhitespace());
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000790 if (!LiteralData || *LiteralData != '"')
791 return 0;
792
Alexander Kornienko919398b2013-04-17 17:34:05 +0000793 Token.reset(new BreakableStringLiteral(SourceMgr, Current.FormatTok,
794 StartColumn));
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000795 } else if (Current.Type == TT_BlockComment) {
796 BreakableBlockComment *BBC =
797 new BreakableBlockComment(SourceMgr, Current, StartColumn);
798 if (!DryRun)
799 BBC->alignLines(Whitespaces);
800 Token.reset(BBC);
Daniel Jasper7ff96ed2013-05-06 10:24:51 +0000801 } else if (Current.Type == TT_LineComment &&
802 (Current.Parent == NULL ||
803 Current.Parent->Type != TT_ImplicitStringLiteral)) {
Alexander Kornienko919398b2013-04-17 17:34:05 +0000804 Token.reset(new BreakableLineComment(SourceMgr, Current, StartColumn));
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000805 } else {
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000806 return 0;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000807 }
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000808 if (UnbreakableTailLength >= getColumnLimit())
809 return 0;
810 unsigned RemainingSpace = getColumnLimit() - UnbreakableTailLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000811
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000812 bool BreakInserted = false;
813 unsigned Penalty = 0;
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000814 unsigned PositionAfterLastLineInToken = 0;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000815 for (unsigned LineIndex = 0; LineIndex < Token->getLineCount();
816 ++LineIndex) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000817 unsigned TailOffset = 0;
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000818 unsigned RemainingTokenLength =
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000819 Token->getLineLengthAfterSplit(LineIndex, TailOffset);
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000820 while (RemainingTokenLength > RemainingSpace) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000821 BreakableToken::Split Split =
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000822 Token->getSplit(LineIndex, TailOffset, getColumnLimit());
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000823 if (Split.first == StringRef::npos)
824 break;
825 assert(Split.first != 0);
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000826 unsigned NewRemainingTokenLength = Token->getLineLengthAfterSplit(
Alexander Kornienko919398b2013-04-17 17:34:05 +0000827 LineIndex, TailOffset + Split.first + Split.second);
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000828 if (NewRemainingTokenLength >= RemainingTokenLength)
Alexander Kornienko919398b2013-04-17 17:34:05 +0000829 break;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000830 if (!DryRun) {
831 Token->insertBreak(LineIndex, TailOffset, Split, Line.InPPDirective,
832 Whitespaces);
833 }
834 TailOffset += Split.first + Split.second;
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000835 RemainingTokenLength = NewRemainingTokenLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000836 Penalty += Style.PenaltyExcessCharacter;
837 BreakInserted = true;
Manuel Klimek8092a942013-02-20 10:15:13 +0000838 }
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000839 PositionAfterLastLineInToken = RemainingTokenLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000840 if (!DryRun) {
841 Token->trimLine(LineIndex, TailOffset, Line.InPPDirective, Whitespaces);
842 }
843 }
844
845 if (BreakInserted) {
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000846 State.Column = PositionAfterLastLineInToken;
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000847 for (unsigned i = 0, e = State.Stack.size(); i != e; ++i)
848 State.Stack[i].BreakBeforeParameter = true;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000849 State.Stack.back().LastSpace = StartColumn;
Manuel Klimek8092a942013-02-20 10:15:13 +0000850 }
Manuel Klimek8092a942013-02-20 10:15:13 +0000851 return Penalty;
852 }
853
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000854 unsigned getColumnLimit() {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000855 // In preprocessor directives reserve two chars for trailing " \"
856 return Style.ColumnLimit - (Line.InPPDirective ? 2 : 0);
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000857 }
858
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000859 /// \brief An edge in the solution space from \c Previous->State to \c State,
860 /// inserting a newline dependent on the \c NewLine.
861 struct StateNode {
862 StateNode(const LineState &State, bool NewLine, StateNode *Previous)
Daniel Jasperf11a7052013-02-21 21:33:55 +0000863 : State(State), NewLine(NewLine), Previous(Previous) {}
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000864 LineState State;
865 bool NewLine;
866 StateNode *Previous;
867 };
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000868
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000869 /// \brief A pair of <penalty, count> that is used to prioritize the BFS on.
870 ///
871 /// In case of equal penalties, we want to prefer states that were inserted
872 /// first. During state generation we make sure that we insert states first
873 /// that break the line as late as possible.
874 typedef std::pair<unsigned, unsigned> OrderedPenalty;
875
876 /// \brief An item in the prioritized BFS search queue. The \c StateNode's
877 /// \c State has the given \c OrderedPenalty.
878 typedef std::pair<OrderedPenalty, StateNode *> QueueItem;
879
880 /// \brief The BFS queue type.
881 typedef std::priority_queue<QueueItem, std::vector<QueueItem>,
882 std::greater<QueueItem> > QueueType;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000883
884 /// \brief Analyze the entire solution space starting from \p InitialState.
Daniel Jasperbac016b2012-12-03 18:12:45 +0000885 ///
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000886 /// This implements a variant of Dijkstra's algorithm on the graph that spans
887 /// the solution space (\c LineStates are the nodes). The algorithm tries to
888 /// find the shortest path (the one with lowest penalty) from \p InitialState
889 /// to a state where all tokens are placed.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000890 void analyzeSolutionSpace(LineState &InitialState) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000891 std::set<LineState> Seen;
892
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000893 // Insert start element into queue.
Daniel Jasperfc759082013-02-14 14:26:07 +0000894 StateNode *Node =
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000895 new (Allocator.Allocate()) StateNode(InitialState, false, NULL);
896 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
897 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000898
899 // While not empty, take first element and follow edges.
900 while (!Queue.empty()) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000901 unsigned Penalty = Queue.top().first.first;
Daniel Jasperfc759082013-02-14 14:26:07 +0000902 StateNode *Node = Queue.top().second;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000903 if (Node->State.NextToken == NULL) {
Alexander Kornienkodd256312013-05-10 11:56:10 +0000904 DEBUG(llvm::dbgs() << "\n---\nPenalty for line: " << Penalty << "\n");
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000905 break;
Daniel Jasper01786732013-02-04 07:21:18 +0000906 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000907 Queue.pop();
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000908
Daniel Jasper54b4e442013-05-22 05:27:42 +0000909 // Cut off the analysis of certain solutions if the analysis gets too
910 // complex. See description of IgnoreStackForComparison.
911 if (Count > 10000)
912 Node->State.IgnoreStackForComparison = true;
913
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000914 if (!Seen.insert(Node->State).second)
915 // State already examined with lower penalty.
916 continue;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000917
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000918 addNextStateToQueue(Penalty, Node, /*NewLine=*/ false);
919 addNextStateToQueue(Penalty, Node, /*NewLine=*/ true);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000920 }
921
922 if (Queue.empty())
923 // We were unable to find a solution, do nothing.
924 // FIXME: Add diagnostic?
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000925 return;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000926
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000927 // Reconstruct the solution.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000928 reconstructPath(InitialState, Queue.top().second);
Alexander Kornienkodd256312013-05-10 11:56:10 +0000929 DEBUG(llvm::dbgs() << "Total number of analyzed states: " << Count << "\n");
930 DEBUG(llvm::dbgs() << "---\n");
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000931 }
932
933 void reconstructPath(LineState &State, StateNode *Current) {
934 // FIXME: This recursive implementation limits the possible number
935 // of tokens per line if compiled into a binary with small stack space.
936 // To become more independent of stack frame limitations we would need
937 // to also change the TokenAnnotator.
938 if (Current->Previous == NULL)
939 return;
940 reconstructPath(State, Current->Previous);
941 DEBUG({
942 if (Current->NewLine) {
Alexander Kornienkodd256312013-05-10 11:56:10 +0000943 llvm::dbgs()
Daniel Jaspera03ab102013-02-13 20:33:44 +0000944 << "Penalty for splitting before "
945 << Current->Previous->State.NextToken->FormatTok.Tok.getName()
946 << ": " << Current->Previous->State.NextToken->SplitPenalty << "\n";
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000947 }
948 });
949 addTokenToState(Current->NewLine, false, State);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000950 }
951
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000952 /// \brief Add the following state to the analysis queue \c Queue.
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000953 ///
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000954 /// Assume the current state is \p PreviousNode and has been reached with a
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000955 /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true.
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000956 void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode,
957 bool NewLine) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000958 if (NewLine && !canBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000959 return;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000960 if (!NewLine && mustBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000961 return;
Daniel Jasperae8699b2013-01-28 09:35:24 +0000962 if (NewLine)
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000963 Penalty += PreviousNode->State.NextToken->SplitPenalty;
964
965 StateNode *Node = new (Allocator.Allocate())
966 StateNode(PreviousNode->State, NewLine, PreviousNode);
Manuel Klimek8092a942013-02-20 10:15:13 +0000967 Penalty += addTokenToState(NewLine, true, Node->State);
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000968 if (Node->State.Column > getColumnLimit()) {
969 unsigned ExcessCharacters = Node->State.Column - getColumnLimit();
Daniel Jasper01786732013-02-04 07:21:18 +0000970 Penalty += Style.PenaltyExcessCharacter * ExcessCharacters;
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000971 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000972
973 Queue.push(QueueItem(OrderedPenalty(Penalty, Count), Node));
974 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000975 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000976
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000977 /// \brief Returns \c true, if a line break after \p State is allowed.
978 bool canBreak(const LineState &State) {
Daniel Jasper399914b2013-05-17 09:35:01 +0000979 const AnnotatedToken &Current = *State.NextToken;
980 const AnnotatedToken &Previous = *Current.Parent;
981 if (!Current.CanBreakBefore &&
982 !(Current.is(tok::r_brace) &&
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000983 State.Stack.back().BreakBeforeClosingBrace))
984 return false;
Daniel Jasper399914b2013-05-17 09:35:01 +0000985 // The opening "{" of a braced list has to be on the same line as the first
986 // element if it is nested in another braced init list or function call.
987 if (!Current.MustBreakBefore && Previous.is(tok::l_brace) &&
988 Previous.Parent &&
989 Previous.Parent->isOneOf(tok::l_brace, tok::l_paren, tok::comma))
990 return false;
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000991 return !State.Stack.back().NoLineBreak;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000992 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000993
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000994 /// \brief Returns \c true, if a line break after \p State is mandatory.
995 bool mustBreak(const LineState &State) {
Daniel Jasper11e13802013-05-08 14:12:04 +0000996 const AnnotatedToken &Current = *State.NextToken;
997 const AnnotatedToken &Previous = *Current.Parent;
998 if (Current.MustBreakBefore || Current.Type == TT_InlineASMColon)
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000999 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001000 if (Current.is(tok::r_brace) && State.Stack.back().BreakBeforeClosingBrace)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001001 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001002 if (Previous.is(tok::semi) && State.LineContainsContinuedForLoopSection)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001003 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001004 if ((Previous.isOneOf(tok::comma, tok::semi) || Current.is(tok::question) ||
1005 Current.Type == TT_ConditionalExpr) &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +00001006 State.Stack.back().BreakBeforeParameter &&
Daniel Jasper11e13802013-05-08 14:12:04 +00001007 !Current.isTrailingComment() &&
1008 !Current.isOneOf(tok::r_paren, tok::r_brace))
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001009 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001010
1011 // If we need to break somewhere inside the LHS of a binary expression, we
1012 // should also break after the operator.
1013 if (Previous.Type == TT_BinaryOperator &&
1014 !Previous.isOneOf(tok::lessless, tok::question) &&
1015 getPrecedence(Previous) != prec::Assignment &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +00001016 State.Stack.back().BreakBeforeParameter)
Daniel Jasper63d7ced2013-02-05 10:07:47 +00001017 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001018
1019 // FIXME: Comparing LongestObjCSelectorName to 0 is a hacky way of finding
1020 // out whether it is the first parameter. Clean this up.
1021 if (Current.Type == TT_ObjCSelectorName &&
1022 Current.LongestObjCSelectorName == 0 &&
1023 State.Stack.back().BreakBeforeParameter)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001024 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001025 if ((Current.Type == TT_CtorInitializerColon ||
1026 (Previous.ClosesTemplateDeclaration && State.ParenLevel == 0)))
Daniel Jasper923ebef2013-03-14 13:45:21 +00001027 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001028
Daniel Jasper3af59ce2013-03-15 14:57:30 +00001029 // This prevents breaks like:
1030 // ...
1031 // SomeParameter, OtherParameter).DoSomething(
1032 // ...
1033 // As they hide "DoSomething" and generally bad for readability.
Daniel Jasper11e13802013-05-08 14:12:04 +00001034 if (Current.isOneOf(tok::period, tok::arrow) &&
Daniel Jasper3af59ce2013-03-15 14:57:30 +00001035 getRemainingLength(State) + State.Column > getColumnLimit() &&
1036 State.ParenLevel < State.StartOfLineLevel)
1037 return true;
Daniel Jasper33f4b902013-05-15 09:35:08 +00001038
1039 if (Current.Type == TT_StartOfName && Line.MightBeFunctionDecl &&
1040 State.Stack.back().BreakBeforeParameter && State.ParenLevel == 0)
1041 return true;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001042 return false;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001043 }
1044
Daniel Jasper3af59ce2013-03-15 14:57:30 +00001045 // Returns the total number of columns required for the remaining tokens.
1046 unsigned getRemainingLength(const LineState &State) {
1047 if (State.NextToken && State.NextToken->Parent)
1048 return Line.Last->TotalLength - State.NextToken->Parent->TotalLength;
1049 return 0;
1050 }
1051
Daniel Jasperbac016b2012-12-03 18:12:45 +00001052 FormatStyle Style;
1053 SourceManager &SourceMgr;
Daniel Jasper995e8202013-01-14 13:08:07 +00001054 const AnnotatedLine &Line;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001055 const unsigned FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +00001056 const AnnotatedToken &RootToken;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001057 WhitespaceManager &Whitespaces;
Manuel Klimek62a48fb2013-02-13 10:54:19 +00001058
1059 llvm::SpecificBumpPtrAllocator<StateNode> Allocator;
1060 QueueType Queue;
1061 // Increasing count of \c StateNode items we have created. This is used
1062 // to create a deterministic order independent of the container.
1063 unsigned Count;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001064};
1065
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001066class LexerBasedFormatTokenSource : public FormatTokenSource {
1067public:
1068 LexerBasedFormatTokenSource(Lexer &Lex, SourceManager &SourceMgr)
Daniel Jasper1321eb52012-12-18 21:05:13 +00001069 : GreaterStashed(false), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001070 IdentTable(Lex.getLangOpts()) {
1071 Lex.SetKeepWhitespaceMode(true);
1072 }
1073
1074 virtual FormatToken getNextToken() {
1075 if (GreaterStashed) {
1076 FormatTok.NewlinesBefore = 0;
1077 FormatTok.WhiteSpaceStart =
1078 FormatTok.Tok.getLocation().getLocWithOffset(1);
1079 FormatTok.WhiteSpaceLength = 0;
1080 GreaterStashed = false;
1081 return FormatTok;
1082 }
1083
1084 FormatTok = FormatToken();
1085 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +00001086 StringRef Text = rawTokenText(FormatTok.Tok);
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001087 FormatTok.WhiteSpaceStart = FormatTok.Tok.getLocation();
Manuel Klimekf6fd00b2013-01-05 22:56:06 +00001088 if (SourceMgr.getFileOffset(FormatTok.WhiteSpaceStart) == 0)
1089 FormatTok.IsFirst = true;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001090
1091 // Consume and record whitespace until we find a significant token.
1092 while (FormatTok.Tok.is(tok::unknown)) {
Manuel Klimeka28fc062013-02-11 12:33:24 +00001093 unsigned Newlines = Text.count('\n');
Daniel Jasper1eee6c42013-03-04 13:43:19 +00001094 if (Newlines > 0)
1095 FormatTok.LastNewlineOffset =
1096 FormatTok.WhiteSpaceLength + Text.rfind('\n') + 1;
Manuel Klimeka28fc062013-02-11 12:33:24 +00001097 unsigned EscapedNewlines = Text.count("\\\n");
1098 FormatTok.NewlinesBefore += Newlines;
1099 FormatTok.HasUnescapedNewline |= EscapedNewlines != Newlines;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001100 FormatTok.WhiteSpaceLength += FormatTok.Tok.getLength();
1101
1102 if (FormatTok.Tok.is(tok::eof))
1103 return FormatTok;
1104 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +00001105 Text = rawTokenText(FormatTok.Tok);
Manuel Klimekd4397b92013-01-04 23:34:14 +00001106 }
Manuel Klimek95419382013-01-07 07:56:50 +00001107
1108 // Now FormatTok is the next non-whitespace token.
1109 FormatTok.TokenLength = Text.size();
1110
Alexander Kornienko919398b2013-04-17 17:34:05 +00001111 if (FormatTok.Tok.is(tok::comment)) {
1112 FormatTok.TrailingWhiteSpaceLength = Text.size() - Text.rtrim().size();
1113 FormatTok.TokenLength -= FormatTok.TrailingWhiteSpaceLength;
1114 }
1115
Manuel Klimekd4397b92013-01-04 23:34:14 +00001116 // In case the token starts with escaped newlines, we want to
1117 // take them into account as whitespace - this pattern is quite frequent
1118 // in macro definitions.
1119 // FIXME: What do we want to do with other escaped spaces, and escaped
1120 // spaces or newlines in the middle of tokens?
1121 // FIXME: Add a more explicit test.
1122 unsigned i = 0;
Daniel Jasper71607512013-01-07 10:48:50 +00001123 while (i + 1 < Text.size() && Text[i] == '\\' && Text[i + 1] == '\n') {
Manuel Klimek86721d22013-01-22 16:31:55 +00001124 // FIXME: ++FormatTok.NewlinesBefore is missing...
Manuel Klimekd4397b92013-01-04 23:34:14 +00001125 FormatTok.WhiteSpaceLength += 2;
Manuel Klimek95419382013-01-07 07:56:50 +00001126 FormatTok.TokenLength -= 2;
Manuel Klimekd4397b92013-01-04 23:34:14 +00001127 i += 2;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001128 }
1129
1130 if (FormatTok.Tok.is(tok::raw_identifier)) {
Manuel Klimekd4397b92013-01-04 23:34:14 +00001131 IdentifierInfo &Info = IdentTable.get(Text);
Daniel Jaspercd1a32b2012-12-21 17:58:39 +00001132 FormatTok.Tok.setIdentifierInfo(&Info);
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001133 FormatTok.Tok.setKind(Info.getTokenID());
1134 }
1135
1136 if (FormatTok.Tok.is(tok::greatergreater)) {
1137 FormatTok.Tok.setKind(tok::greater);
Daniel Jasperb6f02f32013-02-28 10:06:05 +00001138 FormatTok.TokenLength = 1;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001139 GreaterStashed = true;
1140 }
1141
1142 return FormatTok;
1143 }
1144
Nico Weberc2e6d2a2013-02-11 15:32:15 +00001145 IdentifierTable &getIdentTable() { return IdentTable; }
1146
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001147private:
1148 FormatToken FormatTok;
1149 bool GreaterStashed;
1150 Lexer &Lex;
1151 SourceManager &SourceMgr;
1152 IdentifierTable IdentTable;
1153
1154 /// Returns the text of \c FormatTok.
Manuel Klimek95419382013-01-07 07:56:50 +00001155 StringRef rawTokenText(Token &Tok) {
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001156 return StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
1157 Tok.getLength());
1158 }
1159};
1160
Daniel Jasperbac016b2012-12-03 18:12:45 +00001161class Formatter : public UnwrappedLineConsumer {
1162public:
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001163 Formatter(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr,
Daniel Jasperbac016b2012-12-03 18:12:45 +00001164 const std::vector<CharSourceRange> &Ranges)
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001165 : Style(Style), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko052685c2013-03-19 17:41:36 +00001166 Whitespaces(SourceMgr, Style), Ranges(Ranges) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +00001167
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001168 virtual ~Formatter() {}
Daniel Jasperaccb0b02012-12-04 21:05:31 +00001169
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001170 tooling::Replacements format() {
1171 LexerBasedFormatTokenSource Tokens(Lex, SourceMgr);
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001172 UnwrappedLineParser Parser(Style, Tokens, *this);
Manuel Klimek67d080d2013-04-12 14:13:36 +00001173 bool StructuralError = Parser.parse();
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001174 TokenAnnotator Annotator(Style, SourceMgr, Lex,
1175 Tokens.getIdentTable().get("in"));
1176 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1177 Annotator.annotate(AnnotatedLines[i]);
1178 }
1179 deriveLocalStyle();
1180 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1181 Annotator.calculateFormattingInformation(AnnotatedLines[i]);
1182 }
Daniel Jasper5999f762013-04-09 17:46:55 +00001183
1184 // Adapt level to the next line if this is a comment.
1185 // FIXME: Can/should this be done in the UnwrappedLineParser?
Daniel Jasper1407bee2013-04-11 14:29:13 +00001186 const AnnotatedLine *NextNoneCommentLine = NULL;
Daniel Jasper5999f762013-04-09 17:46:55 +00001187 for (unsigned i = AnnotatedLines.size() - 1; i > 0; --i) {
1188 if (NextNoneCommentLine && AnnotatedLines[i].First.is(tok::comment) &&
1189 AnnotatedLines[i].First.Children.empty())
1190 AnnotatedLines[i].Level = NextNoneCommentLine->Level;
1191 else
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001192 NextNoneCommentLine =
1193 AnnotatedLines[i].First.isNot(tok::r_brace) ? &AnnotatedLines[i]
1194 : NULL;
Daniel Jasper5999f762013-04-09 17:46:55 +00001195 }
1196
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001197 std::vector<int> IndentForLevel;
1198 bool PreviousLineWasTouched = false;
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001199 const AnnotatedToken *PreviousLineLastToken = 0;
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001200 bool FormatPPDirective = false;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001201 for (std::vector<AnnotatedLine>::iterator I = AnnotatedLines.begin(),
1202 E = AnnotatedLines.end();
1203 I != E; ++I) {
1204 const AnnotatedLine &TheLine = *I;
1205 const FormatToken &FirstTok = TheLine.First.FormatTok;
1206 int Offset = getIndentOffset(TheLine.First);
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001207
1208 // Check whether this line is part of a formatted preprocessor directive.
1209 if (FirstTok.HasUnescapedNewline)
1210 FormatPPDirective = false;
1211 if (!FormatPPDirective && TheLine.InPPDirective &&
1212 (touchesLine(TheLine) || touchesPPDirective(I + 1, E)))
1213 FormatPPDirective = true;
1214
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001215 // Determine indent and try to merge multiple unwrapped lines.
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001216 while (IndentForLevel.size() <= TheLine.Level)
1217 IndentForLevel.push_back(-1);
1218 IndentForLevel.resize(TheLine.Level + 1);
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001219 unsigned Indent = getIndent(IndentForLevel, TheLine.Level);
1220 if (static_cast<int>(Indent) + Offset >= 0)
1221 Indent += Offset;
1222 tryFitMultipleLinesInOne(Indent, I, E);
1223
Daniel Jasperf9955d32013-03-20 12:37:50 +00001224 bool WasMoved = PreviousLineWasTouched && FirstTok.NewlinesBefore == 0;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001225 if (TheLine.First.is(tok::eof)) {
1226 if (PreviousLineWasTouched) {
1227 unsigned NewLines = std::min(FirstTok.NewlinesBefore, 1u);
1228 Whitespaces.replaceWhitespace(TheLine.First, NewLines, /*Indent*/ 0,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001229 /*TargetColumn*/ 0);
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001230 }
1231 } else if (TheLine.Type != LT_Invalid &&
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001232 (WasMoved || FormatPPDirective || touchesLine(TheLine))) {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001233 unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level);
Manuel Klimek67d080d2013-04-12 14:13:36 +00001234 if (FirstTok.WhiteSpaceStart.isValid() &&
1235 // Insert a break even if there is a structural error in case where
1236 // we break apart a line consisting of multiple unwrapped lines.
1237 (FirstTok.NewlinesBefore == 0 || !StructuralError)) {
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001238 formatFirstToken(TheLine.First, PreviousLineLastToken, Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001239 TheLine.InPPDirective);
Manuel Klimek67d080d2013-04-12 14:13:36 +00001240 } else {
1241 Indent = LevelIndent =
1242 SourceMgr.getSpellingColumnNumber(FirstTok.Tok.getLocation()) - 1;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001243 }
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001244 UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, Indent,
Manuel Klimek67d080d2013-04-12 14:13:36 +00001245 TheLine.First, Whitespaces);
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001246 Formatter.format(I + 1 != E ? &*(I + 1) : NULL);
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001247 IndentForLevel[TheLine.Level] = LevelIndent;
1248 PreviousLineWasTouched = true;
1249 } else {
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001250 // Format the first token if necessary, and notify the WhitespaceManager
1251 // about the unchanged whitespace.
1252 for (const AnnotatedToken *Tok = &TheLine.First; Tok != NULL;
1253 Tok = Tok->Children.empty() ? NULL : &Tok->Children[0]) {
1254 if (Tok == &TheLine.First &&
1255 (Tok->FormatTok.NewlinesBefore > 0 || Tok->FormatTok.IsFirst)) {
1256 unsigned LevelIndent = SourceMgr.getSpellingColumnNumber(
1257 Tok->FormatTok.Tok.getLocation()) -
1258 1;
1259 // Remove trailing whitespace of the previous line if it was
1260 // touched.
1261 if (PreviousLineWasTouched || touchesEmptyLineBefore(TheLine)) {
1262 formatFirstToken(*Tok, PreviousLineLastToken, LevelIndent,
1263 TheLine.InPPDirective);
1264 } else {
1265 Whitespaces.addUntouchableToken(Tok->FormatTok,
1266 TheLine.InPPDirective);
1267 }
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001268
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001269 if (static_cast<int>(LevelIndent) - Offset >= 0)
1270 LevelIndent -= Offset;
1271 if (Tok->isNot(tok::comment))
1272 IndentForLevel[TheLine.Level] = LevelIndent;
1273 } else {
1274 Whitespaces.addUntouchableToken(Tok->FormatTok,
1275 TheLine.InPPDirective);
1276 }
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001277 }
1278 // If we did not reformat this unwrapped line, the column at the end of
1279 // the last token is unchanged - thus, we can calculate the end of the
1280 // last token.
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001281 PreviousLineWasTouched = false;
1282 }
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001283 PreviousLineLastToken = I->Last;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001284 }
1285 return Whitespaces.generateReplacements();
1286 }
1287
1288private:
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001289 void deriveLocalStyle() {
1290 unsigned CountBoundToVariable = 0;
1291 unsigned CountBoundToType = 0;
1292 bool HasCpp03IncompatibleFormat = false;
1293 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1294 if (AnnotatedLines[i].First.Children.empty())
1295 continue;
1296 AnnotatedToken *Tok = &AnnotatedLines[i].First.Children[0];
1297 while (!Tok->Children.empty()) {
1298 if (Tok->Type == TT_PointerOrReference) {
1299 bool SpacesBefore = Tok->FormatTok.WhiteSpaceLength > 0;
1300 bool SpacesAfter = Tok->Children[0].FormatTok.WhiteSpaceLength > 0;
1301 if (SpacesBefore && !SpacesAfter)
1302 ++CountBoundToVariable;
1303 else if (!SpacesBefore && SpacesAfter)
1304 ++CountBoundToType;
1305 }
1306
Daniel Jasper29f123b2013-02-08 15:28:42 +00001307 if (Tok->Type == TT_TemplateCloser &&
1308 Tok->Parent->Type == TT_TemplateCloser &&
1309 Tok->FormatTok.WhiteSpaceLength == 0)
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001310 HasCpp03IncompatibleFormat = true;
1311 Tok = &Tok->Children[0];
1312 }
1313 }
1314 if (Style.DerivePointerBinding) {
1315 if (CountBoundToType > CountBoundToVariable)
1316 Style.PointerBindsToType = true;
1317 else if (CountBoundToType < CountBoundToVariable)
1318 Style.PointerBindsToType = false;
1319 }
1320 if (Style.Standard == FormatStyle::LS_Auto) {
1321 Style.Standard = HasCpp03IncompatibleFormat ? FormatStyle::LS_Cpp11
1322 : FormatStyle::LS_Cpp03;
1323 }
1324 }
1325
Manuel Klimek547d5db2013-02-08 17:38:27 +00001326 /// \brief Get the indent of \p Level from \p IndentForLevel.
1327 ///
1328 /// \p IndentForLevel must contain the indent for the level \c l
1329 /// at \p IndentForLevel[l], or a value < 0 if the indent for
1330 /// that level is unknown.
Daniel Jasperfc759082013-02-14 14:26:07 +00001331 unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001332 if (IndentForLevel[Level] != -1)
1333 return IndentForLevel[Level];
Manuel Klimek52635ff2013-02-08 19:53:32 +00001334 if (Level == 0)
1335 return 0;
Manuel Klimek07a64ec2013-05-13 08:42:42 +00001336 return getIndent(IndentForLevel, Level - 1) + Style.IndentWidth;
Manuel Klimek547d5db2013-02-08 17:38:27 +00001337 }
1338
1339 /// \brief Get the offset of the line relatively to the level.
1340 ///
1341 /// For example, 'public:' labels in classes are offset by 1 or 2
1342 /// characters to the left from their level.
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001343 int getIndentOffset(const AnnotatedToken &RootToken) {
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001344 if (RootToken.isAccessSpecifier(false) || RootToken.isObjCAccessSpecifier())
Manuel Klimek547d5db2013-02-08 17:38:27 +00001345 return Style.AccessModifierOffset;
1346 return 0;
1347 }
1348
Manuel Klimek517e8942013-01-11 17:54:10 +00001349 /// \brief Tries to merge lines into one.
1350 ///
1351 /// This will change \c Line and \c AnnotatedLine to contain the merged line,
1352 /// if possible; note that \c I will be incremented when lines are merged.
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001353 void tryFitMultipleLinesInOne(unsigned Indent,
Daniel Jasper995e8202013-01-14 13:08:07 +00001354 std::vector<AnnotatedLine>::iterator &I,
1355 std::vector<AnnotatedLine>::iterator E) {
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001356 // We can never merge stuff if there are trailing line comments.
1357 if (I->Last->Type == TT_LineComment)
1358 return;
1359
Daniel Jaspera4d46212013-02-28 11:05:57 +00001360 unsigned Limit = Style.ColumnLimit - Indent;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001361 // If we already exceed the column limit, we set 'Limit' to 0. The different
1362 // tryMerge..() functions can then decide whether to still do merging.
1363 Limit = I->Last->TotalLength > Limit ? 0 : Limit - I->Last->TotalLength;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001364
Daniel Jasper9c8c40e2013-01-21 14:18:28 +00001365 if (I + 1 == E || (I + 1)->Type == LT_Invalid)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001366 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001367
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001368 if (I->Last->is(tok::l_brace)) {
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001369 tryMergeSimpleBlock(I, E, Limit);
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001370 } else if (Style.AllowShortIfStatementsOnASingleLine &&
1371 I->First.is(tok::kw_if)) {
1372 tryMergeSimpleControlStatement(I, E, Limit);
1373 } else if (Style.AllowShortLoopsOnASingleLine &&
1374 I->First.isOneOf(tok::kw_for, tok::kw_while)) {
1375 tryMergeSimpleControlStatement(I, E, Limit);
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001376 } else if (I->InPPDirective && (I->First.FormatTok.HasUnescapedNewline ||
1377 I->First.FormatTok.IsFirst)) {
1378 tryMergeSimplePPDirective(I, E, Limit);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001379 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001380 }
1381
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001382 void tryMergeSimplePPDirective(std::vector<AnnotatedLine>::iterator &I,
1383 std::vector<AnnotatedLine>::iterator E,
1384 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001385 if (Limit == 0)
1386 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001387 AnnotatedLine &Line = *I;
Daniel Jasper2b9c10b2013-01-14 15:52:06 +00001388 if (!(I + 1)->InPPDirective || (I + 1)->First.FormatTok.HasUnescapedNewline)
1389 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001390 if (I + 2 != E && (I + 2)->InPPDirective &&
1391 !(I + 2)->First.FormatTok.HasUnescapedNewline)
1392 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001393 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001394 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001395 join(Line, *(++I));
1396 }
1397
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001398 void tryMergeSimpleControlStatement(std::vector<AnnotatedLine>::iterator &I,
1399 std::vector<AnnotatedLine>::iterator E,
1400 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001401 if (Limit == 0)
1402 return;
Manuel Klimek4c128122013-01-18 14:46:43 +00001403 if ((I + 1)->InPPDirective != I->InPPDirective ||
1404 ((I + 1)->InPPDirective &&
1405 (I + 1)->First.FormatTok.HasUnescapedNewline))
1406 return;
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001407 AnnotatedLine &Line = *I;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001408 if (Line.Last->isNot(tok::r_paren))
1409 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001410 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001411 return;
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001412 if ((I + 1)->First.isOneOf(tok::semi, tok::kw_if, tok::kw_for,
1413 tok::kw_while) ||
1414 (I + 1)->First.Type == TT_LineComment)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001415 return;
1416 // Only inline simple if's (no nested if or else).
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001417 if (I + 2 != E && Line.First.is(tok::kw_if) &&
1418 (I + 2)->First.is(tok::kw_else))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001419 return;
1420 join(Line, *(++I));
1421 }
1422
1423 void tryMergeSimpleBlock(std::vector<AnnotatedLine>::iterator &I,
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001424 std::vector<AnnotatedLine>::iterator E,
1425 unsigned Limit) {
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001426 // No merging if the brace already is on the next line.
1427 if (Style.BreakBeforeBraces != FormatStyle::BS_Attach)
1428 return;
1429
Manuel Klimek517e8942013-01-11 17:54:10 +00001430 // First, check that the current line allows merging. This is the case if
1431 // we're not in a control flow statement and the last token is an opening
1432 // brace.
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001433 AnnotatedLine &Line = *I;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001434 if (Line.First.isOneOf(tok::kw_if, tok::kw_while, tok::kw_do, tok::r_brace,
1435 tok::kw_else, tok::kw_try, tok::kw_catch,
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001436 tok::kw_for, tok::kw_namespace,
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001437 // This gets rid of all ObjC @ keywords and methods.
1438 tok::at, tok::minus, tok::plus))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001439 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001440
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001441 AnnotatedToken *Tok = &(I + 1)->First;
Daniel Jasper058f6f82013-05-16 10:17:39 +00001442 if (Tok->getNextNoneComment() == NULL && Tok->is(tok::r_brace) &&
Daniel Jasperf11a7052013-02-21 21:33:55 +00001443 !Tok->MustBreakBefore) {
1444 // We merge empty blocks even if the line exceeds the column limit.
Daniel Jasper729a7432013-02-11 12:36:37 +00001445 Tok->SpacesRequiredBefore = 0;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001446 Tok->CanBreakBefore = true;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001447 join(Line, *(I + 1));
1448 I += 1;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001449 } else if (Limit != 0) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001450 // Check that we still have three lines and they fit into the limit.
1451 if (I + 2 == E || (I + 2)->Type == LT_Invalid ||
1452 !nextTwoLinesFitInto(I, Limit))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001453 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001454
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001455 // Second, check that the next line does not contain any braces - if it
1456 // does, readability declines when putting it into a single line.
1457 if ((I + 1)->Last->Type == TT_LineComment || Tok->MustBreakBefore)
1458 return;
1459 do {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001460 if (Tok->isOneOf(tok::l_brace, tok::r_brace))
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001461 return;
1462 Tok = Tok->Children.empty() ? NULL : &Tok->Children.back();
1463 } while (Tok != NULL);
Manuel Klimek517e8942013-01-11 17:54:10 +00001464
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001465 // Last, check that the third line contains a single closing brace.
1466 Tok = &(I + 2)->First;
Daniel Jasper058f6f82013-05-16 10:17:39 +00001467 if (Tok->getNextNoneComment() != NULL || Tok->isNot(tok::r_brace) ||
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001468 Tok->MustBreakBefore)
1469 return;
1470
1471 join(Line, *(I + 1));
1472 join(Line, *(I + 2));
1473 I += 2;
Manuel Klimek517e8942013-01-11 17:54:10 +00001474 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001475 }
1476
1477 bool nextTwoLinesFitInto(std::vector<AnnotatedLine>::iterator I,
1478 unsigned Limit) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001479 return 1 + (I + 1)->Last->TotalLength + 1 + (I + 2)->Last->TotalLength <=
1480 Limit;
Manuel Klimek517e8942013-01-11 17:54:10 +00001481 }
1482
Daniel Jasper995e8202013-01-14 13:08:07 +00001483 void join(AnnotatedLine &A, const AnnotatedLine &B) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001484 unsigned LengthA = A.Last->TotalLength + B.First.SpacesRequiredBefore;
Daniel Jasper995e8202013-01-14 13:08:07 +00001485 A.Last->Children.push_back(B.First);
1486 while (!A.Last->Children.empty()) {
1487 A.Last->Children[0].Parent = A.Last;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001488 A.Last->Children[0].TotalLength += LengthA;
Daniel Jasper995e8202013-01-14 13:08:07 +00001489 A.Last = &A.Last->Children[0];
1490 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001491 }
1492
Daniel Jasper6f21a982013-03-13 07:49:51 +00001493 bool touchesRanges(const CharSourceRange &Range) {
Daniel Jasperf3023542013-03-07 20:50:00 +00001494 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1495 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),
1496 Ranges[i].getBegin()) &&
1497 !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
1498 Range.getBegin()))
1499 return true;
1500 }
1501 return false;
1502 }
1503
1504 bool touchesLine(const AnnotatedLine &TheLine) {
Daniel Jasper995e8202013-01-14 13:08:07 +00001505 const FormatToken *First = &TheLine.First.FormatTok;
1506 const FormatToken *Last = &TheLine.Last->FormatTok;
Daniel Jasper84f5ddf2013-05-14 10:31:09 +00001507 CharSourceRange LineRange = CharSourceRange::getCharRange(
Daniel Jasper1eee6c42013-03-04 13:43:19 +00001508 First->WhiteSpaceStart.getLocWithOffset(First->LastNewlineOffset),
Daniel Jasper84f5ddf2013-05-14 10:31:09 +00001509 Last->Tok.getLocation().getLocWithOffset(Last->TokenLength - 1));
Daniel Jasperf3023542013-03-07 20:50:00 +00001510 return touchesRanges(LineRange);
1511 }
1512
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001513 bool touchesPPDirective(std::vector<AnnotatedLine>::iterator I,
1514 std::vector<AnnotatedLine>::iterator E) {
1515 for (; I != E; ++I) {
1516 if (I->First.FormatTok.HasUnescapedNewline)
1517 return false;
1518 if (touchesLine(*I))
1519 return true;
1520 }
1521 return false;
1522 }
1523
Daniel Jasperf3023542013-03-07 20:50:00 +00001524 bool touchesEmptyLineBefore(const AnnotatedLine &TheLine) {
1525 const FormatToken *First = &TheLine.First.FormatTok;
1526 CharSourceRange LineRange = CharSourceRange::getCharRange(
1527 First->WhiteSpaceStart,
1528 First->WhiteSpaceStart.getLocWithOffset(First->LastNewlineOffset));
1529 return touchesRanges(LineRange);
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001530 }
1531
1532 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
Daniel Jaspercbb6c412013-01-16 09:10:19 +00001533 AnnotatedLines.push_back(AnnotatedLine(TheLine));
Daniel Jasperbac016b2012-12-03 18:12:45 +00001534 }
1535
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001536 /// \brief Add a new line and the required indent before the first Token
1537 /// of the \c UnwrappedLine if there was no structural parsing error.
1538 /// Returns the indent level of the \c UnwrappedLine.
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001539 void formatFirstToken(const AnnotatedToken &RootToken,
1540 const AnnotatedToken *PreviousToken, unsigned Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001541 bool InPPDirective) {
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001542 const FormatToken &Tok = RootToken.FormatTok;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001543
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001544 unsigned Newlines =
1545 std::min(Tok.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001546 if (Newlines == 0 && !Tok.IsFirst)
1547 Newlines = 1;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001548
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001549 // Insert extra new line before access specifiers.
1550 if (PreviousToken && PreviousToken->isOneOf(tok::semi, tok::r_brace) &&
1551 RootToken.isAccessSpecifier() && Tok.NewlinesBefore == 1)
1552 ++Newlines;
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001553
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001554 Whitespaces.replaceWhitespace(RootToken, Newlines, Indent, Indent,
1555 InPPDirective && !Tok.HasUnescapedNewline);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001556 }
1557
Daniel Jasperbac016b2012-12-03 18:12:45 +00001558 FormatStyle Style;
1559 Lexer &Lex;
1560 SourceManager &SourceMgr;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001561 WhitespaceManager Whitespaces;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001562 std::vector<CharSourceRange> Ranges;
Daniel Jasper995e8202013-01-14 13:08:07 +00001563 std::vector<AnnotatedLine> AnnotatedLines;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001564};
1565
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001566tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
1567 SourceManager &SourceMgr,
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001568 std::vector<CharSourceRange> Ranges) {
1569 Formatter formatter(Style, Lex, SourceMgr, Ranges);
Daniel Jasperbac016b2012-12-03 18:12:45 +00001570 return formatter.format();
1571}
1572
Daniel Jasper8a999452013-05-16 10:40:07 +00001573tooling::Replacements reformat(const FormatStyle &Style, StringRef Code,
1574 std::vector<tooling::Range> Ranges,
1575 StringRef FileName) {
1576 FileManager Files((FileSystemOptions()));
1577 DiagnosticsEngine Diagnostics(
1578 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
1579 new DiagnosticOptions);
1580 SourceManager SourceMgr(Diagnostics, Files);
1581 llvm::MemoryBuffer *Buf = llvm::MemoryBuffer::getMemBuffer(Code, FileName);
1582 const clang::FileEntry *Entry =
1583 Files.getVirtualFile(FileName, Buf->getBufferSize(), 0);
1584 SourceMgr.overrideFileContents(Entry, Buf);
1585 FileID ID =
1586 SourceMgr.createFileID(Entry, SourceLocation(), clang::SrcMgr::C_User);
1587 Lexer Lex(ID, SourceMgr.getBuffer(ID), SourceMgr, getFormattingLangOpts());
1588 SourceLocation StartOfFile = SourceMgr.getLocForStartOfFile(ID);
1589 std::vector<CharSourceRange> CharRanges;
1590 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1591 SourceLocation Start = StartOfFile.getLocWithOffset(Ranges[i].getOffset());
1592 SourceLocation End = Start.getLocWithOffset(Ranges[i].getLength());
1593 CharRanges.push_back(CharSourceRange::getCharRange(Start, End));
1594 }
1595 return reformat(Style, Lex, SourceMgr, CharRanges);
1596}
1597
Daniel Jasper46ef8522013-01-10 13:08:12 +00001598LangOptions getFormattingLangOpts() {
1599 LangOptions LangOpts;
1600 LangOpts.CPlusPlus = 1;
1601 LangOpts.CPlusPlus11 = 1;
Daniel Jasperb64eca02013-03-22 10:01:29 +00001602 LangOpts.LineComment = 1;
Daniel Jasper46ef8522013-01-10 13:08:12 +00001603 LangOpts.Bool = 1;
1604 LangOpts.ObjC1 = 1;
1605 LangOpts.ObjC2 = 1;
1606 return LangOpts;
1607}
1608
Daniel Jaspercd162382013-01-07 13:26:07 +00001609} // namespace format
1610} // namespace clang