615ff863b1fdefa2128069bd3c3d850f6925225e
[oota-llvm.git] / tools / obj2yaml / obj2yaml.cpp
1 //===------ utils/obj2yaml.cpp - obj2yaml conversion tool -------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "obj2yaml.h"
11 #include "llvm/ADT/OwningPtr.h"
12 #include "llvm/Object/Archive.h"
13 #include "llvm/Object/COFF.h"
14 #include "llvm/Support/CommandLine.h"
15 #include "llvm/Support/ManagedStatic.h"
16 #include "llvm/Support/PrettyStackTrace.h"
17 #include "llvm/Support/Signals.h"
18
19 namespace yaml {  // generic yaml-writing specific routines
20
21 unsigned char printable(unsigned char Ch) {
22   return Ch >= ' ' && Ch <= '~' ? Ch : '.';
23 }
24
25 llvm::raw_ostream &writeHexStream(llvm::raw_ostream &Out,
26                                   const llvm::ArrayRef<uint8_t> arr) {
27   const char *hex = "0123456789ABCDEF";
28   Out << " !hex \"";
29
30   typedef llvm::ArrayRef<uint8_t>::const_iterator iter_t;
31   const iter_t end = arr.end();
32   for (iter_t iter = arr.begin(); iter != end; ++iter)
33     Out << hex[(*iter >> 4) & 0x0F] << hex[(*iter & 0x0F)];
34
35   Out << "\" # |";
36   for (iter_t iter = arr.begin(); iter != end; ++iter)
37     Out << printable(*iter);
38   Out << "|\n";
39
40   return Out;
41 }
42
43 llvm::raw_ostream &writeHexNumber(llvm::raw_ostream &Out,
44                                   unsigned long long N) {
45   if (N >= 10)
46     Out << "0x";
47   Out.write_hex(N);
48   return Out;
49 }
50
51 }
52
53 using namespace llvm;
54 enum ObjectFileType {
55   coff
56 };
57
58 cl::opt<ObjectFileType> InputFormat(
59     cl::desc("Choose input format"),
60     cl::values(clEnumVal(coff, "process COFF object files"), clEnumValEnd));
61
62 cl::opt<std::string> InputFilename(cl::Positional, cl::desc("<input file>"),
63                                    cl::init("-"));
64
65 int main(int argc, char *argv[]) {
66   cl::ParseCommandLineOptions(argc, argv);
67   sys::PrintStackTraceOnErrorSignal();
68   PrettyStackTraceProgram X(argc, argv);
69   llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
70
71   // Process the input file
72   OwningPtr<MemoryBuffer> buf;
73
74   // TODO: If this is an archive, then burst it and dump each entry
75   if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename, buf)) {
76     llvm::errs() << "Error: '" << ec.message() << "' opening file '"
77                  << InputFilename << "'\n";
78   } else {
79     ec = coff2yaml(llvm::outs(), buf.take());
80     if (ec)
81       llvm::errs() << "Error: " << ec.message() << " dumping COFF file\n";
82   }
83
84   return 0;
85 }