7b1b413ecca852c91eed76a5cda54fe7555ca2e2
[oota-llvm.git] / tools / llvm-ranlib / llvm-ranlib.cpp
1 //===-- llvm-ranlib.cpp - LLVM archive index generator --------------------===//
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 // Adds or updates an index (symbol table) for an LLVM archive file.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/LLVMContext.h"
15 #include "llvm/Module.h"
16 #include "llvm/Bitcode/Archive.h"
17 #include "llvm/Support/CommandLine.h"
18 #include "llvm/Support/ManagedStatic.h"
19 #include "llvm/Support/PrettyStackTrace.h"
20 #include "llvm/System/Signals.h"
21 #include <iostream>
22 #include <iomanip>
23 #include <memory>
24
25 using namespace llvm;
26
27 // llvm-ar operation code and modifier flags
28 static cl::opt<std::string>
29 ArchiveName(cl::Positional, cl::Optional, cl::desc("<archive-file>"));
30
31 static cl::opt<bool>
32 Verbose("verbose",cl::Optional,cl::init(false),
33         cl::desc("Print the symbol table"));
34
35 // printSymbolTable - print out the archive's symbol table.
36 void printSymbolTable(Archive* TheArchive) {
37   std::cout << "\nArchive Symbol Table:\n";
38   const Archive::SymTabType& symtab = TheArchive->getSymbolTable();
39   for (Archive::SymTabType::const_iterator I=symtab.begin(), E=symtab.end();
40        I != E; ++I ) {
41     unsigned offset = TheArchive->getFirstFileOffset() + I->second;
42     std::cout << " " << std::setw(9) << offset << "\t" << I->first <<"\n";
43   }
44 }
45
46 int main(int argc, char **argv) {
47   // Print a stack trace if we signal out.
48   llvm::sys::PrintStackTraceOnErrorSignal();
49   llvm::PrettyStackTraceProgram X(argc, argv);
50
51   LLVMContext Context;
52   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
53
54   // Have the command line options parsed and handle things
55   // like --help and --version.
56   cl::ParseCommandLineOptions(argc, argv,
57     "LLVM Archive Index Generator (llvm-ranlib)\n\n"
58     "  This program adds or updates an index of bitcode symbols\n"
59     "  to an LLVM archive file."
60   );
61
62   int exitCode = 0;
63
64   // Make sure we don't exit with "unhandled exception".
65   try {
66
67     // Check the path name of the archive
68     sys::Path ArchivePath;
69     if (!ArchivePath.set(ArchiveName))
70       throw std::string("Archive name invalid: ") + ArchiveName;
71
72     // Make sure it exists, we don't create empty archives
73     if (!ArchivePath.exists())
74       throw std::string("Archive file does not exist");
75
76     std::string err_msg;
77     std::auto_ptr<Archive>
78       AutoArchive(Archive::OpenAndLoad(ArchivePath, &Context, &err_msg));
79     Archive* TheArchive = AutoArchive.get();
80     if (!TheArchive)
81       throw err_msg;
82
83     if (TheArchive->writeToDisk(true, false, false, &err_msg ))
84       throw err_msg;
85
86     if (Verbose)
87       printSymbolTable(TheArchive);
88
89   } catch (const char* msg) {
90     std::cerr << argv[0] << ": " << msg << "\n\n";
91     exitCode = 1;
92   } catch (const std::string& msg) {
93     std::cerr << argv[0] << ": " << msg << "\n";
94     exitCode = 2;
95   } catch (...) {
96     std::cerr << argv[0] << ": An unexpected unknown exception occurred.\n";
97     exitCode = 3;
98   }
99   return exitCode;
100 }