blob: b4ea90462a83f613742ffa1b1de6b43cb06dcfec [file] [log] [blame]
Daniel Jasperbac016b2012-12-03 18:12:45 +00001//===--- Format.cpp - Format C++ code -------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9///
10/// \file
11/// \brief This file implements functions declared in Format.h. This will be
12/// split into separate files as we go.
13///
Daniel Jasperbac016b2012-12-03 18:12:45 +000014//===----------------------------------------------------------------------===//
15
Manuel Klimekca547db2013-01-16 14:55:28 +000016#define DEBUG_TYPE "format-formatter"
17
Alexander Kornienko70ce7882013-04-15 14:28:00 +000018#include "BreakableToken.h"
Daniel Jasper32d28ee2013-01-29 21:01:14 +000019#include "TokenAnnotator.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "UnwrappedLineParser.h"
Alexander Kornienko70ce7882013-04-15 14:28:00 +000021#include "WhitespaceManager.h"
Daniel Jasper8a999452013-05-16 10:40:07 +000022#include "clang/Basic/Diagnostic.h"
Daniel Jasper675d2e32012-12-21 10:20:02 +000023#include "clang/Basic/OperatorPrecedence.h"
Chandler Carruthb99083e2013-01-02 10:28:36 +000024#include "clang/Basic/SourceManager.h"
Manuel Klimekca547db2013-01-16 14:55:28 +000025#include "clang/Format/Format.h"
Daniel Jasperbac016b2012-12-03 18:12:45 +000026#include "clang/Lex/Lexer.h"
Alexander Kornienko5262dd92013-03-27 11:52:18 +000027#include "llvm/ADT/STLExtras.h"
Manuel Klimek32a2fd72013-02-13 10:46:36 +000028#include "llvm/Support/Allocator.h"
Manuel Klimekca547db2013-01-16 14:55:28 +000029#include "llvm/Support/Debug.h"
Alexander Kornienkod71ec162013-05-07 15:32:14 +000030#include "llvm/Support/YAMLTraits.h"
Manuel Klimek32a2fd72013-02-13 10:46:36 +000031#include <queue>
Daniel Jasper8822d3a2012-12-04 13:02:32 +000032#include <string>
33
Alexander Kornienkod71ec162013-05-07 15:32:14 +000034namespace llvm {
35namespace yaml {
36template <>
37struct ScalarEnumerationTraits<clang::format::FormatStyle::LanguageStandard> {
Manuel Klimek44135b82013-05-13 12:51:40 +000038 static void enumeration(IO &IO,
39 clang::format::FormatStyle::LanguageStandard &Value) {
40 IO.enumCase(Value, "C++03", clang::format::FormatStyle::LS_Cpp03);
41 IO.enumCase(Value, "C++11", clang::format::FormatStyle::LS_Cpp11);
42 IO.enumCase(Value, "Auto", clang::format::FormatStyle::LS_Auto);
43 }
44};
45
Daniel Jasper1fb8d882013-05-14 09:30:02 +000046template <>
Manuel Klimek44135b82013-05-13 12:51:40 +000047struct ScalarEnumerationTraits<clang::format::FormatStyle::BraceBreakingStyle> {
48 static void
49 enumeration(IO &IO, clang::format::FormatStyle::BraceBreakingStyle &Value) {
50 IO.enumCase(Value, "Attach", clang::format::FormatStyle::BS_Attach);
51 IO.enumCase(Value, "Linux", clang::format::FormatStyle::BS_Linux);
52 IO.enumCase(Value, "Stroustrup", clang::format::FormatStyle::BS_Stroustrup);
Alexander Kornienkod71ec162013-05-07 15:32:14 +000053 }
54};
55
56template <> struct MappingTraits<clang::format::FormatStyle> {
57 static void mapping(llvm::yaml::IO &IO, clang::format::FormatStyle &Style) {
Alexander Kornienkodd256312013-05-10 11:56:10 +000058 if (IO.outputting()) {
59 StringRef StylesArray[] = { "LLVM", "Google", "Chromium", "Mozilla" };
60 ArrayRef<StringRef> Styles(StylesArray);
61 for (size_t i = 0, e = Styles.size(); i < e; ++i) {
62 StringRef StyleName(Styles[i]);
Alexander Kornienko885f87b2013-05-19 00:53:30 +000063 clang::format::FormatStyle PredefinedStyle;
64 if (clang::format::getPredefinedStyle(StyleName, &PredefinedStyle) &&
65 Style == PredefinedStyle) {
Alexander Kornienkodd256312013-05-10 11:56:10 +000066 IO.mapOptional("# BasedOnStyle", StyleName);
67 break;
68 }
69 }
70 } else {
Alexander Kornienkod71ec162013-05-07 15:32:14 +000071 StringRef BasedOnStyle;
72 IO.mapOptional("BasedOnStyle", BasedOnStyle);
Alexander Kornienkod71ec162013-05-07 15:32:14 +000073 if (!BasedOnStyle.empty())
Alexander Kornienko885f87b2013-05-19 00:53:30 +000074 if (!clang::format::getPredefinedStyle(BasedOnStyle, &Style)) {
75 IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle));
76 return;
77 }
Alexander Kornienkod71ec162013-05-07 15:32:14 +000078 }
79
80 IO.mapOptional("AccessModifierOffset", Style.AccessModifierOffset);
81 IO.mapOptional("AlignEscapedNewlinesLeft", Style.AlignEscapedNewlinesLeft);
82 IO.mapOptional("AllowAllParametersOfDeclarationOnNextLine",
83 Style.AllowAllParametersOfDeclarationOnNextLine);
84 IO.mapOptional("AllowShortIfStatementsOnASingleLine",
85 Style.AllowShortIfStatementsOnASingleLine);
Daniel Jasperf11bbb92013-05-16 12:12:21 +000086 IO.mapOptional("AllowShortLoopsOnASingleLine",
87 Style.AllowShortLoopsOnASingleLine);
Alexander Kornienkod71ec162013-05-07 15:32:14 +000088 IO.mapOptional("BinPackParameters", Style.BinPackParameters);
89 IO.mapOptional("ColumnLimit", Style.ColumnLimit);
90 IO.mapOptional("ConstructorInitializerAllOnOneLineOrOnePerLine",
91 Style.ConstructorInitializerAllOnOneLineOrOnePerLine);
92 IO.mapOptional("DerivePointerBinding", Style.DerivePointerBinding);
93 IO.mapOptional("IndentCaseLabels", Style.IndentCaseLabels);
94 IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep);
95 IO.mapOptional("ObjCSpaceBeforeProtocolList",
96 Style.ObjCSpaceBeforeProtocolList);
97 IO.mapOptional("PenaltyExcessCharacter", Style.PenaltyExcessCharacter);
98 IO.mapOptional("PenaltyReturnTypeOnItsOwnLine",
99 Style.PenaltyReturnTypeOnItsOwnLine);
100 IO.mapOptional("PointerBindsToType", Style.PointerBindsToType);
101 IO.mapOptional("SpacesBeforeTrailingComments",
102 Style.SpacesBeforeTrailingComments);
Daniel Jasper1bee0732013-05-23 18:05:18 +0000103 IO.mapOptional("SpacesInBracedLists", Style.SpacesInBracedLists);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000104 IO.mapOptional("Standard", Style.Standard);
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000105 IO.mapOptional("IndentWidth", Style.IndentWidth);
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000106 IO.mapOptional("UseTab", Style.UseTab);
Manuel Klimek44135b82013-05-13 12:51:40 +0000107 IO.mapOptional("BreakBeforeBraces", Style.BreakBeforeBraces);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000108 }
109};
110}
111}
112
Daniel Jasperbac016b2012-12-03 18:12:45 +0000113namespace clang {
114namespace format {
115
Daniel Jasperbac016b2012-12-03 18:12:45 +0000116FormatStyle getLLVMStyle() {
117 FormatStyle LLVMStyle;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000118 LLVMStyle.AccessModifierOffset = -2;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000119 LLVMStyle.AlignEscapedNewlinesLeft = false;
Daniel Jasperf1579602013-01-29 16:03:49 +0000120 LLVMStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000121 LLVMStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000122 LLVMStyle.AllowShortLoopsOnASingleLine = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000123 LLVMStyle.BinPackParameters = true;
124 LLVMStyle.ColumnLimit = 80;
125 LLVMStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = false;
126 LLVMStyle.DerivePointerBinding = false;
127 LLVMStyle.IndentCaseLabels = false;
128 LLVMStyle.MaxEmptyLinesToKeep = 1;
Nico Weber5f500df2013-01-10 20:12:55 +0000129 LLVMStyle.ObjCSpaceBeforeProtocolList = true;
Daniel Jasper01786732013-02-04 07:21:18 +0000130 LLVMStyle.PenaltyExcessCharacter = 1000000;
Daniel Jasper1407bee2013-04-11 14:29:13 +0000131 LLVMStyle.PenaltyReturnTypeOnItsOwnLine = 75;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000132 LLVMStyle.PointerBindsToType = false;
133 LLVMStyle.SpacesBeforeTrailingComments = 1;
Daniel Jasper2424eef2013-05-23 10:15:45 +0000134 LLVMStyle.SpacesInBracedLists = true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000135 LLVMStyle.Standard = FormatStyle::LS_Cpp03;
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000136 LLVMStyle.IndentWidth = 2;
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000137 LLVMStyle.UseTab = false;
Manuel Klimek44135b82013-05-13 12:51:40 +0000138 LLVMStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000139 return LLVMStyle;
140}
141
142FormatStyle getGoogleStyle() {
143 FormatStyle GoogleStyle;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000144 GoogleStyle.AccessModifierOffset = -1;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000145 GoogleStyle.AlignEscapedNewlinesLeft = true;
Daniel Jasperf1579602013-01-29 16:03:49 +0000146 GoogleStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper94d6ad72013-04-24 13:46:00 +0000147 GoogleStyle.AllowShortIfStatementsOnASingleLine = true;
Daniel Jasper1bee0732013-05-23 18:05:18 +0000148 GoogleStyle.AllowShortLoopsOnASingleLine = true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000149 GoogleStyle.BinPackParameters = true;
150 GoogleStyle.ColumnLimit = 80;
151 GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
152 GoogleStyle.DerivePointerBinding = true;
153 GoogleStyle.IndentCaseLabels = true;
154 GoogleStyle.MaxEmptyLinesToKeep = 1;
Nico Weber5f500df2013-01-10 20:12:55 +0000155 GoogleStyle.ObjCSpaceBeforeProtocolList = false;
Daniel Jasper01786732013-02-04 07:21:18 +0000156 GoogleStyle.PenaltyExcessCharacter = 1000000;
Daniel Jasper1407bee2013-04-11 14:29:13 +0000157 GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000158 GoogleStyle.PointerBindsToType = true;
159 GoogleStyle.SpacesBeforeTrailingComments = 2;
Daniel Jasper2424eef2013-05-23 10:15:45 +0000160 GoogleStyle.SpacesInBracedLists = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000161 GoogleStyle.Standard = FormatStyle::LS_Auto;
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000162 GoogleStyle.IndentWidth = 2;
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000163 GoogleStyle.UseTab = false;
Manuel Klimek44135b82013-05-13 12:51:40 +0000164 GoogleStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000165 return GoogleStyle;
166}
167
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000168FormatStyle getChromiumStyle() {
169 FormatStyle ChromiumStyle = getGoogleStyle();
Daniel Jasperf1579602013-01-29 16:03:49 +0000170 ChromiumStyle.AllowAllParametersOfDeclarationOnNextLine = false;
Daniel Jasper94d6ad72013-04-24 13:46:00 +0000171 ChromiumStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000172 ChromiumStyle.AllowShortLoopsOnASingleLine = false;
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000173 ChromiumStyle.BinPackParameters = false;
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000174 ChromiumStyle.Standard = FormatStyle::LS_Cpp03;
175 ChromiumStyle.DerivePointerBinding = false;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000176 return ChromiumStyle;
177}
178
Alexander Kornienkofb594862013-05-06 14:11:27 +0000179FormatStyle getMozillaStyle() {
180 FormatStyle MozillaStyle = getLLVMStyle();
181 MozillaStyle.AllowAllParametersOfDeclarationOnNextLine = false;
182 MozillaStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
183 MozillaStyle.DerivePointerBinding = true;
184 MozillaStyle.IndentCaseLabels = true;
185 MozillaStyle.ObjCSpaceBeforeProtocolList = false;
186 MozillaStyle.PenaltyReturnTypeOnItsOwnLine = 200;
187 MozillaStyle.PointerBindsToType = true;
188 return MozillaStyle;
189}
190
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000191bool getPredefinedStyle(StringRef Name, FormatStyle *Style) {
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000192 if (Name.equals_lower("llvm"))
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000193 *Style = getLLVMStyle();
194 else if (Name.equals_lower("chromium"))
195 *Style = getChromiumStyle();
196 else if (Name.equals_lower("mozilla"))
197 *Style = getMozillaStyle();
198 else if (Name.equals_lower("google"))
199 *Style = getGoogleStyle();
200 else
201 return false;
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000202
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000203 return true;
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000204}
205
206llvm::error_code parseConfiguration(StringRef Text, FormatStyle *Style) {
Alexander Kornienko107db3c2013-05-20 15:18:01 +0000207 if (Text.trim().empty())
208 return llvm::make_error_code(llvm::errc::invalid_argument);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000209 llvm::yaml::Input Input(Text);
210 Input >> *Style;
211 return Input.error();
212}
213
214std::string configurationAsText(const FormatStyle &Style) {
215 std::string Text;
216 llvm::raw_string_ostream Stream(Text);
217 llvm::yaml::Output Output(Stream);
218 // We use the same mapping method for input and output, so we need a non-const
219 // reference here.
220 FormatStyle NonConstStyle = Style;
221 Output << NonConstStyle;
Alexander Kornienko2b6acb62013-05-13 12:56:35 +0000222 return Stream.str();
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000223}
224
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000225// Returns the length of everything up to the first possible line break after
226// the ), ], } or > matching \c Tok.
227static unsigned getLengthToMatchingParen(const AnnotatedToken &Tok) {
228 if (Tok.MatchingParen == NULL)
229 return 0;
230 AnnotatedToken *End = Tok.MatchingParen;
231 while (!End->Children.empty() && !End->Children[0].CanBreakBefore) {
232 End = &End->Children[0];
233 }
234 return End->TotalLength - Tok.TotalLength + 1;
235}
236
Daniel Jasperbac016b2012-12-03 18:12:45 +0000237class UnwrappedLineFormatter {
238public:
Manuel Klimek94fc6f12013-01-10 19:17:33 +0000239 UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr,
Daniel Jasper995e8202013-01-14 13:08:07 +0000240 const AnnotatedLine &Line, unsigned FirstIndent,
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +0000241 const AnnotatedToken &RootToken,
Manuel Klimek67d080d2013-04-12 14:13:36 +0000242 WhitespaceManager &Whitespaces)
Daniel Jasper1321eb52012-12-18 21:05:13 +0000243 : Style(Style), SourceMgr(SourceMgr), Line(Line),
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000244 FirstIndent(FirstIndent), RootToken(RootToken),
Daniel Jasperf11a7052013-02-21 21:33:55 +0000245 Whitespaces(Whitespaces), Count(0) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +0000246
Manuel Klimekd4397b92013-01-04 23:34:14 +0000247 /// \brief Formats an \c UnwrappedLine.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000248 void format(const AnnotatedLine *NextLine) {
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000249 // Initialize state dependent on indent.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000250 LineState State;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000251 State.Column = FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +0000252 State.NextToken = &RootToken;
Daniel Jasper6f21a982013-03-13 07:49:51 +0000253 State.Stack.push_back(
Daniel Jasper24e19e42013-05-22 08:55:55 +0000254 ParenState(FirstIndent, FirstIndent, /*AvoidBinPacking=*/ false,
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000255 /*NoLineBreak=*/ false));
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000256 State.LineContainsContinuedForLoopSection = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000257 State.ParenLevel = 0;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000258 State.StartOfStringLiteral = 0;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000259 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper259a0382013-05-27 11:50:16 +0000260 State.LowestLevelOnLine = State.ParenLevel;
Daniel Jasper54b4e442013-05-22 05:27:42 +0000261 State.IgnoreStackForComparison = false;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000262
263 // The first token has already been indented and thus consumed.
Manuel Klimek8092a942013-02-20 10:15:13 +0000264 moveStateToNextToken(State, /*DryRun=*/ false);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000265
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000266 // If everything fits on a single line, just put it there.
Daniel Jaspera4d46212013-02-28 11:05:57 +0000267 unsigned ColumnLimit = Style.ColumnLimit;
268 if (NextLine && NextLine->InPPDirective &&
269 !NextLine->First.FormatTok.HasUnescapedNewline)
270 ColumnLimit = getColumnLimit();
271 if (Line.Last->TotalLength <= ColumnLimit - FirstIndent) {
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000272 while (State.NextToken != NULL) {
Daniel Jasper1321eb52012-12-18 21:05:13 +0000273 addTokenToState(false, false, State);
Daniel Jasper1321eb52012-12-18 21:05:13 +0000274 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000275 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000276
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000277 // If the ObjC method declaration does not fit on a line, we should format
278 // it with one arg per line.
279 if (Line.Type == LT_ObjCMethodDecl)
280 State.Stack.back().BreakBeforeParameter = true;
281
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000282 // Find best solution in solution space.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000283 analyzeSolutionSpace(State);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000284 }
285
286private:
Manuel Klimekca547db2013-01-16 14:55:28 +0000287 void DebugTokenState(const AnnotatedToken &AnnotatedTok) {
288 const Token &Tok = AnnotatedTok.FormatTok.Tok;
Alexander Kornienkodd256312013-05-10 11:56:10 +0000289 llvm::dbgs() << StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000290 Tok.getLength());
Alexander Kornienkodd256312013-05-10 11:56:10 +0000291 llvm::dbgs();
Manuel Klimekca547db2013-01-16 14:55:28 +0000292 }
293
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000294 struct ParenState {
Daniel Jasperd399bff2013-02-05 09:41:21 +0000295 ParenState(unsigned Indent, unsigned LastSpace, bool AvoidBinPacking,
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000296 bool NoLineBreak)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000297 : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
298 BreakBeforeClosingBrace(false), QuestionColumn(0),
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000299 AvoidBinPacking(AvoidBinPacking), BreakBeforeParameter(false),
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000300 NoLineBreak(NoLineBreak), ColonPos(0), StartOfFunctionCall(0),
301 NestedNameSpecifierContinuation(0), CallContinuation(0),
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000302 VariablePos(0), ForFakeParenthesis(false) {}
Daniel Jaspera4974cf2012-12-24 16:43:00 +0000303
Daniel Jasperbac016b2012-12-03 18:12:45 +0000304 /// \brief The position to which a specific parenthesis level needs to be
305 /// indented.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000306 unsigned Indent;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000307
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000308 /// \brief The position of the last space on each level.
309 ///
310 /// Used e.g. to break like:
311 /// functionCall(Parameter, otherCall(
312 /// OtherParameter));
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000313 unsigned LastSpace;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000314
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000315 /// \brief The position the first "<<" operator encountered on each level.
316 ///
317 /// Used to align "<<" operators. 0 if no such operator has been encountered
318 /// on a level.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000319 unsigned FirstLessLess;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000320
Manuel Klimekc8c8a472013-01-10 15:58:26 +0000321 /// \brief Whether a newline needs to be inserted before the block's closing
322 /// brace.
323 ///
324 /// We only want to insert a newline before the closing brace if there also
325 /// was a newline after the beginning left brace.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000326 bool BreakBeforeClosingBrace;
327
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000328 /// \brief The column of a \c ? in a conditional expression;
329 unsigned QuestionColumn;
330
Daniel Jasperf343cab2013-01-31 14:59:26 +0000331 /// \brief Avoid bin packing, i.e. multiple parameters/elements on multiple
332 /// lines, in this context.
333 bool AvoidBinPacking;
334
335 /// \brief Break after the next comma (or all the commas in this context if
336 /// \c AvoidBinPacking is \c true).
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000337 bool BreakBeforeParameter;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000338
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000339 /// \brief Line breaking in this context would break a formatting rule.
340 bool NoLineBreak;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000341
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000342 /// \brief The position of the colon in an ObjC method declaration/call.
343 unsigned ColonPos;
Daniel Jasperc4615b72013-02-20 12:56:39 +0000344
Daniel Jasper24849712013-03-01 16:48:32 +0000345 /// \brief The start of the most recent function in a builder-type call.
346 unsigned StartOfFunctionCall;
347
Daniel Jasper37911302013-04-02 14:33:13 +0000348 /// \brief If a nested name specifier was broken over multiple lines, this
349 /// contains the start column of the second line. Otherwise 0.
350 unsigned NestedNameSpecifierContinuation;
351
352 /// \brief If a call expression was broken over multiple lines, this
353 /// contains the start column of the second line. Otherwise 0.
354 unsigned CallContinuation;
355
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000356 /// \brief The column of the first variable name in a variable declaration.
357 ///
358 /// Used to align further variables if necessary.
359 unsigned VariablePos;
360
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000361 /// \brief \c true if this \c ParenState was created for a fake parenthesis.
362 ///
363 /// Does not need to be considered for memoization / the comparison function
364 /// as otherwise identical states will have the same fake/non-fake
365 /// \c ParenStates.
366 bool ForFakeParenthesis;
367
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000368 bool operator<(const ParenState &Other) const {
369 if (Indent != Other.Indent)
Daniel Jasper7d19bc22013-01-11 14:23:32 +0000370 return Indent < Other.Indent;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000371 if (LastSpace != Other.LastSpace)
372 return LastSpace < Other.LastSpace;
373 if (FirstLessLess != Other.FirstLessLess)
374 return FirstLessLess < Other.FirstLessLess;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000375 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
376 return BreakBeforeClosingBrace;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000377 if (QuestionColumn != Other.QuestionColumn)
378 return QuestionColumn < Other.QuestionColumn;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000379 if (AvoidBinPacking != Other.AvoidBinPacking)
380 return AvoidBinPacking;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000381 if (BreakBeforeParameter != Other.BreakBeforeParameter)
382 return BreakBeforeParameter;
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000383 if (NoLineBreak != Other.NoLineBreak)
384 return NoLineBreak;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000385 if (ColonPos != Other.ColonPos)
386 return ColonPos < Other.ColonPos;
Daniel Jasper24849712013-03-01 16:48:32 +0000387 if (StartOfFunctionCall != Other.StartOfFunctionCall)
388 return StartOfFunctionCall < Other.StartOfFunctionCall;
Daniel Jasper37911302013-04-02 14:33:13 +0000389 if (CallContinuation != Other.CallContinuation)
390 return CallContinuation < Other.CallContinuation;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000391 if (VariablePos != Other.VariablePos)
392 return VariablePos < Other.VariablePos;
Daniel Jasperb3123142013-01-12 07:36:22 +0000393 return false;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000394 }
395 };
396
397 /// \brief The current state when indenting a unwrapped line.
398 ///
399 /// As the indenting tries different combinations this is copied by value.
400 struct LineState {
401 /// \brief The number of used columns in the current line.
402 unsigned Column;
403
404 /// \brief The token that needs to be next formatted.
405 const AnnotatedToken *NextToken;
406
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000407 /// \brief \c true if this line contains a continued for-loop section.
408 bool LineContainsContinuedForLoopSection;
409
Daniel Jasper29f123b2013-02-08 15:28:42 +0000410 /// \brief The level of nesting inside (), [], <> and {}.
411 unsigned ParenLevel;
412
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000413 /// \brief The \c ParenLevel at the start of this line.
414 unsigned StartOfLineLevel;
415
Daniel Jasper259a0382013-05-27 11:50:16 +0000416 /// \brief The lowest \c ParenLevel on the current line.
417 unsigned LowestLevelOnLine;
418
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000419 /// \brief The start column of the string literal, if we're in a string
420 /// literal sequence, 0 otherwise.
421 unsigned StartOfStringLiteral;
422
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000423 /// \brief A stack keeping track of properties applying to parenthesis
424 /// levels.
425 std::vector<ParenState> Stack;
426
Daniel Jasper54b4e442013-05-22 05:27:42 +0000427 /// \brief Ignore the stack of \c ParenStates for state comparison.
428 ///
429 /// In long and deeply nested unwrapped lines, the current algorithm can
430 /// be insufficient for finding the best formatting with a reasonable amount
431 /// of time and memory. Setting this flag will effectively lead to the
432 /// algorithm not analyzing some combinations. However, these combinations
433 /// rarely contain the optimal solution: In short, accepting a higher
434 /// penalty early would need to lead to different values in the \c
435 /// ParenState stack (in an otherwise identical state) and these different
436 /// values would need to lead to a significant amount of avoided penalty
437 /// later.
438 ///
439 /// FIXME: Come up with a better algorithm instead.
440 bool IgnoreStackForComparison;
441
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000442 /// \brief Comparison operator to be able to used \c LineState in \c map.
443 bool operator<(const LineState &Other) const {
Daniel Jasperd7896702013-02-19 09:28:55 +0000444 if (NextToken != Other.NextToken)
445 return NextToken < Other.NextToken;
446 if (Column != Other.Column)
447 return Column < Other.Column;
Daniel Jasperd7896702013-02-19 09:28:55 +0000448 if (LineContainsContinuedForLoopSection !=
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000449 Other.LineContainsContinuedForLoopSection)
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000450 return LineContainsContinuedForLoopSection;
Daniel Jasperd7896702013-02-19 09:28:55 +0000451 if (ParenLevel != Other.ParenLevel)
452 return ParenLevel < Other.ParenLevel;
453 if (StartOfLineLevel != Other.StartOfLineLevel)
454 return StartOfLineLevel < Other.StartOfLineLevel;
Daniel Jasper259a0382013-05-27 11:50:16 +0000455 if (LowestLevelOnLine != Other.LowestLevelOnLine)
456 return LowestLevelOnLine < Other.LowestLevelOnLine;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000457 if (StartOfStringLiteral != Other.StartOfStringLiteral)
458 return StartOfStringLiteral < Other.StartOfStringLiteral;
Daniel Jasper54b4e442013-05-22 05:27:42 +0000459 if (IgnoreStackForComparison || Other.IgnoreStackForComparison)
460 return false;
Daniel Jasperd7896702013-02-19 09:28:55 +0000461 return Stack < Other.Stack;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000462 }
463 };
464
Daniel Jasper20409152012-12-04 14:54:30 +0000465 /// \brief Appends the next token to \p State and updates information
466 /// necessary for indentation.
467 ///
468 /// Puts the token on the current line if \p Newline is \c true and adds a
469 /// line break and necessary indentation otherwise.
470 ///
471 /// If \p DryRun is \c false, also creates and stores the required
472 /// \c Replacement.
Manuel Klimek8092a942013-02-20 10:15:13 +0000473 unsigned addTokenToState(bool Newline, bool DryRun, LineState &State) {
Daniel Jasper9c837d02013-01-09 07:06:56 +0000474 const AnnotatedToken &Current = *State.NextToken;
475 const AnnotatedToken &Previous = *State.NextToken->Parent;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000476
Daniel Jasper92f9faf2013-03-20 15:58:10 +0000477 if (State.Stack.size() == 0 || Current.Type == TT_ImplicitStringLiteral) {
Manuel Klimekad3094b2013-05-23 10:56:37 +0000478 // FIXME: Is this correct?
479 int WhitespaceLength =
480 SourceMgr.getSpellingColumnNumber(
481 State.NextToken->FormatTok.WhitespaceRange.getEnd()) -
482 SourceMgr.getSpellingColumnNumber(
483 State.NextToken->FormatTok.WhitespaceRange.getBegin());
484 State.Column += WhitespaceLength + State.NextToken->FormatTok.TokenLength;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000485 if (State.NextToken->Children.empty())
486 State.NextToken = NULL;
487 else
488 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek8092a942013-02-20 10:15:13 +0000489 return 0;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000490 }
491
Daniel Jasper3776ef32013-04-03 07:21:51 +0000492 // If we are continuing an expression, we want to indent an extra 4 spaces.
493 unsigned ContinuationIndent =
Daniel Jasper37911302013-04-02 14:33:13 +0000494 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) + 4;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000495 if (Newline) {
Manuel Klimekbb42bf12013-01-10 11:52:21 +0000496 if (Current.is(tok::r_brace)) {
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000497 State.Column = Line.Level * Style.IndentWidth;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000498 } else if (Current.is(tok::string_literal) &&
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000499 State.StartOfStringLiteral != 0) {
500 State.Column = State.StartOfStringLiteral;
Daniel Jasper66d19bd2013-02-18 11:59:17 +0000501 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000502 } else if (Current.is(tok::lessless) &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000503 State.Stack.back().FirstLessLess != 0) {
504 State.Column = State.Stack.back().FirstLessLess;
Daniel Jasper37911302013-04-02 14:33:13 +0000505 } else if (Current.isOneOf(tok::period, tok::arrow)) {
Daniel Jasper3776ef32013-04-03 07:21:51 +0000506 if (State.Stack.back().CallContinuation == 0) {
507 State.Column = ContinuationIndent;
Daniel Jasper37911302013-04-02 14:33:13 +0000508 State.Stack.back().CallContinuation = State.Column;
Daniel Jasper3776ef32013-04-03 07:21:51 +0000509 } else {
510 State.Column = State.Stack.back().CallContinuation;
511 }
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000512 } else if (Current.Type == TT_ConditionalExpr) {
513 State.Column = State.Stack.back().QuestionColumn;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000514 } else if (Previous.is(tok::comma) &&
515 State.Stack.back().VariablePos != 0) {
516 State.Column = State.Stack.back().VariablePos;
Daniel Jasper3c08a812013-02-24 18:54:32 +0000517 } else if (Previous.ClosesTemplateDeclaration ||
Daniel Jasper53e72cd2013-05-06 08:27:33 +0000518 (Current.Type == TT_StartOfName && State.ParenLevel == 0 &&
519 Line.StartsDefinition)) {
Daniel Jasper37911302013-04-02 14:33:13 +0000520 State.Column = State.Stack.back().Indent;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000521 } else if (Current.Type == TT_ObjCSelectorName) {
522 if (State.Stack.back().ColonPos > Current.FormatTok.TokenLength) {
523 State.Column =
524 State.Stack.back().ColonPos - Current.FormatTok.TokenLength;
525 } else {
526 State.Column = State.Stack.back().Indent;
527 State.Stack.back().ColonPos =
528 State.Column + Current.FormatTok.TokenLength;
529 }
Daniel Jasperb2f063a2013-05-08 10:00:18 +0000530 } else if (Current.Type == TT_StartOfName ||
531 Previous.isOneOf(tok::coloncolon, tok::equal) ||
Daniel Jasper37911302013-04-02 14:33:13 +0000532 Previous.Type == TT_ObjCMethodExpr) {
Daniel Jasper3776ef32013-04-03 07:21:51 +0000533 State.Column = ContinuationIndent;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000534 } else {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000535 State.Column = State.Stack.back().Indent;
Daniel Jasper3776ef32013-04-03 07:21:51 +0000536 // Ensure that we fall back to indenting 4 spaces instead of just
537 // flushing continuations left.
Daniel Jasper37911302013-04-02 14:33:13 +0000538 if (State.Column == FirstIndent)
539 State.Column += 4;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000540 }
541
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000542 if (Current.is(tok::question))
Daniel Jasper237d4c12013-02-23 21:01:55 +0000543 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper11e13802013-05-08 14:12:04 +0000544 if ((Previous.isOneOf(tok::comma, tok::semi) &&
545 !State.Stack.back().AvoidBinPacking) ||
546 Previous.Type == TT_BinaryOperator)
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000547 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasper33f4b902013-05-15 09:35:08 +0000548 if (Previous.Type == TT_TemplateCloser && State.ParenLevel == 0)
549 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000550
Manuel Klimek060143e2013-01-02 18:33:23 +0000551 if (!DryRun) {
Daniel Jasper1ef81d52013-02-26 13:10:34 +0000552 unsigned NewLines = 1;
553 if (Current.Type == TT_LineComment)
554 NewLines =
555 std::max(NewLines, std::min(Current.FormatTok.NewlinesBefore,
556 Style.MaxEmptyLinesToKeep + 1));
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000557 Whitespaces.replaceWhitespace(Current, NewLines, State.Column,
558 State.Column, Line.InPPDirective);
Manuel Klimek060143e2013-01-02 18:33:23 +0000559 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000560
Daniel Jasper29f123b2013-02-08 15:28:42 +0000561 State.Stack.back().LastSpace = State.Column;
Daniel Jasper04abbb22013-05-10 13:37:16 +0000562 if (Current.isOneOf(tok::arrow, tok::period))
563 State.Stack.back().LastSpace += Current.FormatTok.TokenLength;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000564 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper259a0382013-05-27 11:50:16 +0000565 State.LowestLevelOnLine = State.ParenLevel;
Daniel Jasper237d4c12013-02-23 21:01:55 +0000566
567 // Any break on this level means that the parent level has been broken
568 // and we need to avoid bin packing there.
569 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i) {
570 State.Stack[i].BreakBeforeParameter = true;
571 }
Daniel Jasper01218ff2013-04-15 22:36:37 +0000572 const AnnotatedToken *TokenBefore = Current.getPreviousNoneComment();
573 if (TokenBefore && !TokenBefore->isOneOf(tok::comma, tok::semi) &&
Daniel Jasper33f4b902013-05-15 09:35:08 +0000574 TokenBefore->Type != TT_TemplateCloser &&
Daniel Jasper11e13802013-05-08 14:12:04 +0000575 TokenBefore->Type != TT_BinaryOperator && !TokenBefore->opensScope())
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000576 State.Stack.back().BreakBeforeParameter = true;
577
Daniel Jasper237d4c12013-02-23 21:01:55 +0000578 // If we break after {, we should also break before the corresponding }.
579 if (Previous.is(tok::l_brace))
580 State.Stack.back().BreakBeforeClosingBrace = true;
581
582 if (State.Stack.back().AvoidBinPacking) {
583 // If we are breaking after '(', '{', '<', this is not bin packing
584 // unless AllowAllParametersOfDeclarationOnNextLine is false.
Daniel Jasperd741f022013-05-14 20:39:56 +0000585 if (!(Previous.isOneOf(tok::l_paren, tok::l_brace) ||
586 Previous.Type == TT_BinaryOperator) ||
Daniel Jasper237d4c12013-02-23 21:01:55 +0000587 (!Style.AllowAllParametersOfDeclarationOnNextLine &&
588 Line.MustBeDeclaration))
589 State.Stack.back().BreakBeforeParameter = true;
590 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000591 } else {
Daniel Jasper9c3e71a2013-02-25 15:59:54 +0000592 if (Current.is(tok::equal) &&
Daniel Jasperadc0f092013-04-05 09:38:50 +0000593 (RootToken.is(tok::kw_for) || State.ParenLevel == 0) &&
594 State.Stack.back().VariablePos == 0) {
595 State.Stack.back().VariablePos = State.Column;
596 // Move over * and & if they are bound to the variable name.
597 const AnnotatedToken *Tok = &Previous;
598 while (Tok &&
599 State.Stack.back().VariablePos >= Tok->FormatTok.TokenLength) {
600 State.Stack.back().VariablePos -= Tok->FormatTok.TokenLength;
601 if (Tok->SpacesRequiredBefore != 0)
602 break;
603 Tok = Tok->Parent;
604 }
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000605 if (Previous.PartOfMultiVariableDeclStmt)
606 State.Stack.back().LastSpace = State.Stack.back().VariablePos;
607 }
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000608
Daniel Jasper729a7432013-02-11 12:36:37 +0000609 unsigned Spaces = State.NextToken->SpacesRequiredBefore;
Daniel Jasper20409152012-12-04 14:54:30 +0000610
Daniel Jasperbac016b2012-12-03 18:12:45 +0000611 if (!DryRun)
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000612 Whitespaces.replaceWhitespace(Current, 0, Spaces,
613 State.Column + Spaces);
Daniel Jasper20409152012-12-04 14:54:30 +0000614
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000615 if (Current.Type == TT_ObjCSelectorName &&
616 State.Stack.back().ColonPos == 0) {
617 if (State.Stack.back().Indent + Current.LongestObjCSelectorName >
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000618 State.Column + Spaces + Current.FormatTok.TokenLength)
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000619 State.Stack.back().ColonPos =
620 State.Stack.back().Indent + Current.LongestObjCSelectorName;
621 else
622 State.Stack.back().ColonPos =
Daniel Jasper9e9e6e02013-02-06 16:00:26 +0000623 State.Column + Spaces + Current.FormatTok.TokenLength;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000624 }
625
Daniel Jasperac3223e2013-04-10 09:49:49 +0000626 if (Previous.opensScope() && Previous.Type != TT_ObjCMethodExpr &&
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000627 Current.Type != TT_LineComment)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000628 State.Stack.back().Indent = State.Column + Spaces;
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000629 if (Previous.is(tok::comma) && !Current.isTrailingComment() &&
630 State.Stack.back().AvoidBinPacking)
631 State.Stack.back().NoLineBreak = true;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000632
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000633 State.Column += Spaces;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000634 if (Current.is(tok::l_paren) && Previous.isOneOf(tok::kw_if, tok::kw_for))
Daniel Jaspere438bac2013-01-23 20:41:06 +0000635 // Treat the condition inside an if as if it was a second function
636 // parameter, i.e. let nested calls have an indent of 4.
637 State.Stack.back().LastSpace = State.Column + 1; // 1 is length of "(".
Daniel Jasperf9955d32013-03-20 12:37:50 +0000638 else if (Previous.is(tok::comma))
Daniel Jaspere438bac2013-01-23 20:41:06 +0000639 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000640 else if ((Previous.Type == TT_BinaryOperator ||
Daniel Jasper02b771e2013-01-28 13:31:35 +0000641 Previous.Type == TT_ConditionalExpr ||
642 Previous.Type == TT_CtorInitializerColon) &&
Daniel Jasper512843a2013-05-27 12:45:09 +0000643 !(getPrecedence(Previous) == prec::Assignment &&
644 Current.FakeLParens.empty()))
645 // Always indent relative to the RHS of the expression unless this is a
646 // simple assignment without binary expression on the RHS.
Daniel Jasperae8699b2013-01-28 09:35:24 +0000647 State.Stack.back().LastSpace = State.Column;
Daniel Jasper6cabab42013-02-14 08:42:54 +0000648 else if (Previous.Type == TT_InheritanceColon)
649 State.Stack.back().Indent = State.Column;
Daniel Jasper11e13802013-05-08 14:12:04 +0000650 else if (Previous.opensScope() && !Current.FakeLParens.empty())
651 // If this function has multiple parameters or a binary expression
652 // parameter, indent nested calls from the start of the first parameter.
Daniel Jasper986e17f2013-01-28 07:35:34 +0000653 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000654 }
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000655
Manuel Klimek8092a942013-02-20 10:15:13 +0000656 return moveStateToNextToken(State, DryRun);
Daniel Jasper20409152012-12-04 14:54:30 +0000657 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000658
Daniel Jasper20409152012-12-04 14:54:30 +0000659 /// \brief Mark the next token as consumed in \p State and modify its stacks
660 /// accordingly.
Manuel Klimek8092a942013-02-20 10:15:13 +0000661 unsigned moveStateToNextToken(LineState &State, bool DryRun) {
Daniel Jasper26f7e782013-01-08 14:56:18 +0000662 const AnnotatedToken &Current = *State.NextToken;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000663 assert(State.Stack.size());
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000664
Daniel Jasper6cabab42013-02-14 08:42:54 +0000665 if (Current.Type == TT_InheritanceColon)
666 State.Stack.back().AvoidBinPacking = true;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000667 if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0)
668 State.Stack.back().FirstLessLess = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000669 if (Current.is(tok::question))
670 State.Stack.back().QuestionColumn = State.Column;
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000671 if (Current.isOneOf(tok::period, tok::arrow) &&
Daniel Jasper24849712013-03-01 16:48:32 +0000672 Line.Type == LT_BuilderTypeCall && State.ParenLevel == 0)
673 State.Stack.back().StartOfFunctionCall =
Daniel Jasper04abbb22013-05-10 13:37:16 +0000674 Current.LastInChainOfCalls ? 0 : State.Column +
675 Current.FormatTok.TokenLength;
Daniel Jasper7d812812013-02-21 15:00:29 +0000676 if (Current.Type == TT_CtorInitializerColon) {
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000677 // Indent 2 from the column, so:
678 // SomeClass::SomeClass()
679 // : First(...), ...
680 // Next(...)
681 // ^ line up here.
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000682 State.Stack.back().Indent = State.Column + 2;
Daniel Jasper7d812812013-02-21 15:00:29 +0000683 if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
684 State.Stack.back().AvoidBinPacking = true;
685 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000686 }
Daniel Jasper3776ef32013-04-03 07:21:51 +0000687
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000688 // If return returns a binary expression, align after it.
689 if (Current.is(tok::kw_return) && !Current.FakeLParens.empty())
690 State.Stack.back().LastSpace = State.Column + 7;
691
Daniel Jasper3776ef32013-04-03 07:21:51 +0000692 // In ObjC method declaration we align on the ":" of parameters, but we need
693 // to ensure that we indent parameters on subsequent lines by at least 4.
Daniel Jasper37911302013-04-02 14:33:13 +0000694 if (Current.Type == TT_ObjCMethodSpecifier)
695 State.Stack.back().Indent += 4;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000696
Daniel Jasper29f123b2013-02-08 15:28:42 +0000697 // Insert scopes created by fake parenthesis.
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000698 const AnnotatedToken *Previous = Current.getPreviousNoneComment();
699 // Don't add extra indentation for the first fake parenthesis after
700 // 'return', assignements or opening <({[. The indentation for these cases
701 // is special cased.
702 bool SkipFirstExtraIndent =
703 Current.is(tok::kw_return) ||
Daniel Jasperac3223e2013-04-10 09:49:49 +0000704 (Previous && (Previous->opensScope() ||
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000705 getPrecedence(*Previous) == prec::Assignment));
706 for (SmallVector<prec::Level, 4>::const_reverse_iterator
707 I = Current.FakeLParens.rbegin(),
708 E = Current.FakeLParens.rend();
709 I != E; ++I) {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000710 ParenState NewParenState = State.Stack.back();
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000711 NewParenState.ForFakeParenthesis = true;
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000712 NewParenState.Indent =
713 std::max(std::max(State.Column, NewParenState.Indent),
714 State.Stack.back().LastSpace);
715
716 // Always indent conditional expressions. Never indent expression where
717 // the 'operator' is ',', ';' or an assignment (i.e. *I <=
718 // prec::Assignment) as those have different indentation rules. Indent
719 // other expression, unless the indentation needs to be skipped.
720 if (*I == prec::Conditional ||
721 (!SkipFirstExtraIndent && *I > prec::Assignment))
722 NewParenState.Indent += 4;
Daniel Jasperac3223e2013-04-10 09:49:49 +0000723 if (Previous && !Previous->opensScope())
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000724 NewParenState.BreakBeforeParameter = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000725 State.Stack.push_back(NewParenState);
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000726 SkipFirstExtraIndent = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000727 }
728
Daniel Jaspercf225b62012-12-24 13:43:52 +0000729 // If we encounter an opening (, [, { or <, we add a level to our stacks to
Daniel Jasper20409152012-12-04 14:54:30 +0000730 // prepare for the following tokens.
Daniel Jasperac3223e2013-04-10 09:49:49 +0000731 if (Current.opensScope()) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000732 unsigned NewIndent;
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000733 unsigned LastSpace = State.Stack.back().LastSpace;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000734 bool AvoidBinPacking;
Manuel Klimek2851c162013-01-10 14:36:46 +0000735 if (Current.is(tok::l_brace)) {
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000736 NewIndent = Style.IndentWidth + LastSpace;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000737 AvoidBinPacking = false;
Manuel Klimek2851c162013-01-10 14:36:46 +0000738 } else {
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000739 NewIndent =
740 4 + std::max(LastSpace, State.Stack.back().StartOfFunctionCall);
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000741 AvoidBinPacking = !Style.BinPackParameters;
Manuel Klimek2851c162013-01-10 14:36:46 +0000742 }
Daniel Jasperfca24bc2013-04-25 13:31:51 +0000743
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000744 State.Stack.push_back(ParenState(NewIndent, LastSpace, AvoidBinPacking,
745 State.Stack.back().NoLineBreak));
Daniel Jasper29f123b2013-02-08 15:28:42 +0000746 ++State.ParenLevel;
Daniel Jasper20409152012-12-04 14:54:30 +0000747 }
748
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000749 // If this '[' opens an ObjC call, determine whether all parameters fit into
750 // one line and put one per line if they don't.
751 if (Current.is(tok::l_square) && Current.Type == TT_ObjCMethodExpr &&
752 Current.MatchingParen != NULL) {
753 if (getLengthToMatchingParen(Current) + State.Column > getColumnLimit())
754 State.Stack.back().BreakBeforeParameter = true;
755 }
756
Daniel Jaspercf225b62012-12-24 13:43:52 +0000757 // If we encounter a closing ), ], } or >, we can remove a level from our
Daniel Jasper20409152012-12-04 14:54:30 +0000758 // stacks.
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000759 if (Current.isOneOf(tok::r_paren, tok::r_square) ||
Daniel Jasper26f7e782013-01-08 14:56:18 +0000760 (Current.is(tok::r_brace) && State.NextToken != &RootToken) ||
761 State.NextToken->Type == TT_TemplateCloser) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000762 State.Stack.pop_back();
Daniel Jasper29f123b2013-02-08 15:28:42 +0000763 --State.ParenLevel;
764 }
Daniel Jasper259a0382013-05-27 11:50:16 +0000765 State.LowestLevelOnLine =
766 std::min(State.LowestLevelOnLine, State.ParenLevel);
Daniel Jasper29f123b2013-02-08 15:28:42 +0000767
768 // Remove scopes created by fake parenthesis.
769 for (unsigned i = 0, e = Current.FakeRParens; i != e; ++i) {
Daniel Jasperabfc9c12013-04-04 19:31:00 +0000770 unsigned VariablePos = State.Stack.back().VariablePos;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000771 State.Stack.pop_back();
Daniel Jasperabfc9c12013-04-04 19:31:00 +0000772 State.Stack.back().VariablePos = VariablePos;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000773 }
Manuel Klimek2851c162013-01-10 14:36:46 +0000774
Daniel Jasper27c7f542013-05-13 20:50:15 +0000775 if (Current.is(tok::string_literal) && State.StartOfStringLiteral == 0) {
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000776 State.StartOfStringLiteral = State.Column;
Daniel Jasper27c7f542013-05-13 20:50:15 +0000777 } else if (!Current.isOneOf(tok::comment, tok::identifier, tok::hash,
778 tok::string_literal)) {
Daniel Jasper9a2f8d02013-05-16 04:26:02 +0000779 State.StartOfStringLiteral = 0;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000780 }
781
Manuel Klimek8092a942013-02-20 10:15:13 +0000782 State.Column += Current.FormatTok.TokenLength;
783
Daniel Jasper26f7e782013-01-08 14:56:18 +0000784 if (State.NextToken->Children.empty())
785 State.NextToken = NULL;
786 else
787 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek2851c162013-01-10 14:36:46 +0000788
Manuel Klimek8092a942013-02-20 10:15:13 +0000789 return breakProtrudingToken(Current, State, DryRun);
790 }
791
792 /// \brief If the current token sticks out over the end of the line, break
793 /// it if possible.
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000794 ///
795 /// \returns An extra penalty if a token was broken, otherwise 0.
796 ///
797 /// Note that the penalty of the token protruding the allowed line length is
798 /// already handled in \c addNextStateToQueue; the returned penalty will only
799 /// cover the cost of the additional line breaks.
Manuel Klimek8092a942013-02-20 10:15:13 +0000800 unsigned breakProtrudingToken(const AnnotatedToken &Current, LineState &State,
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000801 bool DryRun) {
802 unsigned UnbreakableTailLength = Current.UnbreakableTailLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000803 llvm::OwningPtr<BreakableToken> Token;
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000804 unsigned StartColumn = State.Column - Current.FormatTok.TokenLength;
Daniel Jasper5d5b4242013-05-16 12:59:13 +0000805 if (Current.is(tok::string_literal) &&
806 Current.Type != TT_ImplicitStringLiteral) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000807 // Only break up default narrow strings.
Alexander Kornienko919398b2013-04-17 17:34:05 +0000808 const char *LiteralData = SourceMgr.getCharacterData(
809 Current.FormatTok.getStartOfNonWhitespace());
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000810 if (!LiteralData || *LiteralData != '"')
811 return 0;
812
Alexander Kornienko919398b2013-04-17 17:34:05 +0000813 Token.reset(new BreakableStringLiteral(SourceMgr, Current.FormatTok,
814 StartColumn));
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000815 } else if (Current.Type == TT_BlockComment) {
816 BreakableBlockComment *BBC =
817 new BreakableBlockComment(SourceMgr, Current, StartColumn);
818 if (!DryRun)
819 BBC->alignLines(Whitespaces);
820 Token.reset(BBC);
Daniel Jasper7ff96ed2013-05-06 10:24:51 +0000821 } else if (Current.Type == TT_LineComment &&
822 (Current.Parent == NULL ||
823 Current.Parent->Type != TT_ImplicitStringLiteral)) {
Alexander Kornienko919398b2013-04-17 17:34:05 +0000824 Token.reset(new BreakableLineComment(SourceMgr, Current, StartColumn));
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000825 } else {
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000826 return 0;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000827 }
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000828 if (UnbreakableTailLength >= getColumnLimit())
829 return 0;
830 unsigned RemainingSpace = getColumnLimit() - UnbreakableTailLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000831
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000832 bool BreakInserted = false;
833 unsigned Penalty = 0;
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000834 unsigned PositionAfterLastLineInToken = 0;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000835 for (unsigned LineIndex = 0; LineIndex < Token->getLineCount();
836 ++LineIndex) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000837 unsigned TailOffset = 0;
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000838 unsigned RemainingTokenLength =
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000839 Token->getLineLengthAfterSplit(LineIndex, TailOffset);
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000840 while (RemainingTokenLength > RemainingSpace) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000841 BreakableToken::Split Split =
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000842 Token->getSplit(LineIndex, TailOffset, getColumnLimit());
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000843 if (Split.first == StringRef::npos)
844 break;
845 assert(Split.first != 0);
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000846 unsigned NewRemainingTokenLength = Token->getLineLengthAfterSplit(
Alexander Kornienko919398b2013-04-17 17:34:05 +0000847 LineIndex, TailOffset + Split.first + Split.second);
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000848 if (NewRemainingTokenLength >= RemainingTokenLength)
Alexander Kornienko919398b2013-04-17 17:34:05 +0000849 break;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000850 if (!DryRun) {
851 Token->insertBreak(LineIndex, TailOffset, Split, Line.InPPDirective,
852 Whitespaces);
853 }
854 TailOffset += Split.first + Split.second;
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000855 RemainingTokenLength = NewRemainingTokenLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000856 Penalty += Style.PenaltyExcessCharacter;
857 BreakInserted = true;
Manuel Klimek8092a942013-02-20 10:15:13 +0000858 }
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000859 PositionAfterLastLineInToken = RemainingTokenLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000860 if (!DryRun) {
861 Token->trimLine(LineIndex, TailOffset, Line.InPPDirective, Whitespaces);
862 }
863 }
864
865 if (BreakInserted) {
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000866 State.Column = PositionAfterLastLineInToken;
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000867 for (unsigned i = 0, e = State.Stack.size(); i != e; ++i)
868 State.Stack[i].BreakBeforeParameter = true;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000869 State.Stack.back().LastSpace = StartColumn;
Manuel Klimek8092a942013-02-20 10:15:13 +0000870 }
Manuel Klimek8092a942013-02-20 10:15:13 +0000871 return Penalty;
872 }
873
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000874 unsigned getColumnLimit() {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000875 // In preprocessor directives reserve two chars for trailing " \"
876 return Style.ColumnLimit - (Line.InPPDirective ? 2 : 0);
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000877 }
878
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000879 /// \brief An edge in the solution space from \c Previous->State to \c State,
880 /// inserting a newline dependent on the \c NewLine.
881 struct StateNode {
882 StateNode(const LineState &State, bool NewLine, StateNode *Previous)
Daniel Jasperf11a7052013-02-21 21:33:55 +0000883 : State(State), NewLine(NewLine), Previous(Previous) {}
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000884 LineState State;
885 bool NewLine;
886 StateNode *Previous;
887 };
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000888
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000889 /// \brief A pair of <penalty, count> that is used to prioritize the BFS on.
890 ///
891 /// In case of equal penalties, we want to prefer states that were inserted
892 /// first. During state generation we make sure that we insert states first
893 /// that break the line as late as possible.
894 typedef std::pair<unsigned, unsigned> OrderedPenalty;
895
896 /// \brief An item in the prioritized BFS search queue. The \c StateNode's
897 /// \c State has the given \c OrderedPenalty.
898 typedef std::pair<OrderedPenalty, StateNode *> QueueItem;
899
900 /// \brief The BFS queue type.
901 typedef std::priority_queue<QueueItem, std::vector<QueueItem>,
902 std::greater<QueueItem> > QueueType;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000903
904 /// \brief Analyze the entire solution space starting from \p InitialState.
Daniel Jasperbac016b2012-12-03 18:12:45 +0000905 ///
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000906 /// This implements a variant of Dijkstra's algorithm on the graph that spans
907 /// the solution space (\c LineStates are the nodes). The algorithm tries to
908 /// find the shortest path (the one with lowest penalty) from \p InitialState
909 /// to a state where all tokens are placed.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000910 void analyzeSolutionSpace(LineState &InitialState) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000911 std::set<LineState> Seen;
912
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000913 // Insert start element into queue.
Daniel Jasperfc759082013-02-14 14:26:07 +0000914 StateNode *Node =
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000915 new (Allocator.Allocate()) StateNode(InitialState, false, NULL);
916 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
917 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000918
919 // While not empty, take first element and follow edges.
920 while (!Queue.empty()) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000921 unsigned Penalty = Queue.top().first.first;
Daniel Jasperfc759082013-02-14 14:26:07 +0000922 StateNode *Node = Queue.top().second;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000923 if (Node->State.NextToken == NULL) {
Alexander Kornienkodd256312013-05-10 11:56:10 +0000924 DEBUG(llvm::dbgs() << "\n---\nPenalty for line: " << Penalty << "\n");
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000925 break;
Daniel Jasper01786732013-02-04 07:21:18 +0000926 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000927 Queue.pop();
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000928
Daniel Jasper54b4e442013-05-22 05:27:42 +0000929 // Cut off the analysis of certain solutions if the analysis gets too
930 // complex. See description of IgnoreStackForComparison.
931 if (Count > 10000)
932 Node->State.IgnoreStackForComparison = true;
933
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000934 if (!Seen.insert(Node->State).second)
935 // State already examined with lower penalty.
936 continue;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000937
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000938 addNextStateToQueue(Penalty, Node, /*NewLine=*/ false);
939 addNextStateToQueue(Penalty, Node, /*NewLine=*/ true);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000940 }
941
942 if (Queue.empty())
943 // We were unable to find a solution, do nothing.
944 // FIXME: Add diagnostic?
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000945 return;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000946
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000947 // Reconstruct the solution.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000948 reconstructPath(InitialState, Queue.top().second);
Alexander Kornienkodd256312013-05-10 11:56:10 +0000949 DEBUG(llvm::dbgs() << "Total number of analyzed states: " << Count << "\n");
950 DEBUG(llvm::dbgs() << "---\n");
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000951 }
952
953 void reconstructPath(LineState &State, StateNode *Current) {
954 // FIXME: This recursive implementation limits the possible number
955 // of tokens per line if compiled into a binary with small stack space.
956 // To become more independent of stack frame limitations we would need
957 // to also change the TokenAnnotator.
958 if (Current->Previous == NULL)
959 return;
960 reconstructPath(State, Current->Previous);
961 DEBUG({
962 if (Current->NewLine) {
Alexander Kornienkodd256312013-05-10 11:56:10 +0000963 llvm::dbgs()
Daniel Jaspera03ab102013-02-13 20:33:44 +0000964 << "Penalty for splitting before "
965 << Current->Previous->State.NextToken->FormatTok.Tok.getName()
966 << ": " << Current->Previous->State.NextToken->SplitPenalty << "\n";
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000967 }
968 });
969 addTokenToState(Current->NewLine, false, State);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000970 }
971
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000972 /// \brief Add the following state to the analysis queue \c Queue.
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000973 ///
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000974 /// Assume the current state is \p PreviousNode and has been reached with a
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000975 /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true.
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000976 void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode,
977 bool NewLine) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000978 if (NewLine && !canBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000979 return;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000980 if (!NewLine && mustBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000981 return;
Daniel Jasperae8699b2013-01-28 09:35:24 +0000982 if (NewLine)
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000983 Penalty += PreviousNode->State.NextToken->SplitPenalty;
984
985 StateNode *Node = new (Allocator.Allocate())
986 StateNode(PreviousNode->State, NewLine, PreviousNode);
Manuel Klimek8092a942013-02-20 10:15:13 +0000987 Penalty += addTokenToState(NewLine, true, Node->State);
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000988 if (Node->State.Column > getColumnLimit()) {
989 unsigned ExcessCharacters = Node->State.Column - getColumnLimit();
Daniel Jasper01786732013-02-04 07:21:18 +0000990 Penalty += Style.PenaltyExcessCharacter * ExcessCharacters;
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000991 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000992
993 Queue.push(QueueItem(OrderedPenalty(Penalty, Count), Node));
994 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000995 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000996
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000997 /// \brief Returns \c true, if a line break after \p State is allowed.
998 bool canBreak(const LineState &State) {
Daniel Jasper399914b2013-05-17 09:35:01 +0000999 const AnnotatedToken &Current = *State.NextToken;
1000 const AnnotatedToken &Previous = *Current.Parent;
1001 if (!Current.CanBreakBefore &&
1002 !(Current.is(tok::r_brace) &&
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001003 State.Stack.back().BreakBeforeClosingBrace))
1004 return false;
Daniel Jasper399914b2013-05-17 09:35:01 +00001005 // The opening "{" of a braced list has to be on the same line as the first
1006 // element if it is nested in another braced init list or function call.
1007 if (!Current.MustBreakBefore && Previous.is(tok::l_brace) &&
1008 Previous.Parent &&
1009 Previous.Parent->isOneOf(tok::l_brace, tok::l_paren, tok::comma))
1010 return false;
Daniel Jasper259a0382013-05-27 11:50:16 +00001011 // This prevents breaks like:
1012 // ...
1013 // SomeParameter, OtherParameter).DoSomething(
1014 // ...
1015 // As they hide "DoSomething" and are generally bad for readability.
1016 if (Previous.opensScope() &&
1017 State.LowestLevelOnLine < State.StartOfLineLevel)
1018 return false;
Daniel Jasper001bf4e2013-04-22 07:59:53 +00001019 return !State.Stack.back().NoLineBreak;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001020 }
Daniel Jasperbac016b2012-12-03 18:12:45 +00001021
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001022 /// \brief Returns \c true, if a line break after \p State is mandatory.
1023 bool mustBreak(const LineState &State) {
Daniel Jasper11e13802013-05-08 14:12:04 +00001024 const AnnotatedToken &Current = *State.NextToken;
1025 const AnnotatedToken &Previous = *Current.Parent;
1026 if (Current.MustBreakBefore || Current.Type == TT_InlineASMColon)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001027 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001028 if (Current.is(tok::r_brace) && State.Stack.back().BreakBeforeClosingBrace)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001029 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001030 if (Previous.is(tok::semi) && State.LineContainsContinuedForLoopSection)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001031 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001032 if ((Previous.isOneOf(tok::comma, tok::semi) || Current.is(tok::question) ||
1033 Current.Type == TT_ConditionalExpr) &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +00001034 State.Stack.back().BreakBeforeParameter &&
Daniel Jasper11e13802013-05-08 14:12:04 +00001035 !Current.isTrailingComment() &&
1036 !Current.isOneOf(tok::r_paren, tok::r_brace))
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001037 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001038
1039 // If we need to break somewhere inside the LHS of a binary expression, we
1040 // should also break after the operator.
1041 if (Previous.Type == TT_BinaryOperator &&
1042 !Previous.isOneOf(tok::lessless, tok::question) &&
1043 getPrecedence(Previous) != prec::Assignment &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +00001044 State.Stack.back().BreakBeforeParameter)
Daniel Jasper63d7ced2013-02-05 10:07:47 +00001045 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001046
1047 // FIXME: Comparing LongestObjCSelectorName to 0 is a hacky way of finding
1048 // out whether it is the first parameter. Clean this up.
1049 if (Current.Type == TT_ObjCSelectorName &&
1050 Current.LongestObjCSelectorName == 0 &&
1051 State.Stack.back().BreakBeforeParameter)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001052 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001053 if ((Current.Type == TT_CtorInitializerColon ||
1054 (Previous.ClosesTemplateDeclaration && State.ParenLevel == 0)))
Daniel Jasper923ebef2013-03-14 13:45:21 +00001055 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001056
Daniel Jasper33f4b902013-05-15 09:35:08 +00001057 if (Current.Type == TT_StartOfName && Line.MightBeFunctionDecl &&
1058 State.Stack.back().BreakBeforeParameter && State.ParenLevel == 0)
1059 return true;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001060 return false;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001061 }
1062
Daniel Jasper3af59ce2013-03-15 14:57:30 +00001063 // Returns the total number of columns required for the remaining tokens.
1064 unsigned getRemainingLength(const LineState &State) {
1065 if (State.NextToken && State.NextToken->Parent)
1066 return Line.Last->TotalLength - State.NextToken->Parent->TotalLength;
1067 return 0;
1068 }
1069
Daniel Jasperbac016b2012-12-03 18:12:45 +00001070 FormatStyle Style;
1071 SourceManager &SourceMgr;
Daniel Jasper995e8202013-01-14 13:08:07 +00001072 const AnnotatedLine &Line;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001073 const unsigned FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +00001074 const AnnotatedToken &RootToken;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001075 WhitespaceManager &Whitespaces;
Manuel Klimek62a48fb2013-02-13 10:54:19 +00001076
1077 llvm::SpecificBumpPtrAllocator<StateNode> Allocator;
1078 QueueType Queue;
1079 // Increasing count of \c StateNode items we have created. This is used
1080 // to create a deterministic order independent of the container.
1081 unsigned Count;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001082};
1083
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001084class LexerBasedFormatTokenSource : public FormatTokenSource {
1085public:
1086 LexerBasedFormatTokenSource(Lexer &Lex, SourceManager &SourceMgr)
Daniel Jasper1321eb52012-12-18 21:05:13 +00001087 : GreaterStashed(false), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001088 IdentTable(Lex.getLangOpts()) {
1089 Lex.SetKeepWhitespaceMode(true);
1090 }
1091
1092 virtual FormatToken getNextToken() {
1093 if (GreaterStashed) {
1094 FormatTok.NewlinesBefore = 0;
Manuel Klimekad3094b2013-05-23 10:56:37 +00001095 SourceLocation GreaterLocation =
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001096 FormatTok.Tok.getLocation().getLocWithOffset(1);
Manuel Klimekad3094b2013-05-23 10:56:37 +00001097 FormatTok.WhitespaceRange = SourceRange(GreaterLocation, GreaterLocation);
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001098 GreaterStashed = false;
1099 return FormatTok;
1100 }
1101
1102 FormatTok = FormatToken();
1103 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +00001104 StringRef Text = rawTokenText(FormatTok.Tok);
Manuel Klimekad3094b2013-05-23 10:56:37 +00001105 SourceLocation WhitespaceStart = FormatTok.Tok.getLocation();
1106 if (SourceMgr.getFileOffset(WhitespaceStart) == 0)
Manuel Klimekf6fd00b2013-01-05 22:56:06 +00001107 FormatTok.IsFirst = true;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001108
1109 // Consume and record whitespace until we find a significant token.
Manuel Klimekad3094b2013-05-23 10:56:37 +00001110 unsigned WhitespaceLength = 0;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001111 while (FormatTok.Tok.is(tok::unknown)) {
Manuel Klimeka28fc062013-02-11 12:33:24 +00001112 unsigned Newlines = Text.count('\n');
Daniel Jasper1eee6c42013-03-04 13:43:19 +00001113 if (Newlines > 0)
Manuel Klimekad3094b2013-05-23 10:56:37 +00001114 FormatTok.LastNewlineOffset = WhitespaceLength + Text.rfind('\n') + 1;
Manuel Klimeka28fc062013-02-11 12:33:24 +00001115 unsigned EscapedNewlines = Text.count("\\\n");
1116 FormatTok.NewlinesBefore += Newlines;
1117 FormatTok.HasUnescapedNewline |= EscapedNewlines != Newlines;
Manuel Klimekad3094b2013-05-23 10:56:37 +00001118 WhitespaceLength += FormatTok.Tok.getLength();
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001119
Manuel Klimekad3094b2013-05-23 10:56:37 +00001120 if (FormatTok.Tok.is(tok::eof)) {
1121 FormatTok.WhitespaceRange =
1122 SourceRange(WhitespaceStart,
1123 WhitespaceStart.getLocWithOffset(WhitespaceLength));
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001124 return FormatTok;
Manuel Klimekad3094b2013-05-23 10:56:37 +00001125 }
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001126 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +00001127 Text = rawTokenText(FormatTok.Tok);
Manuel Klimekd4397b92013-01-04 23:34:14 +00001128 }
Manuel Klimek95419382013-01-07 07:56:50 +00001129
1130 // Now FormatTok is the next non-whitespace token.
1131 FormatTok.TokenLength = Text.size();
1132
Alexander Kornienko919398b2013-04-17 17:34:05 +00001133 if (FormatTok.Tok.is(tok::comment)) {
1134 FormatTok.TrailingWhiteSpaceLength = Text.size() - Text.rtrim().size();
1135 FormatTok.TokenLength -= FormatTok.TrailingWhiteSpaceLength;
1136 }
1137
Manuel Klimekd4397b92013-01-04 23:34:14 +00001138 // In case the token starts with escaped newlines, we want to
1139 // take them into account as whitespace - this pattern is quite frequent
1140 // in macro definitions.
1141 // FIXME: What do we want to do with other escaped spaces, and escaped
1142 // spaces or newlines in the middle of tokens?
1143 // FIXME: Add a more explicit test.
1144 unsigned i = 0;
Daniel Jasper71607512013-01-07 10:48:50 +00001145 while (i + 1 < Text.size() && Text[i] == '\\' && Text[i + 1] == '\n') {
Manuel Klimek86721d22013-01-22 16:31:55 +00001146 // FIXME: ++FormatTok.NewlinesBefore is missing...
Manuel Klimekad3094b2013-05-23 10:56:37 +00001147 WhitespaceLength += 2;
Manuel Klimek95419382013-01-07 07:56:50 +00001148 FormatTok.TokenLength -= 2;
Manuel Klimekd4397b92013-01-04 23:34:14 +00001149 i += 2;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001150 }
1151
1152 if (FormatTok.Tok.is(tok::raw_identifier)) {
Manuel Klimekd4397b92013-01-04 23:34:14 +00001153 IdentifierInfo &Info = IdentTable.get(Text);
Daniel Jaspercd1a32b2012-12-21 17:58:39 +00001154 FormatTok.Tok.setIdentifierInfo(&Info);
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001155 FormatTok.Tok.setKind(Info.getTokenID());
1156 }
1157
1158 if (FormatTok.Tok.is(tok::greatergreater)) {
1159 FormatTok.Tok.setKind(tok::greater);
Daniel Jasperb6f02f32013-02-28 10:06:05 +00001160 FormatTok.TokenLength = 1;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001161 GreaterStashed = true;
1162 }
1163
Manuel Klimekad3094b2013-05-23 10:56:37 +00001164 FormatTok.WhitespaceRange = SourceRange(
1165 WhitespaceStart, WhitespaceStart.getLocWithOffset(WhitespaceLength));
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001166 return FormatTok;
1167 }
1168
Nico Weberc2e6d2a2013-02-11 15:32:15 +00001169 IdentifierTable &getIdentTable() { return IdentTable; }
1170
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001171private:
1172 FormatToken FormatTok;
1173 bool GreaterStashed;
1174 Lexer &Lex;
1175 SourceManager &SourceMgr;
1176 IdentifierTable IdentTable;
1177
1178 /// Returns the text of \c FormatTok.
Manuel Klimek95419382013-01-07 07:56:50 +00001179 StringRef rawTokenText(Token &Tok) {
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001180 return StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
1181 Tok.getLength());
1182 }
1183};
1184
Daniel Jasperbac016b2012-12-03 18:12:45 +00001185class Formatter : public UnwrappedLineConsumer {
1186public:
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001187 Formatter(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr,
Daniel Jasperbac016b2012-12-03 18:12:45 +00001188 const std::vector<CharSourceRange> &Ranges)
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001189 : Style(Style), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko052685c2013-03-19 17:41:36 +00001190 Whitespaces(SourceMgr, Style), Ranges(Ranges) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +00001191
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001192 virtual ~Formatter() {}
Daniel Jasperaccb0b02012-12-04 21:05:31 +00001193
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001194 tooling::Replacements format() {
1195 LexerBasedFormatTokenSource Tokens(Lex, SourceMgr);
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001196 UnwrappedLineParser Parser(Style, Tokens, *this);
Manuel Klimek67d080d2013-04-12 14:13:36 +00001197 bool StructuralError = Parser.parse();
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001198 TokenAnnotator Annotator(Style, SourceMgr, Lex,
1199 Tokens.getIdentTable().get("in"));
1200 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1201 Annotator.annotate(AnnotatedLines[i]);
1202 }
1203 deriveLocalStyle();
1204 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1205 Annotator.calculateFormattingInformation(AnnotatedLines[i]);
1206 }
Daniel Jasper5999f762013-04-09 17:46:55 +00001207
1208 // Adapt level to the next line if this is a comment.
1209 // FIXME: Can/should this be done in the UnwrappedLineParser?
Daniel Jasper1407bee2013-04-11 14:29:13 +00001210 const AnnotatedLine *NextNoneCommentLine = NULL;
Daniel Jasper5999f762013-04-09 17:46:55 +00001211 for (unsigned i = AnnotatedLines.size() - 1; i > 0; --i) {
1212 if (NextNoneCommentLine && AnnotatedLines[i].First.is(tok::comment) &&
1213 AnnotatedLines[i].First.Children.empty())
1214 AnnotatedLines[i].Level = NextNoneCommentLine->Level;
1215 else
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001216 NextNoneCommentLine =
1217 AnnotatedLines[i].First.isNot(tok::r_brace) ? &AnnotatedLines[i]
1218 : NULL;
Daniel Jasper5999f762013-04-09 17:46:55 +00001219 }
1220
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001221 std::vector<int> IndentForLevel;
1222 bool PreviousLineWasTouched = false;
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001223 const AnnotatedToken *PreviousLineLastToken = 0;
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001224 bool FormatPPDirective = false;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001225 for (std::vector<AnnotatedLine>::iterator I = AnnotatedLines.begin(),
1226 E = AnnotatedLines.end();
1227 I != E; ++I) {
1228 const AnnotatedLine &TheLine = *I;
1229 const FormatToken &FirstTok = TheLine.First.FormatTok;
1230 int Offset = getIndentOffset(TheLine.First);
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001231
1232 // Check whether this line is part of a formatted preprocessor directive.
1233 if (FirstTok.HasUnescapedNewline)
1234 FormatPPDirective = false;
1235 if (!FormatPPDirective && TheLine.InPPDirective &&
1236 (touchesLine(TheLine) || touchesPPDirective(I + 1, E)))
1237 FormatPPDirective = true;
1238
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001239 // Determine indent and try to merge multiple unwrapped lines.
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001240 while (IndentForLevel.size() <= TheLine.Level)
1241 IndentForLevel.push_back(-1);
1242 IndentForLevel.resize(TheLine.Level + 1);
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001243 unsigned Indent = getIndent(IndentForLevel, TheLine.Level);
1244 if (static_cast<int>(Indent) + Offset >= 0)
1245 Indent += Offset;
1246 tryFitMultipleLinesInOne(Indent, I, E);
1247
Daniel Jasperf9955d32013-03-20 12:37:50 +00001248 bool WasMoved = PreviousLineWasTouched && FirstTok.NewlinesBefore == 0;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001249 if (TheLine.First.is(tok::eof)) {
1250 if (PreviousLineWasTouched) {
1251 unsigned NewLines = std::min(FirstTok.NewlinesBefore, 1u);
1252 Whitespaces.replaceWhitespace(TheLine.First, NewLines, /*Indent*/ 0,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001253 /*TargetColumn*/ 0);
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001254 }
1255 } else if (TheLine.Type != LT_Invalid &&
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001256 (WasMoved || FormatPPDirective || touchesLine(TheLine))) {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001257 unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level);
Manuel Klimekad3094b2013-05-23 10:56:37 +00001258 if (FirstTok.WhitespaceRange.isValid() &&
Manuel Klimek67d080d2013-04-12 14:13:36 +00001259 // Insert a break even if there is a structural error in case where
1260 // we break apart a line consisting of multiple unwrapped lines.
1261 (FirstTok.NewlinesBefore == 0 || !StructuralError)) {
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001262 formatFirstToken(TheLine.First, PreviousLineLastToken, Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001263 TheLine.InPPDirective);
Manuel Klimek67d080d2013-04-12 14:13:36 +00001264 } else {
1265 Indent = LevelIndent =
1266 SourceMgr.getSpellingColumnNumber(FirstTok.Tok.getLocation()) - 1;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001267 }
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001268 UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, Indent,
Manuel Klimek67d080d2013-04-12 14:13:36 +00001269 TheLine.First, Whitespaces);
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001270 Formatter.format(I + 1 != E ? &*(I + 1) : NULL);
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001271 IndentForLevel[TheLine.Level] = LevelIndent;
1272 PreviousLineWasTouched = true;
1273 } else {
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001274 // Format the first token if necessary, and notify the WhitespaceManager
1275 // about the unchanged whitespace.
1276 for (const AnnotatedToken *Tok = &TheLine.First; Tok != NULL;
1277 Tok = Tok->Children.empty() ? NULL : &Tok->Children[0]) {
1278 if (Tok == &TheLine.First &&
1279 (Tok->FormatTok.NewlinesBefore > 0 || Tok->FormatTok.IsFirst)) {
1280 unsigned LevelIndent = SourceMgr.getSpellingColumnNumber(
1281 Tok->FormatTok.Tok.getLocation()) -
1282 1;
1283 // Remove trailing whitespace of the previous line if it was
1284 // touched.
1285 if (PreviousLineWasTouched || touchesEmptyLineBefore(TheLine)) {
1286 formatFirstToken(*Tok, PreviousLineLastToken, LevelIndent,
1287 TheLine.InPPDirective);
1288 } else {
1289 Whitespaces.addUntouchableToken(Tok->FormatTok,
1290 TheLine.InPPDirective);
1291 }
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001292
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001293 if (static_cast<int>(LevelIndent) - Offset >= 0)
1294 LevelIndent -= Offset;
1295 if (Tok->isNot(tok::comment))
1296 IndentForLevel[TheLine.Level] = LevelIndent;
1297 } else {
1298 Whitespaces.addUntouchableToken(Tok->FormatTok,
1299 TheLine.InPPDirective);
1300 }
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001301 }
1302 // If we did not reformat this unwrapped line, the column at the end of
1303 // the last token is unchanged - thus, we can calculate the end of the
1304 // last token.
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001305 PreviousLineWasTouched = false;
1306 }
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001307 PreviousLineLastToken = I->Last;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001308 }
1309 return Whitespaces.generateReplacements();
1310 }
1311
1312private:
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001313 void deriveLocalStyle() {
1314 unsigned CountBoundToVariable = 0;
1315 unsigned CountBoundToType = 0;
1316 bool HasCpp03IncompatibleFormat = false;
1317 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1318 if (AnnotatedLines[i].First.Children.empty())
1319 continue;
1320 AnnotatedToken *Tok = &AnnotatedLines[i].First.Children[0];
1321 while (!Tok->Children.empty()) {
1322 if (Tok->Type == TT_PointerOrReference) {
Manuel Klimekad3094b2013-05-23 10:56:37 +00001323 bool SpacesBefore = Tok->FormatTok.WhitespaceRange.getBegin() !=
1324 Tok->FormatTok.WhitespaceRange.getEnd();
1325 bool SpacesAfter =
1326 Tok->Children[0].FormatTok.WhitespaceRange.getBegin() !=
1327 Tok->Children[0].FormatTok.WhitespaceRange.getEnd();
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001328 if (SpacesBefore && !SpacesAfter)
1329 ++CountBoundToVariable;
1330 else if (!SpacesBefore && SpacesAfter)
1331 ++CountBoundToType;
1332 }
1333
Daniel Jasper29f123b2013-02-08 15:28:42 +00001334 if (Tok->Type == TT_TemplateCloser &&
1335 Tok->Parent->Type == TT_TemplateCloser &&
Manuel Klimekad3094b2013-05-23 10:56:37 +00001336 Tok->FormatTok.WhitespaceRange.getBegin() ==
1337 Tok->FormatTok.WhitespaceRange.getEnd())
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001338 HasCpp03IncompatibleFormat = true;
1339 Tok = &Tok->Children[0];
1340 }
1341 }
1342 if (Style.DerivePointerBinding) {
1343 if (CountBoundToType > CountBoundToVariable)
1344 Style.PointerBindsToType = true;
1345 else if (CountBoundToType < CountBoundToVariable)
1346 Style.PointerBindsToType = false;
1347 }
1348 if (Style.Standard == FormatStyle::LS_Auto) {
1349 Style.Standard = HasCpp03IncompatibleFormat ? FormatStyle::LS_Cpp11
1350 : FormatStyle::LS_Cpp03;
1351 }
1352 }
1353
Manuel Klimek547d5db2013-02-08 17:38:27 +00001354 /// \brief Get the indent of \p Level from \p IndentForLevel.
1355 ///
1356 /// \p IndentForLevel must contain the indent for the level \c l
1357 /// at \p IndentForLevel[l], or a value < 0 if the indent for
1358 /// that level is unknown.
Daniel Jasperfc759082013-02-14 14:26:07 +00001359 unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001360 if (IndentForLevel[Level] != -1)
1361 return IndentForLevel[Level];
Manuel Klimek52635ff2013-02-08 19:53:32 +00001362 if (Level == 0)
1363 return 0;
Manuel Klimek07a64ec2013-05-13 08:42:42 +00001364 return getIndent(IndentForLevel, Level - 1) + Style.IndentWidth;
Manuel Klimek547d5db2013-02-08 17:38:27 +00001365 }
1366
1367 /// \brief Get the offset of the line relatively to the level.
1368 ///
1369 /// For example, 'public:' labels in classes are offset by 1 or 2
1370 /// characters to the left from their level.
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001371 int getIndentOffset(const AnnotatedToken &RootToken) {
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001372 if (RootToken.isAccessSpecifier(false) || RootToken.isObjCAccessSpecifier())
Manuel Klimek547d5db2013-02-08 17:38:27 +00001373 return Style.AccessModifierOffset;
1374 return 0;
1375 }
1376
Manuel Klimek517e8942013-01-11 17:54:10 +00001377 /// \brief Tries to merge lines into one.
1378 ///
1379 /// This will change \c Line and \c AnnotatedLine to contain the merged line,
1380 /// if possible; note that \c I will be incremented when lines are merged.
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001381 void tryFitMultipleLinesInOne(unsigned Indent,
Daniel Jasper995e8202013-01-14 13:08:07 +00001382 std::vector<AnnotatedLine>::iterator &I,
1383 std::vector<AnnotatedLine>::iterator E) {
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001384 // We can never merge stuff if there are trailing line comments.
1385 if (I->Last->Type == TT_LineComment)
1386 return;
1387
Daniel Jaspera4d46212013-02-28 11:05:57 +00001388 unsigned Limit = Style.ColumnLimit - Indent;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001389 // If we already exceed the column limit, we set 'Limit' to 0. The different
1390 // tryMerge..() functions can then decide whether to still do merging.
1391 Limit = I->Last->TotalLength > Limit ? 0 : Limit - I->Last->TotalLength;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001392
Daniel Jasper9c8c40e2013-01-21 14:18:28 +00001393 if (I + 1 == E || (I + 1)->Type == LT_Invalid)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001394 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001395
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001396 if (I->Last->is(tok::l_brace)) {
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001397 tryMergeSimpleBlock(I, E, Limit);
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001398 } else if (Style.AllowShortIfStatementsOnASingleLine &&
1399 I->First.is(tok::kw_if)) {
1400 tryMergeSimpleControlStatement(I, E, Limit);
1401 } else if (Style.AllowShortLoopsOnASingleLine &&
1402 I->First.isOneOf(tok::kw_for, tok::kw_while)) {
1403 tryMergeSimpleControlStatement(I, E, Limit);
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001404 } else if (I->InPPDirective && (I->First.FormatTok.HasUnescapedNewline ||
1405 I->First.FormatTok.IsFirst)) {
1406 tryMergeSimplePPDirective(I, E, Limit);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001407 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001408 }
1409
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001410 void tryMergeSimplePPDirective(std::vector<AnnotatedLine>::iterator &I,
1411 std::vector<AnnotatedLine>::iterator E,
1412 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001413 if (Limit == 0)
1414 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001415 AnnotatedLine &Line = *I;
Daniel Jasper2b9c10b2013-01-14 15:52:06 +00001416 if (!(I + 1)->InPPDirective || (I + 1)->First.FormatTok.HasUnescapedNewline)
1417 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001418 if (I + 2 != E && (I + 2)->InPPDirective &&
1419 !(I + 2)->First.FormatTok.HasUnescapedNewline)
1420 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001421 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001422 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001423 join(Line, *(++I));
1424 }
1425
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001426 void tryMergeSimpleControlStatement(std::vector<AnnotatedLine>::iterator &I,
1427 std::vector<AnnotatedLine>::iterator E,
1428 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001429 if (Limit == 0)
1430 return;
Manuel Klimek4c128122013-01-18 14:46:43 +00001431 if ((I + 1)->InPPDirective != I->InPPDirective ||
1432 ((I + 1)->InPPDirective &&
1433 (I + 1)->First.FormatTok.HasUnescapedNewline))
1434 return;
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001435 AnnotatedLine &Line = *I;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001436 if (Line.Last->isNot(tok::r_paren))
1437 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001438 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001439 return;
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001440 if ((I + 1)->First.isOneOf(tok::semi, tok::kw_if, tok::kw_for,
1441 tok::kw_while) ||
1442 (I + 1)->First.Type == TT_LineComment)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001443 return;
1444 // Only inline simple if's (no nested if or else).
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001445 if (I + 2 != E && Line.First.is(tok::kw_if) &&
1446 (I + 2)->First.is(tok::kw_else))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001447 return;
1448 join(Line, *(++I));
1449 }
1450
1451 void tryMergeSimpleBlock(std::vector<AnnotatedLine>::iterator &I,
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001452 std::vector<AnnotatedLine>::iterator E,
1453 unsigned Limit) {
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001454 // No merging if the brace already is on the next line.
1455 if (Style.BreakBeforeBraces != FormatStyle::BS_Attach)
1456 return;
1457
Manuel Klimek517e8942013-01-11 17:54:10 +00001458 // First, check that the current line allows merging. This is the case if
1459 // we're not in a control flow statement and the last token is an opening
1460 // brace.
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001461 AnnotatedLine &Line = *I;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001462 if (Line.First.isOneOf(tok::kw_if, tok::kw_while, tok::kw_do, tok::r_brace,
1463 tok::kw_else, tok::kw_try, tok::kw_catch,
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001464 tok::kw_for, tok::kw_namespace,
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001465 // This gets rid of all ObjC @ keywords and methods.
1466 tok::at, tok::minus, tok::plus))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001467 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001468
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001469 AnnotatedToken *Tok = &(I + 1)->First;
Daniel Jasper058f6f82013-05-16 10:17:39 +00001470 if (Tok->getNextNoneComment() == NULL && Tok->is(tok::r_brace) &&
Daniel Jasperf11a7052013-02-21 21:33:55 +00001471 !Tok->MustBreakBefore) {
1472 // We merge empty blocks even if the line exceeds the column limit.
Daniel Jasper729a7432013-02-11 12:36:37 +00001473 Tok->SpacesRequiredBefore = 0;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001474 Tok->CanBreakBefore = true;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001475 join(Line, *(I + 1));
1476 I += 1;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001477 } else if (Limit != 0) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001478 // Check that we still have three lines and they fit into the limit.
1479 if (I + 2 == E || (I + 2)->Type == LT_Invalid ||
1480 !nextTwoLinesFitInto(I, Limit))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001481 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001482
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001483 // Second, check that the next line does not contain any braces - if it
1484 // does, readability declines when putting it into a single line.
1485 if ((I + 1)->Last->Type == TT_LineComment || Tok->MustBreakBefore)
1486 return;
1487 do {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001488 if (Tok->isOneOf(tok::l_brace, tok::r_brace))
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001489 return;
1490 Tok = Tok->Children.empty() ? NULL : &Tok->Children.back();
1491 } while (Tok != NULL);
Manuel Klimek517e8942013-01-11 17:54:10 +00001492
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001493 // Last, check that the third line contains a single closing brace.
1494 Tok = &(I + 2)->First;
Daniel Jasper058f6f82013-05-16 10:17:39 +00001495 if (Tok->getNextNoneComment() != NULL || Tok->isNot(tok::r_brace) ||
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001496 Tok->MustBreakBefore)
1497 return;
1498
1499 join(Line, *(I + 1));
1500 join(Line, *(I + 2));
1501 I += 2;
Manuel Klimek517e8942013-01-11 17:54:10 +00001502 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001503 }
1504
1505 bool nextTwoLinesFitInto(std::vector<AnnotatedLine>::iterator I,
1506 unsigned Limit) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001507 return 1 + (I + 1)->Last->TotalLength + 1 + (I + 2)->Last->TotalLength <=
1508 Limit;
Manuel Klimek517e8942013-01-11 17:54:10 +00001509 }
1510
Daniel Jasper995e8202013-01-14 13:08:07 +00001511 void join(AnnotatedLine &A, const AnnotatedLine &B) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001512 unsigned LengthA = A.Last->TotalLength + B.First.SpacesRequiredBefore;
Daniel Jasper995e8202013-01-14 13:08:07 +00001513 A.Last->Children.push_back(B.First);
1514 while (!A.Last->Children.empty()) {
1515 A.Last->Children[0].Parent = A.Last;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001516 A.Last->Children[0].TotalLength += LengthA;
Daniel Jasper995e8202013-01-14 13:08:07 +00001517 A.Last = &A.Last->Children[0];
1518 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001519 }
1520
Daniel Jasper6f21a982013-03-13 07:49:51 +00001521 bool touchesRanges(const CharSourceRange &Range) {
Daniel Jasperf3023542013-03-07 20:50:00 +00001522 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1523 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),
1524 Ranges[i].getBegin()) &&
1525 !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
1526 Range.getBegin()))
1527 return true;
1528 }
1529 return false;
1530 }
1531
1532 bool touchesLine(const AnnotatedLine &TheLine) {
Daniel Jasper995e8202013-01-14 13:08:07 +00001533 const FormatToken *First = &TheLine.First.FormatTok;
1534 const FormatToken *Last = &TheLine.Last->FormatTok;
Daniel Jasper84f5ddf2013-05-14 10:31:09 +00001535 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001536 First->WhitespaceRange.getBegin().getLocWithOffset(
1537 First->LastNewlineOffset),
Daniel Jasper84f5ddf2013-05-14 10:31:09 +00001538 Last->Tok.getLocation().getLocWithOffset(Last->TokenLength - 1));
Daniel Jasperf3023542013-03-07 20:50:00 +00001539 return touchesRanges(LineRange);
1540 }
1541
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001542 bool touchesPPDirective(std::vector<AnnotatedLine>::iterator I,
1543 std::vector<AnnotatedLine>::iterator E) {
1544 for (; I != E; ++I) {
1545 if (I->First.FormatTok.HasUnescapedNewline)
1546 return false;
1547 if (touchesLine(*I))
1548 return true;
1549 }
1550 return false;
1551 }
1552
Daniel Jasperf3023542013-03-07 20:50:00 +00001553 bool touchesEmptyLineBefore(const AnnotatedLine &TheLine) {
1554 const FormatToken *First = &TheLine.First.FormatTok;
1555 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001556 First->WhitespaceRange.getBegin(),
1557 First->WhitespaceRange.getBegin().getLocWithOffset(
1558 First->LastNewlineOffset));
Daniel Jasperf3023542013-03-07 20:50:00 +00001559 return touchesRanges(LineRange);
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001560 }
1561
1562 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
Daniel Jaspercbb6c412013-01-16 09:10:19 +00001563 AnnotatedLines.push_back(AnnotatedLine(TheLine));
Daniel Jasperbac016b2012-12-03 18:12:45 +00001564 }
1565
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001566 /// \brief Add a new line and the required indent before the first Token
1567 /// of the \c UnwrappedLine if there was no structural parsing error.
1568 /// Returns the indent level of the \c UnwrappedLine.
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001569 void formatFirstToken(const AnnotatedToken &RootToken,
1570 const AnnotatedToken *PreviousToken, unsigned Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001571 bool InPPDirective) {
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001572 const FormatToken &Tok = RootToken.FormatTok;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001573
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001574 unsigned Newlines =
1575 std::min(Tok.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001576 if (Newlines == 0 && !Tok.IsFirst)
1577 Newlines = 1;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001578
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001579 // Insert extra new line before access specifiers.
1580 if (PreviousToken && PreviousToken->isOneOf(tok::semi, tok::r_brace) &&
1581 RootToken.isAccessSpecifier() && Tok.NewlinesBefore == 1)
1582 ++Newlines;
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001583
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001584 Whitespaces.replaceWhitespace(RootToken, Newlines, Indent, Indent,
1585 InPPDirective && !Tok.HasUnescapedNewline);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001586 }
1587
Daniel Jasperbac016b2012-12-03 18:12:45 +00001588 FormatStyle Style;
1589 Lexer &Lex;
1590 SourceManager &SourceMgr;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001591 WhitespaceManager Whitespaces;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001592 std::vector<CharSourceRange> Ranges;
Daniel Jasper995e8202013-01-14 13:08:07 +00001593 std::vector<AnnotatedLine> AnnotatedLines;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001594};
1595
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001596tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
1597 SourceManager &SourceMgr,
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001598 std::vector<CharSourceRange> Ranges) {
1599 Formatter formatter(Style, Lex, SourceMgr, Ranges);
Daniel Jasperbac016b2012-12-03 18:12:45 +00001600 return formatter.format();
1601}
1602
Daniel Jasper8a999452013-05-16 10:40:07 +00001603tooling::Replacements reformat(const FormatStyle &Style, StringRef Code,
1604 std::vector<tooling::Range> Ranges,
1605 StringRef FileName) {
1606 FileManager Files((FileSystemOptions()));
1607 DiagnosticsEngine Diagnostics(
1608 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
1609 new DiagnosticOptions);
1610 SourceManager SourceMgr(Diagnostics, Files);
1611 llvm::MemoryBuffer *Buf = llvm::MemoryBuffer::getMemBuffer(Code, FileName);
1612 const clang::FileEntry *Entry =
1613 Files.getVirtualFile(FileName, Buf->getBufferSize(), 0);
1614 SourceMgr.overrideFileContents(Entry, Buf);
1615 FileID ID =
1616 SourceMgr.createFileID(Entry, SourceLocation(), clang::SrcMgr::C_User);
1617 Lexer Lex(ID, SourceMgr.getBuffer(ID), SourceMgr, getFormattingLangOpts());
1618 SourceLocation StartOfFile = SourceMgr.getLocForStartOfFile(ID);
1619 std::vector<CharSourceRange> CharRanges;
1620 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1621 SourceLocation Start = StartOfFile.getLocWithOffset(Ranges[i].getOffset());
1622 SourceLocation End = Start.getLocWithOffset(Ranges[i].getLength());
1623 CharRanges.push_back(CharSourceRange::getCharRange(Start, End));
1624 }
1625 return reformat(Style, Lex, SourceMgr, CharRanges);
1626}
1627
Daniel Jasper46ef8522013-01-10 13:08:12 +00001628LangOptions getFormattingLangOpts() {
1629 LangOptions LangOpts;
1630 LangOpts.CPlusPlus = 1;
1631 LangOpts.CPlusPlus11 = 1;
Daniel Jasperb64eca02013-03-22 10:01:29 +00001632 LangOpts.LineComment = 1;
Daniel Jasper46ef8522013-01-10 13:08:12 +00001633 LangOpts.Bool = 1;
1634 LangOpts.ObjC1 = 1;
1635 LangOpts.ObjC2 = 1;
1636 return LangOpts;
1637}
1638
Daniel Jaspercd162382013-01-07 13:26:07 +00001639} // namespace format
1640} // namespace clang