OSDN Git Service

[XRay] Define the library for XRay trace logs
[android-x86/external-llvm.git] / tools / llvm-xray / llvm-xray.cc
1 //===- 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"
23
24 using namespace llvm;
25 using namespace llvm::xray;
26
27 int 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 }