2018-05-02 02:43:17 +02:00
|
|
|
//===- llvm-xray.cpp: XRay Tool Main Program ------------------------------===//
|
2016-10-26 06:14:34 +02:00
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-10-26 06:14:34 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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/raw_ostream.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()) {
|
2017-03-29 06:55:45 +02:00
|
|
|
if (*SC) {
|
|
|
|
// If no subcommand was provided, we need to explicitly check if this is
|
|
|
|
// the top-level subcommand.
|
|
|
|
if (SC == &*cl::TopLevelSubCommand) {
|
|
|
|
cl::PrintHelpMessage(false, true);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-26 06:14:34 +02:00
|
|
|
if (auto C = dispatch(SC)) {
|
|
|
|
ExitOnError("llvm-xray: ")(C());
|
|
|
|
return 0;
|
|
|
|
}
|
2017-03-29 06:55:45 +02:00
|
|
|
}
|
2016-10-26 06:14:34 +02:00
|
|
|
}
|
|
|
|
|
2017-03-29 06:55:45 +02:00
|
|
|
// If all else fails, we still print the usage message.
|
2016-10-26 06:14:34 +02:00
|
|
|
cl::PrintHelpMessage(false, true);
|
2017-09-08 01:30:48 +02:00
|
|
|
return 0;
|
2016-10-26 06:14:34 +02:00
|
|
|
}
|