blob: ac5faaa408b504d504551eddf9358ebaa6b8e9c4 [file] [log] [blame]
Dean Michael Berrisc92bfb52016-10-26 04:14:34 +00001//===- llvm-xray.cc - XRay Tool Main Program ------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the main entry point for the suite of XRay tools. All
11// additional functionality are implemented as subcommands.
12//
13//===----------------------------------------------------------------------===//
14//
15// Basic usage:
16//
17// llvm-xray [options] <subcommand> [subcommand-specific options]
18//
19#include "xray-registry.h"
20#include "llvm/Support/CommandLine.h"
21#include "llvm/Support/FileSystem.h"
22#include "llvm/Support/raw_ostream.h"
Dean Michael Berrisc92bfb52016-10-26 04:14:34 +000023
24using namespace llvm;
25using namespace llvm::xray;
26
27int main(int argc, char *argv[]) {
28 cl::ParseCommandLineOptions(argc, argv,
29 "XRay Tools\n\n"
30 " This program consolidates multiple XRay trace "
31 "processing tools for convenient access.\n");
32 for (auto *SC : cl::getRegisteredSubcommands()) {
33 if (*SC)
34 if (auto C = dispatch(SC)) {
35 ExitOnError("llvm-xray: ")(C());
36 return 0;
37 }
38 }
39
40 cl::PrintHelpMessage(false, true);
41}