diff options
author | Dean Michael Berris <dberris@google.com> | 2016-10-26 04:14:34 +0000 |
---|---|---|
committer | Dean Michael Berris <dberris@google.com> | 2016-10-26 04:14:34 +0000 |
commit | c92bfb5a044b4a135c492fd81c0028c620060a26 (patch) | |
tree | 4978ca3583f8262f279c0a9d65d31813451eb1c1 /llvm/tools/llvm-xray/xray-registry.h | |
parent | c773c9f49174de58f6a8a2232d169d71787a67ed (diff) | |
download | bcm5719-llvm-c92bfb5a044b4a135c492fd81c0028c620060a26.tar.gz bcm5719-llvm-c92bfb5a044b4a135c492fd81c0028c620060a26.zip |
[XRay] Implement `llvm-xray extract`, start of the llvm-xray tool
Usage:
llvm-xray extract <object file> [-o <filename or '-'>]
The tool gets the XRay instrumentation map from an object file and turns
it into YAML. We first support ELF64 sleds on x86_64 binaries, with
provision for supporting other supported platforms and formats later.
This is the first of a many-part change to fully implement the
`llvm-xray` tool.
We also define a subcommand registration and dispatch mechanism to be
used by other further subcommand implementations for llvm-xray.
Diffusion Revision: https://reviews.llvm.org/D21987
llvm-svn: 285165
Diffstat (limited to 'llvm/tools/llvm-xray/xray-registry.h')
-rw-r--r-- | llvm/tools/llvm-xray/xray-registry.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/llvm/tools/llvm-xray/xray-registry.h b/llvm/tools/llvm-xray/xray-registry.h new file mode 100644 index 00000000000..6eab016273f --- /dev/null +++ b/llvm/tools/llvm-xray/xray-registry.h @@ -0,0 +1,41 @@ +//===- xray-registry.h - Define registry mechanism for commands. ----------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// Implement a simple subcommand registry. +// +//===----------------------------------------------------------------------===// +#ifndef TOOLS_LLVM_XRAY_XRAY_REGISTRY_H +#define TOOLS_LLVM_XRAY_XRAY_REGISTRY_H + +#include "llvm/Support/CommandLine.h" +#include "llvm/Support/Error.h" + +namespace llvm { +namespace xray { + +// Use |CommandRegistration| as a global initialiser that registers a function +// and associates it with |SC|. This requires that a command has not been +// registered to a given |SC|. +// +// Usage: +// +// // At namespace scope. +// static CommandRegistration Unused(&MySubCommand, [] { ... }); +// +struct CommandRegistration { + CommandRegistration(cl::SubCommand *SC, std::function<Error()> Command); +}; + +// Requires that |SC| is not null and has an associated function to it. +std::function<Error()> dispatch(cl::SubCommand *SC); + +} // namespace xray +} // namespace llvm + +#endif // TOOLS_LLVM_XRAY_XRAY_REGISTRY_H |