blob: 008c2e0431fca956121cc8abd9584a420a592f3f [file] [log] [blame]
Brian Gaeke972d3d72003-10-16 04:43:15 +00001//===-- llvm-nm.cpp - Symbol table dumping utility for llvm ---------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Brian Gaeke972d3d72003-10-16 04:43:15 +00009//
10// This program is a utility that works like traditional Unix "nm",
Gabor Greifa99be512007-07-05 17:07:56 +000011// that is, it prints out the names of symbols in a bitcode file,
Brian Gaeke972d3d72003-10-16 04:43:15 +000012// along with some information about each symbol.
Misha Brukman3da94ae2005-04-22 00:00:37 +000013//
Brian Gaeke972d3d72003-10-16 04:43:15 +000014// 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
Brian Gaeke972d3d72003-10-16 04:43:15 +000019#include "llvm/Module.h"
Chris Lattner4d5aad22007-05-06 05:36:18 +000020#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattner44dadff2007-05-06 09:29:57 +000021#include "llvm/Bitcode/Archive.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000022#include "llvm/Support/CommandLine.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000023#include "llvm/Support/ManagedStatic.h"
Chris Lattner4d5aad22007-05-06 05:36:18 +000024#include "llvm/Support/MemoryBuffer.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000025#include "llvm/System/Signals.h"
Jeff Cohenca5183d2007-03-05 00:00:42 +000026#include <algorithm>
Brian Gaeke972d3d72003-10-16 04:43:15 +000027#include <cctype>
Alkis Evlogimenos09233fb2004-04-21 16:11:40 +000028#include <cerrno>
Brian Gaeke08d03c72003-11-19 21:52:09 +000029#include <cstring>
Reid Spencer86f42bd2004-07-04 12:20:55 +000030#include <iostream>
Brian Gaeked0fde302003-11-11 22:41:34 +000031using namespace llvm;
32
Brian Gaeke972d3d72003-10-16 04:43:15 +000033namespace {
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"),
Misha Brukman3da94ae2005-04-22 00:00:37 +000040 clEnumVal(posix, "POSIX.2 format"),
Chris Lattner4d143ee2004-07-16 00:08:28 +000041 clEnumValEnd), cl::init(bsd));
Brian Gaeke972d3d72003-10-16 04:43:15 +000042 cl::alias OutputFormat2("f", cl::desc("Alias for --format"),
43 cl::aliasopt(OutputFormat));
44
Misha Brukman3da94ae2005-04-22 00:00:37 +000045 cl::list<std::string>
Gabor Greifa99be512007-07-05 17:07:56 +000046 InputFilenames(cl::Positional, cl::desc("<input bitcode files>"),
Chris Lattnerfc046d52003-10-16 18:45:23 +000047 cl::ZeroOrMore);
Brian Gaeke972d3d72003-10-16 04:43:15 +000048
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;
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000068}
Brian Gaeke972d3d72003-10-16 04:43:15 +000069
Chris Lattnerc30598b2006-12-06 01:18:01 +000070static char TypeCharForSymbol(GlobalValue &GV) {
Lauro Ramos Venancio4a828ee2007-06-27 22:08:09 +000071 if (GV.isDeclaration()) return 'U';
Chris Lattnerc30598b2006-12-06 01:18:01 +000072 if (GV.hasLinkOnceLinkage()) return 'C';
Dale Johannesen7d5633e2008-05-16 22:44:18 +000073 if (GV.hasCommonLinkage()) return 'C';
Chris Lattnerc30598b2006-12-06 01:18:01 +000074 if (GV.hasWeakLinkage()) return 'W';
Lauro Ramos Venancio4a828ee2007-06-27 22:08:09 +000075 if (isa<Function>(GV) && GV.hasInternalLinkage()) return 't';
Chris Lattnerc30598b2006-12-06 01:18:01 +000076 if (isa<Function>(GV)) return 'T';
Lauro Ramos Venancio4a828ee2007-06-27 22:08:09 +000077 if (isa<GlobalVariable>(GV) && GV.hasInternalLinkage()) return 'd';
Chris Lattnerc30598b2006-12-06 01:18:01 +000078 if (isa<GlobalVariable>(GV)) return 'D';
Lauro Ramos Venancio4a828ee2007-06-27 22:08:09 +000079 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 '?';
Brian Gaeke972d3d72003-10-16 04:43:15 +000085}
86
Chris Lattnerc30598b2006-12-06 01:18:01 +000087static void DumpSymbolNameForGlobalValue(GlobalValue &GV) {
Brian Gaeke972d3d72003-10-16 04:43:15 +000088 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
Chris Lattnerc30598b2006-12-06 01:18:01 +0000112static void DumpSymbolNamesFromModule(Module *M) {
Brian Gaeke1c0b6982003-11-16 23:34:13 +0000113 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 }
Brian Gaeke972d3d72003-10-16 04:43:15 +0000123 std::for_each (M->begin (), M->end (), DumpSymbolNameForGlobalValue);
Lauro Ramos Venancio4a828ee2007-06-27 22:08:09 +0000124 std::for_each (M->global_begin (), M->global_end (),
125 DumpSymbolNameForGlobalValue);
126 std::for_each (M->alias_begin (), M->alias_end (),
127 DumpSymbolNameForGlobalValue);
Brian Gaeke972d3d72003-10-16 04:43:15 +0000128}
129
Chris Lattnerc30598b2006-12-06 01:18:01 +0000130static void DumpSymbolNamesFromFile(std::string &Filename) {
Brian Gaeke972d3d72003-10-16 04:43:15 +0000131 std::string ErrorMessage;
Reid Spencer11db4b82004-12-13 03:01:26 +0000132 sys::Path aPath(Filename);
Brian Gaeke8b1daa32003-11-19 22:15:00 +0000133 // Note: Currently we do not support reading an archive from stdin.
Chris Lattner44dadff2007-05-06 09:29:57 +0000134 if (Filename == "-" || aPath.isBitcodeFile()) {
Chris Lattner4d5aad22007-05-06 05:36:18 +0000135 std::auto_ptr<MemoryBuffer> Buffer(
Chris Lattner065344d2007-05-06 23:45:49 +0000136 MemoryBuffer::getFileOrSTDIN(Filename, &ErrorMessage));
Chris Lattner4d5aad22007-05-06 05:36:18 +0000137 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
Reid Spencer11db4b82004-12-13 03:01:26 +0000148 } else if (aPath.isArchive()) {
Reid Spencer8d8a7ff2006-07-07 20:56:50 +0000149 std::string ErrMsg;
Chris Lattnerc30598b2006-12-06 01:18:01 +0000150 Archive* archive = Archive::OpenAndLoad(sys::Path(Filename), &ErrorMessage);
Reid Spencer63efb772004-11-14 22:27:46 +0000151 if (!archive)
152 std::cerr << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
Brian Gaeke1c0b6982003-11-16 23:34:13 +0000153 std::vector<Module *> Modules;
Chris Lattnerc30598b2006-12-06 01:18:01 +0000154 if (archive->getAllModules(Modules, &ErrorMessage)) {
Reid Spencer63efb772004-11-14 22:27:46 +0000155 std::cerr << ToolName << ": " << Filename << ": " << ErrorMessage << "\n";
Brian Gaeke08d03c72003-11-19 21:52:09 +0000156 return;
157 }
Brian Gaeke1c0b6982003-11-16 23:34:13 +0000158 MultipleFiles = true;
Chris Lattnerc30598b2006-12-06 01:18:01 +0000159 std::for_each (Modules.begin(), Modules.end(), DumpSymbolNamesFromModule);
Brian Gaeke82042872003-11-19 21:57:30 +0000160 } else {
161 std::cerr << ToolName << ": " << Filename << ": "
162 << "unrecognizable file type\n";
163 return;
Brian Gaeke972d3d72003-10-16 04:43:15 +0000164 }
165}
166
167int main(int argc, char **argv) {
Chris Lattnerc30598b2006-12-06 01:18:01 +0000168 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Dan Gohman82a13c92007-10-08 15:45:12 +0000169 cl::ParseCommandLineOptions(argc, argv, "llvm symbol table dumper\n");
Chris Lattner4d5aad22007-05-06 05:36:18 +0000170 sys::PrintStackTraceOnErrorSignal();
Chris Lattnerf73b4ca2004-02-19 20:32:12 +0000171
Chris Lattner4d5aad22007-05-06 05:36:18 +0000172 ToolName = argv[0];
173 if (BSDFormat) OutputFormat = bsd;
174 if (POSIXFormat) OutputFormat = posix;
Chris Lattnerfc046d52003-10-16 18:45:23 +0000175
Chris Lattner4d5aad22007-05-06 05:36:18 +0000176 switch (InputFilenames.size()) {
177 case 0: InputFilenames.push_back("-");
178 case 1: break;
179 default: MultipleFiles = true;
Chris Lattnerfc046d52003-10-16 18:45:23 +0000180 }
Chris Lattner4d5aad22007-05-06 05:36:18 +0000181
182 std::for_each(InputFilenames.begin(), InputFilenames.end(),
183 DumpSymbolNamesFromFile);
184 return 0;
Brian Gaeke972d3d72003-10-16 04:43:15 +0000185}