mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-14 05:20:30 +00:00
[llvm-cov] Document some fields in a class (NFC)
llvm-svn: 282203
This commit is contained in:
parent
2e7b123245
commit
03d68ebbdc
@ -55,6 +55,9 @@ public:
|
|||||||
Export
|
Export
|
||||||
};
|
};
|
||||||
|
|
||||||
|
int run(Command Cmd, int argc, const char **argv);
|
||||||
|
|
||||||
|
private:
|
||||||
/// \brief Print the error message to the error output stream.
|
/// \brief Print the error message to the error output stream.
|
||||||
void error(const Twine &Message, StringRef Whence = "");
|
void error(const Twine &Message, StringRef Whence = "");
|
||||||
|
|
||||||
@ -94,8 +97,6 @@ public:
|
|||||||
/// \brief Demangle \p Sym if possible. Otherwise, just return \p Sym.
|
/// \brief Demangle \p Sym if possible. Otherwise, just return \p Sym.
|
||||||
StringRef getSymbolForHumans(StringRef Sym) const;
|
StringRef getSymbolForHumans(StringRef Sym) const;
|
||||||
|
|
||||||
int run(Command Cmd, int argc, const char **argv);
|
|
||||||
|
|
||||||
typedef llvm::function_ref<int(int, const char **)> CommandLineParserType;
|
typedef llvm::function_ref<int(int, const char **)> CommandLineParserType;
|
||||||
|
|
||||||
int show(int argc, const char **argv,
|
int show(int argc, const char **argv,
|
||||||
@ -109,14 +110,24 @@ public:
|
|||||||
|
|
||||||
std::string ObjectFilename;
|
std::string ObjectFilename;
|
||||||
CoverageViewOptions ViewOpts;
|
CoverageViewOptions ViewOpts;
|
||||||
std::string PGOFilename;
|
|
||||||
CoverageFiltersMatchAll Filters;
|
CoverageFiltersMatchAll Filters;
|
||||||
|
|
||||||
|
/// The path to the indexed profile.
|
||||||
|
std::string PGOFilename;
|
||||||
|
|
||||||
|
/// A list of input source files.
|
||||||
std::vector<StringRef> SourceFiles;
|
std::vector<StringRef> SourceFiles;
|
||||||
|
|
||||||
|
/// Whether or not we're in -filename-equivalence mode.
|
||||||
bool CompareFilenamesOnly;
|
bool CompareFilenamesOnly;
|
||||||
|
|
||||||
|
/// In -filename-equivalence mode, this maps absolute paths from the
|
||||||
|
/// coverage mapping data to input source files.
|
||||||
StringMap<std::string> RemappedFilenames;
|
StringMap<std::string> RemappedFilenames;
|
||||||
|
|
||||||
|
/// The architecture the coverage mapping data targets.
|
||||||
std::string CoverageArch;
|
std::string CoverageArch;
|
||||||
|
|
||||||
private:
|
|
||||||
/// A cache for demangled symbol names.
|
/// A cache for demangled symbol names.
|
||||||
StringMap<std::string> DemangledNames;
|
StringMap<std::string> DemangledNames;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user