| //===- ArchiveEmitter.cpp ---------------------------- --------------------===// |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| //===----------------------------------------------------------------------===// |
| #include "llvm/ObjectYAML/ArchiveYAML.h" |
| #include "llvm/ObjectYAML/yaml2obj.h" |
| #include "llvm/Support/raw_ostream.h" |
| using namespace ArchYAML; |
| bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH) { |
| Out.write(Doc.Magic.data(), Doc.Magic.size()); |
| Doc.Content->writeAsBinary(Out); |
| auto WriteField = [&](StringRef Field, uint8_t Size) { |
| Out.write(Field.data(), Field.size()); |
| for (size_t I = Field.size(); I != Size; ++I) |
| for (const Archive::Child &C : *Doc.Members) { |
| WriteField(P.second.Value, P.second.MaxLength); |
| C.Content->writeAsBinary(Out); |
| Out.write(*C.PaddingByte); |