Skip to content
Snippets Groups Projects
Commit ca547dbb authored by Manuel Klimek's avatar Manuel Klimek
Browse files

Add debugging support for split penalties.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172616 91177308-0d34-0410-b5e6-96231b3b80d8
parent 8fa37999
No related branches found
No related tags found
No related merge requests found
...@@ -16,15 +16,21 @@ ...@@ -16,15 +16,21 @@
/// ///
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "clang/Format/Format.h" #define DEBUG_TYPE "format-formatter"
#include "UnwrappedLineParser.h" #include "UnwrappedLineParser.h"
#include "clang/Basic/Diagnostic.h" #include "clang/Basic/Diagnostic.h"
#include "clang/Basic/OperatorPrecedence.h" #include "clang/Basic/OperatorPrecedence.h"
#include "clang/Basic/SourceManager.h" #include "clang/Basic/SourceManager.h"
#include "clang/Format/Format.h"
#include "clang/Frontend/TextDiagnosticPrinter.h" #include "clang/Frontend/TextDiagnosticPrinter.h"
#include "clang/Lex/Lexer.h" #include "clang/Lex/Lexer.h"
#include "llvm/Support/Debug.h"
#include <string> #include <string>
// Uncomment to get debug output from tests:
// #define DEBUG_WITH_TYPE(T, X) do { X; } while(0)
namespace clang { namespace clang {
namespace format { namespace format {
...@@ -246,6 +252,10 @@ public: ...@@ -246,6 +252,10 @@ public:
State.LineContainsContinuedForLoopSection = false; State.LineContainsContinuedForLoopSection = false;
State.StartOfLineLevel = 1; State.StartOfLineLevel = 1;
DEBUG({
DebugTokenState(*State.NextToken);
});
// The first token has already been indented and thus consumed. // The first token has already been indented and thus consumed.
moveStateToNextToken(State); moveStateToNextToken(State);
...@@ -262,6 +272,18 @@ public: ...@@ -262,6 +272,18 @@ public:
} else { } else {
unsigned NoBreak = calcPenalty(State, false, UINT_MAX); unsigned NoBreak = calcPenalty(State, false, UINT_MAX);
unsigned Break = calcPenalty(State, true, NoBreak); unsigned Break = calcPenalty(State, true, NoBreak);
DEBUG({
if (Break < NoBreak)
llvm::errs() << "\n";
else
llvm::errs() << " ";
llvm::errs() << "<";
DebugPenalty(Break, Break < NoBreak);
llvm::errs() << "/";
DebugPenalty(NoBreak, !(Break < NoBreak));
llvm::errs() << "> ";
DebugTokenState(*State.NextToken);
});
addTokenToState(Break < NoBreak, false, State); addTokenToState(Break < NoBreak, false, State);
if (State.NextToken != NULL && if (State.NextToken != NULL &&
State.NextToken->Parent->Type == TT_CtorInitializerColon) { State.NextToken->Parent->Type == TT_CtorInitializerColon) {
...@@ -271,10 +293,28 @@ public: ...@@ -271,10 +293,28 @@ public:
} }
} }
} }
DEBUG(llvm::errs() << "\n");
return State.Column; return State.Column;
} }
private: private:
void DebugTokenState(const AnnotatedToken &AnnotatedTok) {
const Token &Tok = AnnotatedTok.FormatTok.Tok;
llvm::errs()
<< StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
Tok.getLength());
llvm::errs();
}
void DebugPenalty(unsigned Penalty, bool Winner) {
llvm::errs().changeColor(Winner ? raw_ostream::GREEN : raw_ostream::RED);
if (Penalty == UINT_MAX)
llvm::errs() << "MAX";
else
llvm::errs() << Penalty;
llvm::errs().resetColor();
}
struct ParenState { struct ParenState {
ParenState(unsigned Indent, unsigned LastSpace) ParenState(unsigned Indent, unsigned LastSpace)
: Indent(Indent), LastSpace(LastSpace), FirstLessLess(0), : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
......
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
#include "clang/Basic/Diagnostic.h" #include "clang/Basic/Diagnostic.h"
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
#include "UnwrappedLineParser.h" #include "UnwrappedLineParser.h"
// Uncomment to get debug output from tests: // Uncomment to get debug output from tests:
......
...@@ -7,10 +7,16 @@ ...@@ -7,10 +7,16 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#define DEBUG_TYPE "format-test"
#include "clang/Format/Format.h" #include "clang/Format/Format.h"
#include "../Tooling/RewriterTestContext.h"
#include "clang/Lex/Lexer.h" #include "clang/Lex/Lexer.h"
#include "gtest/gtest.h" #include "gtest/gtest.h"
#include "llvm/Support/Debug.h"
#include "../Tooling/RewriterTestContext.h"
// Uncomment to get debug output from tests:
// #define DEBUG_WITH_TYPE(T, X) do { X; } while(0)
namespace clang { namespace clang {
namespace format { namespace format {
...@@ -19,6 +25,7 @@ class FormatTest : public ::testing::Test { ...@@ -19,6 +25,7 @@ class FormatTest : public ::testing::Test {
protected: protected:
std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length, std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length,
const FormatStyle &Style) { const FormatStyle &Style) {
DEBUG(llvm::errs() << "---\n");
RewriterTestContext Context; RewriterTestContext Context;
FileID ID = Context.createInMemoryFile("input.cc", Code); FileID ID = Context.createInMemoryFile("input.cc", Code);
SourceLocation Start = SourceLocation Start =
...@@ -32,6 +39,7 @@ protected: ...@@ -32,6 +39,7 @@ protected:
Ranges, Ranges,
new IgnoringDiagConsumer()); new IgnoringDiagConsumer());
EXPECT_TRUE(applyAllReplacements(Replace, Context.Rewrite)); EXPECT_TRUE(applyAllReplacements(Replace, Context.Rewrite));
DEBUG(llvm::errs() << "\n" << Context.getRewrittenText(ID) << "\n\n");
return Context.getRewrittenText(ID); return Context.getRewrittenText(ID);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment