mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-01 01:14:22 +00:00
65787e2459
When using orbis-llvm-cov.exe to generate the HTML report, the HTML report can look quite different to the source file if it includes tabs.The default tab size is 2 spaces instead of 8 spaces. A command line switch is be added to set the tab size. Differential Revision: https://reviews.llvm.org/D23087 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277715 91177308-0d34-0410-b5e6-96231b3b80d8
54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
//===- CoverageViewOptions.h - Code coverage display options -------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_COV_COVERAGEVIEWOPTIONS_H
|
|
#define LLVM_COV_COVERAGEVIEWOPTIONS_H
|
|
|
|
#include "RenderingSupport.h"
|
|
#include <vector>
|
|
|
|
namespace llvm {
|
|
|
|
/// \brief The options for displaying the code coverage information.
|
|
struct CoverageViewOptions {
|
|
enum class OutputFormat {
|
|
Text,
|
|
HTML
|
|
};
|
|
|
|
bool Debug;
|
|
bool Colors;
|
|
bool ShowLineNumbers;
|
|
bool ShowLineStats;
|
|
bool ShowRegionMarkers;
|
|
bool ShowLineStatsOrRegionMarkers;
|
|
bool ShowExpandedRegions;
|
|
bool ShowFunctionInstantiations;
|
|
bool ShowFullFilenames;
|
|
OutputFormat Format;
|
|
std::string ShowOutputDirectory;
|
|
std::vector<std::string> DemanglerOpts;
|
|
uint32_t TabSize;
|
|
|
|
/// \brief Change the output's stream color if the colors are enabled.
|
|
ColoredRawOstream colored_ostream(raw_ostream &OS,
|
|
raw_ostream::Colors Color) const {
|
|
return llvm::colored_ostream(OS, Color, Colors);
|
|
}
|
|
|
|
/// \brief Check if an output directory has been specified.
|
|
bool hasOutputDirectory() const { return !ShowOutputDirectory.empty(); }
|
|
|
|
/// \brief Check if a demangler has been specified.
|
|
bool hasDemangler() const { return !DemanglerOpts.empty(); }
|
|
};
|
|
}
|
|
|
|
#endif // LLVM_COV_COVERAGEVIEWOPTIONS_H
|