2003-10-16 06:43:15 +02:00
|
|
|
//===-- llvm-nm.cpp - Symbol table dumping utility for llvm ---------------===//
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-20 19:47:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:44:31 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-20 19:47:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-10-16 06:43:15 +02:00
|
|
|
//
|
|
|
|
// This program is a utility that works like traditional Unix "nm",
|
2007-07-05 19:07:56 +02:00
|
|
|
// that is, it prints out the names of symbols in a bitcode file,
|
2003-10-16 06:43:15 +02:00
|
|
|
// along with some information about each symbol.
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-16 06:43:15 +02:00
|
|
|
// This "nm" does not print symbols' addresses. It supports many of
|
|
|
|
// the features of GNU "nm", including its different output formats.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-01 18:58:40 +02:00
|
|
|
#include "llvm/LLVMContext.h"
|
2003-10-16 06:43:15 +02:00
|
|
|
#include "llvm/Module.h"
|
2007-05-06 07:36:18 +02:00
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
2007-05-06 11:29:57 +02:00
|
|
|
#include "llvm/Bitcode/Archive.h"
|
2011-09-27 21:37:18 +02:00
|
|
|
#include "llvm/Object/Archive.h"
|
2011-01-20 07:38:57 +01:00
|
|
|
#include "llvm/Object/ObjectFile.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2011-01-20 07:38:57 +01:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2006-12-06 02:18:01 +01:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2007-05-06 07:36:18 +02:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2009-03-06 06:34:10 +01:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2011-12-14 00:17:29 +01:00
|
|
|
#include "llvm/Support/Program.h"
|
2009-07-15 18:35:29 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2010-11-29 19:16:10 +01:00
|
|
|
#include "llvm/Support/Signals.h"
|
2011-01-20 07:38:57 +01:00
|
|
|
#include "llvm/Support/Format.h"
|
2010-12-09 18:36:48 +01:00
|
|
|
#include "llvm/Support/system_error.h"
|
2007-03-05 01:00:42 +01:00
|
|
|
#include <algorithm>
|
2003-10-16 06:43:15 +02:00
|
|
|
#include <cctype>
|
2004-04-21 18:11:40 +02:00
|
|
|
#include <cerrno>
|
2003-11-19 22:52:09 +01:00
|
|
|
#include <cstring>
|
2011-01-20 07:38:57 +01:00
|
|
|
#include <vector>
|
2003-11-11 23:41:34 +01:00
|
|
|
using namespace llvm;
|
2011-01-20 07:38:57 +01:00
|
|
|
using namespace object;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2003-10-16 06:43:15 +02:00
|
|
|
namespace {
|
|
|
|
enum OutputFormatTy { bsd, sysv, posix };
|
|
|
|
cl::opt<OutputFormatTy>
|
|
|
|
OutputFormat("format",
|
|
|
|
cl::desc("Specify output format"),
|
|
|
|
cl::values(clEnumVal(bsd, "BSD format"),
|
|
|
|
clEnumVal(sysv, "System V format"),
|
2005-04-22 02:00:37 +02:00
|
|
|
clEnumVal(posix, "POSIX.2 format"),
|
2004-07-16 02:08:28 +02:00
|
|
|
clEnumValEnd), cl::init(bsd));
|
2003-10-16 06:43:15 +02:00
|
|
|
cl::alias OutputFormat2("f", cl::desc("Alias for --format"),
|
|
|
|
cl::aliasopt(OutputFormat));
|
|
|
|
|
2005-04-22 02:00:37 +02:00
|
|
|
cl::list<std::string>
|
2007-07-05 19:07:56 +02:00
|
|
|
InputFilenames(cl::Positional, cl::desc("<input bitcode files>"),
|
2003-10-16 20:45:23 +02:00
|
|
|
cl::ZeroOrMore);
|
2003-10-16 06:43:15 +02:00
|
|
|
|
|
|
|
cl::opt<bool> UndefinedOnly("undefined-only",
|
|
|
|
cl::desc("Show only undefined symbols"));
|
|
|
|
cl::alias UndefinedOnly2("u", cl::desc("Alias for --undefined-only"),
|
|
|
|
cl::aliasopt(UndefinedOnly));
|
|
|
|
|
|
|
|
cl::opt<bool> DefinedOnly("defined-only",
|
|
|
|
cl::desc("Show only defined symbols"));
|
|
|
|
|
|
|
|
cl::opt<bool> ExternalOnly("extern-only",
|
|
|
|
cl::desc("Show only external symbols"));
|
|
|
|
cl::alias ExternalOnly2("g", cl::desc("Alias for --extern-only"),
|
|
|
|
cl::aliasopt(ExternalOnly));
|
|
|
|
|
|
|
|
cl::opt<bool> BSDFormat("B", cl::desc("Alias for --format=bsd"));
|
|
|
|
cl::opt<bool> POSIXFormat("P", cl::desc("Alias for --format=posix"));
|
|
|
|
|
2011-01-20 07:38:57 +01:00
|
|
|
cl::opt<bool> PrintFileName("print-file-name",
|
|
|
|
cl::desc("Precede each symbol with the object file it came from"));
|
|
|
|
|
|
|
|
cl::alias PrintFileNameA("A", cl::desc("Alias for --print-file-name"),
|
|
|
|
cl::aliasopt(PrintFileName));
|
|
|
|
cl::alias PrintFileNameo("o", cl::desc("Alias for --print-file-name"),
|
|
|
|
cl::aliasopt(PrintFileName));
|
|
|
|
|
|
|
|
cl::opt<bool> DebugSyms("debug-syms",
|
|
|
|
cl::desc("Show all symbols, even debugger only"));
|
|
|
|
cl::alias DebugSymsa("a", cl::desc("Alias for --debug-syms"),
|
|
|
|
cl::aliasopt(DebugSyms));
|
|
|
|
|
|
|
|
cl::opt<bool> NumericSort("numeric-sort",
|
|
|
|
cl::desc("Sort symbols by address"));
|
|
|
|
cl::alias NumericSortn("n", cl::desc("Alias for --numeric-sort"),
|
|
|
|
cl::aliasopt(NumericSort));
|
|
|
|
cl::alias NumericSortv("v", cl::desc("Alias for --numeric-sort"),
|
|
|
|
cl::aliasopt(NumericSort));
|
|
|
|
|
|
|
|
cl::opt<bool> NoSort("no-sort",
|
|
|
|
cl::desc("Show symbols in order encountered"));
|
|
|
|
cl::alias NoSortp("p", cl::desc("Alias for --no-sort"),
|
|
|
|
cl::aliasopt(NoSort));
|
|
|
|
|
|
|
|
cl::opt<bool> PrintSize("print-size",
|
|
|
|
cl::desc("Show symbol size instead of address"));
|
|
|
|
cl::alias PrintSizeS("S", cl::desc("Alias for --print-size"),
|
|
|
|
cl::aliasopt(PrintSize));
|
|
|
|
|
|
|
|
cl::opt<bool> SizeSort("size-sort", cl::desc("Sort symbols by size"));
|
|
|
|
|
|
|
|
bool PrintAddress = true;
|
|
|
|
|
2003-10-16 06:43:15 +02:00
|
|
|
bool MultipleFiles = false;
|
|
|
|
|
|
|
|
std::string ToolName;
|
2006-05-24 19:04:05 +02:00
|
|
|
}
|
2003-10-16 06:43:15 +02:00
|
|
|
|
2011-12-14 00:17:29 +01:00
|
|
|
|
|
|
|
static void error(Twine message, Twine path = Twine()) {
|
|
|
|
errs() << ToolName << ": " << path << ": " << message << ".\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool error(error_code ec, Twine path = Twine()) {
|
|
|
|
if (ec) {
|
|
|
|
error(ec.message(), path);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-01-20 07:38:57 +01:00
|
|
|
namespace {
|
|
|
|
struct NMSymbol {
|
|
|
|
uint64_t Address;
|
|
|
|
uint64_t Size;
|
|
|
|
char TypeChar;
|
|
|
|
StringRef Name;
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool CompareSymbolAddress(const NMSymbol &a, const NMSymbol &b) {
|
|
|
|
if (a.Address < b.Address)
|
|
|
|
return true;
|
|
|
|
else if (a.Address == b.Address && a.Name < b.Name)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool CompareSymbolSize(const NMSymbol &a, const NMSymbol &b) {
|
|
|
|
if (a.Size < b.Size)
|
|
|
|
return true;
|
|
|
|
else if (a.Size == b.Size && a.Name < b.Name)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool CompareSymbolName(const NMSymbol &a, const NMSymbol &b) {
|
|
|
|
return a.Name < b.Name;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef CurrentFilename;
|
|
|
|
typedef std::vector<NMSymbol> SymbolListT;
|
|
|
|
SymbolListT SymbolList;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void SortAndPrintSymbolList() {
|
|
|
|
if (!NoSort) {
|
|
|
|
if (NumericSort)
|
|
|
|
std::sort(SymbolList.begin(), SymbolList.end(), CompareSymbolAddress);
|
|
|
|
else if (SizeSort)
|
|
|
|
std::sort(SymbolList.begin(), SymbolList.end(), CompareSymbolSize);
|
|
|
|
else
|
|
|
|
std::sort(SymbolList.begin(), SymbolList.end(), CompareSymbolName);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (OutputFormat == posix && MultipleFiles) {
|
|
|
|
outs() << '\n' << CurrentFilename << ":\n";
|
|
|
|
} else if (OutputFormat == bsd && MultipleFiles) {
|
|
|
|
outs() << "\n" << CurrentFilename << ":\n";
|
|
|
|
} else if (OutputFormat == sysv) {
|
|
|
|
outs() << "\n\nSymbols from " << CurrentFilename << ":\n\n"
|
|
|
|
<< "Name Value Class Type"
|
|
|
|
<< " Size Line Section\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
for (SymbolListT::iterator i = SymbolList.begin(),
|
|
|
|
e = SymbolList.end(); i != e; ++i) {
|
|
|
|
if ((i->TypeChar != 'U') && UndefinedOnly)
|
|
|
|
continue;
|
|
|
|
if ((i->TypeChar == 'U') && DefinedOnly)
|
|
|
|
continue;
|
|
|
|
if (SizeSort && !PrintAddress && i->Size == UnknownAddressOrSize)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
char SymbolAddrStr[10] = "";
|
|
|
|
char SymbolSizeStr[10] = "";
|
|
|
|
|
|
|
|
if (OutputFormat == sysv || i->Address == object::UnknownAddressOrSize)
|
|
|
|
strcpy(SymbolAddrStr, " ");
|
|
|
|
if (OutputFormat == sysv)
|
|
|
|
strcpy(SymbolSizeStr, " ");
|
|
|
|
|
|
|
|
if (i->Address != object::UnknownAddressOrSize)
|
2011-10-28 15:07:32 +02:00
|
|
|
format("%08"PRIx64, i->Address).print(SymbolAddrStr, sizeof(SymbolAddrStr));
|
2011-01-20 07:38:57 +01:00
|
|
|
if (i->Size != object::UnknownAddressOrSize)
|
2011-10-28 15:07:32 +02:00
|
|
|
format("%08"PRIx64, i->Size).print(SymbolSizeStr, sizeof(SymbolSizeStr));
|
2011-01-20 07:38:57 +01:00
|
|
|
|
|
|
|
if (OutputFormat == posix) {
|
|
|
|
outs() << i->Name << " " << i->TypeChar << " "
|
|
|
|
<< SymbolAddrStr << SymbolSizeStr << "\n";
|
|
|
|
} else if (OutputFormat == bsd) {
|
|
|
|
if (PrintAddress)
|
|
|
|
outs() << SymbolAddrStr << ' ';
|
|
|
|
if (PrintSize) {
|
|
|
|
outs() << SymbolSizeStr;
|
|
|
|
if (i->Size != object::UnknownAddressOrSize)
|
|
|
|
outs() << ' ';
|
|
|
|
}
|
|
|
|
outs() << i->TypeChar << " " << i->Name << "\n";
|
|
|
|
} else if (OutputFormat == sysv) {
|
|
|
|
std::string PaddedName (i->Name);
|
|
|
|
while (PaddedName.length () < 20)
|
|
|
|
PaddedName += " ";
|
|
|
|
outs() << PaddedName << "|" << SymbolAddrStr << "| "
|
|
|
|
<< i->TypeChar
|
|
|
|
<< " | |" << SymbolSizeStr << "| |\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SymbolList.clear();
|
|
|
|
}
|
|
|
|
|
2006-12-06 02:18:01 +01:00
|
|
|
static char TypeCharForSymbol(GlobalValue &GV) {
|
2007-06-28 00:08:09 +02:00
|
|
|
if (GV.isDeclaration()) return 'U';
|
2006-12-06 02:18:01 +01:00
|
|
|
if (GV.hasLinkOnceLinkage()) return 'C';
|
2008-05-17 00:44:18 +02:00
|
|
|
if (GV.hasCommonLinkage()) return 'C';
|
2006-12-06 02:18:01 +01:00
|
|
|
if (GV.hasWeakLinkage()) return 'W';
|
2007-06-28 00:08:09 +02:00
|
|
|
if (isa<Function>(GV) && GV.hasInternalLinkage()) return 't';
|
2006-12-06 02:18:01 +01:00
|
|
|
if (isa<Function>(GV)) return 'T';
|
2007-06-28 00:08:09 +02:00
|
|
|
if (isa<GlobalVariable>(GV) && GV.hasInternalLinkage()) return 'd';
|
2006-12-06 02:18:01 +01:00
|
|
|
if (isa<GlobalVariable>(GV)) return 'D';
|
2007-06-28 00:08:09 +02:00
|
|
|
if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(&GV)) {
|
|
|
|
const GlobalValue *AliasedGV = GA->getAliasedGlobal();
|
|
|
|
if (isa<Function>(AliasedGV)) return 'T';
|
|
|
|
if (isa<GlobalVariable>(AliasedGV)) return 'D';
|
|
|
|
}
|
|
|
|
return '?';
|
2003-10-16 06:43:15 +02:00
|
|
|
}
|
|
|
|
|
2006-12-06 02:18:01 +01:00
|
|
|
static void DumpSymbolNameForGlobalValue(GlobalValue &GV) {
|
2009-04-13 07:44:34 +02:00
|
|
|
// Private linkage and available_externally linkage don't exist in symtab.
|
2010-08-24 22:00:52 +02:00
|
|
|
if (GV.hasPrivateLinkage() ||
|
|
|
|
GV.hasLinkerPrivateLinkage() ||
|
|
|
|
GV.hasLinkerPrivateWeakLinkage() ||
|
|
|
|
GV.hasLinkerPrivateWeakDefAutoLinkage() ||
|
|
|
|
GV.hasAvailableExternallyLinkage())
|
2010-07-01 23:55:59 +02:00
|
|
|
return;
|
2009-04-13 07:44:34 +02:00
|
|
|
char TypeChar = TypeCharForSymbol(GV);
|
2009-01-15 21:18:42 +01:00
|
|
|
if (GV.hasLocalLinkage () && ExternalOnly)
|
2003-10-16 06:43:15 +02:00
|
|
|
return;
|
2011-01-20 07:38:57 +01:00
|
|
|
|
|
|
|
NMSymbol s;
|
|
|
|
s.Address = object::UnknownAddressOrSize;
|
|
|
|
s.Size = object::UnknownAddressOrSize;
|
|
|
|
s.TypeChar = TypeChar;
|
|
|
|
s.Name = GV.getName();
|
|
|
|
SymbolList.push_back(s);
|
2003-10-16 06:43:15 +02:00
|
|
|
}
|
|
|
|
|
2006-12-06 02:18:01 +01:00
|
|
|
static void DumpSymbolNamesFromModule(Module *M) {
|
2011-01-20 07:38:57 +01:00
|
|
|
CurrentFilename = M->getModuleIdentifier();
|
2009-04-13 07:44:34 +02:00
|
|
|
std::for_each (M->begin(), M->end(), DumpSymbolNameForGlobalValue);
|
|
|
|
std::for_each (M->global_begin(), M->global_end(),
|
2007-06-28 00:08:09 +02:00
|
|
|
DumpSymbolNameForGlobalValue);
|
2009-04-13 07:44:34 +02:00
|
|
|
std::for_each (M->alias_begin(), M->alias_end(),
|
2007-06-28 00:08:09 +02:00
|
|
|
DumpSymbolNameForGlobalValue);
|
2011-01-20 07:38:57 +01:00
|
|
|
|
|
|
|
SortAndPrintSymbolList();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DumpSymbolNamesFromObject(ObjectFile *obj) {
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code ec;
|
2011-10-07 21:46:12 +02:00
|
|
|
for (symbol_iterator i = obj->begin_symbols(),
|
|
|
|
e = obj->end_symbols();
|
|
|
|
i != e; i.increment(ec)) {
|
2011-06-25 19:55:23 +02:00
|
|
|
if (error(ec)) break;
|
|
|
|
bool internal;
|
|
|
|
if (error(i->isInternal(internal))) break;
|
|
|
|
if (!DebugSyms && internal)
|
2011-01-20 07:38:57 +01:00
|
|
|
continue;
|
|
|
|
NMSymbol s;
|
|
|
|
s.Size = object::UnknownAddressOrSize;
|
|
|
|
s.Address = object::UnknownAddressOrSize;
|
2011-06-25 19:55:23 +02:00
|
|
|
if (PrintSize || SizeSort) {
|
|
|
|
if (error(i->getSize(s.Size))) break;
|
|
|
|
}
|
2011-01-20 07:38:57 +01:00
|
|
|
if (PrintAddress)
|
2011-11-29 18:40:10 +01:00
|
|
|
if (error(i->getAddress(s.Address))) break;
|
2011-06-25 19:55:23 +02:00
|
|
|
if (error(i->getNMTypeChar(s.TypeChar))) break;
|
|
|
|
if (error(i->getName(s.Name))) break;
|
2011-01-20 07:38:57 +01:00
|
|
|
SymbolList.push_back(s);
|
|
|
|
}
|
|
|
|
|
2011-06-25 19:54:50 +02:00
|
|
|
CurrentFilename = obj->getFileName();
|
2011-01-20 07:38:57 +01:00
|
|
|
SortAndPrintSymbolList();
|
2003-10-16 06:43:15 +02:00
|
|
|
}
|
|
|
|
|
2006-12-06 02:18:01 +01:00
|
|
|
static void DumpSymbolNamesFromFile(std::string &Filename) {
|
2011-12-14 00:17:29 +01:00
|
|
|
if (Filename != "-" && !sys::fs::exists(Filename)) {
|
|
|
|
errs() << ToolName << ": '" << Filename << "': " << "No such file\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
OwningPtr<MemoryBuffer> Buffer;
|
|
|
|
if (error(MemoryBuffer::getFileOrSTDIN(Filename, Buffer), Filename))
|
|
|
|
return;
|
|
|
|
|
|
|
|
sys::fs::file_magic magic = sys::fs::identify_magic(Buffer->getBuffer());
|
|
|
|
|
2009-07-16 00:16:10 +02:00
|
|
|
LLVMContext &Context = getGlobalContext();
|
2003-10-16 06:43:15 +02:00
|
|
|
std::string ErrorMessage;
|
2011-12-14 00:17:29 +01:00
|
|
|
if (magic == sys::fs::file_magic::bitcode) {
|
2007-05-06 07:36:18 +02:00
|
|
|
Module *Result = 0;
|
2011-12-14 00:17:29 +01:00
|
|
|
Result = ParseBitcodeFile(Buffer.get(), Context, &ErrorMessage);
|
2009-09-10 16:56:31 +02:00
|
|
|
if (Result) {
|
2007-05-06 07:36:18 +02:00
|
|
|
DumpSymbolNamesFromModule(Result);
|
2009-09-10 16:56:31 +02:00
|
|
|
delete Result;
|
2011-12-14 00:17:29 +01:00
|
|
|
} else {
|
|
|
|
error(ErrorMessage, Filename);
|
2003-11-19 22:52:09 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-12-14 00:17:29 +01:00
|
|
|
} else if (magic == sys::fs::file_magic::archive) {
|
|
|
|
OwningPtr<Binary> arch;
|
|
|
|
if (error(object::createBinary(Buffer.take(), arch), Filename))
|
|
|
|
return;
|
|
|
|
|
2011-09-27 21:37:18 +02:00
|
|
|
if (object::Archive *a = dyn_cast<object::Archive>(arch.get())) {
|
|
|
|
for (object::Archive::child_iterator i = a->begin_children(),
|
|
|
|
e = a->end_children(); i != e; ++i) {
|
|
|
|
OwningPtr<Binary> child;
|
2011-12-25 02:20:19 +01:00
|
|
|
if (i->getAsBinary(child)) {
|
2011-09-27 21:37:18 +02:00
|
|
|
// Try opening it as a bitcode file.
|
2011-10-10 15:10:04 +02:00
|
|
|
OwningPtr<MemoryBuffer> buff(i->getBuffer());
|
2011-09-27 21:37:18 +02:00
|
|
|
Module *Result = 0;
|
|
|
|
if (buff)
|
2011-10-10 15:10:04 +02:00
|
|
|
Result = ParseBitcodeFile(buff.get(), Context, &ErrorMessage);
|
2011-09-27 21:37:18 +02:00
|
|
|
|
|
|
|
if (Result) {
|
|
|
|
DumpSymbolNamesFromModule(Result);
|
|
|
|
delete Result;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (object::ObjectFile *o = dyn_cast<ObjectFile>(child.get())) {
|
|
|
|
outs() << o->getFileName() << ":\n";
|
|
|
|
DumpSymbolNamesFromObject(o);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-12-14 00:17:29 +01:00
|
|
|
} else if (magic.is_object()) {
|
2011-06-25 19:54:59 +02:00
|
|
|
OwningPtr<Binary> obj;
|
2011-12-14 00:17:29 +01:00
|
|
|
if (error(object::createBinary(Buffer.take(), obj), Filename))
|
2011-01-20 07:38:57 +01:00
|
|
|
return;
|
2011-06-25 19:54:59 +02:00
|
|
|
if (object::ObjectFile *o = dyn_cast<ObjectFile>(obj.get()))
|
|
|
|
DumpSymbolNamesFromObject(o);
|
2003-11-19 22:57:30 +01:00
|
|
|
} else {
|
2009-07-15 18:35:29 +02:00
|
|
|
errs() << ToolName << ": " << Filename << ": "
|
|
|
|
<< "unrecognizable file type\n";
|
2003-11-19 22:57:30 +01:00
|
|
|
return;
|
2003-10-16 06:43:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2009-03-06 06:34:10 +01:00
|
|
|
// Print a stack trace if we signal out.
|
2007-05-06 07:36:18 +02:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
2009-03-06 06:34:10 +01:00
|
|
|
PrettyStackTraceProgram X(argc, argv);
|
2010-08-31 08:36:46 +02:00
|
|
|
|
2009-03-06 06:34:10 +01:00
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
|
|
|
cl::ParseCommandLineOptions(argc, argv, "llvm symbol table dumper\n");
|
2003-10-16 20:45:23 +02:00
|
|
|
|
2011-12-14 00:17:29 +01:00
|
|
|
// llvm-nm only reads binary files.
|
|
|
|
if (error(sys::Program::ChangeStdinToBinary()))
|
|
|
|
return 1;
|
|
|
|
|
2007-05-06 07:36:18 +02:00
|
|
|
ToolName = argv[0];
|
|
|
|
if (BSDFormat) OutputFormat = bsd;
|
|
|
|
if (POSIXFormat) OutputFormat = posix;
|
|
|
|
|
2011-01-20 07:38:57 +01:00
|
|
|
// The relative order of these is important. If you pass --size-sort it should
|
|
|
|
// only print out the size. However, if you pass -S --size-sort, it should
|
|
|
|
// print out both the size and address.
|
|
|
|
if (SizeSort && !PrintSize) PrintAddress = false;
|
|
|
|
if (OutputFormat == sysv || SizeSort) PrintSize = true;
|
|
|
|
|
2007-05-06 07:36:18 +02:00
|
|
|
switch (InputFilenames.size()) {
|
|
|
|
case 0: InputFilenames.push_back("-");
|
|
|
|
case 1: break;
|
|
|
|
default: MultipleFiles = true;
|
2003-10-16 20:45:23 +02:00
|
|
|
}
|
2007-05-06 07:36:18 +02:00
|
|
|
|
|
|
|
std::for_each(InputFilenames.begin(), InputFilenames.end(),
|
|
|
|
DumpSymbolNamesFromFile);
|
|
|
|
return 0;
|
2003-10-16 06:43:15 +02:00
|
|
|
}
|