Dean Michael Berris | a0e3ae4 | 2018-05-02 00:43:17 +0000 | [diff] [blame] | 1 | //===- llvm-xray.cpp: XRay Tool Main Program ------------------------------===// |
Dean Michael Berris | c92bfb5 | 2016-10-26 04:14:34 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Dean Michael Berris | c92bfb5 | 2016-10-26 04:14:34 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements the main entry point for the suite of XRay tools. All |
| 10 | // additional functionality are implemented as subcommands. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | // |
| 14 | // Basic usage: |
| 15 | // |
| 16 | // llvm-xray [options] <subcommand> [subcommand-specific options] |
| 17 | // |
| 18 | #include "xray-registry.h" |
| 19 | #include "llvm/Support/CommandLine.h" |
Dean Michael Berris | c92bfb5 | 2016-10-26 04:14:34 +0000 | [diff] [blame] | 20 | #include "llvm/Support/raw_ostream.h" |
Dean Michael Berris | c92bfb5 | 2016-10-26 04:14:34 +0000 | [diff] [blame] | 21 | |
| 22 | using namespace llvm; |
| 23 | using namespace llvm::xray; |
| 24 | |
| 25 | int main(int argc, char *argv[]) { |
| 26 | cl::ParseCommandLineOptions(argc, argv, |
| 27 | "XRay Tools\n\n" |
| 28 | " This program consolidates multiple XRay trace " |
| 29 | "processing tools for convenient access.\n"); |
| 30 | for (auto *SC : cl::getRegisteredSubcommands()) { |
Dean Michael Berris | f454301 | 2017-03-29 04:55:45 +0000 | [diff] [blame] | 31 | if (*SC) { |
| 32 | // If no subcommand was provided, we need to explicitly check if this is |
| 33 | // the top-level subcommand. |
| 34 | if (SC == &*cl::TopLevelSubCommand) { |
| 35 | cl::PrintHelpMessage(false, true); |
| 36 | return 0; |
| 37 | } |
Dean Michael Berris | c92bfb5 | 2016-10-26 04:14:34 +0000 | [diff] [blame] | 38 | if (auto C = dispatch(SC)) { |
| 39 | ExitOnError("llvm-xray: ")(C()); |
| 40 | return 0; |
| 41 | } |
Dean Michael Berris | f454301 | 2017-03-29 04:55:45 +0000 | [diff] [blame] | 42 | } |
Dean Michael Berris | c92bfb5 | 2016-10-26 04:14:34 +0000 | [diff] [blame] | 43 | } |
| 44 | |
Dean Michael Berris | f454301 | 2017-03-29 04:55:45 +0000 | [diff] [blame] | 45 | // If all else fails, we still print the usage message. |
Dean Michael Berris | c92bfb5 | 2016-10-26 04:14:34 +0000 | [diff] [blame] | 46 | cl::PrintHelpMessage(false, true); |
Rafael Espindola | 39c150e | 2017-09-07 23:30:48 +0000 | [diff] [blame] | 47 | return 0; |
Dean Michael Berris | c92bfb5 | 2016-10-26 04:14:34 +0000 | [diff] [blame] | 48 | } |