summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2017-10-04 21:25:31 +0000
committerpatrick <patrick@openbsd.org>2017-10-04 21:25:31 +0000
commit63b1f097e899aa7fecad08eff2ebca8ff6e74dc4 (patch)
treefe7991fa94bf2eba708e9d40e57b2b4b0b6ac6d6 /gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp
parentTedu files that got removed in LLVM 5.0.0. (diff)
downloadwireguard-openbsd-63b1f097e899aa7fecad08eff2ebca8ff6e74dc4.tar.xz
wireguard-openbsd-63b1f097e899aa7fecad08eff2ebca8ff6e74dc4.zip
Tedu files that got removed in LLVM 5.0.0.
Diffstat (limited to 'gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp')
-rw-r--r--gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp123
1 files changed, 0 insertions, 123 deletions
diff --git a/gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp b/gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp
deleted file mode 100644
index 47c7d3e3c0e..00000000000
--- a/gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp
+++ /dev/null
@@ -1,123 +0,0 @@
-//===- LinePrinter.cpp ------------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#include "LinePrinter.h"
-
-#include "llvm-pdbdump.h"
-
-#include "llvm/ADT/STLExtras.h"
-#include "llvm/Support/Regex.h"
-
-#include <algorithm>
-
-using namespace llvm;
-using namespace llvm::pdb;
-
-namespace {
-bool IsItemExcluded(llvm::StringRef Item,
- std::list<llvm::Regex> &IncludeFilters,
- std::list<llvm::Regex> &ExcludeFilters) {
- if (Item.empty())
- return false;
-
- auto match_pred = [Item](llvm::Regex &R) { return R.match(Item); };
-
- // Include takes priority over exclude. If the user specified include
- // filters, and none of them include this item, them item is gone.
- if (!IncludeFilters.empty() && !any_of(IncludeFilters, match_pred))
- return true;
-
- if (any_of(ExcludeFilters, match_pred))
- return true;
-
- return false;
-}
-}
-
-using namespace llvm;
-
-LinePrinter::LinePrinter(int Indent, llvm::raw_ostream &Stream)
- : OS(Stream), IndentSpaces(Indent), CurrentIndent(0) {
- SetFilters(ExcludeTypeFilters, opts::pretty::ExcludeTypes.begin(),
- opts::pretty::ExcludeTypes.end());
- SetFilters(ExcludeSymbolFilters, opts::pretty::ExcludeSymbols.begin(),
- opts::pretty::ExcludeSymbols.end());
- SetFilters(ExcludeCompilandFilters, opts::pretty::ExcludeCompilands.begin(),
- opts::pretty::ExcludeCompilands.end());
-
- SetFilters(IncludeTypeFilters, opts::pretty::IncludeTypes.begin(),
- opts::pretty::IncludeTypes.end());
- SetFilters(IncludeSymbolFilters, opts::pretty::IncludeSymbols.begin(),
- opts::pretty::IncludeSymbols.end());
- SetFilters(IncludeCompilandFilters, opts::pretty::IncludeCompilands.begin(),
- opts::pretty::IncludeCompilands.end());
-}
-
-void LinePrinter::Indent() { CurrentIndent += IndentSpaces; }
-
-void LinePrinter::Unindent() {
- CurrentIndent = std::max(0, CurrentIndent - IndentSpaces);
-}
-
-void LinePrinter::NewLine() {
- OS << "\n";
- OS.indent(CurrentIndent);
-}
-
-bool LinePrinter::IsTypeExcluded(llvm::StringRef TypeName) {
- return IsItemExcluded(TypeName, IncludeTypeFilters, ExcludeTypeFilters);
-}
-
-bool LinePrinter::IsSymbolExcluded(llvm::StringRef SymbolName) {
- return IsItemExcluded(SymbolName, IncludeSymbolFilters, ExcludeSymbolFilters);
-}
-
-bool LinePrinter::IsCompilandExcluded(llvm::StringRef CompilandName) {
- return IsItemExcluded(CompilandName, IncludeCompilandFilters,
- ExcludeCompilandFilters);
-}
-
-WithColor::WithColor(LinePrinter &P, PDB_ColorItem C) : OS(P.OS) {
- applyColor(C);
-}
-
-WithColor::~WithColor() { OS.resetColor(); }
-
-void WithColor::applyColor(PDB_ColorItem C) {
- switch (C) {
- case PDB_ColorItem::None:
- OS.resetColor();
- return;
- case PDB_ColorItem::Address:
- OS.changeColor(raw_ostream::YELLOW, /*bold=*/true);
- return;
- case PDB_ColorItem::Keyword:
- OS.changeColor(raw_ostream::MAGENTA, true);
- return;
- case PDB_ColorItem::Register:
- case PDB_ColorItem::Offset:
- OS.changeColor(raw_ostream::YELLOW, false);
- return;
- case PDB_ColorItem::Type:
- OS.changeColor(raw_ostream::CYAN, true);
- return;
- case PDB_ColorItem::Identifier:
- OS.changeColor(raw_ostream::CYAN, false);
- return;
- case PDB_ColorItem::Path:
- OS.changeColor(raw_ostream::CYAN, false);
- return;
- case PDB_ColorItem::SectionHeader:
- OS.changeColor(raw_ostream::RED, true);
- return;
- case PDB_ColorItem::LiteralValue:
- OS.changeColor(raw_ostream::GREEN, true);
- return;
- }
-}