bcanalyzer: Rewrite all the METADATA_ codes
[oota-llvm.git] / tools / yaml2obj / yaml2elf.cpp
1 //===- yaml2elf - Convert YAML to a ELF object file -----------------------===//
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 /// \file
11 /// \brief The ELF component of yaml2obj.
12 ///
13 //===----------------------------------------------------------------------===//
14
15 #include "yaml2obj.h"
16 #include "llvm/ADT/ArrayRef.h"
17 #include "llvm/MC/StringTableBuilder.h"
18 #include "llvm/Object/ELFObjectFile.h"
19 #include "llvm/Object/ELFYAML.h"
20 #include "llvm/Support/ELF.h"
21 #include "llvm/Support/MemoryBuffer.h"
22 #include "llvm/Support/YAMLTraits.h"
23 #include "llvm/Support/raw_ostream.h"
24
25 using namespace llvm;
26
27 // This class is used to build up a contiguous binary blob while keeping
28 // track of an offset in the output (which notionally begins at
29 // `InitialOffset`).
30 namespace {
31 class ContiguousBlobAccumulator {
32   const uint64_t InitialOffset;
33   SmallVector<char, 128> Buf;
34   raw_svector_ostream OS;
35
36   /// \returns The new offset.
37   uint64_t padToAlignment(unsigned Align) {
38     uint64_t CurrentOffset = InitialOffset + OS.tell();
39     uint64_t AlignedOffset = RoundUpToAlignment(CurrentOffset, Align);
40     for (; CurrentOffset != AlignedOffset; ++CurrentOffset)
41       OS.write('\0');
42     return AlignedOffset; // == CurrentOffset;
43   }
44
45 public:
46   ContiguousBlobAccumulator(uint64_t InitialOffset_)
47       : InitialOffset(InitialOffset_), Buf(), OS(Buf) {}
48   template <class Integer>
49   raw_ostream &getOSAndAlignedOffset(Integer &Offset, unsigned Align = 16) {
50     Offset = padToAlignment(Align);
51     return OS;
52   }
53   void writeBlobToStream(raw_ostream &Out) { Out << OS.str(); }
54 };
55 } // end anonymous namespace
56
57 // Used to keep track of section and symbol names, so that in the YAML file
58 // sections and symbols can be referenced by name instead of by index.
59 namespace {
60 class NameToIdxMap {
61   StringMap<int> Map;
62 public:
63   /// \returns true if name is already present in the map.
64   bool addName(StringRef Name, unsigned i) {
65     return !Map.insert(std::make_pair(Name, (int)i)).second;
66   }
67   /// \returns true if name is not present in the map
68   bool lookup(StringRef Name, unsigned &Idx) const {
69     StringMap<int>::const_iterator I = Map.find(Name);
70     if (I == Map.end())
71       return true;
72     Idx = I->getValue();
73     return false;
74   }
75 };
76 } // end anonymous namespace
77
78 template <class T>
79 static size_t arrayDataSize(ArrayRef<T> A) {
80   return A.size() * sizeof(T);
81 }
82
83 template <class T>
84 static void writeArrayData(raw_ostream &OS, ArrayRef<T> A) {
85   OS.write((const char *)A.data(), arrayDataSize(A));
86 }
87
88 template <class T>
89 static void zero(T &Obj) {
90   memset(&Obj, 0, sizeof(Obj));
91 }
92
93 namespace {
94 /// \brief "Single point of truth" for the ELF file construction.
95 /// TODO: This class still has a ways to go before it is truly a "single
96 /// point of truth".
97 template <class ELFT>
98 class ELFState {
99   typedef typename object::ELFFile<ELFT>::Elf_Ehdr Elf_Ehdr;
100   typedef typename object::ELFFile<ELFT>::Elf_Shdr Elf_Shdr;
101   typedef typename object::ELFFile<ELFT>::Elf_Sym Elf_Sym;
102   typedef typename object::ELFFile<ELFT>::Elf_Rel Elf_Rel;
103   typedef typename object::ELFFile<ELFT>::Elf_Rela Elf_Rela;
104
105   /// \brief The future ".strtab" section.
106   StringTableBuilder DotStrtab;
107
108   /// \brief The future ".shstrtab" section.
109   StringTableBuilder DotShStrtab;
110
111   NameToIdxMap SN2I;
112   NameToIdxMap SymN2I;
113   const ELFYAML::Object &Doc;
114
115   bool buildSectionIndex();
116   bool buildSymbolIndex(std::size_t &StartIndex,
117                         const std::vector<ELFYAML::Symbol> &Symbols);
118   void initELFHeader(Elf_Ehdr &Header);
119   bool initSectionHeaders(std::vector<Elf_Shdr> &SHeaders,
120                           ContiguousBlobAccumulator &CBA);
121   void initSymtabSectionHeader(Elf_Shdr &SHeader,
122                                ContiguousBlobAccumulator &CBA);
123   void initStrtabSectionHeader(Elf_Shdr &SHeader, StringRef Name,
124                                StringTableBuilder &STB,
125                                ContiguousBlobAccumulator &CBA);
126   void addSymbols(const std::vector<ELFYAML::Symbol> &Symbols,
127                   std::vector<Elf_Sym> &Syms, unsigned SymbolBinding);
128   void writeSectionContent(Elf_Shdr &SHeader,
129                            const ELFYAML::RawContentSection &Section,
130                            ContiguousBlobAccumulator &CBA);
131   bool writeSectionContent(Elf_Shdr &SHeader,
132                            const ELFYAML::RelocationSection &Section,
133                            ContiguousBlobAccumulator &CBA);
134   bool writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::Group &Group,
135                            ContiguousBlobAccumulator &CBA);
136   bool writeSectionContent(Elf_Shdr &SHeader,
137                            const ELFYAML::MipsABIFlags &Section,
138                            ContiguousBlobAccumulator &CBA);
139
140   // - SHT_NULL entry (placed first, i.e. 0'th entry)
141   // - symbol table (.symtab) (placed third to last)
142   // - string table (.strtab) (placed second to last)
143   // - section header string table (.shstrtab) (placed last)
144   unsigned getDotSymTabSecNo() const { return Doc.Sections.size() + 1; }
145   unsigned getDotStrTabSecNo() const { return Doc.Sections.size() + 2; }
146   unsigned getDotShStrTabSecNo() const { return Doc.Sections.size() + 3; }
147   unsigned getSectionCount() const { return Doc.Sections.size() + 4; }
148
149   ELFState(const ELFYAML::Object &D) : Doc(D) {}
150
151 public:
152   static int writeELF(raw_ostream &OS, const ELFYAML::Object &Doc);
153 };
154 } // end anonymous namespace
155
156 template <class ELFT>
157 void ELFState<ELFT>::initELFHeader(Elf_Ehdr &Header) {
158   using namespace llvm::ELF;
159   zero(Header);
160   Header.e_ident[EI_MAG0] = 0x7f;
161   Header.e_ident[EI_MAG1] = 'E';
162   Header.e_ident[EI_MAG2] = 'L';
163   Header.e_ident[EI_MAG3] = 'F';
164   Header.e_ident[EI_CLASS] = ELFT::Is64Bits ? ELFCLASS64 : ELFCLASS32;
165   bool IsLittleEndian = ELFT::TargetEndianness == support::little;
166   Header.e_ident[EI_DATA] = IsLittleEndian ? ELFDATA2LSB : ELFDATA2MSB;
167   Header.e_ident[EI_VERSION] = EV_CURRENT;
168   Header.e_ident[EI_OSABI] = Doc.Header.OSABI;
169   Header.e_ident[EI_ABIVERSION] = 0;
170   Header.e_type = Doc.Header.Type;
171   Header.e_machine = Doc.Header.Machine;
172   Header.e_version = EV_CURRENT;
173   Header.e_entry = Doc.Header.Entry;
174   Header.e_flags = Doc.Header.Flags;
175   Header.e_ehsize = sizeof(Elf_Ehdr);
176   Header.e_shentsize = sizeof(Elf_Shdr);
177   // Immediately following the ELF header.
178   Header.e_shoff = sizeof(Header);
179   Header.e_shnum = getSectionCount();
180   Header.e_shstrndx = getDotShStrTabSecNo();
181 }
182
183 template <class ELFT>
184 bool ELFState<ELFT>::initSectionHeaders(std::vector<Elf_Shdr> &SHeaders,
185                                         ContiguousBlobAccumulator &CBA) {
186   // Ensure SHN_UNDEF entry is present. An all-zero section header is a
187   // valid SHN_UNDEF entry since SHT_NULL == 0.
188   Elf_Shdr SHeader;
189   zero(SHeader);
190   SHeaders.push_back(SHeader);
191
192   for (const auto &Sec : Doc.Sections)
193     DotShStrtab.add(Sec->Name);
194   DotShStrtab.finalize(StringTableBuilder::ELF);
195
196   for (const auto &Sec : Doc.Sections) {
197     zero(SHeader);
198     SHeader.sh_name = DotShStrtab.getOffset(Sec->Name);
199     SHeader.sh_type = Sec->Type;
200     SHeader.sh_flags = Sec->Flags;
201     SHeader.sh_addr = Sec->Address;
202     SHeader.sh_addralign = Sec->AddressAlign;
203
204     if (!Sec->Link.empty()) {
205       unsigned Index;
206       if (SN2I.lookup(Sec->Link, Index)) {
207         errs() << "error: Unknown section referenced: '" << Sec->Link
208                << "' at YAML section '" << Sec->Name << "'.\n";
209         return false;
210       }
211       SHeader.sh_link = Index;
212     }
213
214     if (auto S = dyn_cast<ELFYAML::RawContentSection>(Sec.get()))
215       writeSectionContent(SHeader, *S, CBA);
216     else if (auto S = dyn_cast<ELFYAML::RelocationSection>(Sec.get())) {
217       if (S->Link.empty())
218         // For relocation section set link to .symtab by default.
219         SHeader.sh_link = getDotSymTabSecNo();
220
221       unsigned Index;
222       if (SN2I.lookup(S->Info, Index)) {
223         errs() << "error: Unknown section referenced: '" << S->Info
224                << "' at YAML section '" << S->Name << "'.\n";
225         return false;
226       }
227       SHeader.sh_info = Index;
228
229       if (!writeSectionContent(SHeader, *S, CBA))
230         return false;
231     } else if (auto S = dyn_cast<ELFYAML::Group>(Sec.get())) {
232       unsigned SymIdx;
233       if (SymN2I.lookup(S->Info, SymIdx)) {
234         errs() << "error: Unknown symbol referenced: '" << S->Info
235                << "' at YAML section '" << S->Name << "'.\n";
236         return false;
237       }
238       SHeader.sh_info = SymIdx;
239       if (!writeSectionContent(SHeader, *S, CBA))
240         return false;
241     } else if (auto S = dyn_cast<ELFYAML::MipsABIFlags>(Sec.get())) {
242       if (!writeSectionContent(SHeader, *S, CBA))
243         return false;
244     } else
245       llvm_unreachable("Unknown section type");
246
247     SHeaders.push_back(SHeader);
248   }
249   return true;
250 }
251
252 template <class ELFT>
253 void ELFState<ELFT>::initSymtabSectionHeader(Elf_Shdr &SHeader,
254                                              ContiguousBlobAccumulator &CBA) {
255   zero(SHeader);
256   SHeader.sh_name = DotShStrtab.getOffset(".symtab");
257   SHeader.sh_type = ELF::SHT_SYMTAB;
258   SHeader.sh_link = getDotStrTabSecNo();
259   // One greater than symbol table index of the last local symbol.
260   SHeader.sh_info = Doc.Symbols.Local.size() + 1;
261   SHeader.sh_entsize = sizeof(Elf_Sym);
262
263   std::vector<Elf_Sym> Syms;
264   {
265     // Ensure STN_UNDEF is present
266     Elf_Sym Sym;
267     zero(Sym);
268     Syms.push_back(Sym);
269   }
270
271   // Add symbol names to .strtab.
272   for (const auto &Sym : Doc.Symbols.Local)
273     DotStrtab.add(Sym.Name);
274   for (const auto &Sym : Doc.Symbols.Global)
275     DotStrtab.add(Sym.Name);
276   for (const auto &Sym : Doc.Symbols.Weak)
277     DotStrtab.add(Sym.Name);
278   DotStrtab.finalize(StringTableBuilder::ELF);
279
280   addSymbols(Doc.Symbols.Local, Syms, ELF::STB_LOCAL);
281   addSymbols(Doc.Symbols.Global, Syms, ELF::STB_GLOBAL);
282   addSymbols(Doc.Symbols.Weak, Syms, ELF::STB_WEAK);
283
284   writeArrayData(CBA.getOSAndAlignedOffset(SHeader.sh_offset),
285                  makeArrayRef(Syms));
286   SHeader.sh_size = arrayDataSize(makeArrayRef(Syms));
287 }
288
289 template <class ELFT>
290 void ELFState<ELFT>::initStrtabSectionHeader(Elf_Shdr &SHeader, StringRef Name,
291                                              StringTableBuilder &STB,
292                                              ContiguousBlobAccumulator &CBA) {
293   zero(SHeader);
294   SHeader.sh_name = DotShStrtab.getOffset(Name);
295   SHeader.sh_type = ELF::SHT_STRTAB;
296   CBA.getOSAndAlignedOffset(SHeader.sh_offset) << STB.data();
297   SHeader.sh_size = STB.data().size();
298   SHeader.sh_addralign = 1;
299 }
300
301 template <class ELFT>
302 void ELFState<ELFT>::addSymbols(const std::vector<ELFYAML::Symbol> &Symbols,
303                                 std::vector<Elf_Sym> &Syms,
304                                 unsigned SymbolBinding) {
305   for (const auto &Sym : Symbols) {
306     Elf_Sym Symbol;
307     zero(Symbol);
308     if (!Sym.Name.empty())
309       Symbol.st_name = DotStrtab.getOffset(Sym.Name);
310     Symbol.setBindingAndType(SymbolBinding, Sym.Type);
311     if (!Sym.Section.empty()) {
312       unsigned Index;
313       if (SN2I.lookup(Sym.Section, Index)) {
314         errs() << "error: Unknown section referenced: '" << Sym.Section
315                << "' by YAML symbol " << Sym.Name << ".\n";
316         exit(1);
317       }
318       Symbol.st_shndx = Index;
319     } // else Symbol.st_shndex == SHN_UNDEF (== 0), since it was zero'd earlier.
320     Symbol.st_value = Sym.Value;
321     Symbol.st_other = Sym.Other;
322     Symbol.st_size = Sym.Size;
323     Syms.push_back(Symbol);
324   }
325 }
326
327 template <class ELFT>
328 void
329 ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
330                                     const ELFYAML::RawContentSection &Section,
331                                     ContiguousBlobAccumulator &CBA) {
332   assert(Section.Size >= Section.Content.binary_size() &&
333          "Section size and section content are inconsistent");
334   raw_ostream &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset);
335   Section.Content.writeAsBinary(OS);
336   for (auto i = Section.Content.binary_size(); i < Section.Size; ++i)
337     OS.write(0);
338   SHeader.sh_entsize = 0;
339   SHeader.sh_size = Section.Size;
340 }
341
342 static bool isMips64EL(const ELFYAML::Object &Doc) {
343   return Doc.Header.Machine == ELFYAML::ELF_EM(llvm::ELF::EM_MIPS) &&
344          Doc.Header.Class == ELFYAML::ELF_ELFCLASS(ELF::ELFCLASS64) &&
345          Doc.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB);
346 }
347
348 template <class ELFT>
349 bool
350 ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
351                                     const ELFYAML::RelocationSection &Section,
352                                     ContiguousBlobAccumulator &CBA) {
353   assert((Section.Type == llvm::ELF::SHT_REL ||
354           Section.Type == llvm::ELF::SHT_RELA) &&
355          "Section type is not SHT_REL nor SHT_RELA");
356
357   bool IsRela = Section.Type == llvm::ELF::SHT_RELA;
358   SHeader.sh_entsize = IsRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel);
359   SHeader.sh_size = SHeader.sh_entsize * Section.Relocations.size();
360
361   auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset);
362
363   for (const auto &Rel : Section.Relocations) {
364     unsigned SymIdx = 0;
365     // Some special relocation, R_ARM_v4BX for instance, does not have
366     // an external reference.  So it ignores the return value of lookup()
367     // here.
368     SymN2I.lookup(Rel.Symbol, SymIdx);
369
370     if (IsRela) {
371       Elf_Rela REntry;
372       zero(REntry);
373       REntry.r_offset = Rel.Offset;
374       REntry.r_addend = Rel.Addend;
375       REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc));
376       OS.write((const char *)&REntry, sizeof(REntry));
377     } else {
378       Elf_Rel REntry;
379       zero(REntry);
380       REntry.r_offset = Rel.Offset;
381       REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc));
382       OS.write((const char *)&REntry, sizeof(REntry));
383     }
384   }
385   return true;
386 }
387
388 template <class ELFT>
389 bool ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
390                                          const ELFYAML::Group &Section,
391                                          ContiguousBlobAccumulator &CBA) {
392   typedef typename object::ELFFile<ELFT>::Elf_Word Elf_Word;
393   assert(Section.Type == llvm::ELF::SHT_GROUP &&
394          "Section type is not SHT_GROUP");
395
396   SHeader.sh_entsize = sizeof(Elf_Word);
397   SHeader.sh_size = SHeader.sh_entsize * Section.Members.size();
398
399   auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset);
400
401   for (auto member : Section.Members) {
402     Elf_Word SIdx;
403     unsigned int sectionIndex = 0;
404     if (member.sectionNameOrType == "GRP_COMDAT")
405       sectionIndex = llvm::ELF::GRP_COMDAT;
406     else if (SN2I.lookup(member.sectionNameOrType, sectionIndex)) {
407       errs() << "error: Unknown section referenced: '"
408              << member.sectionNameOrType << "' at YAML section' "
409              << Section.Name << "\n";
410       return false;
411     }
412     SIdx = sectionIndex;
413     OS.write((const char *)&SIdx, sizeof(SIdx));
414   }
415   return true;
416 }
417
418 template <class ELFT>
419 bool ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
420                                          const ELFYAML::MipsABIFlags &Section,
421                                          ContiguousBlobAccumulator &CBA) {
422   assert(Section.Type == llvm::ELF::SHT_MIPS_ABIFLAGS &&
423          "Section type is not SHT_MIPS_ABIFLAGS");
424
425   object::Elf_Mips_ABIFlags<ELFT> Flags;
426   zero(Flags);
427   SHeader.sh_entsize = sizeof(Flags);
428   SHeader.sh_size = SHeader.sh_entsize;
429
430   auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset);
431   Flags.version = Section.Version;
432   Flags.isa_level = Section.ISALevel;
433   Flags.isa_rev = Section.ISARevision;
434   Flags.gpr_size = Section.GPRSize;
435   Flags.cpr1_size = Section.CPR1Size;
436   Flags.cpr2_size = Section.CPR2Size;
437   Flags.fp_abi = Section.FpABI;
438   Flags.isa_ext = Section.ISAExtension;
439   Flags.ases = Section.ASEs;
440   Flags.flags1 = Section.Flags1;
441   Flags.flags2 = Section.Flags2;
442   OS.write((const char *)&Flags, sizeof(Flags));
443
444   return true;
445 }
446
447 template <class ELFT> bool ELFState<ELFT>::buildSectionIndex() {
448   SN2I.addName(".symtab", getDotSymTabSecNo());
449   SN2I.addName(".strtab", getDotStrTabSecNo());
450   SN2I.addName(".shstrtab", getDotShStrTabSecNo());
451
452   for (unsigned i = 0, e = Doc.Sections.size(); i != e; ++i) {
453     StringRef Name = Doc.Sections[i]->Name;
454     if (Name.empty())
455       continue;
456     // "+ 1" to take into account the SHT_NULL entry.
457     if (SN2I.addName(Name, i + 1)) {
458       errs() << "error: Repeated section name: '" << Name
459              << "' at YAML section number " << i << ".\n";
460       return false;
461     }
462   }
463   return true;
464 }
465
466 template <class ELFT>
467 bool
468 ELFState<ELFT>::buildSymbolIndex(std::size_t &StartIndex,
469                                  const std::vector<ELFYAML::Symbol> &Symbols) {
470   for (const auto &Sym : Symbols) {
471     ++StartIndex;
472     if (Sym.Name.empty())
473       continue;
474     if (SymN2I.addName(Sym.Name, StartIndex)) {
475       errs() << "error: Repeated symbol name: '" << Sym.Name << "'.\n";
476       return false;
477     }
478   }
479   return true;
480 }
481
482 template <class ELFT>
483 int ELFState<ELFT>::writeELF(raw_ostream &OS, const ELFYAML::Object &Doc) {
484   ELFState<ELFT> State(Doc);
485   if (!State.buildSectionIndex())
486     return 1;
487
488   std::size_t StartSymIndex = 0;
489   if (!State.buildSymbolIndex(StartSymIndex, Doc.Symbols.Local) ||
490       !State.buildSymbolIndex(StartSymIndex, Doc.Symbols.Global) ||
491       !State.buildSymbolIndex(StartSymIndex, Doc.Symbols.Weak))
492     return 1;
493
494   Elf_Ehdr Header;
495   State.initELFHeader(Header);
496
497   // TODO: Flesh out section header support.
498   // TODO: Program headers.
499
500   // XXX: This offset is tightly coupled with the order that we write
501   // things to `OS`.
502   const size_t SectionContentBeginOffset =
503       Header.e_ehsize + Header.e_shentsize * Header.e_shnum;
504   ContiguousBlobAccumulator CBA(SectionContentBeginOffset);
505
506   // Doc might not contain .symtab, .strtab and .shstrtab sections,
507   // but we will emit them, so make sure to add them to ShStrTabSHeader.
508   State.DotShStrtab.add(".symtab");
509   State.DotShStrtab.add(".strtab");
510   State.DotShStrtab.add(".shstrtab");
511
512   std::vector<Elf_Shdr> SHeaders;
513   if(!State.initSectionHeaders(SHeaders, CBA))
514     return 1;
515
516   // .symtab section.
517   Elf_Shdr SymtabSHeader;
518   State.initSymtabSectionHeader(SymtabSHeader, CBA);
519   SHeaders.push_back(SymtabSHeader);
520
521   // .strtab string table header.
522   Elf_Shdr DotStrTabSHeader;
523   State.initStrtabSectionHeader(DotStrTabSHeader, ".strtab", State.DotStrtab,
524                                 CBA);
525   SHeaders.push_back(DotStrTabSHeader);
526
527   // .shstrtab string table header.
528   Elf_Shdr ShStrTabSHeader;
529   State.initStrtabSectionHeader(ShStrTabSHeader, ".shstrtab", State.DotShStrtab,
530                                 CBA);
531   SHeaders.push_back(ShStrTabSHeader);
532
533   OS.write((const char *)&Header, sizeof(Header));
534   writeArrayData(OS, makeArrayRef(SHeaders));
535   CBA.writeBlobToStream(OS);
536   return 0;
537 }
538
539 static bool is64Bit(const ELFYAML::Object &Doc) {
540   return Doc.Header.Class == ELFYAML::ELF_ELFCLASS(ELF::ELFCLASS64);
541 }
542
543 static bool isLittleEndian(const ELFYAML::Object &Doc) {
544   return Doc.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB);
545 }
546
547 int yaml2elf(yaml::Input &YIn, raw_ostream &Out) {
548   ELFYAML::Object Doc;
549   YIn >> Doc;
550   if (YIn.error()) {
551     errs() << "yaml2obj: Failed to parse YAML file!\n";
552     return 1;
553   }
554   using object::ELFType;
555   typedef ELFType<support::little, true> LE64;
556   typedef ELFType<support::big, true> BE64;
557   typedef ELFType<support::little, false> LE32;
558   typedef ELFType<support::big, false> BE32;
559   if (is64Bit(Doc)) {
560     if (isLittleEndian(Doc))
561       return ELFState<LE64>::writeELF(Out, Doc);
562     else
563       return ELFState<BE64>::writeELF(Out, Doc);
564   } else {
565     if (isLittleEndian(Doc))
566       return ELFState<LE32>::writeELF(Out, Doc);
567     else
568       return ELFState<BE32>::writeELF(Out, Doc);
569   }
570 }