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-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"
|
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-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)
|
|
|
|
format("%08x", i->Address).print(SymbolAddrStr, sizeof(SymbolAddrStr));
|
|
|
|
if (i->Size != object::UnknownAddressOrSize)
|
|
|
|
format("%08x", i->Size).print(SymbolSizeStr, sizeof(SymbolSizeStr));
|
|
|
|
|
|
|
|
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) {
|
|
|
|
for (ObjectFile::symbol_iterator i = obj->begin_symbols(),
|
|
|
|
e = obj->end_symbols(); i != e; ++i) {
|
|
|
|
if (!DebugSyms && i->isInternal())
|
|
|
|
continue;
|
|
|
|
NMSymbol s;
|
|
|
|
s.Size = object::UnknownAddressOrSize;
|
|
|
|
s.Address = object::UnknownAddressOrSize;
|
|
|
|
if (PrintSize || SizeSort)
|
|
|
|
s.Size = i->getSize();
|
|
|
|
if (PrintAddress)
|
|
|
|
s.Address = i->getAddress();
|
|
|
|
s.TypeChar = i->getNMTypeChar();
|
|
|
|
s.Name = i->getName();
|
|
|
|
SymbolList.push_back(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
CurrentFilename = obj->getFilename();
|
|
|
|
SortAndPrintSymbolList();
|
2003-10-16 06:43:15 +02:00
|
|
|
}
|
|
|
|
|
2006-12-06 02:18:01 +01:00
|
|
|
static void DumpSymbolNamesFromFile(std::string &Filename) {
|
2009-07-16 00:16:10 +02:00
|
|
|
LLVMContext &Context = getGlobalContext();
|
2003-10-16 06:43:15 +02:00
|
|
|
std::string ErrorMessage;
|
2004-12-13 04:01:26 +01:00
|
|
|
sys::Path aPath(Filename);
|
2011-01-20 07:38:57 +01:00
|
|
|
bool exists;
|
|
|
|
if (sys::fs::exists(aPath.str(), exists) || !exists)
|
|
|
|
errs() << ToolName << ": '" << Filename << "': " << "No such file\n";
|
2003-11-19 23:15:00 +01:00
|
|
|
// Note: Currently we do not support reading an archive from stdin.
|
2007-05-06 11:29:57 +02:00
|
|
|
if (Filename == "-" || aPath.isBitcodeFile()) {
|
2010-12-16 04:29:14 +01:00
|
|
|
OwningPtr<MemoryBuffer> Buffer;
|
|
|
|
if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, Buffer))
|
2010-12-09 18:36:48 +01:00
|
|
|
ErrorMessage = ec.message();
|
2007-05-06 07:36:18 +02:00
|
|
|
Module *Result = 0;
|
|
|
|
if (Buffer.get())
|
2009-07-01 23:22:36 +02:00
|
|
|
Result = ParseBitcodeFile(Buffer.get(), Context, &ErrorMessage);
|
2010-08-31 08:36:46 +02:00
|
|
|
|
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;
|
|
|
|
} else
|
2009-07-15 18:35:29 +02:00
|
|
|
errs() << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
|
2010-08-31 08:36:46 +02:00
|
|
|
|
2004-12-13 04:01:26 +01:00
|
|
|
} else if (aPath.isArchive()) {
|
2006-07-07 22:56:50 +02:00
|
|
|
std::string ErrMsg;
|
2009-07-01 23:22:36 +02:00
|
|
|
Archive* archive = Archive::OpenAndLoad(sys::Path(Filename), Context,
|
2009-07-01 18:58:40 +02:00
|
|
|
&ErrorMessage);
|
2004-11-14 23:27:46 +01:00
|
|
|
if (!archive)
|
2009-07-15 18:35:29 +02:00
|
|
|
errs() << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
|
2003-11-17 00:34:13 +01:00
|
|
|
std::vector<Module *> Modules;
|
2006-12-06 02:18:01 +01:00
|
|
|
if (archive->getAllModules(Modules, &ErrorMessage)) {
|
2009-07-15 18:35:29 +02:00
|
|
|
errs() << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
|
2003-11-19 22:52:09 +01:00
|
|
|
return;
|
|
|
|
}
|
2003-11-17 00:34:13 +01:00
|
|
|
MultipleFiles = true;
|
2006-12-06 02:18:01 +01:00
|
|
|
std::for_each (Modules.begin(), Modules.end(), DumpSymbolNamesFromModule);
|
2011-01-20 07:38:57 +01:00
|
|
|
} else if (aPath.isObjectFile()) {
|
|
|
|
std::auto_ptr<ObjectFile> obj(ObjectFile::createObjectFile(aPath.str()));
|
|
|
|
if (!obj.get()) {
|
|
|
|
errs() << ToolName << ": " << Filename << ": "
|
|
|
|
<< "Failed to open object file\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
DumpSymbolNamesFromObject(obj.get());
|
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
|
|
|
|
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
|
|
|
}
|