1 //===------ utils/obj2yaml.cpp - obj2yaml conversion tool -------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "obj2yaml.h"
10 #include "Error.h"
11 #include "llvm/Object/Archive.h"
12 #include "llvm/Object/COFF.h"
13 #include "llvm/Object/Minidump.h"
14 #include "llvm/Support/CommandLine.h"
15 #include "llvm/Support/InitLLVM.h"
16 
17 using namespace llvm;
18 using namespace llvm::object;
19 
20 static std::error_code dumpObject(const ObjectFile &Obj) {
21   if (Obj.isCOFF())
22     return coff2yaml(outs(), cast<COFFObjectFile>(Obj));
23   if (Obj.isELF())
24     return elf2yaml(outs(), Obj);
25   if (Obj.isWasm())
26     return wasm2yaml(outs(), cast<WasmObjectFile>(Obj));
27 
28   return obj2yaml_error::unsupported_obj_file_format;
29 }
30 
31 static Error dumpInput(StringRef File) {
32   Expected<OwningBinary<Binary>> BinaryOrErr = createBinary(File);
33   if (!BinaryOrErr)
34     return BinaryOrErr.takeError();
35 
36   Binary &Binary = *BinaryOrErr.get().getBinary();
37   // Universal MachO is not a subclass of ObjectFile, so it needs to be handled
38   // here with the other binary types.
39   if (Binary.isMachO() || Binary.isMachOUniversalBinary())
40     return errorCodeToError(macho2yaml(outs(), Binary));
41   // TODO: If this is an archive, then burst it and dump each entry
42   if (ObjectFile *Obj = dyn_cast<ObjectFile>(&Binary))
43     return errorCodeToError(dumpObject(*Obj));
44   if (MinidumpFile *Minidump = dyn_cast<MinidumpFile>(&Binary))
45     return minidump2yaml(outs(), *Minidump);
46 
47   return Error::success();
48 }
49 
50 static void reportError(StringRef Input, Error Err) {
51   if (Input == "-")
52     Input = "<stdin>";
53   std::string ErrMsg;
54   raw_string_ostream OS(ErrMsg);
55   logAllUnhandledErrors(std::move(Err), OS);
56   OS.flush();
57   errs() << "Error reading file: " << Input << ": " << ErrMsg;
58   errs().flush();
59 }
60 
61 cl::opt<std::string> InputFilename(cl::Positional, cl::desc("<input file>"),
62                                    cl::init("-"));
63 
64 int main(int argc, char *argv[]) {
65   InitLLVM X(argc, argv);
66   cl::ParseCommandLineOptions(argc, argv);
67 
68   if (Error Err = dumpInput(InputFilename)) {
69     reportError(InputFilename, std::move(Err));
70     return 1;
71   }
72 
73   return 0;
74 }
75