1 //===------ utils/obj2yaml.cpp - obj2yaml conversion tool -------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
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"
18 using namespace llvm::object
;
20 static Error
dumpObject(const ObjectFile
&Obj
) {
22 return errorCodeToError(coff2yaml(outs(), cast
<COFFObjectFile
>(Obj
)));
25 return errorCodeToError(xcoff2yaml(outs(), cast
<XCOFFObjectFile
>(Obj
)));
28 return elf2yaml(outs(), Obj
);
31 return errorCodeToError(wasm2yaml(outs(), cast
<WasmObjectFile
>(Obj
)));
33 return errorCodeToError(obj2yaml_error::unsupported_obj_file_format
);
36 static Error
dumpInput(StringRef File
) {
37 Expected
<OwningBinary
<Binary
>> BinaryOrErr
= createBinary(File
);
39 return BinaryOrErr
.takeError();
41 Binary
&Binary
= *BinaryOrErr
.get().getBinary();
42 // Universal MachO is not a subclass of ObjectFile, so it needs to be handled
43 // here with the other binary types.
44 if (Binary
.isMachO() || Binary
.isMachOUniversalBinary())
45 return errorCodeToError(macho2yaml(outs(), Binary
));
46 // TODO: If this is an archive, then burst it and dump each entry
47 if (ObjectFile
*Obj
= dyn_cast
<ObjectFile
>(&Binary
))
48 return dumpObject(*Obj
);
49 if (MinidumpFile
*Minidump
= dyn_cast
<MinidumpFile
>(&Binary
))
50 return minidump2yaml(outs(), *Minidump
);
52 return Error::success();
55 static void reportError(StringRef Input
, Error Err
) {
59 raw_string_ostream
OS(ErrMsg
);
60 logAllUnhandledErrors(std::move(Err
), OS
);
62 errs() << "Error reading file: " << Input
<< ": " << ErrMsg
;
66 cl::opt
<std::string
> InputFilename(cl::Positional
, cl::desc("<input file>"),
69 int main(int argc
, char *argv
[]) {
70 InitLLVM
X(argc
, argv
);
71 cl::ParseCommandLineOptions(argc
, argv
);
73 if (Error Err
= dumpInput(InputFilename
)) {
74 reportError(InputFilename
, std::move(Err
));