mirror of
https://github.com/RPCS3/llvm.git
synced 2025-03-04 08:37:45 +00:00

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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285155 91177308-0d34-0410-b5e6-96231b3b80d8
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
//===- llvm-xray.cc - XRay Tool Main Program ------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements the main entry point for the suite of XRay tools. All
|
|
// additional functionality are implemented as subcommands.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Basic usage:
|
|
//
|
|
// llvm-xray [options] <subcommand> [subcommand-specific options]
|
|
//
|
|
#include "xray-registry.h"
|
|
#include "llvm/Support/CommandLine.h"
|
|
#include "llvm/Support/FileSystem.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include <unistd.h>
|
|
|
|
using namespace llvm;
|
|
using namespace llvm::xray;
|
|
|
|
int main(int argc, char *argv[]) {
|
|
cl::ParseCommandLineOptions(argc, argv,
|
|
"XRay Tools\n\n"
|
|
" This program consolidates multiple XRay trace "
|
|
"processing tools for convenient access.\n");
|
|
for (auto *SC : cl::getRegisteredSubcommands()) {
|
|
if (*SC)
|
|
if (auto C = dispatch(SC)) {
|
|
ExitOnError("llvm-xray: ")(C());
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
cl::PrintHelpMessage(false, true);
|
|
}
|