mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
b6fca0bb37
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230747 91177308-0d34-0410-b5e6-96231b3b80d8
81 lines
1.9 KiB
C++
81 lines
1.9 KiB
C++
//===- 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 <algorithm>
|
|
|
|
using namespace llvm;
|
|
|
|
LinePrinter::LinePrinter(int Indent, llvm::raw_ostream &Stream)
|
|
: OS(Stream), IndentSpaces(Indent), CurrentIndent(0) {}
|
|
|
|
void LinePrinter::Indent() { CurrentIndent += IndentSpaces; }
|
|
|
|
void LinePrinter::Unindent() {
|
|
CurrentIndent = std::max(0, CurrentIndent - IndentSpaces);
|
|
}
|
|
|
|
void LinePrinter::NewLine() {
|
|
OS << "\n";
|
|
OS.indent(CurrentIndent);
|
|
}
|
|
|
|
WithColor::WithColor(LinePrinter &P, PDB_ColorItem C) : OS(P.OS) {
|
|
if (C == PDB_ColorItem::None)
|
|
OS.resetColor();
|
|
else {
|
|
raw_ostream::Colors Color;
|
|
bool Bold;
|
|
translateColor(C, Color, Bold);
|
|
OS.changeColor(Color, Bold);
|
|
}
|
|
}
|
|
|
|
WithColor::~WithColor() { OS.resetColor(); }
|
|
|
|
void WithColor::translateColor(PDB_ColorItem C, raw_ostream::Colors &Color,
|
|
bool &Bold) const {
|
|
switch (C) {
|
|
case PDB_ColorItem::Address:
|
|
Color = raw_ostream::YELLOW;
|
|
Bold = true;
|
|
return;
|
|
case PDB_ColorItem::Keyword:
|
|
Color = raw_ostream::MAGENTA;
|
|
Bold = true;
|
|
return;
|
|
case PDB_ColorItem::Offset:
|
|
Color = raw_ostream::YELLOW;
|
|
Bold = false;
|
|
return;
|
|
case PDB_ColorItem::Type:
|
|
Color = raw_ostream::CYAN;
|
|
Bold = true;
|
|
return;
|
|
case PDB_ColorItem::Identifier:
|
|
Color = raw_ostream::CYAN;
|
|
Bold = false;
|
|
return;
|
|
case PDB_ColorItem::Path:
|
|
Color = raw_ostream::CYAN;
|
|
Bold = false;
|
|
return;
|
|
case PDB_ColorItem::SectionHeader:
|
|
Color = raw_ostream::RED;
|
|
Bold = true;
|
|
return;
|
|
case PDB_ColorItem::LiteralValue:
|
|
Color = raw_ostream::GREEN;
|
|
Bold = true;
|
|
default:
|
|
return;
|
|
}
|
|
}
|