1 //===-- llvm-objdump.cpp - Object file dumping utility for llvm -----------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This program is a utility that works like binutils "objdump", that is, it
11 // dumps out a plethora of information about an object file depending on the
14 //===----------------------------------------------------------------------===//
16 #include "llvm/Object/ObjectFile.h"
17 #include "llvm/ADT/OwningPtr.h"
18 #include "llvm/ADT/Triple.h"
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/MC/MCAsmInfo.h"
21 #include "llvm/MC/MCDisassembler.h"
22 #include "llvm/MC/MCInst.h"
23 #include "llvm/MC/MCInstPrinter.h"
24 #include "llvm/Support/CommandLine.h"
25 #include "llvm/Support/Debug.h"
26 #include "llvm/Support/Format.h"
27 #include "llvm/Support/Host.h"
28 #include "llvm/Support/ManagedStatic.h"
29 #include "llvm/Support/MemoryBuffer.h"
30 #include "llvm/Support/MemoryObject.h"
31 #include "llvm/Support/PrettyStackTrace.h"
32 #include "llvm/Support/Signals.h"
33 #include "llvm/Support/SourceMgr.h"
34 #include "llvm/Support/raw_ostream.h"
35 #include "llvm/Support/system_error.h"
36 #include "llvm/Target/TargetRegistry.h"
37 #include "llvm/Target/TargetSelect.h"
41 using namespace object;
45 InputFilenames(cl::Positional, cl::desc("<input object files>"),
49 Disassemble("disassemble",
50 cl::desc("Display assembler mnemonics for the machine instructions"));
52 Disassembled("d", cl::desc("Alias for --disassemble"),
53 cl::aliasopt(Disassemble));
56 TripleName("triple", cl::desc("Target triple to disassemble for, "
57 "see -version for available targets"));
60 ArchName("arch", cl::desc("Target arch to disassemble for, "
61 "see -version for available targets"));
65 bool error(error_code ec) {
66 if (!ec) return false;
68 outs() << ToolName << ": error reading file: " << ec.message() << ".\n";
74 static const Target *GetTarget(const ObjectFile *Obj = NULL) {
75 // Figure out the target triple.
76 llvm::Triple TT("unknown-unknown-unknown");
77 if (TripleName.empty()) {
79 TT.setArch(Triple::ArchType(Obj->getArch()));
81 TT.setTriple(Triple::normalize(TripleName));
83 if (!ArchName.empty())
84 TT.setArchName(ArchName);
86 TripleName = TT.str();
88 // Get the target specific parser.
90 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
94 errs() << ToolName << ": error: unable to get target for '" << TripleName
95 << "', see --version and --triple.\n";
100 class StringRefMemoryObject : public MemoryObject {
104 StringRefMemoryObject(StringRef bytes) : Bytes(bytes) {}
106 uint64_t getBase() const { return 0; }
107 uint64_t getExtent() const { return Bytes.size(); }
109 int readByte(uint64_t Addr, uint8_t *Byte) const {
110 if (Addr > getExtent())
118 static void DumpBytes(StringRef bytes) {
119 static char hex_rep[] = "0123456789abcdef";
120 // FIXME: The real way to do this is to figure out the longest instruction
121 // and align to that size before printing. I'll fix this when I get
122 // around to outputting relocations.
123 // 15 is the longest x86 instruction
124 // 3 is for the hex rep of a byte + a space.
125 // 1 is for the null terminator.
126 enum { OutputSize = (15 * 3) + 1 };
127 char output[OutputSize];
129 assert(bytes.size() <= 15
130 && "DumpBytes only supports instructions of up to 15 bytes");
131 memset(output, ' ', sizeof(output));
133 for (StringRef::iterator i = bytes.begin(),
134 e = bytes.end(); i != e; ++i) {
135 output[index] = hex_rep[(*i & 0xF0) >> 4];
136 output[index + 1] = hex_rep[*i & 0xF];
140 output[sizeof(output) - 1] = 0;
144 static void DisassembleInput(const StringRef &Filename) {
145 OwningPtr<MemoryBuffer> Buff;
147 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, Buff)) {
148 errs() << ToolName << ": " << Filename << ": " << ec.message() << "\n";
152 OwningPtr<ObjectFile> Obj(ObjectFile::createObjectFile(Buff.take()));
154 const Target *TheTarget = GetTarget(Obj.get());
156 // GetTarget prints out stuff.
162 << ":\tfile format " << Obj->getFileFormatName() << "\n\n";
165 for (ObjectFile::section_iterator i = Obj->begin_sections(),
166 e = Obj->end_sections();
167 i != e; i.increment(ec)) {
168 if (error(ec)) break;
170 if (error(i->isText(text))) break;
173 // Make a list of all the symbols in this section.
174 std::vector<std::pair<uint64_t, StringRef> > Symbols;
175 for (ObjectFile::symbol_iterator si = Obj->begin_symbols(),
176 se = Obj->end_symbols();
177 si != se; si.increment(ec)) {
179 if (!error(i->containsSymbol(*si, contains)) && contains) {
181 if (error(si->getAddress(Address))) break;
183 if (error(si->getName(Name))) break;
184 Symbols.push_back(std::make_pair(Address, Name));
188 // Sort the symbols by address, just in case they didn't come in that way.
189 array_pod_sort(Symbols.begin(), Symbols.end());
192 if (error(i->getName(name))) break;
193 outs() << "Disassembly of section " << name << ':';
195 // If the section has no symbols just insert a dummy one and disassemble
196 // the whole section.
198 Symbols.push_back(std::make_pair(0, name));
200 // Set up disassembler.
201 OwningPtr<const MCAsmInfo> AsmInfo(TheTarget->createMCAsmInfo(TripleName));
204 errs() << "error: no assembly info for target " << TripleName << "\n";
208 OwningPtr<const MCDisassembler> DisAsm(TheTarget->createMCDisassembler());
210 errs() << "error: no disassembler for target " << TripleName << "\n";
214 int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
215 OwningPtr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
216 AsmPrinterVariant, *AsmInfo));
218 errs() << "error: no instruction printer for target " << TripleName << '\n';
223 if (error(i->getContents(Bytes))) break;
224 StringRefMemoryObject memoryObject(Bytes);
228 if (error(i->getSize(SectSize))) break;
230 // Disassemble symbol by symbol.
231 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
232 uint64_t Start = Symbols[si].first;
233 uint64_t End = si == se-1 ? SectSize : Symbols[si + 1].first - 1;
234 outs() << '\n' << Symbols[si].second << ":\n";
236 for (Index = Start; Index < End; Index += Size) {
240 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls();
242 raw_ostream &DebugOut = nulls();
245 if (DisAsm->getInstruction(Inst, Size, memoryObject, Index, DebugOut)) {
247 if (error(i->getAddress(addr))) break;
248 outs() << format("%8x:\t", addr + Index);
249 DumpBytes(StringRef(Bytes.data() + Index, Size));
250 IP->printInst(&Inst, outs());
253 errs() << ToolName << ": warning: invalid instruction encoding\n";
255 Size = 1; // skip illegible bytes
262 int main(int argc, char **argv) {
263 // Print a stack trace if we signal out.
264 sys::PrintStackTraceOnErrorSignal();
265 PrettyStackTraceProgram X(argc, argv);
266 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
268 // Initialize targets and assembly printers/parsers.
269 llvm::InitializeAllTargetInfos();
270 // FIXME: We shouldn't need to initialize the Target(Machine)s.
271 llvm::InitializeAllTargets();
272 llvm::InitializeAllMCAsmInfos();
273 llvm::InitializeAllMCCodeGenInfos();
274 llvm::InitializeAllAsmPrinters();
275 llvm::InitializeAllAsmParsers();
276 llvm::InitializeAllDisassemblers();
278 cl::ParseCommandLineOptions(argc, argv, "llvm object file dumper\n");
279 TripleName = Triple::normalize(TripleName);
283 // Defaults to a.out if no filenames specified.
284 if (InputFilenames.size() == 0)
285 InputFilenames.push_back("a.out");
287 // -d is the only flag that is currently implemented, so just print help if
290 cl::PrintHelpMessage();
294 std::for_each(InputFilenames.begin(), InputFilenames.end(),