blob: 008c2e0431fca956121cc8abd9584a420a592f3f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- llvm-nm.cpp - Symbol table dumping utility for llvm ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This program is a utility that works like traditional Unix "nm",
11// that is, it prints out the names of symbols in a bitcode file,
12// along with some information about each symbol.
13//
14// This "nm" does not print symbols' addresses. It supports many of
15// the features of GNU "nm", including its different output formats.
16//
17//===----------------------------------------------------------------------===//
18
19#include "llvm/Module.h"
20#include "llvm/Bitcode/ReaderWriter.h"
21#include "llvm/Bitcode/Archive.h"
22#include "llvm/Support/CommandLine.h"
23#include "llvm/Support/ManagedStatic.h"
24#include "llvm/Support/MemoryBuffer.h"
25#include "llvm/System/Signals.h"
26#include <algorithm>
27#include <cctype>
28#include <cerrno>
29#include <cstring>
30#include <iostream>
31using namespace llvm;
32
33namespace {
34 enum OutputFormatTy { bsd, sysv, posix };
35 cl::opt<OutputFormatTy>
36 OutputFormat("format",
37 cl::desc("Specify output format"),
38 cl::values(clEnumVal(bsd, "BSD format"),
39 clEnumVal(sysv, "System V format"),
40 clEnumVal(posix, "POSIX.2 format"),
41 clEnumValEnd), cl::init(bsd));
42 cl::alias OutputFormat2("f", cl::desc("Alias for --format"),
43 cl::aliasopt(OutputFormat));
44
45 cl::list<std::string>
46 InputFilenames(cl::Positional, cl::desc("<input bitcode files>"),
47 cl::ZeroOrMore);
48
49 cl::opt<bool> UndefinedOnly("undefined-only",
50 cl::desc("Show only undefined symbols"));
51 cl::alias UndefinedOnly2("u", cl::desc("Alias for --undefined-only"),
52 cl::aliasopt(UndefinedOnly));
53
54 cl::opt<bool> DefinedOnly("defined-only",
55 cl::desc("Show only defined symbols"));
56
57 cl::opt<bool> ExternalOnly("extern-only",
58 cl::desc("Show only external symbols"));
59 cl::alias ExternalOnly2("g", cl::desc("Alias for --extern-only"),
60 cl::aliasopt(ExternalOnly));
61
62 cl::opt<bool> BSDFormat("B", cl::desc("Alias for --format=bsd"));
63 cl::opt<bool> POSIXFormat("P", cl::desc("Alias for --format=posix"));
64
65 bool MultipleFiles = false;
66
67 std::string ToolName;
68}
69
70static char TypeCharForSymbol(GlobalValue &GV) {
71 if (GV.isDeclaration()) return 'U';
72 if (GV.hasLinkOnceLinkage()) return 'C';
Dale Johannesen415ec962008-05-16 22:44:18 +000073 if (GV.hasCommonLinkage()) return 'C';
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074 if (GV.hasWeakLinkage()) return 'W';
75 if (isa<Function>(GV) && GV.hasInternalLinkage()) return 't';
76 if (isa<Function>(GV)) return 'T';
77 if (isa<GlobalVariable>(GV) && GV.hasInternalLinkage()) return 'd';
78 if (isa<GlobalVariable>(GV)) return 'D';
79 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(&GV)) {
80 const GlobalValue *AliasedGV = GA->getAliasedGlobal();
81 if (isa<Function>(AliasedGV)) return 'T';
82 if (isa<GlobalVariable>(AliasedGV)) return 'D';
83 }
84 return '?';
85}
86
87static void DumpSymbolNameForGlobalValue(GlobalValue &GV) {
88 const std::string SymbolAddrStr = " "; // Not used yet...
89 char TypeChar = TypeCharForSymbol (GV);
90 if ((TypeChar != 'U') && UndefinedOnly)
91 return;
92 if ((TypeChar == 'U') && DefinedOnly)
93 return;
94 if (GV.hasInternalLinkage () && ExternalOnly)
95 return;
96 if (OutputFormat == posix) {
97 std::cout << GV.getName () << " " << TypeCharForSymbol (GV) << " "
98 << SymbolAddrStr << "\n";
99 } else if (OutputFormat == bsd) {
100 std::cout << SymbolAddrStr << " " << TypeCharForSymbol (GV) << " "
101 << GV.getName () << "\n";
102 } else if (OutputFormat == sysv) {
103 std::string PaddedName (GV.getName ());
104 while (PaddedName.length () < 20)
105 PaddedName += " ";
106 std::cout << PaddedName << "|" << SymbolAddrStr << "| "
107 << TypeCharForSymbol (GV)
108 << " | | | |\n";
109 }
110}
111
112static void DumpSymbolNamesFromModule(Module *M) {
113 const std::string &Filename = M->getModuleIdentifier ();
114 if (OutputFormat == posix && MultipleFiles) {
115 std::cout << Filename << ":\n";
116 } else if (OutputFormat == bsd && MultipleFiles) {
117 std::cout << "\n" << Filename << ":\n";
118 } else if (OutputFormat == sysv) {
119 std::cout << "\n\nSymbols from " << Filename << ":\n\n"
120 << "Name Value Class Type"
121 << " Size Line Section\n";
122 }
123 std::for_each (M->begin (), M->end (), DumpSymbolNameForGlobalValue);
124 std::for_each (M->global_begin (), M->global_end (),
125 DumpSymbolNameForGlobalValue);
126 std::for_each (M->alias_begin (), M->alias_end (),
127 DumpSymbolNameForGlobalValue);
128}
129
130static void DumpSymbolNamesFromFile(std::string &Filename) {
131 std::string ErrorMessage;
132 sys::Path aPath(Filename);
133 // Note: Currently we do not support reading an archive from stdin.
134 if (Filename == "-" || aPath.isBitcodeFile()) {
135 std::auto_ptr<MemoryBuffer> Buffer(
136 MemoryBuffer::getFileOrSTDIN(Filename, &ErrorMessage));
137 Module *Result = 0;
138 if (Buffer.get())
139 Result = ParseBitcodeFile(Buffer.get(), &ErrorMessage);
140
141 if (Result)
142 DumpSymbolNamesFromModule(Result);
143 else {
144 std::cerr << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
145 return;
146 }
147
148 } else if (aPath.isArchive()) {
149 std::string ErrMsg;
150 Archive* archive = Archive::OpenAndLoad(sys::Path(Filename), &ErrorMessage);
151 if (!archive)
152 std::cerr << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
153 std::vector<Module *> Modules;
154 if (archive->getAllModules(Modules, &ErrorMessage)) {
155 std::cerr << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
156 return;
157 }
158 MultipleFiles = true;
159 std::for_each (Modules.begin(), Modules.end(), DumpSymbolNamesFromModule);
160 } else {
161 std::cerr << ToolName << ": " << Filename << ": "
162 << "unrecognizable file type\n";
163 return;
164 }
165}
166
167int main(int argc, char **argv) {
168 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Dan Gohman6099df82007-10-08 15:45:12 +0000169 cl::ParseCommandLineOptions(argc, argv, "llvm symbol table dumper\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 sys::PrintStackTraceOnErrorSignal();
171
172 ToolName = argv[0];
173 if (BSDFormat) OutputFormat = bsd;
174 if (POSIXFormat) OutputFormat = posix;
175
176 switch (InputFilenames.size()) {
177 case 0: InputFilenames.push_back("-");
178 case 1: break;
179 default: MultipleFiles = true;
180 }
181
182 std::for_each(InputFilenames.begin(), InputFilenames.end(),
183 DumpSymbolNamesFromFile);
184 return 0;
185}