Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1 | //===--- 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 Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Manuel Klimek | ca547db | 2013-01-16 14:55:28 +0000 | [diff] [blame] | 16 | #define DEBUG_TYPE "format-formatter" |
| 17 | |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 18 | #include "BreakableToken.h" |
Daniel Jasper | 32d28ee | 2013-01-29 21:01:14 +0000 | [diff] [blame] | 19 | #include "TokenAnnotator.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 20 | #include "UnwrappedLineParser.h" |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 21 | #include "WhitespaceManager.h" |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame] | 22 | #include "clang/Basic/Diagnostic.h" |
Daniel Jasper | 675d2e3 | 2012-12-21 10:20:02 +0000 | [diff] [blame] | 23 | #include "clang/Basic/OperatorPrecedence.h" |
Chandler Carruth | b99083e | 2013-01-02 10:28:36 +0000 | [diff] [blame] | 24 | #include "clang/Basic/SourceManager.h" |
Manuel Klimek | ca547db | 2013-01-16 14:55:28 +0000 | [diff] [blame] | 25 | #include "clang/Format/Format.h" |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 26 | #include "clang/Lex/Lexer.h" |
Alexander Kornienko | 5262dd9 | 2013-03-27 11:52:18 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/STLExtras.h" |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 28 | #include "llvm/Support/Allocator.h" |
Manuel Klimek | ca547db | 2013-01-16 14:55:28 +0000 | [diff] [blame] | 29 | #include "llvm/Support/Debug.h" |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 30 | #include "llvm/Support/YAMLTraits.h" |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 31 | #include <queue> |
Daniel Jasper | 8822d3a | 2012-12-04 13:02:32 +0000 | [diff] [blame] | 32 | #include <string> |
| 33 | |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 34 | namespace llvm { |
| 35 | namespace yaml { |
| 36 | template <> |
| 37 | struct ScalarEnumerationTraits<clang::format::FormatStyle::LanguageStandard> { |
Manuel Klimek | 44135b8 | 2013-05-13 12:51:40 +0000 | [diff] [blame] | 38 | 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 Jasper | 1fb8d88 | 2013-05-14 09:30:02 +0000 | [diff] [blame] | 46 | template <> |
Manuel Klimek | 44135b8 | 2013-05-13 12:51:40 +0000 | [diff] [blame] | 47 | struct 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 Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 53 | } |
| 54 | }; |
| 55 | |
| 56 | template <> struct MappingTraits<clang::format::FormatStyle> { |
| 57 | static void mapping(llvm::yaml::IO &IO, clang::format::FormatStyle &Style) { |
Alexander Kornienko | dd25631 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 58 | 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 Kornienko | 885f87b | 2013-05-19 00:53:30 +0000 | [diff] [blame] | 63 | clang::format::FormatStyle PredefinedStyle; |
| 64 | if (clang::format::getPredefinedStyle(StyleName, &PredefinedStyle) && |
| 65 | Style == PredefinedStyle) { |
Alexander Kornienko | dd25631 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 66 | IO.mapOptional("# BasedOnStyle", StyleName); |
| 67 | break; |
| 68 | } |
| 69 | } |
| 70 | } else { |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 71 | StringRef BasedOnStyle; |
| 72 | IO.mapOptional("BasedOnStyle", BasedOnStyle); |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 73 | if (!BasedOnStyle.empty()) |
Alexander Kornienko | 885f87b | 2013-05-19 00:53:30 +0000 | [diff] [blame] | 74 | if (!clang::format::getPredefinedStyle(BasedOnStyle, &Style)) { |
| 75 | IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle)); |
| 76 | return; |
| 77 | } |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 78 | } |
| 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 Jasper | f11bbb9 | 2013-05-16 12:12:21 +0000 | [diff] [blame] | 86 | IO.mapOptional("AllowShortLoopsOnASingleLine", |
| 87 | Style.AllowShortLoopsOnASingleLine); |
Daniel Jasper | bbc8776 | 2013-05-29 12:07:31 +0000 | [diff] [blame] | 88 | IO.mapOptional("AlwaysBreakTemplateDeclarations", |
| 89 | Style.AlwaysBreakTemplateDeclarations); |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 90 | IO.mapOptional("BinPackParameters", Style.BinPackParameters); |
| 91 | IO.mapOptional("ColumnLimit", Style.ColumnLimit); |
| 92 | IO.mapOptional("ConstructorInitializerAllOnOneLineOrOnePerLine", |
| 93 | Style.ConstructorInitializerAllOnOneLineOrOnePerLine); |
| 94 | IO.mapOptional("DerivePointerBinding", Style.DerivePointerBinding); |
| 95 | IO.mapOptional("IndentCaseLabels", Style.IndentCaseLabels); |
| 96 | IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep); |
| 97 | IO.mapOptional("ObjCSpaceBeforeProtocolList", |
| 98 | Style.ObjCSpaceBeforeProtocolList); |
Alexander Kornienko | 2785b9a | 2013-06-07 16:02:52 +0000 | [diff] [blame] | 99 | IO.mapOptional("PenaltyBreakComment", Style.PenaltyBreakComment); |
| 100 | IO.mapOptional("PenaltyBreakString", Style.PenaltyBreakString); |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 101 | IO.mapOptional("PenaltyExcessCharacter", Style.PenaltyExcessCharacter); |
| 102 | IO.mapOptional("PenaltyReturnTypeOnItsOwnLine", |
| 103 | Style.PenaltyReturnTypeOnItsOwnLine); |
| 104 | IO.mapOptional("PointerBindsToType", Style.PointerBindsToType); |
| 105 | IO.mapOptional("SpacesBeforeTrailingComments", |
| 106 | Style.SpacesBeforeTrailingComments); |
Daniel Jasper | 1bee073 | 2013-05-23 18:05:18 +0000 | [diff] [blame] | 107 | IO.mapOptional("SpacesInBracedLists", Style.SpacesInBracedLists); |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 108 | IO.mapOptional("Standard", Style.Standard); |
Manuel Klimek | 07a64ec | 2013-05-13 08:42:42 +0000 | [diff] [blame] | 109 | IO.mapOptional("IndentWidth", Style.IndentWidth); |
Manuel Klimek | 7c9a93e | 2013-05-13 09:22:11 +0000 | [diff] [blame] | 110 | IO.mapOptional("UseTab", Style.UseTab); |
Manuel Klimek | 44135b8 | 2013-05-13 12:51:40 +0000 | [diff] [blame] | 111 | IO.mapOptional("BreakBeforeBraces", Style.BreakBeforeBraces); |
Manuel Klimek | a9a7f10 | 2013-06-21 17:25:42 +0000 | [diff] [blame] | 112 | IO.mapOptional("IndentFunctionDeclarationAfterType", |
| 113 | Style.IndentFunctionDeclarationAfterType); |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 114 | } |
| 115 | }; |
| 116 | } |
| 117 | } |
| 118 | |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 119 | namespace clang { |
| 120 | namespace format { |
| 121 | |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 122 | FormatStyle getLLVMStyle() { |
| 123 | FormatStyle LLVMStyle; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 124 | LLVMStyle.AccessModifierOffset = -2; |
Alexander Kornienko | fb59486 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 125 | LLVMStyle.AlignEscapedNewlinesLeft = false; |
Daniel Jasper | f157960 | 2013-01-29 16:03:49 +0000 | [diff] [blame] | 126 | LLVMStyle.AllowAllParametersOfDeclarationOnNextLine = true; |
Daniel Jasper | 6f5bb2c | 2013-01-14 16:24:39 +0000 | [diff] [blame] | 127 | LLVMStyle.AllowShortIfStatementsOnASingleLine = false; |
Daniel Jasper | f11bbb9 | 2013-05-16 12:12:21 +0000 | [diff] [blame] | 128 | LLVMStyle.AllowShortLoopsOnASingleLine = false; |
Daniel Jasper | bbc8776 | 2013-05-29 12:07:31 +0000 | [diff] [blame] | 129 | LLVMStyle.AlwaysBreakTemplateDeclarations = false; |
Alexander Kornienko | fb59486 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 130 | LLVMStyle.BinPackParameters = true; |
| 131 | LLVMStyle.ColumnLimit = 80; |
| 132 | LLVMStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = false; |
| 133 | LLVMStyle.DerivePointerBinding = false; |
| 134 | LLVMStyle.IndentCaseLabels = false; |
| 135 | LLVMStyle.MaxEmptyLinesToKeep = 1; |
Nico Weber | 5f500df | 2013-01-10 20:12:55 +0000 | [diff] [blame] | 136 | LLVMStyle.ObjCSpaceBeforeProtocolList = true; |
Alexander Kornienko | 2785b9a | 2013-06-07 16:02:52 +0000 | [diff] [blame] | 137 | LLVMStyle.PenaltyBreakComment = 45; |
| 138 | LLVMStyle.PenaltyBreakString = 1000; |
Daniel Jasper | 0178673 | 2013-02-04 07:21:18 +0000 | [diff] [blame] | 139 | LLVMStyle.PenaltyExcessCharacter = 1000000; |
Daniel Jasper | 1407bee | 2013-04-11 14:29:13 +0000 | [diff] [blame] | 140 | LLVMStyle.PenaltyReturnTypeOnItsOwnLine = 75; |
Alexander Kornienko | fb59486 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 141 | LLVMStyle.PointerBindsToType = false; |
| 142 | LLVMStyle.SpacesBeforeTrailingComments = 1; |
Daniel Jasper | 2424eef | 2013-05-23 10:15:45 +0000 | [diff] [blame] | 143 | LLVMStyle.SpacesInBracedLists = true; |
Alexander Kornienko | fb59486 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 144 | LLVMStyle.Standard = FormatStyle::LS_Cpp03; |
Manuel Klimek | 07a64ec | 2013-05-13 08:42:42 +0000 | [diff] [blame] | 145 | LLVMStyle.IndentWidth = 2; |
Manuel Klimek | 7c9a93e | 2013-05-13 09:22:11 +0000 | [diff] [blame] | 146 | LLVMStyle.UseTab = false; |
Manuel Klimek | 44135b8 | 2013-05-13 12:51:40 +0000 | [diff] [blame] | 147 | LLVMStyle.BreakBeforeBraces = FormatStyle::BS_Attach; |
Manuel Klimek | a9a7f10 | 2013-06-21 17:25:42 +0000 | [diff] [blame] | 148 | LLVMStyle.IndentFunctionDeclarationAfterType = false; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 149 | return LLVMStyle; |
| 150 | } |
| 151 | |
| 152 | FormatStyle getGoogleStyle() { |
| 153 | FormatStyle GoogleStyle; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 154 | GoogleStyle.AccessModifierOffset = -1; |
Alexander Kornienko | fb59486 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 155 | GoogleStyle.AlignEscapedNewlinesLeft = true; |
Daniel Jasper | f157960 | 2013-01-29 16:03:49 +0000 | [diff] [blame] | 156 | GoogleStyle.AllowAllParametersOfDeclarationOnNextLine = true; |
Daniel Jasper | 94d6ad7 | 2013-04-24 13:46:00 +0000 | [diff] [blame] | 157 | GoogleStyle.AllowShortIfStatementsOnASingleLine = true; |
Daniel Jasper | 1bee073 | 2013-05-23 18:05:18 +0000 | [diff] [blame] | 158 | GoogleStyle.AllowShortLoopsOnASingleLine = true; |
Daniel Jasper | bbc8776 | 2013-05-29 12:07:31 +0000 | [diff] [blame] | 159 | GoogleStyle.AlwaysBreakTemplateDeclarations = true; |
Alexander Kornienko | fb59486 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 160 | GoogleStyle.BinPackParameters = true; |
| 161 | GoogleStyle.ColumnLimit = 80; |
| 162 | GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true; |
| 163 | GoogleStyle.DerivePointerBinding = true; |
| 164 | GoogleStyle.IndentCaseLabels = true; |
| 165 | GoogleStyle.MaxEmptyLinesToKeep = 1; |
Nico Weber | 5f500df | 2013-01-10 20:12:55 +0000 | [diff] [blame] | 166 | GoogleStyle.ObjCSpaceBeforeProtocolList = false; |
Alexander Kornienko | 2785b9a | 2013-06-07 16:02:52 +0000 | [diff] [blame] | 167 | GoogleStyle.PenaltyBreakComment = 45; |
| 168 | GoogleStyle.PenaltyBreakString = 1000; |
Daniel Jasper | 0178673 | 2013-02-04 07:21:18 +0000 | [diff] [blame] | 169 | GoogleStyle.PenaltyExcessCharacter = 1000000; |
Daniel Jasper | 1407bee | 2013-04-11 14:29:13 +0000 | [diff] [blame] | 170 | GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200; |
Alexander Kornienko | fb59486 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 171 | GoogleStyle.PointerBindsToType = true; |
| 172 | GoogleStyle.SpacesBeforeTrailingComments = 2; |
Daniel Jasper | 2424eef | 2013-05-23 10:15:45 +0000 | [diff] [blame] | 173 | GoogleStyle.SpacesInBracedLists = false; |
Alexander Kornienko | fb59486 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 174 | GoogleStyle.Standard = FormatStyle::LS_Auto; |
Manuel Klimek | 07a64ec | 2013-05-13 08:42:42 +0000 | [diff] [blame] | 175 | GoogleStyle.IndentWidth = 2; |
Manuel Klimek | 7c9a93e | 2013-05-13 09:22:11 +0000 | [diff] [blame] | 176 | GoogleStyle.UseTab = false; |
Manuel Klimek | 44135b8 | 2013-05-13 12:51:40 +0000 | [diff] [blame] | 177 | GoogleStyle.BreakBeforeBraces = FormatStyle::BS_Attach; |
Manuel Klimek | a9a7f10 | 2013-06-21 17:25:42 +0000 | [diff] [blame] | 178 | GoogleStyle.IndentFunctionDeclarationAfterType = true; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 179 | return GoogleStyle; |
| 180 | } |
| 181 | |
Daniel Jasper | 6f5bb2c | 2013-01-14 16:24:39 +0000 | [diff] [blame] | 182 | FormatStyle getChromiumStyle() { |
| 183 | FormatStyle ChromiumStyle = getGoogleStyle(); |
Daniel Jasper | f157960 | 2013-01-29 16:03:49 +0000 | [diff] [blame] | 184 | ChromiumStyle.AllowAllParametersOfDeclarationOnNextLine = false; |
Daniel Jasper | 94d6ad7 | 2013-04-24 13:46:00 +0000 | [diff] [blame] | 185 | ChromiumStyle.AllowShortIfStatementsOnASingleLine = false; |
Daniel Jasper | f11bbb9 | 2013-05-16 12:12:21 +0000 | [diff] [blame] | 186 | ChromiumStyle.AllowShortLoopsOnASingleLine = false; |
Daniel Jasper | faab0d3 | 2013-02-27 09:47:53 +0000 | [diff] [blame] | 187 | ChromiumStyle.BinPackParameters = false; |
Daniel Jasper | 8ff690a | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 188 | ChromiumStyle.Standard = FormatStyle::LS_Cpp03; |
| 189 | ChromiumStyle.DerivePointerBinding = false; |
Daniel Jasper | 6f5bb2c | 2013-01-14 16:24:39 +0000 | [diff] [blame] | 190 | return ChromiumStyle; |
| 191 | } |
| 192 | |
Alexander Kornienko | fb59486 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 193 | FormatStyle getMozillaStyle() { |
| 194 | FormatStyle MozillaStyle = getLLVMStyle(); |
| 195 | MozillaStyle.AllowAllParametersOfDeclarationOnNextLine = false; |
| 196 | MozillaStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true; |
| 197 | MozillaStyle.DerivePointerBinding = true; |
| 198 | MozillaStyle.IndentCaseLabels = true; |
| 199 | MozillaStyle.ObjCSpaceBeforeProtocolList = false; |
| 200 | MozillaStyle.PenaltyReturnTypeOnItsOwnLine = 200; |
| 201 | MozillaStyle.PointerBindsToType = true; |
| 202 | return MozillaStyle; |
| 203 | } |
| 204 | |
Alexander Kornienko | 885f87b | 2013-05-19 00:53:30 +0000 | [diff] [blame] | 205 | bool getPredefinedStyle(StringRef Name, FormatStyle *Style) { |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 206 | if (Name.equals_lower("llvm")) |
Alexander Kornienko | 885f87b | 2013-05-19 00:53:30 +0000 | [diff] [blame] | 207 | *Style = getLLVMStyle(); |
| 208 | else if (Name.equals_lower("chromium")) |
| 209 | *Style = getChromiumStyle(); |
| 210 | else if (Name.equals_lower("mozilla")) |
| 211 | *Style = getMozillaStyle(); |
| 212 | else if (Name.equals_lower("google")) |
| 213 | *Style = getGoogleStyle(); |
| 214 | else |
| 215 | return false; |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 216 | |
Alexander Kornienko | 885f87b | 2013-05-19 00:53:30 +0000 | [diff] [blame] | 217 | return true; |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | llvm::error_code parseConfiguration(StringRef Text, FormatStyle *Style) { |
Alexander Kornienko | 107db3c | 2013-05-20 15:18:01 +0000 | [diff] [blame] | 221 | if (Text.trim().empty()) |
| 222 | return llvm::make_error_code(llvm::errc::invalid_argument); |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 223 | llvm::yaml::Input Input(Text); |
| 224 | Input >> *Style; |
| 225 | return Input.error(); |
| 226 | } |
| 227 | |
| 228 | std::string configurationAsText(const FormatStyle &Style) { |
| 229 | std::string Text; |
| 230 | llvm::raw_string_ostream Stream(Text); |
| 231 | llvm::yaml::Output Output(Stream); |
| 232 | // We use the same mapping method for input and output, so we need a non-const |
| 233 | // reference here. |
| 234 | FormatStyle NonConstStyle = Style; |
| 235 | Output << NonConstStyle; |
Alexander Kornienko | 2b6acb6 | 2013-05-13 12:56:35 +0000 | [diff] [blame] | 236 | return Stream.str(); |
Alexander Kornienko | d71ec16 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 237 | } |
| 238 | |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 239 | // Returns the length of everything up to the first possible line break after |
| 240 | // the ), ], } or > matching \c Tok. |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 241 | static unsigned getLengthToMatchingParen(const FormatToken &Tok) { |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 242 | if (Tok.MatchingParen == NULL) |
| 243 | return 0; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 244 | FormatToken *End = Tok.MatchingParen; |
| 245 | while (End->Next && !End->Next->CanBreakBefore) { |
| 246 | End = End->Next; |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 247 | } |
| 248 | return End->TotalLength - Tok.TotalLength + 1; |
| 249 | } |
| 250 | |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 251 | class UnwrappedLineFormatter { |
| 252 | public: |
Manuel Klimek | 94fc6f1 | 2013-01-10 19:17:33 +0000 | [diff] [blame] | 253 | UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr, |
Daniel Jasper | 995e820 | 2013-01-14 13:08:07 +0000 | [diff] [blame] | 254 | const AnnotatedLine &Line, unsigned FirstIndent, |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 255 | const FormatToken *RootToken, |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 256 | WhitespaceManager &Whitespaces, |
| 257 | encoding::Encoding Encoding) |
Daniel Jasper | 1321eb5 | 2012-12-18 21:05:13 +0000 | [diff] [blame] | 258 | : Style(Style), SourceMgr(SourceMgr), Line(Line), |
Daniel Jasper | dcc2a62 | 2013-01-18 08:44:07 +0000 | [diff] [blame] | 259 | FirstIndent(FirstIndent), RootToken(RootToken), |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 260 | Whitespaces(Whitespaces), Count(0), Encoding(Encoding) {} |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 261 | |
Manuel Klimek | d4397b9 | 2013-01-04 23:34:14 +0000 | [diff] [blame] | 262 | /// \brief Formats an \c UnwrappedLine. |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 263 | void format(const AnnotatedLine *NextLine) { |
Daniel Jasper | 3b5943f | 2012-12-06 09:56:08 +0000 | [diff] [blame] | 264 | // Initialize state dependent on indent. |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 265 | LineState State; |
Manuel Klimek | 3f8c7f3 | 2013-01-10 18:45:26 +0000 | [diff] [blame] | 266 | State.Column = FirstIndent; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 267 | State.NextToken = RootToken; |
Daniel Jasper | 6f21a98 | 2013-03-13 07:49:51 +0000 | [diff] [blame] | 268 | State.Stack.push_back( |
Nico Weber | 2726877 | 2013-06-26 00:30:14 +0000 | [diff] [blame] | 269 | ParenState(FirstIndent, FirstIndent, /*AvoidBinPacking=*/false, |
| 270 | /*NoLineBreak=*/false)); |
Daniel Jasper | a324a0e | 2012-12-21 14:37:20 +0000 | [diff] [blame] | 271 | State.LineContainsContinuedForLoopSection = false; |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 272 | State.ParenLevel = 0; |
Manuel Klimek | b56b6d1 | 2013-02-20 15:25:48 +0000 | [diff] [blame] | 273 | State.StartOfStringLiteral = 0; |
Daniel Jasper | cf5767d | 2013-02-18 11:05:07 +0000 | [diff] [blame] | 274 | State.StartOfLineLevel = State.ParenLevel; |
Daniel Jasper | ce912f4 | 2013-06-03 09:54:46 +0000 | [diff] [blame] | 275 | State.LowestCallLevel = State.ParenLevel; |
Daniel Jasper | 54b4e44 | 2013-05-22 05:27:42 +0000 | [diff] [blame] | 276 | State.IgnoreStackForComparison = false; |
Daniel Jasper | 3b5943f | 2012-12-06 09:56:08 +0000 | [diff] [blame] | 277 | |
| 278 | // The first token has already been indented and thus consumed. |
Nico Weber | 2726877 | 2013-06-26 00:30:14 +0000 | [diff] [blame] | 279 | moveStateToNextToken(State, /*DryRun=*/false); |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 280 | |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 281 | // If everything fits on a single line, just put it there. |
Daniel Jasper | a4d4621 | 2013-02-28 11:05:57 +0000 | [diff] [blame] | 282 | unsigned ColumnLimit = Style.ColumnLimit; |
| 283 | if (NextLine && NextLine->InPPDirective && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 284 | !NextLine->First->HasUnescapedNewline) |
Daniel Jasper | a4d4621 | 2013-02-28 11:05:57 +0000 | [diff] [blame] | 285 | ColumnLimit = getColumnLimit(); |
| 286 | if (Line.Last->TotalLength <= ColumnLimit - FirstIndent) { |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 287 | while (State.NextToken != NULL) { |
Daniel Jasper | 1321eb5 | 2012-12-18 21:05:13 +0000 | [diff] [blame] | 288 | addTokenToState(false, false, State); |
Daniel Jasper | 1321eb5 | 2012-12-18 21:05:13 +0000 | [diff] [blame] | 289 | } |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 290 | } |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 291 | |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 292 | // If the ObjC method declaration does not fit on a line, we should format |
| 293 | // it with one arg per line. |
| 294 | if (Line.Type == LT_ObjCMethodDecl) |
| 295 | State.Stack.back().BreakBeforeParameter = true; |
| 296 | |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 297 | // Find best solution in solution space. |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 298 | analyzeSolutionSpace(State); |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | private: |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 302 | void DebugTokenState(const FormatToken &FormatTok) { |
| 303 | const Token &Tok = FormatTok.Tok; |
Alexander Kornienko | dd25631 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 304 | llvm::dbgs() << StringRef(SourceMgr.getCharacterData(Tok.getLocation()), |
Daniel Jasper | 1a1ce83 | 2013-01-29 11:27:30 +0000 | [diff] [blame] | 305 | Tok.getLength()); |
Alexander Kornienko | dd25631 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 306 | llvm::dbgs(); |
Manuel Klimek | ca547db | 2013-01-16 14:55:28 +0000 | [diff] [blame] | 307 | } |
| 308 | |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 309 | struct ParenState { |
Daniel Jasper | d399bff | 2013-02-05 09:41:21 +0000 | [diff] [blame] | 310 | ParenState(unsigned Indent, unsigned LastSpace, bool AvoidBinPacking, |
Daniel Jasper | 001bf4e | 2013-04-22 07:59:53 +0000 | [diff] [blame] | 311 | bool NoLineBreak) |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 312 | : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0), |
| 313 | BreakBeforeClosingBrace(false), QuestionColumn(0), |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 314 | AvoidBinPacking(AvoidBinPacking), BreakBeforeParameter(false), |
Daniel Jasper | 001bf4e | 2013-04-22 07:59:53 +0000 | [diff] [blame] | 315 | NoLineBreak(NoLineBreak), ColonPos(0), StartOfFunctionCall(0), |
| 316 | NestedNameSpecifierContinuation(0), CallContinuation(0), |
Daniel Jasper | c3df5ff | 2013-05-13 09:19:24 +0000 | [diff] [blame] | 317 | VariablePos(0), ForFakeParenthesis(false) {} |
Daniel Jasper | a4974cf | 2012-12-24 16:43:00 +0000 | [diff] [blame] | 318 | |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 319 | /// \brief The position to which a specific parenthesis level needs to be |
| 320 | /// indented. |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 321 | unsigned Indent; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 322 | |
Daniel Jasper | 3b5943f | 2012-12-06 09:56:08 +0000 | [diff] [blame] | 323 | /// \brief The position of the last space on each level. |
| 324 | /// |
| 325 | /// Used e.g. to break like: |
| 326 | /// functionCall(Parameter, otherCall( |
| 327 | /// OtherParameter)); |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 328 | unsigned LastSpace; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 329 | |
Daniel Jasper | 3b5943f | 2012-12-06 09:56:08 +0000 | [diff] [blame] | 330 | /// \brief The position the first "<<" operator encountered on each level. |
| 331 | /// |
| 332 | /// Used to align "<<" operators. 0 if no such operator has been encountered |
| 333 | /// on a level. |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 334 | unsigned FirstLessLess; |
Daniel Jasper | 3b5943f | 2012-12-06 09:56:08 +0000 | [diff] [blame] | 335 | |
Manuel Klimek | c8c8a47 | 2013-01-10 15:58:26 +0000 | [diff] [blame] | 336 | /// \brief Whether a newline needs to be inserted before the block's closing |
| 337 | /// brace. |
| 338 | /// |
| 339 | /// We only want to insert a newline before the closing brace if there also |
| 340 | /// was a newline after the beginning left brace. |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 341 | bool BreakBeforeClosingBrace; |
| 342 | |
Daniel Jasper | bfe6fd4 | 2013-01-28 12:45:14 +0000 | [diff] [blame] | 343 | /// \brief The column of a \c ? in a conditional expression; |
| 344 | unsigned QuestionColumn; |
| 345 | |
Daniel Jasper | f343cab | 2013-01-31 14:59:26 +0000 | [diff] [blame] | 346 | /// \brief Avoid bin packing, i.e. multiple parameters/elements on multiple |
| 347 | /// lines, in this context. |
| 348 | bool AvoidBinPacking; |
| 349 | |
| 350 | /// \brief Break after the next comma (or all the commas in this context if |
| 351 | /// \c AvoidBinPacking is \c true). |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 352 | bool BreakBeforeParameter; |
Daniel Jasper | f343cab | 2013-01-31 14:59:26 +0000 | [diff] [blame] | 353 | |
Daniel Jasper | 001bf4e | 2013-04-22 07:59:53 +0000 | [diff] [blame] | 354 | /// \brief Line breaking in this context would break a formatting rule. |
| 355 | bool NoLineBreak; |
Daniel Jasper | 7e9bf8c | 2013-01-11 11:37:55 +0000 | [diff] [blame] | 356 | |
Daniel Jasper | 63d7ced | 2013-02-05 10:07:47 +0000 | [diff] [blame] | 357 | /// \brief The position of the colon in an ObjC method declaration/call. |
| 358 | unsigned ColonPos; |
Daniel Jasper | c4615b7 | 2013-02-20 12:56:39 +0000 | [diff] [blame] | 359 | |
Daniel Jasper | 2484971 | 2013-03-01 16:48:32 +0000 | [diff] [blame] | 360 | /// \brief The start of the most recent function in a builder-type call. |
| 361 | unsigned StartOfFunctionCall; |
| 362 | |
Daniel Jasper | 3791130 | 2013-04-02 14:33:13 +0000 | [diff] [blame] | 363 | /// \brief If a nested name specifier was broken over multiple lines, this |
| 364 | /// contains the start column of the second line. Otherwise 0. |
| 365 | unsigned NestedNameSpecifierContinuation; |
| 366 | |
| 367 | /// \brief If a call expression was broken over multiple lines, this |
| 368 | /// contains the start column of the second line. Otherwise 0. |
| 369 | unsigned CallContinuation; |
| 370 | |
Daniel Jasper | 8ed9f2b | 2013-04-03 13:36:17 +0000 | [diff] [blame] | 371 | /// \brief The column of the first variable name in a variable declaration. |
| 372 | /// |
| 373 | /// Used to align further variables if necessary. |
| 374 | unsigned VariablePos; |
| 375 | |
Daniel Jasper | c3df5ff | 2013-05-13 09:19:24 +0000 | [diff] [blame] | 376 | /// \brief \c true if this \c ParenState was created for a fake parenthesis. |
| 377 | /// |
| 378 | /// Does not need to be considered for memoization / the comparison function |
| 379 | /// as otherwise identical states will have the same fake/non-fake |
| 380 | /// \c ParenStates. |
| 381 | bool ForFakeParenthesis; |
| 382 | |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 383 | bool operator<(const ParenState &Other) const { |
| 384 | if (Indent != Other.Indent) |
Daniel Jasper | 7d19bc2 | 2013-01-11 14:23:32 +0000 | [diff] [blame] | 385 | return Indent < Other.Indent; |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 386 | if (LastSpace != Other.LastSpace) |
| 387 | return LastSpace < Other.LastSpace; |
| 388 | if (FirstLessLess != Other.FirstLessLess) |
| 389 | return FirstLessLess < Other.FirstLessLess; |
Daniel Jasper | 7e9bf8c | 2013-01-11 11:37:55 +0000 | [diff] [blame] | 390 | if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace) |
| 391 | return BreakBeforeClosingBrace; |
Daniel Jasper | bfe6fd4 | 2013-01-28 12:45:14 +0000 | [diff] [blame] | 392 | if (QuestionColumn != Other.QuestionColumn) |
| 393 | return QuestionColumn < Other.QuestionColumn; |
Daniel Jasper | f343cab | 2013-01-31 14:59:26 +0000 | [diff] [blame] | 394 | if (AvoidBinPacking != Other.AvoidBinPacking) |
| 395 | return AvoidBinPacking; |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 396 | if (BreakBeforeParameter != Other.BreakBeforeParameter) |
| 397 | return BreakBeforeParameter; |
Daniel Jasper | 001bf4e | 2013-04-22 07:59:53 +0000 | [diff] [blame] | 398 | if (NoLineBreak != Other.NoLineBreak) |
| 399 | return NoLineBreak; |
Daniel Jasper | 63d7ced | 2013-02-05 10:07:47 +0000 | [diff] [blame] | 400 | if (ColonPos != Other.ColonPos) |
| 401 | return ColonPos < Other.ColonPos; |
Daniel Jasper | 2484971 | 2013-03-01 16:48:32 +0000 | [diff] [blame] | 402 | if (StartOfFunctionCall != Other.StartOfFunctionCall) |
| 403 | return StartOfFunctionCall < Other.StartOfFunctionCall; |
Daniel Jasper | 3791130 | 2013-04-02 14:33:13 +0000 | [diff] [blame] | 404 | if (CallContinuation != Other.CallContinuation) |
| 405 | return CallContinuation < Other.CallContinuation; |
Daniel Jasper | 8ed9f2b | 2013-04-03 13:36:17 +0000 | [diff] [blame] | 406 | if (VariablePos != Other.VariablePos) |
| 407 | return VariablePos < Other.VariablePos; |
Daniel Jasper | b312314 | 2013-01-12 07:36:22 +0000 | [diff] [blame] | 408 | return false; |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 409 | } |
| 410 | }; |
| 411 | |
| 412 | /// \brief The current state when indenting a unwrapped line. |
| 413 | /// |
| 414 | /// As the indenting tries different combinations this is copied by value. |
| 415 | struct LineState { |
| 416 | /// \brief The number of used columns in the current line. |
| 417 | unsigned Column; |
| 418 | |
| 419 | /// \brief The token that needs to be next formatted. |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 420 | const FormatToken *NextToken; |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 421 | |
Daniel Jasper | a324a0e | 2012-12-21 14:37:20 +0000 | [diff] [blame] | 422 | /// \brief \c true if this line contains a continued for-loop section. |
| 423 | bool LineContainsContinuedForLoopSection; |
| 424 | |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 425 | /// \brief The level of nesting inside (), [], <> and {}. |
| 426 | unsigned ParenLevel; |
| 427 | |
Daniel Jasper | cf5767d | 2013-02-18 11:05:07 +0000 | [diff] [blame] | 428 | /// \brief The \c ParenLevel at the start of this line. |
| 429 | unsigned StartOfLineLevel; |
| 430 | |
Daniel Jasper | ce912f4 | 2013-06-03 09:54:46 +0000 | [diff] [blame] | 431 | /// \brief The lowest \c ParenLevel of "." or "->" on the current line. |
| 432 | unsigned LowestCallLevel; |
Daniel Jasper | 259a038 | 2013-05-27 11:50:16 +0000 | [diff] [blame] | 433 | |
Manuel Klimek | b56b6d1 | 2013-02-20 15:25:48 +0000 | [diff] [blame] | 434 | /// \brief The start column of the string literal, if we're in a string |
| 435 | /// literal sequence, 0 otherwise. |
| 436 | unsigned StartOfStringLiteral; |
| 437 | |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 438 | /// \brief A stack keeping track of properties applying to parenthesis |
| 439 | /// levels. |
| 440 | std::vector<ParenState> Stack; |
| 441 | |
Daniel Jasper | 54b4e44 | 2013-05-22 05:27:42 +0000 | [diff] [blame] | 442 | /// \brief Ignore the stack of \c ParenStates for state comparison. |
| 443 | /// |
| 444 | /// In long and deeply nested unwrapped lines, the current algorithm can |
| 445 | /// be insufficient for finding the best formatting with a reasonable amount |
| 446 | /// of time and memory. Setting this flag will effectively lead to the |
| 447 | /// algorithm not analyzing some combinations. However, these combinations |
| 448 | /// rarely contain the optimal solution: In short, accepting a higher |
| 449 | /// penalty early would need to lead to different values in the \c |
| 450 | /// ParenState stack (in an otherwise identical state) and these different |
| 451 | /// values would need to lead to a significant amount of avoided penalty |
| 452 | /// later. |
| 453 | /// |
| 454 | /// FIXME: Come up with a better algorithm instead. |
| 455 | bool IgnoreStackForComparison; |
| 456 | |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 457 | /// \brief Comparison operator to be able to used \c LineState in \c map. |
| 458 | bool operator<(const LineState &Other) const { |
Daniel Jasper | d789670 | 2013-02-19 09:28:55 +0000 | [diff] [blame] | 459 | if (NextToken != Other.NextToken) |
| 460 | return NextToken < Other.NextToken; |
| 461 | if (Column != Other.Column) |
| 462 | return Column < Other.Column; |
Daniel Jasper | d789670 | 2013-02-19 09:28:55 +0000 | [diff] [blame] | 463 | if (LineContainsContinuedForLoopSection != |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 464 | Other.LineContainsContinuedForLoopSection) |
Daniel Jasper | a324a0e | 2012-12-21 14:37:20 +0000 | [diff] [blame] | 465 | return LineContainsContinuedForLoopSection; |
Daniel Jasper | d789670 | 2013-02-19 09:28:55 +0000 | [diff] [blame] | 466 | if (ParenLevel != Other.ParenLevel) |
| 467 | return ParenLevel < Other.ParenLevel; |
| 468 | if (StartOfLineLevel != Other.StartOfLineLevel) |
| 469 | return StartOfLineLevel < Other.StartOfLineLevel; |
Daniel Jasper | ce912f4 | 2013-06-03 09:54:46 +0000 | [diff] [blame] | 470 | if (LowestCallLevel != Other.LowestCallLevel) |
| 471 | return LowestCallLevel < Other.LowestCallLevel; |
Manuel Klimek | b56b6d1 | 2013-02-20 15:25:48 +0000 | [diff] [blame] | 472 | if (StartOfStringLiteral != Other.StartOfStringLiteral) |
| 473 | return StartOfStringLiteral < Other.StartOfStringLiteral; |
Daniel Jasper | 54b4e44 | 2013-05-22 05:27:42 +0000 | [diff] [blame] | 474 | if (IgnoreStackForComparison || Other.IgnoreStackForComparison) |
| 475 | return false; |
Daniel Jasper | d789670 | 2013-02-19 09:28:55 +0000 | [diff] [blame] | 476 | return Stack < Other.Stack; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 477 | } |
| 478 | }; |
| 479 | |
Daniel Jasper | 2040915 | 2012-12-04 14:54:30 +0000 | [diff] [blame] | 480 | /// \brief Appends the next token to \p State and updates information |
| 481 | /// necessary for indentation. |
| 482 | /// |
Nico Weber | 1907c57 | 2013-06-26 02:42:46 +0000 | [diff] [blame] | 483 | /// Puts the token on the current line if \p Newline is \c false and adds a |
Daniel Jasper | 2040915 | 2012-12-04 14:54:30 +0000 | [diff] [blame] | 484 | /// line break and necessary indentation otherwise. |
| 485 | /// |
| 486 | /// If \p DryRun is \c false, also creates and stores the required |
| 487 | /// \c Replacement. |
Manuel Klimek | 8092a94 | 2013-02-20 10:15:13 +0000 | [diff] [blame] | 488 | unsigned addTokenToState(bool Newline, bool DryRun, LineState &State) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 489 | const FormatToken &Current = *State.NextToken; |
| 490 | const FormatToken &Previous = *State.NextToken->Previous; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 491 | |
Daniel Jasper | 92f9faf | 2013-03-20 15:58:10 +0000 | [diff] [blame] | 492 | if (State.Stack.size() == 0 || Current.Type == TT_ImplicitStringLiteral) { |
Manuel Klimek | ad3094b | 2013-05-23 10:56:37 +0000 | [diff] [blame] | 493 | // FIXME: Is this correct? |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 494 | int WhitespaceLength = SourceMgr.getSpellingColumnNumber( |
| 495 | State.NextToken->WhitespaceRange.getEnd()) - |
| 496 | SourceMgr.getSpellingColumnNumber( |
| 497 | State.NextToken->WhitespaceRange.getBegin()); |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 498 | State.Column += WhitespaceLength + State.NextToken->CodePointCount; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 499 | State.NextToken = State.NextToken->Next; |
Manuel Klimek | 8092a94 | 2013-02-20 10:15:13 +0000 | [diff] [blame] | 500 | return 0; |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 501 | } |
| 502 | |
Daniel Jasper | 3776ef3 | 2013-04-03 07:21:51 +0000 | [diff] [blame] | 503 | // If we are continuing an expression, we want to indent an extra 4 spaces. |
| 504 | unsigned ContinuationIndent = |
Daniel Jasper | 3791130 | 2013-04-02 14:33:13 +0000 | [diff] [blame] | 505 | std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) + 4; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 506 | if (Newline) { |
Manuel Klimek | bb42bf1 | 2013-01-10 11:52:21 +0000 | [diff] [blame] | 507 | if (Current.is(tok::r_brace)) { |
Manuel Klimek | 07a64ec | 2013-05-13 08:42:42 +0000 | [diff] [blame] | 508 | State.Column = Line.Level * Style.IndentWidth; |
Daniel Jasper | 9c837d0 | 2013-01-09 07:06:56 +0000 | [diff] [blame] | 509 | } else if (Current.is(tok::string_literal) && |
Manuel Klimek | b56b6d1 | 2013-02-20 15:25:48 +0000 | [diff] [blame] | 510 | State.StartOfStringLiteral != 0) { |
| 511 | State.Column = State.StartOfStringLiteral; |
Daniel Jasper | 66d19bd | 2013-02-18 11:59:17 +0000 | [diff] [blame] | 512 | State.Stack.back().BreakBeforeParameter = true; |
Daniel Jasper | 9c837d0 | 2013-01-09 07:06:56 +0000 | [diff] [blame] | 513 | } else if (Current.is(tok::lessless) && |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 514 | State.Stack.back().FirstLessLess != 0) { |
| 515 | State.Column = State.Stack.back().FirstLessLess; |
Daniel Jasper | 5ad390d | 2013-05-28 11:30:49 +0000 | [diff] [blame] | 516 | } else if (Current.isOneOf(tok::period, tok::arrow) && |
| 517 | Current.Type != TT_DesignatedInitializerPeriod) { |
Daniel Jasper | 3776ef3 | 2013-04-03 07:21:51 +0000 | [diff] [blame] | 518 | if (State.Stack.back().CallContinuation == 0) { |
| 519 | State.Column = ContinuationIndent; |
Daniel Jasper | 3791130 | 2013-04-02 14:33:13 +0000 | [diff] [blame] | 520 | State.Stack.back().CallContinuation = State.Column; |
Daniel Jasper | 3776ef3 | 2013-04-03 07:21:51 +0000 | [diff] [blame] | 521 | } else { |
| 522 | State.Column = State.Stack.back().CallContinuation; |
| 523 | } |
Daniel Jasper | bfe6fd4 | 2013-01-28 12:45:14 +0000 | [diff] [blame] | 524 | } else if (Current.Type == TT_ConditionalExpr) { |
| 525 | State.Column = State.Stack.back().QuestionColumn; |
Daniel Jasper | 8ed9f2b | 2013-04-03 13:36:17 +0000 | [diff] [blame] | 526 | } else if (Previous.is(tok::comma) && |
| 527 | State.Stack.back().VariablePos != 0) { |
| 528 | State.Column = State.Stack.back().VariablePos; |
Daniel Jasper | 3c08a81 | 2013-02-24 18:54:32 +0000 | [diff] [blame] | 529 | } else if (Previous.ClosesTemplateDeclaration || |
Daniel Jasper | 53e72cd | 2013-05-06 08:27:33 +0000 | [diff] [blame] | 530 | (Current.Type == TT_StartOfName && State.ParenLevel == 0 && |
Manuel Klimek | a9a7f10 | 2013-06-21 17:25:42 +0000 | [diff] [blame] | 531 | (!Style.IndentFunctionDeclarationAfterType || |
| 532 | Line.StartsDefinition))) { |
Daniel Jasper | 3791130 | 2013-04-02 14:33:13 +0000 | [diff] [blame] | 533 | State.Column = State.Stack.back().Indent; |
Daniel Jasper | 63d7ced | 2013-02-05 10:07:47 +0000 | [diff] [blame] | 534 | } else if (Current.Type == TT_ObjCSelectorName) { |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 535 | if (State.Stack.back().ColonPos > Current.CodePointCount) { |
| 536 | State.Column = State.Stack.back().ColonPos - Current.CodePointCount; |
Daniel Jasper | 63d7ced | 2013-02-05 10:07:47 +0000 | [diff] [blame] | 537 | } else { |
| 538 | State.Column = State.Stack.back().Indent; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 539 | State.Stack.back().ColonPos = State.Column + Current.CodePointCount; |
Daniel Jasper | 63d7ced | 2013-02-05 10:07:47 +0000 | [diff] [blame] | 540 | } |
Daniel Jasper | b2f063a | 2013-05-08 10:00:18 +0000 | [diff] [blame] | 541 | } else if (Current.Type == TT_StartOfName || |
| 542 | Previous.isOneOf(tok::coloncolon, tok::equal) || |
Daniel Jasper | 3791130 | 2013-04-02 14:33:13 +0000 | [diff] [blame] | 543 | Previous.Type == TT_ObjCMethodExpr) { |
Daniel Jasper | 3776ef3 | 2013-04-03 07:21:51 +0000 | [diff] [blame] | 544 | State.Column = ContinuationIndent; |
Daniel Jasper | a324a0e | 2012-12-21 14:37:20 +0000 | [diff] [blame] | 545 | } else { |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 546 | State.Column = State.Stack.back().Indent; |
Daniel Jasper | 3776ef3 | 2013-04-03 07:21:51 +0000 | [diff] [blame] | 547 | // Ensure that we fall back to indenting 4 spaces instead of just |
| 548 | // flushing continuations left. |
Daniel Jasper | 3791130 | 2013-04-02 14:33:13 +0000 | [diff] [blame] | 549 | if (State.Column == FirstIndent) |
| 550 | State.Column += 4; |
Daniel Jasper | a324a0e | 2012-12-21 14:37:20 +0000 | [diff] [blame] | 551 | } |
| 552 | |
Daniel Jasper | 7878a7b | 2013-02-15 11:07:25 +0000 | [diff] [blame] | 553 | if (Current.is(tok::question)) |
Daniel Jasper | 237d4c1 | 2013-02-23 21:01:55 +0000 | [diff] [blame] | 554 | State.Stack.back().BreakBeforeParameter = true; |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 555 | if ((Previous.isOneOf(tok::comma, tok::semi) && |
| 556 | !State.Stack.back().AvoidBinPacking) || |
| 557 | Previous.Type == TT_BinaryOperator) |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 558 | State.Stack.back().BreakBeforeParameter = false; |
Daniel Jasper | 33f4b90 | 2013-05-15 09:35:08 +0000 | [diff] [blame] | 559 | if (Previous.Type == TT_TemplateCloser && State.ParenLevel == 0) |
| 560 | State.Stack.back().BreakBeforeParameter = false; |
Daniel Jasper | f343cab | 2013-01-31 14:59:26 +0000 | [diff] [blame] | 561 | |
Manuel Klimek | 060143e | 2013-01-02 18:33:23 +0000 | [diff] [blame] | 562 | if (!DryRun) { |
Daniel Jasper | 1ef81d5 | 2013-02-26 13:10:34 +0000 | [diff] [blame] | 563 | unsigned NewLines = 1; |
Alexander Kornienko | e3f1197 | 2013-06-12 19:04:12 +0000 | [diff] [blame] | 564 | if (Current.is(tok::comment)) |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 565 | NewLines = std::max( |
| 566 | NewLines, |
| 567 | std::min(Current.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1)); |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 568 | Whitespaces.replaceWhitespace(Current, NewLines, State.Column, |
| 569 | State.Column, Line.InPPDirective); |
Manuel Klimek | 060143e | 2013-01-02 18:33:23 +0000 | [diff] [blame] | 570 | } |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 571 | |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 572 | State.Stack.back().LastSpace = State.Column; |
Daniel Jasper | 5ad390d | 2013-05-28 11:30:49 +0000 | [diff] [blame] | 573 | if (Current.isOneOf(tok::arrow, tok::period) && |
| 574 | Current.Type != TT_DesignatedInitializerPeriod) |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 575 | State.Stack.back().LastSpace += Current.CodePointCount; |
Daniel Jasper | cf5767d | 2013-02-18 11:05:07 +0000 | [diff] [blame] | 576 | State.StartOfLineLevel = State.ParenLevel; |
Daniel Jasper | ce912f4 | 2013-06-03 09:54:46 +0000 | [diff] [blame] | 577 | State.LowestCallLevel = State.ParenLevel; |
Daniel Jasper | 237d4c1 | 2013-02-23 21:01:55 +0000 | [diff] [blame] | 578 | |
| 579 | // Any break on this level means that the parent level has been broken |
| 580 | // and we need to avoid bin packing there. |
| 581 | for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i) { |
| 582 | State.Stack[i].BreakBeforeParameter = true; |
| 583 | } |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 584 | const FormatToken *TokenBefore = Current.getPreviousNoneComment(); |
Daniel Jasper | 01218ff | 2013-04-15 22:36:37 +0000 | [diff] [blame] | 585 | if (TokenBefore && !TokenBefore->isOneOf(tok::comma, tok::semi) && |
Daniel Jasper | 33f4b90 | 2013-05-15 09:35:08 +0000 | [diff] [blame] | 586 | TokenBefore->Type != TT_TemplateCloser && |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 587 | TokenBefore->Type != TT_BinaryOperator && !TokenBefore->opensScope()) |
Daniel Jasper | faab0d3 | 2013-02-27 09:47:53 +0000 | [diff] [blame] | 588 | State.Stack.back().BreakBeforeParameter = true; |
| 589 | |
Daniel Jasper | 237d4c1 | 2013-02-23 21:01:55 +0000 | [diff] [blame] | 590 | // If we break after {, we should also break before the corresponding }. |
| 591 | if (Previous.is(tok::l_brace)) |
| 592 | State.Stack.back().BreakBeforeClosingBrace = true; |
| 593 | |
| 594 | if (State.Stack.back().AvoidBinPacking) { |
| 595 | // If we are breaking after '(', '{', '<', this is not bin packing |
| 596 | // unless AllowAllParametersOfDeclarationOnNextLine is false. |
Daniel Jasper | d741f02 | 2013-05-14 20:39:56 +0000 | [diff] [blame] | 597 | if (!(Previous.isOneOf(tok::l_paren, tok::l_brace) || |
| 598 | Previous.Type == TT_BinaryOperator) || |
Daniel Jasper | 237d4c1 | 2013-02-23 21:01:55 +0000 | [diff] [blame] | 599 | (!Style.AllowAllParametersOfDeclarationOnNextLine && |
| 600 | Line.MustBeDeclaration)) |
| 601 | State.Stack.back().BreakBeforeParameter = true; |
| 602 | } |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 603 | } else { |
Daniel Jasper | 9c3e71a | 2013-02-25 15:59:54 +0000 | [diff] [blame] | 604 | if (Current.is(tok::equal) && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 605 | (RootToken->is(tok::kw_for) || State.ParenLevel == 0) && |
Daniel Jasper | adc0f09 | 2013-04-05 09:38:50 +0000 | [diff] [blame] | 606 | State.Stack.back().VariablePos == 0) { |
| 607 | State.Stack.back().VariablePos = State.Column; |
| 608 | // Move over * and & if they are bound to the variable name. |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 609 | const FormatToken *Tok = &Previous; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 610 | while (Tok && State.Stack.back().VariablePos >= Tok->CodePointCount) { |
| 611 | State.Stack.back().VariablePos -= Tok->CodePointCount; |
Daniel Jasper | adc0f09 | 2013-04-05 09:38:50 +0000 | [diff] [blame] | 612 | if (Tok->SpacesRequiredBefore != 0) |
| 613 | break; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 614 | Tok = Tok->Previous; |
Daniel Jasper | adc0f09 | 2013-04-05 09:38:50 +0000 | [diff] [blame] | 615 | } |
Daniel Jasper | 8ed9f2b | 2013-04-03 13:36:17 +0000 | [diff] [blame] | 616 | if (Previous.PartOfMultiVariableDeclStmt) |
| 617 | State.Stack.back().LastSpace = State.Stack.back().VariablePos; |
| 618 | } |
Daniel Jasper | a324a0e | 2012-12-21 14:37:20 +0000 | [diff] [blame] | 619 | |
Daniel Jasper | 729a743 | 2013-02-11 12:36:37 +0000 | [diff] [blame] | 620 | unsigned Spaces = State.NextToken->SpacesRequiredBefore; |
Daniel Jasper | 2040915 | 2012-12-04 14:54:30 +0000 | [diff] [blame] | 621 | |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 622 | if (!DryRun) |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 623 | Whitespaces.replaceWhitespace(Current, 0, Spaces, |
| 624 | State.Column + Spaces); |
Daniel Jasper | 2040915 | 2012-12-04 14:54:30 +0000 | [diff] [blame] | 625 | |
Daniel Jasper | 63d7ced | 2013-02-05 10:07:47 +0000 | [diff] [blame] | 626 | if (Current.Type == TT_ObjCSelectorName && |
| 627 | State.Stack.back().ColonPos == 0) { |
| 628 | if (State.Stack.back().Indent + Current.LongestObjCSelectorName > |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 629 | State.Column + Spaces + Current.CodePointCount) |
Daniel Jasper | 63d7ced | 2013-02-05 10:07:47 +0000 | [diff] [blame] | 630 | State.Stack.back().ColonPos = |
| 631 | State.Stack.back().Indent + Current.LongestObjCSelectorName; |
| 632 | else |
| 633 | State.Stack.back().ColonPos = |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 634 | State.Column + Spaces + Current.CodePointCount; |
Daniel Jasper | 63d7ced | 2013-02-05 10:07:47 +0000 | [diff] [blame] | 635 | } |
| 636 | |
Daniel Jasper | ac3223e | 2013-04-10 09:49:49 +0000 | [diff] [blame] | 637 | if (Previous.opensScope() && Previous.Type != TT_ObjCMethodExpr && |
Daniel Jasper | bf71ba2 | 2013-04-08 20:33:42 +0000 | [diff] [blame] | 638 | Current.Type != TT_LineComment) |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 639 | State.Stack.back().Indent = State.Column + Spaces; |
Daniel Jasper | 001bf4e | 2013-04-22 07:59:53 +0000 | [diff] [blame] | 640 | if (Previous.is(tok::comma) && !Current.isTrailingComment() && |
| 641 | State.Stack.back().AvoidBinPacking) |
| 642 | State.Stack.back().NoLineBreak = true; |
Daniel Jasper | 0df6acd | 2013-01-16 14:59:02 +0000 | [diff] [blame] | 643 | |
Daniel Jasper | 3b5943f | 2012-12-06 09:56:08 +0000 | [diff] [blame] | 644 | State.Column += Spaces; |
Daniel Jasper | 8ed9f2b | 2013-04-03 13:36:17 +0000 | [diff] [blame] | 645 | if (Current.is(tok::l_paren) && Previous.isOneOf(tok::kw_if, tok::kw_for)) |
Daniel Jasper | e438bac | 2013-01-23 20:41:06 +0000 | [diff] [blame] | 646 | // Treat the condition inside an if as if it was a second function |
| 647 | // parameter, i.e. let nested calls have an indent of 4. |
| 648 | State.Stack.back().LastSpace = State.Column + 1; // 1 is length of "(". |
Daniel Jasper | f9955d3 | 2013-03-20 12:37:50 +0000 | [diff] [blame] | 649 | else if (Previous.is(tok::comma)) |
Daniel Jasper | e438bac | 2013-01-23 20:41:06 +0000 | [diff] [blame] | 650 | State.Stack.back().LastSpace = State.Column; |
Daniel Jasper | bfe6fd4 | 2013-01-28 12:45:14 +0000 | [diff] [blame] | 651 | else if ((Previous.Type == TT_BinaryOperator || |
Daniel Jasper | 02b771e | 2013-01-28 13:31:35 +0000 | [diff] [blame] | 652 | Previous.Type == TT_ConditionalExpr || |
| 653 | Previous.Type == TT_CtorInitializerColon) && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 654 | !(Previous.getPrecedence() == prec::Assignment && |
Daniel Jasper | 512843a | 2013-05-27 12:45:09 +0000 | [diff] [blame] | 655 | Current.FakeLParens.empty())) |
| 656 | // Always indent relative to the RHS of the expression unless this is a |
| 657 | // simple assignment without binary expression on the RHS. |
Daniel Jasper | ae8699b | 2013-01-28 09:35:24 +0000 | [diff] [blame] | 658 | State.Stack.back().LastSpace = State.Column; |
Daniel Jasper | 6cabab4 | 2013-02-14 08:42:54 +0000 | [diff] [blame] | 659 | else if (Previous.Type == TT_InheritanceColon) |
| 660 | State.Stack.back().Indent = State.Column; |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 661 | else if (Previous.opensScope() && !Current.FakeLParens.empty()) |
| 662 | // If this function has multiple parameters or a binary expression |
| 663 | // parameter, indent nested calls from the start of the first parameter. |
Daniel Jasper | 986e17f | 2013-01-28 07:35:34 +0000 | [diff] [blame] | 664 | State.Stack.back().LastSpace = State.Column; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 665 | } |
Daniel Jasper | 0df6acd | 2013-01-16 14:59:02 +0000 | [diff] [blame] | 666 | |
Manuel Klimek | 8092a94 | 2013-02-20 10:15:13 +0000 | [diff] [blame] | 667 | return moveStateToNextToken(State, DryRun); |
Daniel Jasper | 2040915 | 2012-12-04 14:54:30 +0000 | [diff] [blame] | 668 | } |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 669 | |
Daniel Jasper | 2040915 | 2012-12-04 14:54:30 +0000 | [diff] [blame] | 670 | /// \brief Mark the next token as consumed in \p State and modify its stacks |
| 671 | /// accordingly. |
Manuel Klimek | 8092a94 | 2013-02-20 10:15:13 +0000 | [diff] [blame] | 672 | unsigned moveStateToNextToken(LineState &State, bool DryRun) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 673 | const FormatToken &Current = *State.NextToken; |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 674 | assert(State.Stack.size()); |
Daniel Jasper | 3b5943f | 2012-12-06 09:56:08 +0000 | [diff] [blame] | 675 | |
Daniel Jasper | 6cabab4 | 2013-02-14 08:42:54 +0000 | [diff] [blame] | 676 | if (Current.Type == TT_InheritanceColon) |
| 677 | State.Stack.back().AvoidBinPacking = true; |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 678 | if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0) |
| 679 | State.Stack.back().FirstLessLess = State.Column; |
Daniel Jasper | bfe6fd4 | 2013-01-28 12:45:14 +0000 | [diff] [blame] | 680 | if (Current.is(tok::question)) |
| 681 | State.Stack.back().QuestionColumn = State.Column; |
Daniel Jasper | ce912f4 | 2013-06-03 09:54:46 +0000 | [diff] [blame] | 682 | if (Current.isOneOf(tok::period, tok::arrow)) { |
| 683 | State.LowestCallLevel = std::min(State.LowestCallLevel, State.ParenLevel); |
| 684 | if (Line.Type == LT_BuilderTypeCall && State.ParenLevel == 0) |
| 685 | State.Stack.back().StartOfFunctionCall = |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 686 | Current.LastInChainOfCalls ? 0 |
| 687 | : State.Column + Current.CodePointCount; |
Daniel Jasper | ce912f4 | 2013-06-03 09:54:46 +0000 | [diff] [blame] | 688 | } |
Daniel Jasper | 7d81281 | 2013-02-21 15:00:29 +0000 | [diff] [blame] | 689 | if (Current.Type == TT_CtorInitializerColon) { |
Manuel Klimek | 07a64ec | 2013-05-13 08:42:42 +0000 | [diff] [blame] | 690 | // Indent 2 from the column, so: |
| 691 | // SomeClass::SomeClass() |
| 692 | // : First(...), ... |
| 693 | // Next(...) |
| 694 | // ^ line up here. |
Daniel Jasper | bf71ba2 | 2013-04-08 20:33:42 +0000 | [diff] [blame] | 695 | State.Stack.back().Indent = State.Column + 2; |
Daniel Jasper | 7d81281 | 2013-02-21 15:00:29 +0000 | [diff] [blame] | 696 | if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine) |
| 697 | State.Stack.back().AvoidBinPacking = true; |
| 698 | State.Stack.back().BreakBeforeParameter = false; |
Daniel Jasper | f343cab | 2013-01-31 14:59:26 +0000 | [diff] [blame] | 699 | } |
Daniel Jasper | 3776ef3 | 2013-04-03 07:21:51 +0000 | [diff] [blame] | 700 | |
Daniel Jasper | bf71ba2 | 2013-04-08 20:33:42 +0000 | [diff] [blame] | 701 | // If return returns a binary expression, align after it. |
| 702 | if (Current.is(tok::kw_return) && !Current.FakeLParens.empty()) |
| 703 | State.Stack.back().LastSpace = State.Column + 7; |
| 704 | |
Daniel Jasper | 3776ef3 | 2013-04-03 07:21:51 +0000 | [diff] [blame] | 705 | // In ObjC method declaration we align on the ":" of parameters, but we need |
| 706 | // to ensure that we indent parameters on subsequent lines by at least 4. |
Daniel Jasper | 3791130 | 2013-04-02 14:33:13 +0000 | [diff] [blame] | 707 | if (Current.Type == TT_ObjCMethodSpecifier) |
| 708 | State.Stack.back().Indent += 4; |
Daniel Jasper | 3b5943f | 2012-12-06 09:56:08 +0000 | [diff] [blame] | 709 | |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 710 | // Insert scopes created by fake parenthesis. |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 711 | const FormatToken *Previous = Current.getPreviousNoneComment(); |
Daniel Jasper | bf71ba2 | 2013-04-08 20:33:42 +0000 | [diff] [blame] | 712 | // Don't add extra indentation for the first fake parenthesis after |
| 713 | // 'return', assignements or opening <({[. The indentation for these cases |
| 714 | // is special cased. |
| 715 | bool SkipFirstExtraIndent = |
| 716 | Current.is(tok::kw_return) || |
Daniel Jasper | ac3223e | 2013-04-10 09:49:49 +0000 | [diff] [blame] | 717 | (Previous && (Previous->opensScope() || |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 718 | Previous->getPrecedence() == prec::Assignment)); |
Daniel Jasper | bf71ba2 | 2013-04-08 20:33:42 +0000 | [diff] [blame] | 719 | for (SmallVector<prec::Level, 4>::const_reverse_iterator |
| 720 | I = Current.FakeLParens.rbegin(), |
| 721 | E = Current.FakeLParens.rend(); |
| 722 | I != E; ++I) { |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 723 | ParenState NewParenState = State.Stack.back(); |
Daniel Jasper | c3df5ff | 2013-05-13 09:19:24 +0000 | [diff] [blame] | 724 | NewParenState.ForFakeParenthesis = true; |
Daniel Jasper | bf71ba2 | 2013-04-08 20:33:42 +0000 | [diff] [blame] | 725 | NewParenState.Indent = |
| 726 | std::max(std::max(State.Column, NewParenState.Indent), |
| 727 | State.Stack.back().LastSpace); |
| 728 | |
| 729 | // Always indent conditional expressions. Never indent expression where |
| 730 | // the 'operator' is ',', ';' or an assignment (i.e. *I <= |
| 731 | // prec::Assignment) as those have different indentation rules. Indent |
| 732 | // other expression, unless the indentation needs to be skipped. |
| 733 | if (*I == prec::Conditional || |
| 734 | (!SkipFirstExtraIndent && *I > prec::Assignment)) |
| 735 | NewParenState.Indent += 4; |
Daniel Jasper | ac3223e | 2013-04-10 09:49:49 +0000 | [diff] [blame] | 736 | if (Previous && !Previous->opensScope()) |
Daniel Jasper | bf71ba2 | 2013-04-08 20:33:42 +0000 | [diff] [blame] | 737 | NewParenState.BreakBeforeParameter = false; |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 738 | State.Stack.push_back(NewParenState); |
Daniel Jasper | bf71ba2 | 2013-04-08 20:33:42 +0000 | [diff] [blame] | 739 | SkipFirstExtraIndent = false; |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 740 | } |
| 741 | |
Daniel Jasper | cf225b6 | 2012-12-24 13:43:52 +0000 | [diff] [blame] | 742 | // If we encounter an opening (, [, { or <, we add a level to our stacks to |
Daniel Jasper | 2040915 | 2012-12-04 14:54:30 +0000 | [diff] [blame] | 743 | // prepare for the following tokens. |
Daniel Jasper | ac3223e | 2013-04-10 09:49:49 +0000 | [diff] [blame] | 744 | if (Current.opensScope()) { |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 745 | unsigned NewIndent; |
Daniel Jasper | c3df5ff | 2013-05-13 09:19:24 +0000 | [diff] [blame] | 746 | unsigned LastSpace = State.Stack.back().LastSpace; |
Daniel Jasper | f343cab | 2013-01-31 14:59:26 +0000 | [diff] [blame] | 747 | bool AvoidBinPacking; |
Manuel Klimek | 2851c16 | 2013-01-10 14:36:46 +0000 | [diff] [blame] | 748 | if (Current.is(tok::l_brace)) { |
Daniel Jasper | c3df5ff | 2013-05-13 09:19:24 +0000 | [diff] [blame] | 749 | NewIndent = Style.IndentWidth + LastSpace; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 750 | const FormatToken *NextNoComment = Current.getNextNoneComment(); |
Daniel Jasper | 5ad390d | 2013-05-28 11:30:49 +0000 | [diff] [blame] | 751 | AvoidBinPacking = NextNoComment && |
| 752 | NextNoComment->Type == TT_DesignatedInitializerPeriod; |
Manuel Klimek | 2851c16 | 2013-01-10 14:36:46 +0000 | [diff] [blame] | 753 | } else { |
Daniel Jasper | c3df5ff | 2013-05-13 09:19:24 +0000 | [diff] [blame] | 754 | NewIndent = |
| 755 | 4 + std::max(LastSpace, State.Stack.back().StartOfFunctionCall); |
Daniel Jasper | 001bf4e | 2013-04-22 07:59:53 +0000 | [diff] [blame] | 756 | AvoidBinPacking = !Style.BinPackParameters; |
Manuel Klimek | 2851c16 | 2013-01-10 14:36:46 +0000 | [diff] [blame] | 757 | } |
Daniel Jasper | fca24bc | 2013-04-25 13:31:51 +0000 | [diff] [blame] | 758 | |
Daniel Jasper | c3df5ff | 2013-05-13 09:19:24 +0000 | [diff] [blame] | 759 | State.Stack.push_back(ParenState(NewIndent, LastSpace, AvoidBinPacking, |
| 760 | State.Stack.back().NoLineBreak)); |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 761 | ++State.ParenLevel; |
Daniel Jasper | 2040915 | 2012-12-04 14:54:30 +0000 | [diff] [blame] | 762 | } |
| 763 | |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 764 | // If this '[' opens an ObjC call, determine whether all parameters fit into |
| 765 | // one line and put one per line if they don't. |
| 766 | if (Current.is(tok::l_square) && Current.Type == TT_ObjCMethodExpr && |
| 767 | Current.MatchingParen != NULL) { |
| 768 | if (getLengthToMatchingParen(Current) + State.Column > getColumnLimit()) |
| 769 | State.Stack.back().BreakBeforeParameter = true; |
| 770 | } |
| 771 | |
Daniel Jasper | cf225b6 | 2012-12-24 13:43:52 +0000 | [diff] [blame] | 772 | // If we encounter a closing ), ], } or >, we can remove a level from our |
Daniel Jasper | 2040915 | 2012-12-04 14:54:30 +0000 | [diff] [blame] | 773 | // stacks. |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 774 | if (Current.isOneOf(tok::r_paren, tok::r_square) || |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 775 | (Current.is(tok::r_brace) && State.NextToken != RootToken) || |
Daniel Jasper | 26f7e78 | 2013-01-08 14:56:18 +0000 | [diff] [blame] | 776 | State.NextToken->Type == TT_TemplateCloser) { |
Daniel Jasper | 604eb4c | 2013-01-11 10:22:12 +0000 | [diff] [blame] | 777 | State.Stack.pop_back(); |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 778 | --State.ParenLevel; |
| 779 | } |
| 780 | |
| 781 | // Remove scopes created by fake parenthesis. |
| 782 | for (unsigned i = 0, e = Current.FakeRParens; i != e; ++i) { |
Daniel Jasper | abfc9c1 | 2013-04-04 19:31:00 +0000 | [diff] [blame] | 783 | unsigned VariablePos = State.Stack.back().VariablePos; |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 784 | State.Stack.pop_back(); |
Daniel Jasper | abfc9c1 | 2013-04-04 19:31:00 +0000 | [diff] [blame] | 785 | State.Stack.back().VariablePos = VariablePos; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 786 | } |
Manuel Klimek | 2851c16 | 2013-01-10 14:36:46 +0000 | [diff] [blame] | 787 | |
Daniel Jasper | 27c7f54 | 2013-05-13 20:50:15 +0000 | [diff] [blame] | 788 | if (Current.is(tok::string_literal) && State.StartOfStringLiteral == 0) { |
Manuel Klimek | b56b6d1 | 2013-02-20 15:25:48 +0000 | [diff] [blame] | 789 | State.StartOfStringLiteral = State.Column; |
Daniel Jasper | 27c7f54 | 2013-05-13 20:50:15 +0000 | [diff] [blame] | 790 | } else if (!Current.isOneOf(tok::comment, tok::identifier, tok::hash, |
| 791 | tok::string_literal)) { |
Daniel Jasper | 9a2f8d0 | 2013-05-16 04:26:02 +0000 | [diff] [blame] | 792 | State.StartOfStringLiteral = 0; |
Manuel Klimek | b56b6d1 | 2013-02-20 15:25:48 +0000 | [diff] [blame] | 793 | } |
| 794 | |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 795 | State.Column += Current.CodePointCount; |
Manuel Klimek | 8092a94 | 2013-02-20 10:15:13 +0000 | [diff] [blame] | 796 | |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 797 | State.NextToken = State.NextToken->Next; |
Manuel Klimek | 2851c16 | 2013-01-10 14:36:46 +0000 | [diff] [blame] | 798 | |
Manuel Klimek | 8092a94 | 2013-02-20 10:15:13 +0000 | [diff] [blame] | 799 | return breakProtrudingToken(Current, State, DryRun); |
| 800 | } |
| 801 | |
| 802 | /// \brief If the current token sticks out over the end of the line, break |
| 803 | /// it if possible. |
Manuel Klimek | 2a9805d | 2013-05-14 09:04:24 +0000 | [diff] [blame] | 804 | /// |
| 805 | /// \returns An extra penalty if a token was broken, otherwise 0. |
| 806 | /// |
| 807 | /// Note that the penalty of the token protruding the allowed line length is |
| 808 | /// already handled in \c addNextStateToQueue; the returned penalty will only |
| 809 | /// cover the cost of the additional line breaks. |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 810 | unsigned breakProtrudingToken(const FormatToken &Current, LineState &State, |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 811 | bool DryRun) { |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 812 | llvm::OwningPtr<BreakableToken> Token; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 813 | unsigned StartColumn = State.Column - Current.CodePointCount; |
Manuel Klimek | dcb3f2a | 2013-05-28 13:42:28 +0000 | [diff] [blame] | 814 | unsigned OriginalStartColumn = |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 815 | SourceMgr.getSpellingColumnNumber(Current.getStartOfNonWhitespace()) - |
Manuel Klimek | dcb3f2a | 2013-05-28 13:42:28 +0000 | [diff] [blame] | 816 | 1; |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 817 | |
Daniel Jasper | 5d5b424 | 2013-05-16 12:59:13 +0000 | [diff] [blame] | 818 | if (Current.is(tok::string_literal) && |
| 819 | Current.Type != TT_ImplicitStringLiteral) { |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 820 | // Only break up default narrow strings. |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 821 | if (!Current.TokenText.startswith("\"")) |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 822 | return 0; |
| 823 | |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 824 | Token.reset(new BreakableStringLiteral(Current, StartColumn, |
| 825 | Line.InPPDirective, Encoding)); |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 826 | } else if (Current.Type == TT_BlockComment) { |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 827 | Token.reset(new BreakableBlockComment( |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 828 | Style, Current, StartColumn, OriginalStartColumn, !Current.Previous, |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 829 | Line.InPPDirective, Encoding)); |
Daniel Jasper | 7ff96ed | 2013-05-06 10:24:51 +0000 | [diff] [blame] | 830 | } else if (Current.Type == TT_LineComment && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 831 | (Current.Previous == NULL || |
| 832 | Current.Previous->Type != TT_ImplicitStringLiteral)) { |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 833 | Token.reset(new BreakableLineComment(Current, StartColumn, |
| 834 | Line.InPPDirective, Encoding)); |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 835 | } else { |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 836 | return 0; |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 837 | } |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 838 | if (Current.UnbreakableTailLength >= getColumnLimit()) |
Manuel Klimek | 2a9805d | 2013-05-14 09:04:24 +0000 | [diff] [blame] | 839 | return 0; |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 840 | |
Alexander Kornienko | c36c5c2 | 2013-06-19 19:50:11 +0000 | [diff] [blame] | 841 | unsigned RemainingSpace = getColumnLimit() - Current.UnbreakableTailLength; |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 842 | bool BreakInserted = false; |
| 843 | unsigned Penalty = 0; |
Alexander Kornienko | c36c5c2 | 2013-06-19 19:50:11 +0000 | [diff] [blame] | 844 | unsigned RemainingTokenColumns = 0; |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 845 | for (unsigned LineIndex = 0, EndIndex = Token->getLineCount(); |
| 846 | LineIndex != EndIndex; ++LineIndex) { |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 847 | if (!DryRun) |
| 848 | Token->replaceWhitespaceBefore(LineIndex, Whitespaces); |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 849 | unsigned TailOffset = 0; |
Alexander Kornienko | c36c5c2 | 2013-06-19 19:50:11 +0000 | [diff] [blame] | 850 | RemainingTokenColumns = Token->getLineLengthAfterSplit( |
Alexander Kornienko | 2785b9a | 2013-06-07 16:02:52 +0000 | [diff] [blame] | 851 | LineIndex, TailOffset, StringRef::npos); |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 852 | while (RemainingTokenColumns > RemainingSpace) { |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 853 | BreakableToken::Split Split = |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 854 | Token->getSplit(LineIndex, TailOffset, getColumnLimit()); |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 855 | if (Split.first == StringRef::npos) |
| 856 | break; |
| 857 | assert(Split.first != 0); |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 858 | unsigned NewRemainingTokenColumns = Token->getLineLengthAfterSplit( |
Alexander Kornienko | 2785b9a | 2013-06-07 16:02:52 +0000 | [diff] [blame] | 859 | LineIndex, TailOffset + Split.first + Split.second, |
| 860 | StringRef::npos); |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 861 | assert(NewRemainingTokenColumns < RemainingTokenColumns); |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 862 | if (!DryRun) |
| 863 | Token->insertBreak(LineIndex, TailOffset, Split, Whitespaces); |
Alexander Kornienko | 2785b9a | 2013-06-07 16:02:52 +0000 | [diff] [blame] | 864 | Penalty += Current.is(tok::string_literal) ? Style.PenaltyBreakString |
| 865 | : Style.PenaltyBreakComment; |
| 866 | unsigned ColumnsUsed = |
| 867 | Token->getLineLengthAfterSplit(LineIndex, TailOffset, Split.first); |
| 868 | if (ColumnsUsed > getColumnLimit()) { |
| 869 | Penalty += |
| 870 | Style.PenaltyExcessCharacter * (ColumnsUsed - getColumnLimit()); |
| 871 | } |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 872 | TailOffset += Split.first + Split.second; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 873 | RemainingTokenColumns = NewRemainingTokenColumns; |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 874 | BreakInserted = true; |
Manuel Klimek | 8092a94 | 2013-02-20 10:15:13 +0000 | [diff] [blame] | 875 | } |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 876 | } |
| 877 | |
Alexander Kornienko | c36c5c2 | 2013-06-19 19:50:11 +0000 | [diff] [blame] | 878 | State.Column = RemainingTokenColumns; |
| 879 | |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 880 | if (BreakInserted) { |
Alexander Kornienko | 22d0e29 | 2013-06-17 12:59:44 +0000 | [diff] [blame] | 881 | // If we break the token inside a parameter list, we need to break before |
| 882 | // the next parameter on all levels, so that the next parameter is clearly |
| 883 | // visible. Line comments already introduce a break. |
| 884 | if (Current.Type != TT_LineComment) { |
| 885 | for (unsigned i = 0, e = State.Stack.size(); i != e; ++i) |
| 886 | State.Stack[i].BreakBeforeParameter = true; |
| 887 | } |
| 888 | |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 889 | State.Stack.back().LastSpace = StartColumn; |
Manuel Klimek | 8092a94 | 2013-02-20 10:15:13 +0000 | [diff] [blame] | 890 | } |
Manuel Klimek | 8092a94 | 2013-02-20 10:15:13 +0000 | [diff] [blame] | 891 | return Penalty; |
| 892 | } |
| 893 | |
Daniel Jasper | ceb99ab | 2013-01-09 10:16:05 +0000 | [diff] [blame] | 894 | unsigned getColumnLimit() { |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 895 | // In preprocessor directives reserve two chars for trailing " \" |
| 896 | return Style.ColumnLimit - (Line.InPPDirective ? 2 : 0); |
Daniel Jasper | ceb99ab | 2013-01-09 10:16:05 +0000 | [diff] [blame] | 897 | } |
| 898 | |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 899 | /// \brief An edge in the solution space from \c Previous->State to \c State, |
| 900 | /// inserting a newline dependent on the \c NewLine. |
| 901 | struct StateNode { |
| 902 | StateNode(const LineState &State, bool NewLine, StateNode *Previous) |
Daniel Jasper | f11a705 | 2013-02-21 21:33:55 +0000 | [diff] [blame] | 903 | : State(State), NewLine(NewLine), Previous(Previous) {} |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 904 | LineState State; |
| 905 | bool NewLine; |
| 906 | StateNode *Previous; |
| 907 | }; |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 908 | |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 909 | /// \brief A pair of <penalty, count> that is used to prioritize the BFS on. |
| 910 | /// |
| 911 | /// In case of equal penalties, we want to prefer states that were inserted |
| 912 | /// first. During state generation we make sure that we insert states first |
| 913 | /// that break the line as late as possible. |
| 914 | typedef std::pair<unsigned, unsigned> OrderedPenalty; |
| 915 | |
| 916 | /// \brief An item in the prioritized BFS search queue. The \c StateNode's |
| 917 | /// \c State has the given \c OrderedPenalty. |
| 918 | typedef std::pair<OrderedPenalty, StateNode *> QueueItem; |
| 919 | |
| 920 | /// \brief The BFS queue type. |
| 921 | typedef std::priority_queue<QueueItem, std::vector<QueueItem>, |
| 922 | std::greater<QueueItem> > QueueType; |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 923 | |
| 924 | /// \brief Analyze the entire solution space starting from \p InitialState. |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 925 | /// |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 926 | /// This implements a variant of Dijkstra's algorithm on the graph that spans |
| 927 | /// the solution space (\c LineStates are the nodes). The algorithm tries to |
| 928 | /// find the shortest path (the one with lowest penalty) from \p InitialState |
| 929 | /// to a state where all tokens are placed. |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 930 | void analyzeSolutionSpace(LineState &InitialState) { |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 931 | std::set<LineState> Seen; |
| 932 | |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 933 | // Insert start element into queue. |
Daniel Jasper | fc75908 | 2013-02-14 14:26:07 +0000 | [diff] [blame] | 934 | StateNode *Node = |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 935 | new (Allocator.Allocate()) StateNode(InitialState, false, NULL); |
| 936 | Queue.push(QueueItem(OrderedPenalty(0, Count), Node)); |
| 937 | ++Count; |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 938 | |
| 939 | // While not empty, take first element and follow edges. |
| 940 | while (!Queue.empty()) { |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 941 | unsigned Penalty = Queue.top().first.first; |
Daniel Jasper | fc75908 | 2013-02-14 14:26:07 +0000 | [diff] [blame] | 942 | StateNode *Node = Queue.top().second; |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 943 | if (Node->State.NextToken == NULL) { |
Alexander Kornienko | dd25631 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 944 | DEBUG(llvm::dbgs() << "\n---\nPenalty for line: " << Penalty << "\n"); |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 945 | break; |
Daniel Jasper | 0178673 | 2013-02-04 07:21:18 +0000 | [diff] [blame] | 946 | } |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 947 | Queue.pop(); |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 948 | |
Daniel Jasper | 54b4e44 | 2013-05-22 05:27:42 +0000 | [diff] [blame] | 949 | // Cut off the analysis of certain solutions if the analysis gets too |
| 950 | // complex. See description of IgnoreStackForComparison. |
| 951 | if (Count > 10000) |
| 952 | Node->State.IgnoreStackForComparison = true; |
| 953 | |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 954 | if (!Seen.insert(Node->State).second) |
| 955 | // State already examined with lower penalty. |
| 956 | continue; |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 957 | |
Nico Weber | 2726877 | 2013-06-26 00:30:14 +0000 | [diff] [blame] | 958 | addNextStateToQueue(Penalty, Node, /*NewLine=*/false); |
| 959 | addNextStateToQueue(Penalty, Node, /*NewLine=*/true); |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | if (Queue.empty()) |
| 963 | // We were unable to find a solution, do nothing. |
| 964 | // FIXME: Add diagnostic? |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 965 | return; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 966 | |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 967 | // Reconstruct the solution. |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 968 | reconstructPath(InitialState, Queue.top().second); |
Alexander Kornienko | dd25631 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 969 | DEBUG(llvm::dbgs() << "Total number of analyzed states: " << Count << "\n"); |
| 970 | DEBUG(llvm::dbgs() << "---\n"); |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 971 | } |
| 972 | |
| 973 | void reconstructPath(LineState &State, StateNode *Current) { |
Manuel Klimek | 9c333b9 | 2013-05-29 15:10:11 +0000 | [diff] [blame] | 974 | std::deque<StateNode *> Path; |
| 975 | // We do not need a break before the initial token. |
| 976 | while (Current->Previous) { |
| 977 | Path.push_front(Current); |
| 978 | Current = Current->Previous; |
| 979 | } |
| 980 | for (std::deque<StateNode *>::iterator I = Path.begin(), E = Path.end(); |
| 981 | I != E; ++I) { |
| 982 | DEBUG({ |
| 983 | if ((*I)->NewLine) { |
| 984 | llvm::dbgs() << "Penalty for splitting before " |
| 985 | << (*I)->Previous->State.NextToken->Tok.getName() << ": " |
| 986 | << (*I)->Previous->State.NextToken->SplitPenalty << "\n"; |
| 987 | } |
| 988 | }); |
| 989 | addTokenToState((*I)->NewLine, false, State); |
| 990 | } |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 991 | } |
| 992 | |
Manuel Klimek | 62a48fb | 2013-02-13 10:54:19 +0000 | [diff] [blame] | 993 | /// \brief Add the following state to the analysis queue \c Queue. |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 994 | /// |
Manuel Klimek | 62a48fb | 2013-02-13 10:54:19 +0000 | [diff] [blame] | 995 | /// Assume the current state is \p PreviousNode and has been reached with a |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 996 | /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true. |
Manuel Klimek | 62a48fb | 2013-02-13 10:54:19 +0000 | [diff] [blame] | 997 | void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode, |
| 998 | bool NewLine) { |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 999 | if (NewLine && !canBreak(PreviousNode->State)) |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1000 | return; |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 1001 | if (!NewLine && mustBreak(PreviousNode->State)) |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1002 | return; |
Daniel Jasper | ae8699b | 2013-01-28 09:35:24 +0000 | [diff] [blame] | 1003 | if (NewLine) |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 1004 | Penalty += PreviousNode->State.NextToken->SplitPenalty; |
| 1005 | |
| 1006 | StateNode *Node = new (Allocator.Allocate()) |
| 1007 | StateNode(PreviousNode->State, NewLine, PreviousNode); |
Manuel Klimek | 8092a94 | 2013-02-20 10:15:13 +0000 | [diff] [blame] | 1008 | Penalty += addTokenToState(NewLine, true, Node->State); |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 1009 | if (Node->State.Column > getColumnLimit()) { |
| 1010 | unsigned ExcessCharacters = Node->State.Column - getColumnLimit(); |
Daniel Jasper | 0178673 | 2013-02-04 07:21:18 +0000 | [diff] [blame] | 1011 | Penalty += Style.PenaltyExcessCharacter * ExcessCharacters; |
Daniel Jasper | ceb99ab | 2013-01-09 10:16:05 +0000 | [diff] [blame] | 1012 | } |
Manuel Klimek | 32a2fd7 | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 1013 | |
| 1014 | Queue.push(QueueItem(OrderedPenalty(Penalty, Count), Node)); |
| 1015 | ++Count; |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1016 | } |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1017 | |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1018 | /// \brief Returns \c true, if a line break after \p State is allowed. |
| 1019 | bool canBreak(const LineState &State) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1020 | const FormatToken &Current = *State.NextToken; |
| 1021 | const FormatToken &Previous = *Current.Previous; |
| 1022 | assert(&Previous == Current.Previous); |
Daniel Jasper | 399914b | 2013-05-17 09:35:01 +0000 | [diff] [blame] | 1023 | if (!Current.CanBreakBefore && |
| 1024 | !(Current.is(tok::r_brace) && |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1025 | State.Stack.back().BreakBeforeClosingBrace)) |
| 1026 | return false; |
Daniel Jasper | 399914b | 2013-05-17 09:35:01 +0000 | [diff] [blame] | 1027 | // The opening "{" of a braced list has to be on the same line as the first |
| 1028 | // element if it is nested in another braced init list or function call. |
| 1029 | if (!Current.MustBreakBefore && Previous.is(tok::l_brace) && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1030 | Previous.Previous && |
| 1031 | Previous.Previous->isOneOf(tok::l_brace, tok::l_paren, tok::comma)) |
Daniel Jasper | 399914b | 2013-05-17 09:35:01 +0000 | [diff] [blame] | 1032 | return false; |
Daniel Jasper | 259a038 | 2013-05-27 11:50:16 +0000 | [diff] [blame] | 1033 | // This prevents breaks like: |
| 1034 | // ... |
| 1035 | // SomeParameter, OtherParameter).DoSomething( |
| 1036 | // ... |
| 1037 | // As they hide "DoSomething" and are generally bad for readability. |
Daniel Jasper | ce912f4 | 2013-06-03 09:54:46 +0000 | [diff] [blame] | 1038 | if (Previous.opensScope() && State.LowestCallLevel < State.StartOfLineLevel) |
Daniel Jasper | 259a038 | 2013-05-27 11:50:16 +0000 | [diff] [blame] | 1039 | return false; |
Daniel Jasper | 001bf4e | 2013-04-22 07:59:53 +0000 | [diff] [blame] | 1040 | return !State.Stack.back().NoLineBreak; |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1041 | } |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1042 | |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1043 | /// \brief Returns \c true, if a line break after \p State is mandatory. |
| 1044 | bool mustBreak(const LineState &State) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1045 | const FormatToken &Current = *State.NextToken; |
| 1046 | const FormatToken &Previous = *Current.Previous; |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 1047 | if (Current.MustBreakBefore || Current.Type == TT_InlineASMColon) |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1048 | return true; |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 1049 | if (Current.is(tok::r_brace) && State.Stack.back().BreakBeforeClosingBrace) |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1050 | return true; |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 1051 | if (Previous.is(tok::semi) && State.LineContainsContinuedForLoopSection) |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1052 | return true; |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 1053 | if ((Previous.isOneOf(tok::comma, tok::semi) || Current.is(tok::question) || |
| 1054 | Current.Type == TT_ConditionalExpr) && |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 1055 | State.Stack.back().BreakBeforeParameter && |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 1056 | !Current.isTrailingComment() && |
| 1057 | !Current.isOneOf(tok::r_paren, tok::r_brace)) |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1058 | return true; |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 1059 | |
| 1060 | // If we need to break somewhere inside the LHS of a binary expression, we |
| 1061 | // should also break after the operator. |
| 1062 | if (Previous.Type == TT_BinaryOperator && |
Daniel Jasper | 69c4371 | 2013-05-28 07:42:44 +0000 | [diff] [blame] | 1063 | Current.Type != TT_BinaryOperator && // Special case for ">>". |
Daniel Jasper | 5ef8aac | 2013-06-03 08:42:05 +0000 | [diff] [blame] | 1064 | !Current.isTrailingComment() && |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 1065 | !Previous.isOneOf(tok::lessless, tok::question) && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1066 | Previous.getPrecedence() != prec::Assignment && |
Daniel Jasper | ce3d1a6 | 2013-02-08 08:22:00 +0000 | [diff] [blame] | 1067 | State.Stack.back().BreakBeforeParameter) |
Daniel Jasper | 63d7ced | 2013-02-05 10:07:47 +0000 | [diff] [blame] | 1068 | return true; |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 1069 | |
| 1070 | // FIXME: Comparing LongestObjCSelectorName to 0 is a hacky way of finding |
| 1071 | // out whether it is the first parameter. Clean this up. |
| 1072 | if (Current.Type == TT_ObjCSelectorName && |
| 1073 | Current.LongestObjCSelectorName == 0 && |
| 1074 | State.Stack.back().BreakBeforeParameter) |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1075 | return true; |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 1076 | if ((Current.Type == TT_CtorInitializerColon || |
| 1077 | (Previous.ClosesTemplateDeclaration && State.ParenLevel == 0))) |
Daniel Jasper | 923ebef | 2013-03-14 13:45:21 +0000 | [diff] [blame] | 1078 | return true; |
Daniel Jasper | 11e1380 | 2013-05-08 14:12:04 +0000 | [diff] [blame] | 1079 | |
Daniel Jasper | 33f4b90 | 2013-05-15 09:35:08 +0000 | [diff] [blame] | 1080 | if (Current.Type == TT_StartOfName && Line.MightBeFunctionDecl && |
| 1081 | State.Stack.back().BreakBeforeParameter && State.ParenLevel == 0) |
| 1082 | return true; |
Daniel Jasper | 68ef0df | 2013-02-01 11:00:45 +0000 | [diff] [blame] | 1083 | return false; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1084 | } |
| 1085 | |
Daniel Jasper | 3af59ce | 2013-03-15 14:57:30 +0000 | [diff] [blame] | 1086 | // Returns the total number of columns required for the remaining tokens. |
| 1087 | unsigned getRemainingLength(const LineState &State) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1088 | if (State.NextToken && State.NextToken->Previous) |
| 1089 | return Line.Last->TotalLength - State.NextToken->Previous->TotalLength; |
Daniel Jasper | 3af59ce | 2013-03-15 14:57:30 +0000 | [diff] [blame] | 1090 | return 0; |
| 1091 | } |
| 1092 | |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1093 | FormatStyle Style; |
| 1094 | SourceManager &SourceMgr; |
Daniel Jasper | 995e820 | 2013-01-14 13:08:07 +0000 | [diff] [blame] | 1095 | const AnnotatedLine &Line; |
Manuel Klimek | 3f8c7f3 | 2013-01-10 18:45:26 +0000 | [diff] [blame] | 1096 | const unsigned FirstIndent; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1097 | const FormatToken *RootToken; |
Daniel Jasper | dcc2a62 | 2013-01-18 08:44:07 +0000 | [diff] [blame] | 1098 | WhitespaceManager &Whitespaces; |
Manuel Klimek | 62a48fb | 2013-02-13 10:54:19 +0000 | [diff] [blame] | 1099 | |
| 1100 | llvm::SpecificBumpPtrAllocator<StateNode> Allocator; |
| 1101 | QueueType Queue; |
| 1102 | // Increasing count of \c StateNode items we have created. This is used |
| 1103 | // to create a deterministic order independent of the container. |
| 1104 | unsigned Count; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1105 | encoding::Encoding Encoding; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1106 | }; |
| 1107 | |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1108 | class FormatTokenLexer { |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1109 | public: |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1110 | FormatTokenLexer(Lexer &Lex, SourceManager &SourceMgr, |
| 1111 | encoding::Encoding Encoding) |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1112 | : FormatTok(NULL), GreaterStashed(false), TrailingWhitespace(0), Lex(Lex), |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1113 | SourceMgr(SourceMgr), IdentTable(Lex.getLangOpts()), |
| 1114 | Encoding(Encoding) { |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1115 | Lex.SetKeepWhitespaceMode(true); |
| 1116 | } |
| 1117 | |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1118 | ArrayRef<FormatToken *> lex() { |
| 1119 | assert(Tokens.empty()); |
| 1120 | do { |
| 1121 | Tokens.push_back(getNextToken()); |
| 1122 | } while (Tokens.back()->Tok.isNot(tok::eof)); |
| 1123 | return Tokens; |
| 1124 | } |
| 1125 | |
| 1126 | IdentifierTable &getIdentTable() { return IdentTable; } |
| 1127 | |
| 1128 | private: |
| 1129 | FormatToken *getNextToken() { |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1130 | if (GreaterStashed) { |
Manuel Klimek | dcb3f2a | 2013-05-28 13:42:28 +0000 | [diff] [blame] | 1131 | // Create a synthesized second '>' token. |
| 1132 | Token Greater = FormatTok->Tok; |
| 1133 | FormatTok = new (Allocator.Allocate()) FormatToken; |
| 1134 | FormatTok->Tok = Greater; |
Manuel Klimek | ad3094b | 2013-05-23 10:56:37 +0000 | [diff] [blame] | 1135 | SourceLocation GreaterLocation = |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1136 | FormatTok->Tok.getLocation().getLocWithOffset(1); |
| 1137 | FormatTok->WhitespaceRange = |
| 1138 | SourceRange(GreaterLocation, GreaterLocation); |
Alexander Kornienko | 54e6c9d | 2013-06-07 17:45:07 +0000 | [diff] [blame] | 1139 | FormatTok->TokenText = ">"; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1140 | FormatTok->CodePointCount = 1; |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1141 | GreaterStashed = false; |
| 1142 | return FormatTok; |
| 1143 | } |
| 1144 | |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1145 | FormatTok = new (Allocator.Allocate()) FormatToken; |
| 1146 | Lex.LexFromRawLexer(FormatTok->Tok); |
| 1147 | StringRef Text = rawTokenText(FormatTok->Tok); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 1148 | SourceLocation WhitespaceStart = |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1149 | FormatTok->Tok.getLocation().getLocWithOffset(-TrailingWhitespace); |
Manuel Klimek | ad3094b | 2013-05-23 10:56:37 +0000 | [diff] [blame] | 1150 | if (SourceMgr.getFileOffset(WhitespaceStart) == 0) |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1151 | FormatTok->IsFirst = true; |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1152 | |
| 1153 | // Consume and record whitespace until we find a significant token. |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 1154 | unsigned WhitespaceLength = TrailingWhitespace; |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1155 | while (FormatTok->Tok.is(tok::unknown)) { |
Manuel Klimek | a28fc06 | 2013-02-11 12:33:24 +0000 | [diff] [blame] | 1156 | unsigned Newlines = Text.count('\n'); |
Daniel Jasper | 1eee6c4 | 2013-03-04 13:43:19 +0000 | [diff] [blame] | 1157 | if (Newlines > 0) |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1158 | FormatTok->LastNewlineOffset = WhitespaceLength + Text.rfind('\n') + 1; |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1159 | FormatTok->NewlinesBefore += Newlines; |
Alexander Kornienko | 54e6c9d | 2013-06-07 17:45:07 +0000 | [diff] [blame] | 1160 | unsigned EscapedNewlines = Text.count("\\\n"); |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1161 | FormatTok->HasUnescapedNewline |= EscapedNewlines != Newlines; |
| 1162 | WhitespaceLength += FormatTok->Tok.getLength(); |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1163 | |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1164 | Lex.LexFromRawLexer(FormatTok->Tok); |
| 1165 | Text = rawTokenText(FormatTok->Tok); |
Manuel Klimek | d4397b9 | 2013-01-04 23:34:14 +0000 | [diff] [blame] | 1166 | } |
Manuel Klimek | 9541938 | 2013-01-07 07:56:50 +0000 | [diff] [blame] | 1167 | |
Manuel Klimek | d4397b9 | 2013-01-04 23:34:14 +0000 | [diff] [blame] | 1168 | // In case the token starts with escaped newlines, we want to |
| 1169 | // take them into account as whitespace - this pattern is quite frequent |
| 1170 | // in macro definitions. |
| 1171 | // FIXME: What do we want to do with other escaped spaces, and escaped |
| 1172 | // spaces or newlines in the middle of tokens? |
| 1173 | // FIXME: Add a more explicit test. |
Alexander Kornienko | 54e6c9d | 2013-06-07 17:45:07 +0000 | [diff] [blame] | 1174 | while (Text.size() > 1 && Text[0] == '\\' && Text[1] == '\n') { |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1175 | // FIXME: ++FormatTok->NewlinesBefore is missing... |
Manuel Klimek | ad3094b | 2013-05-23 10:56:37 +0000 | [diff] [blame] | 1176 | WhitespaceLength += 2; |
Alexander Kornienko | 54e6c9d | 2013-06-07 17:45:07 +0000 | [diff] [blame] | 1177 | Text = Text.substr(2); |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1178 | } |
| 1179 | |
Alexander Kornienko | 54e6c9d | 2013-06-07 17:45:07 +0000 | [diff] [blame] | 1180 | TrailingWhitespace = 0; |
| 1181 | if (FormatTok->Tok.is(tok::comment)) { |
| 1182 | StringRef UntrimmedText = Text; |
| 1183 | Text = Text.rtrim(); |
| 1184 | TrailingWhitespace = UntrimmedText.size() - Text.size(); |
| 1185 | } else if (FormatTok->Tok.is(tok::raw_identifier)) { |
Manuel Klimek | d4397b9 | 2013-01-04 23:34:14 +0000 | [diff] [blame] | 1186 | IdentifierInfo &Info = IdentTable.get(Text); |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1187 | FormatTok->Tok.setIdentifierInfo(&Info); |
| 1188 | FormatTok->Tok.setKind(Info.getTokenID()); |
Alexander Kornienko | 54e6c9d | 2013-06-07 17:45:07 +0000 | [diff] [blame] | 1189 | } else if (FormatTok->Tok.is(tok::greatergreater)) { |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1190 | FormatTok->Tok.setKind(tok::greater); |
Alexander Kornienko | 54e6c9d | 2013-06-07 17:45:07 +0000 | [diff] [blame] | 1191 | Text = Text.substr(0, 1); |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1192 | GreaterStashed = true; |
| 1193 | } |
| 1194 | |
Alexander Kornienko | 54e6c9d | 2013-06-07 17:45:07 +0000 | [diff] [blame] | 1195 | // Now FormatTok is the next non-whitespace token. |
| 1196 | FormatTok->TokenText = Text; |
| 1197 | FormatTok->CodePointCount = encoding::getCodePointCount(Text, Encoding); |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1198 | |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1199 | FormatTok->WhitespaceRange = SourceRange( |
Manuel Klimek | ad3094b | 2013-05-23 10:56:37 +0000 | [diff] [blame] | 1200 | WhitespaceStart, WhitespaceStart.getLocWithOffset(WhitespaceLength)); |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1201 | return FormatTok; |
| 1202 | } |
| 1203 | |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1204 | FormatToken *FormatTok; |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1205 | bool GreaterStashed; |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 1206 | unsigned TrailingWhitespace; |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1207 | Lexer &Lex; |
| 1208 | SourceManager &SourceMgr; |
| 1209 | IdentifierTable IdentTable; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1210 | encoding::Encoding Encoding; |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1211 | llvm::SpecificBumpPtrAllocator<FormatToken> Allocator; |
| 1212 | SmallVector<FormatToken *, 16> Tokens; |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1213 | |
| 1214 | /// Returns the text of \c FormatTok. |
Manuel Klimek | 9541938 | 2013-01-07 07:56:50 +0000 | [diff] [blame] | 1215 | StringRef rawTokenText(Token &Tok) { |
Alexander Kornienko | 469a21b | 2012-12-07 16:15:44 +0000 | [diff] [blame] | 1216 | return StringRef(SourceMgr.getCharacterData(Tok.getLocation()), |
| 1217 | Tok.getLength()); |
| 1218 | } |
| 1219 | }; |
| 1220 | |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1221 | class Formatter : public UnwrappedLineConsumer { |
| 1222 | public: |
Daniel Jasper | caf42a3 | 2013-05-15 08:14:19 +0000 | [diff] [blame] | 1223 | Formatter(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr, |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1224 | const std::vector<CharSourceRange> &Ranges) |
Daniel Jasper | caf42a3 | 2013-05-15 08:14:19 +0000 | [diff] [blame] | 1225 | : Style(Style), Lex(Lex), SourceMgr(SourceMgr), |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1226 | Whitespaces(SourceMgr, Style), Ranges(Ranges), |
| 1227 | Encoding(encoding::detectEncoding(Lex.getBuffer())) { |
| 1228 | DEBUG(llvm::dbgs() |
| 1229 | << "File encoding: " |
| 1230 | << (Encoding == encoding::Encoding_UTF8 ? "UTF8" : "unknown") |
| 1231 | << "\n"); |
| 1232 | } |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1233 | |
Daniel Jasper | 7d19bc2 | 2013-01-11 14:23:32 +0000 | [diff] [blame] | 1234 | virtual ~Formatter() {} |
Daniel Jasper | accb0b0 | 2012-12-04 21:05:31 +0000 | [diff] [blame] | 1235 | |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1236 | tooling::Replacements format() { |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1237 | FormatTokenLexer Tokens(Lex, SourceMgr, Encoding); |
Manuel Klimek | 96e888b | 2013-05-28 11:55:06 +0000 | [diff] [blame] | 1238 | |
| 1239 | UnwrappedLineParser Parser(Style, Tokens.lex(), *this); |
Manuel Klimek | 67d080d | 2013-04-12 14:13:36 +0000 | [diff] [blame] | 1240 | bool StructuralError = Parser.parse(); |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1241 | TokenAnnotator Annotator(Style, Tokens.getIdentTable().get("in")); |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1242 | for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) { |
| 1243 | Annotator.annotate(AnnotatedLines[i]); |
| 1244 | } |
| 1245 | deriveLocalStyle(); |
| 1246 | for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) { |
| 1247 | Annotator.calculateFormattingInformation(AnnotatedLines[i]); |
| 1248 | } |
Daniel Jasper | 5999f76 | 2013-04-09 17:46:55 +0000 | [diff] [blame] | 1249 | |
| 1250 | // Adapt level to the next line if this is a comment. |
| 1251 | // FIXME: Can/should this be done in the UnwrappedLineParser? |
Daniel Jasper | 1407bee | 2013-04-11 14:29:13 +0000 | [diff] [blame] | 1252 | const AnnotatedLine *NextNoneCommentLine = NULL; |
Daniel Jasper | 5999f76 | 2013-04-09 17:46:55 +0000 | [diff] [blame] | 1253 | for (unsigned i = AnnotatedLines.size() - 1; i > 0; --i) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1254 | if (NextNoneCommentLine && AnnotatedLines[i].First->is(tok::comment) && |
| 1255 | !AnnotatedLines[i].First->Next) |
Daniel Jasper | 5999f76 | 2013-04-09 17:46:55 +0000 | [diff] [blame] | 1256 | AnnotatedLines[i].Level = NextNoneCommentLine->Level; |
| 1257 | else |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 1258 | NextNoneCommentLine = |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1259 | AnnotatedLines[i].First->isNot(tok::r_brace) ? &AnnotatedLines[i] |
| 1260 | : NULL; |
Daniel Jasper | 5999f76 | 2013-04-09 17:46:55 +0000 | [diff] [blame] | 1261 | } |
| 1262 | |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1263 | std::vector<int> IndentForLevel; |
| 1264 | bool PreviousLineWasTouched = false; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1265 | const FormatToken *PreviousLineLastToken = 0; |
Daniel Jasper | 89b3a7f | 2013-05-10 13:00:49 +0000 | [diff] [blame] | 1266 | bool FormatPPDirective = false; |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1267 | for (std::vector<AnnotatedLine>::iterator I = AnnotatedLines.begin(), |
| 1268 | E = AnnotatedLines.end(); |
| 1269 | I != E; ++I) { |
| 1270 | const AnnotatedLine &TheLine = *I; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1271 | const FormatToken *FirstTok = TheLine.First; |
| 1272 | int Offset = getIndentOffset(*TheLine.First); |
Daniel Jasper | 89b3a7f | 2013-05-10 13:00:49 +0000 | [diff] [blame] | 1273 | |
| 1274 | // Check whether this line is part of a formatted preprocessor directive. |
Manuel Klimek | dcb3f2a | 2013-05-28 13:42:28 +0000 | [diff] [blame] | 1275 | if (FirstTok->HasUnescapedNewline) |
Daniel Jasper | 89b3a7f | 2013-05-10 13:00:49 +0000 | [diff] [blame] | 1276 | FormatPPDirective = false; |
| 1277 | if (!FormatPPDirective && TheLine.InPPDirective && |
| 1278 | (touchesLine(TheLine) || touchesPPDirective(I + 1, E))) |
| 1279 | FormatPPDirective = true; |
| 1280 | |
Daniel Jasper | 1fb8d88 | 2013-05-14 09:30:02 +0000 | [diff] [blame] | 1281 | // Determine indent and try to merge multiple unwrapped lines. |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1282 | while (IndentForLevel.size() <= TheLine.Level) |
| 1283 | IndentForLevel.push_back(-1); |
| 1284 | IndentForLevel.resize(TheLine.Level + 1); |
Daniel Jasper | 1fb8d88 | 2013-05-14 09:30:02 +0000 | [diff] [blame] | 1285 | unsigned Indent = getIndent(IndentForLevel, TheLine.Level); |
| 1286 | if (static_cast<int>(Indent) + Offset >= 0) |
| 1287 | Indent += Offset; |
| 1288 | tryFitMultipleLinesInOne(Indent, I, E); |
| 1289 | |
Manuel Klimek | dcb3f2a | 2013-05-28 13:42:28 +0000 | [diff] [blame] | 1290 | bool WasMoved = PreviousLineWasTouched && FirstTok->NewlinesBefore == 0; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1291 | if (TheLine.First->is(tok::eof)) { |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1292 | if (PreviousLineWasTouched) { |
Manuel Klimek | dcb3f2a | 2013-05-28 13:42:28 +0000 | [diff] [blame] | 1293 | unsigned NewLines = std::min(FirstTok->NewlinesBefore, 1u); |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1294 | Whitespaces.replaceWhitespace(*TheLine.First, NewLines, /*Indent*/ 0, |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1295 | /*TargetColumn*/ 0); |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1296 | } |
| 1297 | } else if (TheLine.Type != LT_Invalid && |
Daniel Jasper | 89b3a7f | 2013-05-10 13:00:49 +0000 | [diff] [blame] | 1298 | (WasMoved || FormatPPDirective || touchesLine(TheLine))) { |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1299 | unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level); |
Manuel Klimek | dcb3f2a | 2013-05-28 13:42:28 +0000 | [diff] [blame] | 1300 | if (FirstTok->WhitespaceRange.isValid() && |
Manuel Klimek | 67d080d | 2013-04-12 14:13:36 +0000 | [diff] [blame] | 1301 | // Insert a break even if there is a structural error in case where |
| 1302 | // we break apart a line consisting of multiple unwrapped lines. |
Manuel Klimek | dcb3f2a | 2013-05-28 13:42:28 +0000 | [diff] [blame] | 1303 | (FirstTok->NewlinesBefore == 0 || !StructuralError)) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1304 | formatFirstToken(*TheLine.First, PreviousLineLastToken, Indent, |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1305 | TheLine.InPPDirective); |
Manuel Klimek | 67d080d | 2013-04-12 14:13:36 +0000 | [diff] [blame] | 1306 | } else { |
| 1307 | Indent = LevelIndent = |
Manuel Klimek | dcb3f2a | 2013-05-28 13:42:28 +0000 | [diff] [blame] | 1308 | SourceMgr.getSpellingColumnNumber(FirstTok->Tok.getLocation()) - |
| 1309 | 1; |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1310 | } |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1311 | UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, Indent, |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1312 | TheLine.First, Whitespaces, Encoding); |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1313 | Formatter.format(I + 1 != E ? &*(I + 1) : NULL); |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1314 | IndentForLevel[TheLine.Level] = LevelIndent; |
| 1315 | PreviousLineWasTouched = true; |
| 1316 | } else { |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1317 | // Format the first token if necessary, and notify the WhitespaceManager |
| 1318 | // about the unchanged whitespace. |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1319 | for (const FormatToken *Tok = TheLine.First; Tok != NULL; |
| 1320 | Tok = Tok->Next) { |
| 1321 | if (Tok == TheLine.First && |
| 1322 | (Tok->NewlinesBefore > 0 || Tok->IsFirst)) { |
| 1323 | unsigned LevelIndent = |
| 1324 | SourceMgr.getSpellingColumnNumber(Tok->Tok.getLocation()) - 1; |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1325 | // Remove trailing whitespace of the previous line if it was |
| 1326 | // touched. |
| 1327 | if (PreviousLineWasTouched || touchesEmptyLineBefore(TheLine)) { |
| 1328 | formatFirstToken(*Tok, PreviousLineLastToken, LevelIndent, |
| 1329 | TheLine.InPPDirective); |
| 1330 | } else { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1331 | Whitespaces.addUntouchableToken(*Tok, TheLine.InPPDirective); |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1332 | } |
Daniel Jasper | 1fb8d88 | 2013-05-14 09:30:02 +0000 | [diff] [blame] | 1333 | |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1334 | if (static_cast<int>(LevelIndent) - Offset >= 0) |
| 1335 | LevelIndent -= Offset; |
| 1336 | if (Tok->isNot(tok::comment)) |
| 1337 | IndentForLevel[TheLine.Level] = LevelIndent; |
| 1338 | } else { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1339 | Whitespaces.addUntouchableToken(*Tok, TheLine.InPPDirective); |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1340 | } |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1341 | } |
| 1342 | // If we did not reformat this unwrapped line, the column at the end of |
| 1343 | // the last token is unchanged - thus, we can calculate the end of the |
| 1344 | // last token. |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1345 | PreviousLineWasTouched = false; |
| 1346 | } |
Alexander Kornienko | 94b748f | 2013-03-27 17:08:02 +0000 | [diff] [blame] | 1347 | PreviousLineLastToken = I->Last; |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1348 | } |
| 1349 | return Whitespaces.generateReplacements(); |
| 1350 | } |
| 1351 | |
| 1352 | private: |
Daniel Jasper | 8ff690a | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 1353 | void deriveLocalStyle() { |
| 1354 | unsigned CountBoundToVariable = 0; |
| 1355 | unsigned CountBoundToType = 0; |
| 1356 | bool HasCpp03IncompatibleFormat = false; |
| 1357 | for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1358 | if (!AnnotatedLines[i].First->Next) |
Daniel Jasper | 8ff690a | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 1359 | continue; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1360 | FormatToken *Tok = AnnotatedLines[i].First->Next; |
| 1361 | while (Tok->Next) { |
Daniel Jasper | 8ff690a | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 1362 | if (Tok->Type == TT_PointerOrReference) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1363 | bool SpacesBefore = |
| 1364 | Tok->WhitespaceRange.getBegin() != Tok->WhitespaceRange.getEnd(); |
| 1365 | bool SpacesAfter = Tok->Next->WhitespaceRange.getBegin() != |
| 1366 | Tok->Next->WhitespaceRange.getEnd(); |
Daniel Jasper | 8ff690a | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 1367 | if (SpacesBefore && !SpacesAfter) |
| 1368 | ++CountBoundToVariable; |
| 1369 | else if (!SpacesBefore && SpacesAfter) |
| 1370 | ++CountBoundToType; |
| 1371 | } |
| 1372 | |
Daniel Jasper | 29f123b | 2013-02-08 15:28:42 +0000 | [diff] [blame] | 1373 | if (Tok->Type == TT_TemplateCloser && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1374 | Tok->Previous->Type == TT_TemplateCloser && |
| 1375 | Tok->WhitespaceRange.getBegin() == Tok->WhitespaceRange.getEnd()) |
Daniel Jasper | 8ff690a | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 1376 | HasCpp03IncompatibleFormat = true; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1377 | Tok = Tok->Next; |
Daniel Jasper | 8ff690a | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 1378 | } |
| 1379 | } |
| 1380 | if (Style.DerivePointerBinding) { |
| 1381 | if (CountBoundToType > CountBoundToVariable) |
| 1382 | Style.PointerBindsToType = true; |
| 1383 | else if (CountBoundToType < CountBoundToVariable) |
| 1384 | Style.PointerBindsToType = false; |
| 1385 | } |
| 1386 | if (Style.Standard == FormatStyle::LS_Auto) { |
| 1387 | Style.Standard = HasCpp03IncompatibleFormat ? FormatStyle::LS_Cpp11 |
| 1388 | : FormatStyle::LS_Cpp03; |
| 1389 | } |
| 1390 | } |
| 1391 | |
Manuel Klimek | 547d5db | 2013-02-08 17:38:27 +0000 | [diff] [blame] | 1392 | /// \brief Get the indent of \p Level from \p IndentForLevel. |
| 1393 | /// |
| 1394 | /// \p IndentForLevel must contain the indent for the level \c l |
| 1395 | /// at \p IndentForLevel[l], or a value < 0 if the indent for |
| 1396 | /// that level is unknown. |
Daniel Jasper | fc75908 | 2013-02-14 14:26:07 +0000 | [diff] [blame] | 1397 | unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) { |
Manuel Klimek | 547d5db | 2013-02-08 17:38:27 +0000 | [diff] [blame] | 1398 | if (IndentForLevel[Level] != -1) |
| 1399 | return IndentForLevel[Level]; |
Manuel Klimek | 52635ff | 2013-02-08 19:53:32 +0000 | [diff] [blame] | 1400 | if (Level == 0) |
| 1401 | return 0; |
Manuel Klimek | 07a64ec | 2013-05-13 08:42:42 +0000 | [diff] [blame] | 1402 | return getIndent(IndentForLevel, Level - 1) + Style.IndentWidth; |
Manuel Klimek | 547d5db | 2013-02-08 17:38:27 +0000 | [diff] [blame] | 1403 | } |
| 1404 | |
| 1405 | /// \brief Get the offset of the line relatively to the level. |
| 1406 | /// |
| 1407 | /// For example, 'public:' labels in classes are offset by 1 or 2 |
| 1408 | /// characters to the left from their level. |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1409 | int getIndentOffset(const FormatToken &RootToken) { |
Alexander Kornienko | 94b748f | 2013-03-27 17:08:02 +0000 | [diff] [blame] | 1410 | if (RootToken.isAccessSpecifier(false) || RootToken.isObjCAccessSpecifier()) |
Manuel Klimek | 547d5db | 2013-02-08 17:38:27 +0000 | [diff] [blame] | 1411 | return Style.AccessModifierOffset; |
| 1412 | return 0; |
| 1413 | } |
| 1414 | |
Manuel Klimek | 517e894 | 2013-01-11 17:54:10 +0000 | [diff] [blame] | 1415 | /// \brief Tries to merge lines into one. |
| 1416 | /// |
| 1417 | /// This will change \c Line and \c AnnotatedLine to contain the merged line, |
| 1418 | /// if possible; note that \c I will be incremented when lines are merged. |
Daniel Jasper | 3f8cdbf | 2013-01-16 10:41:46 +0000 | [diff] [blame] | 1419 | void tryFitMultipleLinesInOne(unsigned Indent, |
Daniel Jasper | 995e820 | 2013-01-14 13:08:07 +0000 | [diff] [blame] | 1420 | std::vector<AnnotatedLine>::iterator &I, |
| 1421 | std::vector<AnnotatedLine>::iterator E) { |
Daniel Jasper | 3f8cdbf | 2013-01-16 10:41:46 +0000 | [diff] [blame] | 1422 | // We can never merge stuff if there are trailing line comments. |
| 1423 | if (I->Last->Type == TT_LineComment) |
| 1424 | return; |
| 1425 | |
Daniel Jasper | a4d4621 | 2013-02-28 11:05:57 +0000 | [diff] [blame] | 1426 | unsigned Limit = Style.ColumnLimit - Indent; |
Daniel Jasper | f11a705 | 2013-02-21 21:33:55 +0000 | [diff] [blame] | 1427 | // If we already exceed the column limit, we set 'Limit' to 0. The different |
| 1428 | // tryMerge..() functions can then decide whether to still do merging. |
| 1429 | Limit = I->Last->TotalLength > Limit ? 0 : Limit - I->Last->TotalLength; |
Daniel Jasper | 55b08e7 | 2013-01-16 07:02:34 +0000 | [diff] [blame] | 1430 | |
Daniel Jasper | 9c8c40e | 2013-01-21 14:18:28 +0000 | [diff] [blame] | 1431 | if (I + 1 == E || (I + 1)->Type == LT_Invalid) |
Daniel Jasper | 3f8cdbf | 2013-01-16 10:41:46 +0000 | [diff] [blame] | 1432 | return; |
Manuel Klimek | 517e894 | 2013-01-11 17:54:10 +0000 | [diff] [blame] | 1433 | |
Daniel Jasper | 5be59ba | 2013-05-15 14:09:55 +0000 | [diff] [blame] | 1434 | if (I->Last->is(tok::l_brace)) { |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1435 | tryMergeSimpleBlock(I, E, Limit); |
Daniel Jasper | f11bbb9 | 2013-05-16 12:12:21 +0000 | [diff] [blame] | 1436 | } else if (Style.AllowShortIfStatementsOnASingleLine && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1437 | I->First->is(tok::kw_if)) { |
Daniel Jasper | f11bbb9 | 2013-05-16 12:12:21 +0000 | [diff] [blame] | 1438 | tryMergeSimpleControlStatement(I, E, Limit); |
| 1439 | } else if (Style.AllowShortLoopsOnASingleLine && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1440 | I->First->isOneOf(tok::kw_for, tok::kw_while)) { |
Daniel Jasper | f11bbb9 | 2013-05-16 12:12:21 +0000 | [diff] [blame] | 1441 | tryMergeSimpleControlStatement(I, E, Limit); |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1442 | } else if (I->InPPDirective && |
| 1443 | (I->First->HasUnescapedNewline || I->First->IsFirst)) { |
Daniel Jasper | e0b15ea | 2013-01-14 15:40:57 +0000 | [diff] [blame] | 1444 | tryMergeSimplePPDirective(I, E, Limit); |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1445 | } |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1446 | } |
| 1447 | |
Daniel Jasper | e0b15ea | 2013-01-14 15:40:57 +0000 | [diff] [blame] | 1448 | void tryMergeSimplePPDirective(std::vector<AnnotatedLine>::iterator &I, |
| 1449 | std::vector<AnnotatedLine>::iterator E, |
| 1450 | unsigned Limit) { |
Daniel Jasper | f11a705 | 2013-02-21 21:33:55 +0000 | [diff] [blame] | 1451 | if (Limit == 0) |
| 1452 | return; |
Daniel Jasper | e0b15ea | 2013-01-14 15:40:57 +0000 | [diff] [blame] | 1453 | AnnotatedLine &Line = *I; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1454 | if (!(I + 1)->InPPDirective || (I + 1)->First->HasUnescapedNewline) |
Daniel Jasper | 2b9c10b | 2013-01-14 15:52:06 +0000 | [diff] [blame] | 1455 | return; |
Daniel Jasper | e0b15ea | 2013-01-14 15:40:57 +0000 | [diff] [blame] | 1456 | if (I + 2 != E && (I + 2)->InPPDirective && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1457 | !(I + 2)->First->HasUnescapedNewline) |
Daniel Jasper | e0b15ea | 2013-01-14 15:40:57 +0000 | [diff] [blame] | 1458 | return; |
Manuel Klimek | 2f1ac41 | 2013-01-21 16:42:44 +0000 | [diff] [blame] | 1459 | if (1 + (I + 1)->Last->TotalLength > Limit) |
Daniel Jasper | 3f8cdbf | 2013-01-16 10:41:46 +0000 | [diff] [blame] | 1460 | return; |
Daniel Jasper | e0b15ea | 2013-01-14 15:40:57 +0000 | [diff] [blame] | 1461 | join(Line, *(++I)); |
| 1462 | } |
| 1463 | |
Daniel Jasper | f11bbb9 | 2013-05-16 12:12:21 +0000 | [diff] [blame] | 1464 | void tryMergeSimpleControlStatement(std::vector<AnnotatedLine>::iterator &I, |
| 1465 | std::vector<AnnotatedLine>::iterator E, |
| 1466 | unsigned Limit) { |
Daniel Jasper | f11a705 | 2013-02-21 21:33:55 +0000 | [diff] [blame] | 1467 | if (Limit == 0) |
| 1468 | return; |
Manuel Klimek | 4c12812 | 2013-01-18 14:46:43 +0000 | [diff] [blame] | 1469 | if ((I + 1)->InPPDirective != I->InPPDirective || |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1470 | ((I + 1)->InPPDirective && (I + 1)->First->HasUnescapedNewline)) |
Manuel Klimek | 4c12812 | 2013-01-18 14:46:43 +0000 | [diff] [blame] | 1471 | return; |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1472 | AnnotatedLine &Line = *I; |
Daniel Jasper | 55b08e7 | 2013-01-16 07:02:34 +0000 | [diff] [blame] | 1473 | if (Line.Last->isNot(tok::r_paren)) |
| 1474 | return; |
Manuel Klimek | 2f1ac41 | 2013-01-21 16:42:44 +0000 | [diff] [blame] | 1475 | if (1 + (I + 1)->Last->TotalLength > Limit) |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1476 | return; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1477 | if ((I + 1)->First->isOneOf(tok::semi, tok::kw_if, tok::kw_for, |
| 1478 | tok::kw_while) || |
| 1479 | (I + 1)->First->Type == TT_LineComment) |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1480 | return; |
| 1481 | // Only inline simple if's (no nested if or else). |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1482 | if (I + 2 != E && Line.First->is(tok::kw_if) && |
| 1483 | (I + 2)->First->is(tok::kw_else)) |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1484 | return; |
| 1485 | join(Line, *(++I)); |
| 1486 | } |
| 1487 | |
| 1488 | void tryMergeSimpleBlock(std::vector<AnnotatedLine>::iterator &I, |
Daniel Jasper | 1a1ce83 | 2013-01-29 11:27:30 +0000 | [diff] [blame] | 1489 | std::vector<AnnotatedLine>::iterator E, |
| 1490 | unsigned Limit) { |
Daniel Jasper | 5be59ba | 2013-05-15 14:09:55 +0000 | [diff] [blame] | 1491 | // No merging if the brace already is on the next line. |
| 1492 | if (Style.BreakBeforeBraces != FormatStyle::BS_Attach) |
| 1493 | return; |
| 1494 | |
Manuel Klimek | 517e894 | 2013-01-11 17:54:10 +0000 | [diff] [blame] | 1495 | // First, check that the current line allows merging. This is the case if |
| 1496 | // we're not in a control flow statement and the last token is an opening |
| 1497 | // brace. |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1498 | AnnotatedLine &Line = *I; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1499 | if (Line.First->isOneOf(tok::kw_if, tok::kw_while, tok::kw_do, tok::r_brace, |
| 1500 | tok::kw_else, tok::kw_try, tok::kw_catch, |
Daniel Jasper | 8893b8a | 2013-05-31 14:56:20 +0000 | [diff] [blame] | 1501 | tok::kw_for, |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1502 | // This gets rid of all ObjC @ keywords and methods. |
| 1503 | tok::at, tok::minus, tok::plus)) |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1504 | return; |
Manuel Klimek | 517e894 | 2013-01-11 17:54:10 +0000 | [diff] [blame] | 1505 | |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1506 | FormatToken *Tok = (I + 1)->First; |
Daniel Jasper | 8893b8a | 2013-05-31 14:56:20 +0000 | [diff] [blame] | 1507 | if (Tok->is(tok::r_brace) && !Tok->MustBreakBefore && |
| 1508 | (Tok->getNextNoneComment() == NULL || |
| 1509 | Tok->getNextNoneComment()->is(tok::semi))) { |
Daniel Jasper | f11a705 | 2013-02-21 21:33:55 +0000 | [diff] [blame] | 1510 | // We merge empty blocks even if the line exceeds the column limit. |
Daniel Jasper | 729a743 | 2013-02-11 12:36:37 +0000 | [diff] [blame] | 1511 | Tok->SpacesRequiredBefore = 0; |
Daniel Jasper | f11a705 | 2013-02-21 21:33:55 +0000 | [diff] [blame] | 1512 | Tok->CanBreakBefore = true; |
Manuel Klimek | 2f1ac41 | 2013-01-21 16:42:44 +0000 | [diff] [blame] | 1513 | join(Line, *(I + 1)); |
| 1514 | I += 1; |
Daniel Jasper | 8893b8a | 2013-05-31 14:56:20 +0000 | [diff] [blame] | 1515 | } else if (Limit != 0 && Line.First->isNot(tok::kw_namespace)) { |
Manuel Klimek | 2f1ac41 | 2013-01-21 16:42:44 +0000 | [diff] [blame] | 1516 | // Check that we still have three lines and they fit into the limit. |
| 1517 | if (I + 2 == E || (I + 2)->Type == LT_Invalid || |
| 1518 | !nextTwoLinesFitInto(I, Limit)) |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1519 | return; |
Manuel Klimek | 517e894 | 2013-01-11 17:54:10 +0000 | [diff] [blame] | 1520 | |
Manuel Klimek | 2f1ac41 | 2013-01-21 16:42:44 +0000 | [diff] [blame] | 1521 | // Second, check that the next line does not contain any braces - if it |
| 1522 | // does, readability declines when putting it into a single line. |
| 1523 | if ((I + 1)->Last->Type == TT_LineComment || Tok->MustBreakBefore) |
| 1524 | return; |
| 1525 | do { |
Alexander Kornienko | e74de28 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1526 | if (Tok->isOneOf(tok::l_brace, tok::r_brace)) |
Manuel Klimek | 2f1ac41 | 2013-01-21 16:42:44 +0000 | [diff] [blame] | 1527 | return; |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1528 | Tok = Tok->Next; |
Manuel Klimek | 2f1ac41 | 2013-01-21 16:42:44 +0000 | [diff] [blame] | 1529 | } while (Tok != NULL); |
Manuel Klimek | 517e894 | 2013-01-11 17:54:10 +0000 | [diff] [blame] | 1530 | |
Manuel Klimek | 2f1ac41 | 2013-01-21 16:42:44 +0000 | [diff] [blame] | 1531 | // Last, check that the third line contains a single closing brace. |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1532 | Tok = (I + 2)->First; |
Daniel Jasper | 058f6f8 | 2013-05-16 10:17:39 +0000 | [diff] [blame] | 1533 | if (Tok->getNextNoneComment() != NULL || Tok->isNot(tok::r_brace) || |
Manuel Klimek | 2f1ac41 | 2013-01-21 16:42:44 +0000 | [diff] [blame] | 1534 | Tok->MustBreakBefore) |
| 1535 | return; |
| 1536 | |
| 1537 | join(Line, *(I + 1)); |
| 1538 | join(Line, *(I + 2)); |
| 1539 | I += 2; |
Manuel Klimek | 517e894 | 2013-01-11 17:54:10 +0000 | [diff] [blame] | 1540 | } |
Daniel Jasper | feb18f5 | 2013-01-14 14:14:23 +0000 | [diff] [blame] | 1541 | } |
| 1542 | |
| 1543 | bool nextTwoLinesFitInto(std::vector<AnnotatedLine>::iterator I, |
| 1544 | unsigned Limit) { |
Manuel Klimek | 2f1ac41 | 2013-01-21 16:42:44 +0000 | [diff] [blame] | 1545 | return 1 + (I + 1)->Last->TotalLength + 1 + (I + 2)->Last->TotalLength <= |
| 1546 | Limit; |
Manuel Klimek | 517e894 | 2013-01-11 17:54:10 +0000 | [diff] [blame] | 1547 | } |
| 1548 | |
Daniel Jasper | 995e820 | 2013-01-14 13:08:07 +0000 | [diff] [blame] | 1549 | void join(AnnotatedLine &A, const AnnotatedLine &B) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1550 | assert(!A.Last->Next); |
| 1551 | assert(!B.First->Previous); |
| 1552 | A.Last->Next = B.First; |
| 1553 | B.First->Previous = A.Last; |
| 1554 | unsigned LengthA = A.Last->TotalLength + B.First->SpacesRequiredBefore; |
| 1555 | for (FormatToken *Tok = B.First; Tok; Tok = Tok->Next) { |
| 1556 | Tok->TotalLength += LengthA; |
| 1557 | A.Last = Tok; |
Daniel Jasper | 995e820 | 2013-01-14 13:08:07 +0000 | [diff] [blame] | 1558 | } |
Manuel Klimek | f9ea2ed | 2013-01-10 19:49:59 +0000 | [diff] [blame] | 1559 | } |
| 1560 | |
Daniel Jasper | 6f21a98 | 2013-03-13 07:49:51 +0000 | [diff] [blame] | 1561 | bool touchesRanges(const CharSourceRange &Range) { |
Daniel Jasper | f302354 | 2013-03-07 20:50:00 +0000 | [diff] [blame] | 1562 | for (unsigned i = 0, e = Ranges.size(); i != e; ++i) { |
| 1563 | if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), |
| 1564 | Ranges[i].getBegin()) && |
| 1565 | !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(), |
| 1566 | Range.getBegin())) |
| 1567 | return true; |
| 1568 | } |
| 1569 | return false; |
| 1570 | } |
| 1571 | |
| 1572 | bool touchesLine(const AnnotatedLine &TheLine) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1573 | const FormatToken *First = TheLine.First; |
| 1574 | const FormatToken *Last = TheLine.Last; |
Daniel Jasper | 84f5ddf | 2013-05-14 10:31:09 +0000 | [diff] [blame] | 1575 | CharSourceRange LineRange = CharSourceRange::getCharRange( |
Manuel Klimek | ad3094b | 2013-05-23 10:56:37 +0000 | [diff] [blame] | 1576 | First->WhitespaceRange.getBegin().getLocWithOffset( |
| 1577 | First->LastNewlineOffset), |
Alexander Kornienko | 54e6c9d | 2013-06-07 17:45:07 +0000 | [diff] [blame] | 1578 | Last->Tok.getLocation().getLocWithOffset(Last->TokenText.size() - 1)); |
Daniel Jasper | f302354 | 2013-03-07 20:50:00 +0000 | [diff] [blame] | 1579 | return touchesRanges(LineRange); |
| 1580 | } |
| 1581 | |
Daniel Jasper | 89b3a7f | 2013-05-10 13:00:49 +0000 | [diff] [blame] | 1582 | bool touchesPPDirective(std::vector<AnnotatedLine>::iterator I, |
| 1583 | std::vector<AnnotatedLine>::iterator E) { |
| 1584 | for (; I != E; ++I) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1585 | if (I->First->HasUnescapedNewline) |
Daniel Jasper | 89b3a7f | 2013-05-10 13:00:49 +0000 | [diff] [blame] | 1586 | return false; |
| 1587 | if (touchesLine(*I)) |
| 1588 | return true; |
| 1589 | } |
| 1590 | return false; |
| 1591 | } |
| 1592 | |
Daniel Jasper | f302354 | 2013-03-07 20:50:00 +0000 | [diff] [blame] | 1593 | bool touchesEmptyLineBefore(const AnnotatedLine &TheLine) { |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1594 | const FormatToken *First = TheLine.First; |
Daniel Jasper | f302354 | 2013-03-07 20:50:00 +0000 | [diff] [blame] | 1595 | CharSourceRange LineRange = CharSourceRange::getCharRange( |
Manuel Klimek | ad3094b | 2013-05-23 10:56:37 +0000 | [diff] [blame] | 1596 | First->WhitespaceRange.getBegin(), |
| 1597 | First->WhitespaceRange.getBegin().getLocWithOffset( |
| 1598 | First->LastNewlineOffset)); |
Daniel Jasper | f302354 | 2013-03-07 20:50:00 +0000 | [diff] [blame] | 1599 | return touchesRanges(LineRange); |
Manuel Klimek | f9ea2ed | 2013-01-10 19:49:59 +0000 | [diff] [blame] | 1600 | } |
| 1601 | |
| 1602 | virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) { |
Daniel Jasper | cbb6c41 | 2013-01-16 09:10:19 +0000 | [diff] [blame] | 1603 | AnnotatedLines.push_back(AnnotatedLine(TheLine)); |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1604 | } |
| 1605 | |
Manuel Klimek | 3f8c7f3 | 2013-01-10 18:45:26 +0000 | [diff] [blame] | 1606 | /// \brief Add a new line and the required indent before the first Token |
| 1607 | /// of the \c UnwrappedLine if there was no structural parsing error. |
| 1608 | /// Returns the indent level of the \c UnwrappedLine. |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1609 | void formatFirstToken(const FormatToken &RootToken, |
| 1610 | const FormatToken *PreviousToken, unsigned Indent, |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1611 | bool InPPDirective) { |
Daniel Jasper | 1a1ce83 | 2013-01-29 11:27:30 +0000 | [diff] [blame] | 1612 | unsigned Newlines = |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1613 | std::min(RootToken.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1); |
Daniel Jasper | 15f33f0 | 2013-06-03 16:16:41 +0000 | [diff] [blame] | 1614 | // Remove empty lines before "}" where applicable. |
| 1615 | if (RootToken.is(tok::r_brace) && |
| 1616 | (!RootToken.Next || |
| 1617 | (RootToken.Next->is(tok::semi) && !RootToken.Next->Next))) |
| 1618 | Newlines = std::min(Newlines, 1u); |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1619 | if (Newlines == 0 && !RootToken.IsFirst) |
Manuel Klimek | 3f8c7f3 | 2013-01-10 18:45:26 +0000 | [diff] [blame] | 1620 | Newlines = 1; |
Manuel Klimek | 3f8c7f3 | 2013-01-10 18:45:26 +0000 | [diff] [blame] | 1621 | |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1622 | // Insert extra new line before access specifiers. |
| 1623 | if (PreviousToken && PreviousToken->isOneOf(tok::semi, tok::r_brace) && |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1624 | RootToken.isAccessSpecifier() && RootToken.NewlinesBefore == 1) |
Manuel Klimek | e573c3f | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 1625 | ++Newlines; |
Alexander Kornienko | 94b748f | 2013-03-27 17:08:02 +0000 | [diff] [blame] | 1626 | |
Manuel Klimek | b398701 | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1627 | Whitespaces.replaceWhitespace( |
| 1628 | RootToken, Newlines, Indent, Indent, |
| 1629 | InPPDirective && !RootToken.HasUnescapedNewline); |
Manuel Klimek | 3f8c7f3 | 2013-01-10 18:45:26 +0000 | [diff] [blame] | 1630 | } |
| 1631 | |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1632 | FormatStyle Style; |
| 1633 | Lexer &Lex; |
| 1634 | SourceManager &SourceMgr; |
Daniel Jasper | dcc2a62 | 2013-01-18 08:44:07 +0000 | [diff] [blame] | 1635 | WhitespaceManager Whitespaces; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1636 | std::vector<CharSourceRange> Ranges; |
Daniel Jasper | 995e820 | 2013-01-14 13:08:07 +0000 | [diff] [blame] | 1637 | std::vector<AnnotatedLine> AnnotatedLines; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 1638 | |
| 1639 | encoding::Encoding Encoding; |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1640 | }; |
| 1641 | |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 1642 | tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex, |
| 1643 | SourceManager &SourceMgr, |
Daniel Jasper | caf42a3 | 2013-05-15 08:14:19 +0000 | [diff] [blame] | 1644 | std::vector<CharSourceRange> Ranges) { |
| 1645 | Formatter formatter(Style, Lex, SourceMgr, Ranges); |
Daniel Jasper | bac016b | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1646 | return formatter.format(); |
| 1647 | } |
| 1648 | |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame] | 1649 | tooling::Replacements reformat(const FormatStyle &Style, StringRef Code, |
| 1650 | std::vector<tooling::Range> Ranges, |
| 1651 | StringRef FileName) { |
| 1652 | FileManager Files((FileSystemOptions())); |
| 1653 | DiagnosticsEngine Diagnostics( |
| 1654 | IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs), |
| 1655 | new DiagnosticOptions); |
| 1656 | SourceManager SourceMgr(Diagnostics, Files); |
| 1657 | llvm::MemoryBuffer *Buf = llvm::MemoryBuffer::getMemBuffer(Code, FileName); |
| 1658 | const clang::FileEntry *Entry = |
| 1659 | Files.getVirtualFile(FileName, Buf->getBufferSize(), 0); |
| 1660 | SourceMgr.overrideFileContents(Entry, Buf); |
| 1661 | FileID ID = |
| 1662 | SourceMgr.createFileID(Entry, SourceLocation(), clang::SrcMgr::C_User); |
Alexander Kornienko | a1753f4 | 2013-06-28 12:51:24 +0000 | [diff] [blame^] | 1663 | Lexer Lex(ID, SourceMgr.getBuffer(ID), SourceMgr, |
| 1664 | getFormattingLangOpts(Style.Standard)); |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame] | 1665 | SourceLocation StartOfFile = SourceMgr.getLocForStartOfFile(ID); |
| 1666 | std::vector<CharSourceRange> CharRanges; |
| 1667 | for (unsigned i = 0, e = Ranges.size(); i != e; ++i) { |
| 1668 | SourceLocation Start = StartOfFile.getLocWithOffset(Ranges[i].getOffset()); |
| 1669 | SourceLocation End = Start.getLocWithOffset(Ranges[i].getLength()); |
| 1670 | CharRanges.push_back(CharSourceRange::getCharRange(Start, End)); |
| 1671 | } |
| 1672 | return reformat(Style, Lex, SourceMgr, CharRanges); |
| 1673 | } |
| 1674 | |
Alexander Kornienko | a1753f4 | 2013-06-28 12:51:24 +0000 | [diff] [blame^] | 1675 | LangOptions getFormattingLangOpts(FormatStyle::LanguageStandard Standard) { |
Daniel Jasper | 46ef852 | 2013-01-10 13:08:12 +0000 | [diff] [blame] | 1676 | LangOptions LangOpts; |
| 1677 | LangOpts.CPlusPlus = 1; |
Alexander Kornienko | a1753f4 | 2013-06-28 12:51:24 +0000 | [diff] [blame^] | 1678 | LangOpts.CPlusPlus11 = Standard == FormatStyle::LS_Cpp03 ? 0 : 1; |
Daniel Jasper | b64eca0 | 2013-03-22 10:01:29 +0000 | [diff] [blame] | 1679 | LangOpts.LineComment = 1; |
Daniel Jasper | 46ef852 | 2013-01-10 13:08:12 +0000 | [diff] [blame] | 1680 | LangOpts.Bool = 1; |
| 1681 | LangOpts.ObjC1 = 1; |
| 1682 | LangOpts.ObjC2 = 1; |
| 1683 | return LangOpts; |
| 1684 | } |
| 1685 | |
Daniel Jasper | cd16238 | 2013-01-07 13:26:07 +0000 | [diff] [blame] | 1686 | } // namespace format |
| 1687 | } // namespace clang |