1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00
llvm-mirror/tools/llvm-xray/xray-registry.cc
Dean Michael Berris 140a0d7e69 [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
2016-10-26 04:14:34 +00:00

42 lines
1.3 KiB
C++

//===- xray-registry.cc - Implement a command registry. -------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
#include "xray-registry.h"
#include "llvm/Support/ManagedStatic.h"
#include <unordered_map>
namespace llvm {
namespace xray {
using HandlerType = std::function<Error()>;
ManagedStatic<std::unordered_map<cl::SubCommand *, HandlerType>> Commands;
CommandRegistration::CommandRegistration(cl::SubCommand *SC,
HandlerType Command) {
assert(Commands->count(SC) == 0 &&
"Attempting to overwrite a command handler");
assert(Command && "Attempting to register an empty std::function<Error()>");
(*Commands)[SC] = Command;
}
HandlerType dispatch(cl::SubCommand *SC) {
auto It = Commands->find(SC);
assert(It != Commands->end() &&
"Attempting to dispatch on un-registered SubCommand.");
return It->second;
}
} // namespace xray
} // namespace llvm