Skip to content
Snippets Groups Projects
Commit a3ba6bba authored by Chandler Carruth's avatar Chandler Carruth
Browse files

Switch some of my recently added helper functions to use the proper

style, and add doxyments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140495 91177308-0d34-0410-b5e6-96231b3b80d8
parent 253d41d7
No related branches found
No related tags found
No related merge requests found
...@@ -1059,7 +1059,10 @@ void TextDiagnosticPrinter::EmitDiagnosticLoc(DiagnosticsEngine::Level Level, ...@@ -1059,7 +1059,10 @@ void TextDiagnosticPrinter::EmitDiagnosticLoc(DiagnosticsEngine::Level Level,
OS << ' '; OS << ' ';
} }
static void PrintDiagnosticLevel(raw_ostream &OS, /// \brief Print the diagonstic level to a raw_ostream.
///
/// Handles colorizing the level and formatting.
static void printDiagnosticLevel(raw_ostream &OS,
DiagnosticsEngine::Level Level, DiagnosticsEngine::Level Level,
bool ShowColors) { bool ShowColors) {
if (ShowColors) { if (ShowColors) {
...@@ -1086,12 +1089,22 @@ static void PrintDiagnosticLevel(raw_ostream &OS, ...@@ -1086,12 +1089,22 @@ static void PrintDiagnosticLevel(raw_ostream &OS,
OS.resetColor(); OS.resetColor();
} }
static void PrintDiagnosticName(raw_ostream &OS, const Diagnostic &Info) { /// \brief Print the diagnostic name to a raw_ostream.
///
/// This prints the diagnostic name to a raw_ostream if it has one. It formats
/// the name according to the expected diagnostic message formatting:
/// " [diagnostic_name_here]"
static void printDiagnosticName(raw_ostream &OS, const Diagnostic &Info) {
if (!DiagnosticIDs::isBuiltinNote(Info.getID())) if (!DiagnosticIDs::isBuiltinNote(Info.getID()))
OS << " [" << DiagnosticIDs::getName(Info.getID()) << "]"; OS << " [" << DiagnosticIDs::getName(Info.getID()) << "]";
} }
static void PrintDiagnosticOptions(raw_ostream &OS, /// \brief Print any diagnostic option information to a raw_ostream.
///
/// This implements all of the logic for adding diagnostic options to a message
/// (via OS). Each relevant option is comma separated and all are enclosed in
/// the standard bracketing: " [...]".
static void printDiagnosticOptions(raw_ostream &OS,
DiagnosticsEngine::Level Level, DiagnosticsEngine::Level Level,
const Diagnostic &Info, const Diagnostic &Info,
const DiagnosticOptions &DiagOpts) { const DiagnosticOptions &DiagOpts) {
...@@ -1179,15 +1192,15 @@ void TextDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level, ...@@ -1179,15 +1192,15 @@ void TextDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level,
OS.resetColor(); OS.resetColor();
} }
PrintDiagnosticLevel(OS, Level, DiagOpts->ShowColors); printDiagnosticLevel(OS, Level, DiagOpts->ShowColors);
llvm::SmallString<100> OutStr; llvm::SmallString<100> OutStr;
Info.FormatDiagnostic(OutStr); Info.FormatDiagnostic(OutStr);
llvm::raw_svector_ostream DiagMessageStream(OutStr); llvm::raw_svector_ostream DiagMessageStream(OutStr);
if (DiagOpts->ShowNames) if (DiagOpts->ShowNames)
PrintDiagnosticName(DiagMessageStream, Info); printDiagnosticName(DiagMessageStream, Info);
PrintDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpts); printDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpts);
DiagMessageStream.flush(); DiagMessageStream.flush();
if (DiagOpts->ShowColors) { if (DiagOpts->ShowColors) {
......
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