2003-10-16 04:43:15 +00:00
|
|
|
//===-- llvm-nm.cpp - Symbol table dumping utility for llvm ---------------===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-10-16 04:43:15 +00:00
|
|
|
//
|
|
|
|
// This program is a utility that works like traditional Unix "nm",
|
|
|
|
// that is, it prints out the names of symbols in a bytecode file,
|
|
|
|
// along with some information about each symbol.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-16 04:43:15 +00:00
|
|
|
// This "nm" does not print symbols' addresses. It supports many of
|
|
|
|
// the features of GNU "nm", including its different output formats.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Module.h"
|
2003-10-28 19:08:15 +00:00
|
|
|
#include "llvm/Bytecode/Reader.h"
|
2004-11-14 22:27:46 +00:00
|
|
|
#include "llvm/Bytecode/Archive.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2006-12-06 01:18:01 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2004-05-27 05:41:36 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2003-10-16 04:43:15 +00:00
|
|
|
#include <cctype>
|
2004-04-21 16:11:40 +00:00
|
|
|
#include <cerrno>
|
2003-11-19 21:52:09 +00:00
|
|
|
#include <cstring>
|
2004-07-04 12:20:55 +00:00
|
|
|
#include <iostream>
|
2003-10-16 04:43:15 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2003-10-16 04:43:15 +00: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 00:00:37 +00:00
|
|
|
clEnumVal(posix, "POSIX.2 format"),
|
2004-07-16 00:08:28 +00:00
|
|
|
clEnumValEnd), cl::init(bsd));
|
2003-10-16 04:43:15 +00:00
|
|
|
cl::alias OutputFormat2("f", cl::desc("Alias for --format"),
|
|
|
|
cl::aliasopt(OutputFormat));
|
|
|
|
|
2005-04-22 00:00:37 +00:00
|
|
|
cl::list<std::string>
|
2003-10-16 04:43:15 +00:00
|
|
|
InputFilenames(cl::Positional, cl::desc("<input bytecode files>"),
|
2003-10-16 18:45:23 +00:00
|
|
|
cl::ZeroOrMore);
|
2003-10-16 04:43:15 +00: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"));
|
|
|
|
|
|
|
|
bool MultipleFiles = false;
|
|
|
|
|
|
|
|
std::string ToolName;
|
2006-05-24 17:04:05 +00:00
|
|
|
}
|
2003-10-16 04:43:15 +00:00
|
|
|
|
2006-12-06 01:18:01 +00:00
|
|
|
static char TypeCharForSymbol(GlobalValue &GV) {
|
2007-01-30 20:08:39 +00:00
|
|
|
if (GV.isDeclaration()) return 'U';
|
2006-12-06 01:18:01 +00:00
|
|
|
if (GV.hasLinkOnceLinkage()) return 'C';
|
|
|
|
if (GV.hasWeakLinkage()) return 'W';
|
|
|
|
if (isa<Function>(GV) && GV.hasInternalLinkage()) return 't';
|
|
|
|
if (isa<Function>(GV)) return 'T';
|
|
|
|
if (isa<GlobalVariable>(GV) && GV.hasInternalLinkage()) return 'd';
|
|
|
|
if (isa<GlobalVariable>(GV)) return 'D';
|
2003-10-16 04:43:15 +00:00
|
|
|
return '?';
|
|
|
|
}
|
|
|
|
|
2006-12-06 01:18:01 +00:00
|
|
|
static void DumpSymbolNameForGlobalValue(GlobalValue &GV) {
|
2003-10-16 04:43:15 +00:00
|
|
|
const std::string SymbolAddrStr = " "; // Not used yet...
|
|
|
|
char TypeChar = TypeCharForSymbol (GV);
|
|
|
|
if ((TypeChar != 'U') && UndefinedOnly)
|
|
|
|
return;
|
|
|
|
if ((TypeChar == 'U') && DefinedOnly)
|
|
|
|
return;
|
|
|
|
if (GV.hasInternalLinkage () && ExternalOnly)
|
|
|
|
return;
|
|
|
|
if (OutputFormat == posix) {
|
|
|
|
std::cout << GV.getName () << " " << TypeCharForSymbol (GV) << " "
|
|
|
|
<< SymbolAddrStr << "\n";
|
|
|
|
} else if (OutputFormat == bsd) {
|
|
|
|
std::cout << SymbolAddrStr << " " << TypeCharForSymbol (GV) << " "
|
|
|
|
<< GV.getName () << "\n";
|
|
|
|
} else if (OutputFormat == sysv) {
|
|
|
|
std::string PaddedName (GV.getName ());
|
|
|
|
while (PaddedName.length () < 20)
|
|
|
|
PaddedName += " ";
|
|
|
|
std::cout << PaddedName << "|" << SymbolAddrStr << "| "
|
|
|
|
<< TypeCharForSymbol (GV)
|
|
|
|
<< " | | | |\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-06 01:18:01 +00:00
|
|
|
static void DumpSymbolNamesFromModule(Module *M) {
|
2003-11-16 23:34:13 +00:00
|
|
|
const std::string &Filename = M->getModuleIdentifier ();
|
|
|
|
if (OutputFormat == posix && MultipleFiles) {
|
|
|
|
std::cout << Filename << ":\n";
|
|
|
|
} else if (OutputFormat == bsd && MultipleFiles) {
|
|
|
|
std::cout << "\n" << Filename << ":\n";
|
|
|
|
} else if (OutputFormat == sysv) {
|
|
|
|
std::cout << "\n\nSymbols from " << Filename << ":\n\n"
|
|
|
|
<< "Name Value Class Type"
|
|
|
|
<< " Size Line Section\n";
|
|
|
|
}
|
2003-10-16 04:43:15 +00:00
|
|
|
std::for_each (M->begin (), M->end (), DumpSymbolNameForGlobalValue);
|
2005-03-15 15:48:22 +00:00
|
|
|
std::for_each (M->global_begin (), M->global_end (), DumpSymbolNameForGlobalValue);
|
2003-10-16 04:43:15 +00:00
|
|
|
}
|
|
|
|
|
2006-12-06 01:18:01 +00:00
|
|
|
static void DumpSymbolNamesFromFile(std::string &Filename) {
|
2003-10-16 04:43:15 +00:00
|
|
|
std::string ErrorMessage;
|
2004-12-13 03:01:26 +00:00
|
|
|
sys::Path aPath(Filename);
|
2006-08-01 18:22:21 +00:00
|
|
|
if (Filename != "-") {
|
2003-11-19 21:52:09 +00:00
|
|
|
std::cerr << ToolName << ": " << Filename << ": " << strerror (errno)
|
|
|
|
<< "\n";
|
|
|
|
return;
|
|
|
|
}
|
2003-11-19 22:15:00 +00:00
|
|
|
// Note: Currently we do not support reading an archive from stdin.
|
2004-12-13 03:01:26 +00:00
|
|
|
if (Filename == "-" || aPath.isBytecodeFile()) {
|
2007-02-07 21:41:02 +00:00
|
|
|
Module *Result = ParseBytecodeFile(Filename,
|
|
|
|
Compressor::decompressToNewBuffer,
|
|
|
|
&ErrorMessage);
|
2003-11-16 23:34:13 +00:00
|
|
|
if (Result) {
|
|
|
|
DumpSymbolNamesFromModule (Result);
|
|
|
|
} else {
|
|
|
|
std::cerr << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
|
2003-11-19 21:52:09 +00:00
|
|
|
return;
|
2003-10-16 04:43:15 +00:00
|
|
|
}
|
2004-12-13 03:01:26 +00:00
|
|
|
} else if (aPath.isArchive()) {
|
2006-07-07 20:56:50 +00:00
|
|
|
std::string ErrMsg;
|
2006-12-06 01:18:01 +00:00
|
|
|
Archive* archive = Archive::OpenAndLoad(sys::Path(Filename), &ErrorMessage);
|
2004-11-14 22:27:46 +00:00
|
|
|
if (!archive)
|
|
|
|
std::cerr << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
|
2003-11-16 23:34:13 +00:00
|
|
|
std::vector<Module *> Modules;
|
2006-12-06 01:18:01 +00:00
|
|
|
if (archive->getAllModules(Modules, &ErrorMessage)) {
|
2004-11-14 22:27:46 +00:00
|
|
|
std::cerr << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
|
2003-11-19 21:52:09 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-11-16 23:34:13 +00:00
|
|
|
MultipleFiles = true;
|
2006-12-06 01:18:01 +00:00
|
|
|
std::for_each (Modules.begin(), Modules.end(), DumpSymbolNamesFromModule);
|
2003-11-19 21:57:30 +00:00
|
|
|
} else {
|
|
|
|
std::cerr << ToolName << ": " << Filename << ": "
|
|
|
|
<< "unrecognizable file type\n";
|
|
|
|
return;
|
2003-10-16 04:43:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2006-12-06 01:18:01 +00:00
|
|
|
llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
|
2004-12-30 05:36:08 +00:00
|
|
|
try {
|
|
|
|
cl::ParseCommandLineOptions(argc, argv, " llvm symbol table dumper\n");
|
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
|
|
|
|
|
|
|
ToolName = argv[0];
|
|
|
|
if (BSDFormat) OutputFormat = bsd;
|
|
|
|
if (POSIXFormat) OutputFormat = posix;
|
|
|
|
|
|
|
|
switch (InputFilenames.size()) {
|
|
|
|
case 0: InputFilenames.push_back("-");
|
|
|
|
case 1: break;
|
|
|
|
default: MultipleFiles = true;
|
|
|
|
}
|
2003-10-16 18:45:23 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
std::for_each (InputFilenames.begin (), InputFilenames.end (),
|
|
|
|
DumpSymbolNamesFromFile);
|
|
|
|
return 0;
|
|
|
|
} catch (const std::string& msg) {
|
|
|
|
std::cerr << argv[0] << ": " << msg << "\n";
|
|
|
|
} catch (...) {
|
|
|
|
std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
|
2003-10-16 18:45:23 +00:00
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
return 1;
|
2003-10-16 04:43:15 +00:00
|
|
|
}
|