1 //===-- dsymutil.cpp - Debug info dumping utility for llvm ----------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This program is a utility that aims to be a dropin replacement for
13 //===----------------------------------------------------------------------===//
17 #include "llvm/Support/ManagedStatic.h"
18 #include "llvm/Support/Options.h"
19 #include "llvm/Support/PrettyStackTrace.h"
20 #include "llvm/Support/Signals.h"
21 #include "llvm/Support/raw_ostream.h"
22 #include "llvm/Support/TargetSelect.h"
25 using namespace llvm::dsymutil;
28 using namespace llvm::cl;
30 static opt<std::string> InputFile(Positional, desc("<input file>"),
33 static opt<std::string>
35 desc("Specify the output file. default: <input file>.dwarf"),
36 value_desc("filename"));
38 static opt<std::string> OsoPrependPath(
40 desc("Specify a directory to prepend to the paths of object files."),
43 static opt<bool> Verbose("v", desc("Verbosity level"), init(false));
47 desc("Do the link in memory, but do not emit the result file."),
50 static opt<bool> DumpDebugMap(
52 desc("Parse and dump the debug map to standard output. Not DWARF link "
57 int main(int argc, char **argv) {
58 llvm::sys::PrintStackTraceOnErrorSignal();
59 llvm::PrettyStackTraceProgram StackPrinter(argc, argv);
60 llvm::llvm_shutdown_obj Shutdown;
63 llvm::cl::ParseCommandLineOptions(argc, argv, "llvm dsymutil\n");
64 auto DebugMapPtrOrErr = parseDebugMap(InputFile, OsoPrependPath, Verbose);
66 Options.Verbose = Verbose;
67 Options.NoOutput = NoOutput;
69 llvm::InitializeAllTargetInfos();
70 llvm::InitializeAllTargetMCs();
71 llvm::InitializeAllTargets();
72 llvm::InitializeAllAsmPrinters();
74 if (auto EC = DebugMapPtrOrErr.getError()) {
75 llvm::errs() << "error: cannot parse the debug map for \"" << InputFile
76 << "\": " << EC.message() << '\n';
80 if (Verbose || DumpDebugMap)
81 (*DebugMapPtrOrErr)->print(llvm::outs());
86 std::string OutputFile;
87 if (OutputFileOpt.empty()) {
89 OutputFile = "a.out.dwarf";
91 OutputFile = InputFile + ".dwarf";
93 OutputFile = OutputFileOpt;
96 return !linkDwarf(OutputFile, **DebugMapPtrOrErr, Options);