mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
Change various llvm utilities to use PrettyStackTraceProgram in
their main routines. This makes the tools print their argc/argv commands if they crash. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66248 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -407,6 +407,12 @@ bool JumpThreading::ProcessBranchOnDuplicateCond(BasicBlock *PredBB,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct APIntUnsignedOrdering {
|
||||||
|
bool operator()(const APInt &LHS, const APInt &RHS) const {
|
||||||
|
return LHS.ult(RHS);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
/// ProcessSwitchOnDuplicateCond - We found a block and a predecessor of that
|
/// ProcessSwitchOnDuplicateCond - We found a block and a predecessor of that
|
||||||
/// block that switch on exactly the same condition. This means that we almost
|
/// block that switch on exactly the same condition. This means that we almost
|
||||||
/// always know the direction of the edge in the DESTBB:
|
/// always know the direction of the edge in the DESTBB:
|
||||||
@ -474,6 +480,34 @@ bool JumpThreading::ProcessSwitchOnDuplicateCond(BasicBlock *PredBB,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
// Figure out on which of the condition allow us to get to DESTBB. If DESTBB
|
||||||
|
// is the default label, we compute the set of values COND is known not to be
|
||||||
|
// otherwise we compute the set of options that COND could be.
|
||||||
|
SmallVector<APInt, 16> KnownValues;
|
||||||
|
bool DestBBIsDefault = PredSI->getSuccessor(0) == DestBB;
|
||||||
|
|
||||||
|
if (DestBBIsDefault) {
|
||||||
|
// DestBB the default case. Collect the values where PredBB can't branch to
|
||||||
|
// DestBB.
|
||||||
|
for (unsigned i = 1/*skip default*/, e = PredSI->getNumCases(); i != e; ++i)
|
||||||
|
if (PredSI->getSuccessor(i) != DestBB)
|
||||||
|
KnownValues.push_back(PredSI->getCaseValue(i)->getValue());
|
||||||
|
} else {
|
||||||
|
// Not the default case. Collect the values where PredBB can branch to
|
||||||
|
// DestBB.
|
||||||
|
for (unsigned i = 1/*skip default*/, e = PredSI->getNumCases(); i != e; ++i)
|
||||||
|
if (PredSI->getSuccessor(i) == DestBB)
|
||||||
|
KnownValues.push_back(PredSI->getCaseValue(i)->getValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
std::sort(KnownValues.begin(), KnownValues.end(), APIntUnsignedOrdering());
|
||||||
|
return false;
|
||||||
|
cerr << "\nFOUND THREAD BLOCKS:\n";
|
||||||
|
PredBB->dump();
|
||||||
|
DestBB->dump();
|
||||||
|
#endif
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Support/PluginLoader.h"
|
#include "llvm/Support/PluginLoader.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/System/Process.h"
|
#include "llvm/System/Process.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include "llvm/LinkAllVMCore.h"
|
#include "llvm/LinkAllVMCore.h"
|
||||||
@ -64,12 +65,13 @@ static void BugpointInterruptFunction() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
llvm::sys::PrintStackTraceOnErrorSignal();
|
||||||
|
llvm::PrettyStackTraceProgram X(argc, argv);
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
cl::ParseCommandLineOptions(argc, argv,
|
cl::ParseCommandLineOptions(argc, argv,
|
||||||
"LLVM automatic testcase reducer. See\nhttp://"
|
"LLVM automatic testcase reducer. See\nhttp://"
|
||||||
"llvm.org/cmds/bugpoint.html"
|
"llvm.org/cmds/bugpoint.html"
|
||||||
" for more information.\n");
|
" for more information.\n");
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
|
||||||
sys::SetInterruptFunction(BugpointInterruptFunction);
|
sys::SetInterruptFunction(BugpointInterruptFunction);
|
||||||
|
|
||||||
BugDriver D(argv[0], AsChild, FindBugs, TimeoutValue, MemoryLimit);
|
BugDriver D(argv[0], AsChild, FindBugs, TimeoutValue, MemoryLimit);
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
#include "llvm/Support/PluginLoader.h"
|
#include "llvm/Support/PluginLoader.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/Support/RegistryParser.h"
|
#include "llvm/Support/RegistryParser.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include "llvm/Analysis/Verifier.h"
|
#include "llvm/Analysis/Verifier.h"
|
||||||
@ -192,9 +193,10 @@ static raw_ostream *GetOutputStream(const char *ProgName) {
|
|||||||
// main - Entry point for the llc compiler.
|
// main - Entry point for the llc compiler.
|
||||||
//
|
//
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
|
||||||
cl::ParseCommandLineOptions(argc, argv, "llvm system compiler\n");
|
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
|
cl::ParseCommandLineOptions(argc, argv, "llvm system compiler\n");
|
||||||
|
|
||||||
// Load the module to be compiled...
|
// Load the module to be compiled...
|
||||||
std::string ErrorMessage;
|
std::string ErrorMessage;
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
#include "llvm/Support/PluginLoader.h"
|
#include "llvm/Support/PluginLoader.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/System/Process.h"
|
#include "llvm/System/Process.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
@ -83,10 +84,12 @@ static void do_shutdown() {
|
|||||||
// main Driver function
|
// main Driver function
|
||||||
//
|
//
|
||||||
int main(int argc, char **argv, char * const *envp) {
|
int main(int argc, char **argv, char * const *envp) {
|
||||||
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
|
||||||
atexit(do_shutdown); // Call llvm_shutdown() on exit.
|
atexit(do_shutdown); // Call llvm_shutdown() on exit.
|
||||||
cl::ParseCommandLineOptions(argc, argv,
|
cl::ParseCommandLineOptions(argc, argv,
|
||||||
"llvm interpreter & dynamic compiler\n");
|
"llvm interpreter & dynamic compiler\n");
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
|
||||||
|
|
||||||
// If the user doesn't want core files, disable them.
|
// If the user doesn't want core files, disable them.
|
||||||
if (DisableCoreFiles)
|
if (DisableCoreFiles)
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
#include "llvm/Bitcode/Archive.h"
|
#include "llvm/Bitcode/Archive.h"
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
@ -686,7 +687,10 @@ doReplaceOrInsert(std::string* ErrMsg) {
|
|||||||
|
|
||||||
// main - main program for llvm-ar .. see comments in the code
|
// main - main program for llvm-ar .. see comments in the code
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
|
|
||||||
// Have the command line options parsed and handle things
|
// Have the command line options parsed and handle things
|
||||||
// like --help and --version.
|
// like --help and --version.
|
||||||
@ -695,9 +699,6 @@ int main(int argc, char **argv) {
|
|||||||
" This program archives bitcode files into single libraries\n"
|
" This program archives bitcode files into single libraries\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
// Print a stack trace if we signal out.
|
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
|
||||||
|
|
||||||
int exitCode = 0;
|
int exitCode = 0;
|
||||||
|
|
||||||
// Make sure we don't exit with "unhandled exception".
|
// Make sure we don't exit with "unhandled exception".
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#include "llvm/Bitcode/ReaderWriter.h"
|
#include "llvm/Bitcode/ReaderWriter.h"
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/Support/Streams.h"
|
#include "llvm/Support/Streams.h"
|
||||||
#include "llvm/Support/SystemUtils.h"
|
#include "llvm/Support/SystemUtils.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
@ -51,9 +52,11 @@ DisableVerify("disable-verify", cl::Hidden,
|
|||||||
cl::desc("Do not run verifier on input LLVM (dangerous!)"));
|
cl::desc("Do not run verifier on input LLVM (dangerous!)"));
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
cl::ParseCommandLineOptions(argc, argv, "llvm .ll -> .bc assembler\n");
|
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
|
cl::ParseCommandLineOptions(argc, argv, "llvm .ll -> .bc assembler\n");
|
||||||
|
|
||||||
int exitCode = 0;
|
int exitCode = 0;
|
||||||
std::ostream *Out = 0;
|
std::ostream *Out = 0;
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
@ -501,10 +502,11 @@ static int AnalyzeBitcode() {
|
|||||||
|
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
|
|
||||||
|
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
|
cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
|
||||||
|
|
||||||
return AnalyzeBitcode();
|
return AnalyzeBitcode();
|
||||||
}
|
}
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include "CLIDebugger.h"
|
#include "CLIDebugger.h"
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
@ -49,12 +50,15 @@ namespace {
|
|||||||
// main Driver function
|
// main Driver function
|
||||||
//
|
//
|
||||||
int main(int argc, char **argv, char * const *envp) {
|
int main(int argc, char **argv, char * const *envp) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
std::cout << "NOTE: llvm-db is known useless right now.\n";
|
std::cout << "NOTE: llvm-db is known useless right now.\n";
|
||||||
try {
|
try {
|
||||||
cl::ParseCommandLineOptions(argc, argv,
|
cl::ParseCommandLineOptions(argc, argv,
|
||||||
"llvm source-level debugger\n");
|
"llvm source-level debugger\n");
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
|
||||||
|
|
||||||
if (!Quiet)
|
if (!Quiet)
|
||||||
std::cout << "llvm-db: The LLVM source-level debugger\n";
|
std::cout << "llvm-db: The LLVM source-level debugger\n";
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/Support/Streams.h"
|
#include "llvm/Support/Streams.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
@ -45,10 +46,13 @@ static cl::opt<bool>
|
|||||||
DontPrint("disable-output", cl::desc("Don't output the .ll file"), cl::Hidden);
|
DontPrint("disable-output", cl::desc("Don't output the .ll file"), cl::Hidden);
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
try {
|
try {
|
||||||
cl::ParseCommandLineOptions(argc, argv, "llvm .bc -> .ll disassembler\n");
|
cl::ParseCommandLineOptions(argc, argv, "llvm .bc -> .ll disassembler\n");
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
|
||||||
|
|
||||||
std::ostream *Out = &std::cout; // Default to printing to stdout.
|
std::ostream *Out = &std::cout; // Default to printing to stdout.
|
||||||
std::string ErrorMessage;
|
std::string ErrorMessage;
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
@ -56,9 +57,12 @@ ExtractGlobal("glob", cl::desc("Specify global to extract"), cl::init(""),
|
|||||||
cl::value_desc("global"));
|
cl::value_desc("global"));
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
cl::ParseCommandLineOptions(argc, argv, "llvm extractor\n");
|
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
|
cl::ParseCommandLineOptions(argc, argv, "llvm extractor\n");
|
||||||
|
|
||||||
std::auto_ptr<Module> M;
|
std::auto_ptr<Module> M;
|
||||||
|
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
#include "llvm/Support/FileUtilities.h"
|
#include "llvm/Support/FileUtilities.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/Support/Streams.h"
|
#include "llvm/Support/Streams.h"
|
||||||
#include "llvm/Support/SystemUtils.h"
|
#include "llvm/Support/SystemUtils.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
@ -501,14 +502,17 @@ extern void Optimize(Module*);
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv, char **envp) {
|
int main(int argc, char **argv, char **envp) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
try {
|
try {
|
||||||
// Initial global variable above for convenience printing of program name.
|
// Initial global variable above for convenience printing of program name.
|
||||||
progname = sys::Path(argv[0]).getBasename();
|
progname = sys::Path(argv[0]).getBasename();
|
||||||
|
|
||||||
// Parse the command line options
|
// Parse the command line options
|
||||||
cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
|
cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
|
||||||
|
|
||||||
// Construct a Linker (now that Verbose is set)
|
// Construct a Linker (now that Verbose is set)
|
||||||
Linker TheLinker(progname, OutputFilename, Verbose);
|
Linker TheLinker(progname, OutputFilename, Verbose);
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/Support/Streams.h"
|
#include "llvm/Support/Streams.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include "llvm/System/Path.h"
|
#include "llvm/System/Path.h"
|
||||||
@ -79,10 +80,12 @@ static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
|
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
assert(InputFilenames.size() > 0 && "OneOrMore is not working");
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
|
cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
|
||||||
|
|
||||||
unsigned BaseArg = 0;
|
unsigned BaseArg = 0;
|
||||||
std::string ErrorMessage;
|
std::string ErrorMessage;
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cctype>
|
#include <cctype>
|
||||||
@ -166,9 +167,12 @@ static void DumpSymbolNamesFromFile(std::string &Filename) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
cl::ParseCommandLineOptions(argc, argv, "llvm symbol table dumper\n");
|
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
|
cl::ParseCommandLineOptions(argc, argv, "llvm symbol table dumper\n");
|
||||||
|
|
||||||
ToolName = argv[0];
|
ToolName = argv[0];
|
||||||
if (BSDFormat) OutputFormat = bsd;
|
if (BSDFormat) OutputFormat = bsd;
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
@ -111,10 +112,13 @@ namespace {
|
|||||||
|
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
|
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
try {
|
try {
|
||||||
cl::ParseCommandLineOptions(argc, argv, "llvm profile dump decoder\n");
|
cl::ParseCommandLineOptions(argc, argv, "llvm profile dump decoder\n");
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
|
||||||
|
|
||||||
// Read in the bitcode file...
|
// Read in the bitcode file...
|
||||||
std::string ErrorMessage;
|
std::string ErrorMessage;
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include "llvm/Bitcode/Archive.h"
|
#include "llvm/Bitcode/Archive.h"
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
@ -42,7 +43,11 @@ void printSymbolTable(Archive* TheArchive) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
// Print a stack trace if we signal out.
|
||||||
|
llvm::sys::PrintStackTraceOnErrorSignal();
|
||||||
|
llvm::PrettyStackTraceProgram X(argc, argv);
|
||||||
|
|
||||||
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
||||||
|
|
||||||
// Have the command line options parsed and handle things
|
// Have the command line options parsed and handle things
|
||||||
// like --help and --version.
|
// like --help and --version.
|
||||||
@ -52,9 +57,6 @@ int main(int argc, char **argv) {
|
|||||||
" to an LLVM archive file."
|
" to an LLVM archive file."
|
||||||
);
|
);
|
||||||
|
|
||||||
// Print a stack trace if we signal out.
|
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
|
||||||
|
|
||||||
int exitCode = 0;
|
int exitCode = 0;
|
||||||
|
|
||||||
// Make sure we don't exit with "unhandled exception".
|
// Make sure we don't exit with "unhandled exception".
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include "llvm/Support/FileUtilities.h"
|
#include "llvm/Support/FileUtilities.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "CallingConvEmitter.h"
|
#include "CallingConvEmitter.h"
|
||||||
#include "CodeEmitterGen.h"
|
#include "CodeEmitterGen.h"
|
||||||
#include "RegisterInfoEmitter.h"
|
#include "RegisterInfoEmitter.h"
|
||||||
@ -130,6 +131,8 @@ static bool ParseFile(const std::string &Filename,
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
|
PrettyStackTraceProgram X(argc, argv);
|
||||||
cl::ParseCommandLineOptions(argc, argv);
|
cl::ParseCommandLineOptions(argc, argv);
|
||||||
|
|
||||||
// Parse the input file.
|
// Parse the input file.
|
||||||
|
Reference in New Issue
Block a user