150
|
1 //===-- yaml2obj.cpp ------------------------------------------------------===//
|
|
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 "llvm/ObjectYAML/yaml2obj.h"
|
|
10 #include "llvm/ADT/StringExtras.h"
|
|
11 #include "llvm/ADT/Twine.h"
|
|
12 #include "llvm/Object/ObjectFile.h"
|
|
13 #include "llvm/ObjectYAML/ObjectYAML.h"
|
|
14 #include "llvm/Support/Errc.h"
|
|
15 #include "llvm/Support/WithColor.h"
|
|
16 #include "llvm/Support/YAMLTraits.h"
|
|
17
|
|
18 namespace llvm {
|
|
19 namespace yaml {
|
|
20
|
|
21 bool convertYAML(yaml::Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,
|
221
|
22 unsigned DocNum, uint64_t MaxSize) {
|
150
|
23 unsigned CurDocNum = 0;
|
|
24 do {
|
|
25 if (++CurDocNum != DocNum)
|
|
26 continue;
|
|
27
|
|
28 yaml::YamlObjectFile Doc;
|
|
29 YIn >> Doc;
|
|
30 if (std::error_code EC = YIn.error()) {
|
|
31 ErrHandler("failed to parse YAML input: " + EC.message());
|
|
32 return false;
|
|
33 }
|
|
34
|
221
|
35 if (Doc.Arch)
|
|
36 return yaml2archive(*Doc.Arch, Out, ErrHandler);
|
150
|
37 if (Doc.Elf)
|
221
|
38 return yaml2elf(*Doc.Elf, Out, ErrHandler, MaxSize);
|
150
|
39 if (Doc.Coff)
|
|
40 return yaml2coff(*Doc.Coff, Out, ErrHandler);
|
|
41 if (Doc.MachO || Doc.FatMachO)
|
|
42 return yaml2macho(Doc, Out, ErrHandler);
|
|
43 if (Doc.Minidump)
|
|
44 return yaml2minidump(*Doc.Minidump, Out, ErrHandler);
|
236
|
45 if (Doc.Offload)
|
|
46 return yaml2offload(*Doc.Offload, Out, ErrHandler);
|
150
|
47 if (Doc.Wasm)
|
|
48 return yaml2wasm(*Doc.Wasm, Out, ErrHandler);
|
221
|
49 if (Doc.Xcoff)
|
|
50 return yaml2xcoff(*Doc.Xcoff, Out, ErrHandler);
|
236
|
51 if (Doc.DXContainer)
|
|
52 return yaml2dxcontainer(*Doc.DXContainer, Out, ErrHandler);
|
150
|
53
|
|
54 ErrHandler("unknown document type");
|
|
55 return false;
|
|
56
|
|
57 } while (YIn.nextDocument());
|
|
58
|
|
59 ErrHandler("cannot find the " + Twine(DocNum) +
|
|
60 getOrdinalSuffix(DocNum).data() + " document");
|
|
61 return false;
|
|
62 }
|
|
63
|
|
64 std::unique_ptr<object::ObjectFile>
|
|
65 yaml2ObjectFile(SmallVectorImpl<char> &Storage, StringRef Yaml,
|
|
66 ErrorHandler ErrHandler) {
|
|
67 Storage.clear();
|
|
68 raw_svector_ostream OS(Storage);
|
|
69
|
|
70 yaml::Input YIn(Yaml);
|
|
71 if (!convertYAML(YIn, OS, ErrHandler))
|
|
72 return {};
|
|
73
|
|
74 Expected<std::unique_ptr<object::ObjectFile>> ObjOrErr =
|
|
75 object::ObjectFile::createObjectFile(
|
|
76 MemoryBufferRef(OS.str(), "YamlObject"));
|
|
77 if (ObjOrErr)
|
|
78 return std::move(*ObjOrErr);
|
|
79
|
|
80 ErrHandler(toString(ObjOrErr.takeError()));
|
|
81 return {};
|
|
82 }
|
|
83
|
|
84 } // namespace yaml
|
|
85 } // namespace llvm
|