Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: src/IceELFObjectWriter.h

Issue 678533005: Subzero: Add basic ELFObjectWriter (text section, symtab, strtab, headers) (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: stuff Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 //===- subzero/src/IceELFObjectWriter.h - ELF object writer -----*- C++ -*-===//
2 //
3 // The Subzero Code Generator
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Abstraction for a writer that is responsible for writing an ELF file.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef SUBZERO_SRC_ICEELFOBJECTWRITER_H
15 #define SUBZERO_SRC_ICEELFOBJECTWRITER_H
16
17 #include "IceDefs.h"
18 #include "IceELFSection.h"
19 #include "IceELFStreamer.h"
20
21 using namespace llvm::ELF;
22
23 namespace Ice {
24
25 // Higher level ELF object writer. Manages section information and writes
26 // the final ELF object. The object writer will write to file the code
27 // and data as it is being defined (rather than keep a copy).
28 // After all definitions are written out, it will finalize the bookkeeping
29 // sectinos and write them out. Expected usage:
Jim Stichnoth 2014/11/21 21:32:22 sections
jvoung (off chromium) 2014/11/24 21:35:46 Done.
30 //
31 // (1) writeInitialELFHeader
32 // (2) writeDataInitializer*
33 // (3) writeFunctionCode*
34 // (4) writeNonUserSections
35 class ELFObjectWriter {
36 ELFObjectWriter(const ELFObjectWriter &) = delete;
37 ELFObjectWriter &operator=(const ELFObjectWriter &) = delete;
38
39 public:
40 ELFObjectWriter(GlobalContext &Ctx, ELFStreamer &Out);
41
42 // Write the initial ELF header. This is just to reserve space in the ELF
43 // file. Reserving space allows the other functions to write text
44 // and data directly to the file and get the right file offsets.
45 void writeInitialELFHeader();
46
47 // Copy final (non-resizeable) data of functions' text section to file.
48 // TODO(jvoung): This also needs the relocations to adjust the
49 // section-relative offsets and hook them up to the symbol table references.
50 void writeFunctionCode(const IceString &FuncName, bool IsInternal,
51 const llvm::StringRef Data);
52
53 // Add way to write/copy data symbols / set initializers.
Jim Stichnoth 2014/11/21 21:32:22 This comment line sounds more like part of the TOD
jvoung (off chromium) 2014/11/24 21:35:46 Done.
54 // TODO(jvoung): This needs to know which section.
55 // This also needs the relocations to hook them up to the symbol table
56 // references.
57 void writeDataInitializer(const IceString &VarName,
58 const llvm::StringRef Data);
59
60 // Do final layout and write out the rest of the object file, then
61 // patch up the initial ELF header with the final info.
62 void writeNonUserSections();
63
64 private:
65 GlobalContext &Ctx;
66 ELFStreamer &Str;
67 bool SectionNumbersAssigned;
68
69 // All created sections, separated into different pools.
70 typedef std::vector<ELFSection *> SectionList;
71 typedef std::vector<ELFTextSection *> TextSectionList;
72 typedef std::vector<ELFDataSection *> DataSectionList;
73 typedef std::vector<ELFRelocationSectionBase *> RelSectionList;
74 TextSectionList TextSections;
75 RelSectionList RelTextSections;
76 DataSectionList DataSections;
77 RelSectionList RelDataSections;
78 DataSectionList RoDataSections;
79 RelSectionList RelRoDataSections;
80
81 // Handles to special sections that need incremental bookkeeping.
82 ELFSection *NullSection;
83 ELFStringTableSection *ShStrTab;
84 ELFSymbolTableSection *SymTab;
85 ELFStringTableSection *StrTab;
86
87 template <typename T>
88 T *createSection(const IceString &Name, Elf64_Word sh_type,
Jim Stichnoth 2014/11/21 21:32:22 Capitalize arg names (hmm, on second thought I se
jvoung (off chromium) 2014/11/24 21:35:46 Hmm, I'll just go ahead and capitalize them. There
89 Elf64_Xword sh_flags, Elf64_Xword sh_addralign,
90 Elf64_Xword sh_entsize);
91
92 // Align the file position before writing out a section's data,
93 // and return the position of the file.
94 Elf64_Off alignFileOffset(Elf64_Xword Align);
95
96 // Assign an ordering / section numbers to each section.
97 // Fill in other information that is only known near the end
98 // (such as the size, if it wasn't already incrementally updated),
Jim Stichnoth 2014/11/21 21:32:22 end sentence with period
jvoung (off chromium) 2014/11/24 21:35:46 Done.
99 // Then put them all in one vector for conveniently writing out
100 // all of the section headers.
101 void assignSectionNumbersInfo(SectionList &AllSections);
102
103 // This function assigns .foo and .rel.foo consecutive section numbers.
104 // It also sets the relocation section's sh_info field to the related
105 // section's number.
106 template <typename UserSectionList>
107 void assignRelSectionNumInPairs(SizeT &CurSectionNumber,
108 UserSectionList &UserSections,
109 RelSectionList &RelSections,
110 SectionList &AllSections);
111
112 // Link the relocation sections to the symbol table.
113 void assignRelLinkNum(SizeT SymTabNumber, RelSectionList &RelSections);
114
115 // Write the ELF file header with the given information about sections.
116 template <bool IsELF64>
117 void writeELFHeaderInternal(uint64_t SectionHeaderOffset,
118 SizeT SectHeaderStrIndex, SizeT NumSections);
119 };
120
121 } // end of namespace Ice
122
123 #endif // SUBZERO_SRC_ICEELFOBJECTWRITER_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698