[PATCH] [lld][ELF][Writer] Add hash table.
Michael Spencer
bigcheesegs at gmail.com
Fri Feb 22 20:02:46 PST 2013
Hi shankarke,
http://llvm-reviews.chandlerc.com/D455
Files:
lib/ReaderWriter/ELF/SectionChunks.h
lib/ReaderWriter/ELF/Writer.cpp
test/elf/dynamic-hash.test
Index: lib/ReaderWriter/ELF/SectionChunks.h
===================================================================
--- lib/ReaderWriter/ELF/SectionChunks.h
+++ lib/ReaderWriter/ELF/SectionChunks.h
@@ -836,6 +836,42 @@
private:
StringRef _interp;
};
+
+template <class ELFT> class HashSection : public Section<ELFT> {
+ struct SymbolTableEntry {
+ StringRef _name;
+ uint32_t _index;
+ };
+
+public:
+ HashSection(const ELFTargetInfo &ti, StringRef name, int32_t order)
+ : Section<ELFT>(ti, name) {
+ this->setOrder(order);
+ this->_align2 = 4; // Alignment of Elf32_Word.
+ this->_type = SHT_HASH;
+ this->_flags = SHF_ALLOC;
+ // The size of nbucket and nchain.
+ this->_fsize = 8;
+ this->_msize = this->_fsize;
+ }
+
+ void addSymbol(StringRef name, uint32_t index) {
+ SymbolTableEntry ste;
+ ste._name = name;
+ ste._index = index;
+ _entries.push_back(ste);
+ }
+
+ virtual void write(ELFWriter *writer, llvm::FileOutputBuffer &buffer) {
+ uint8_t *chunkBuffer = buffer.getBufferStart();
+ uint8_t *dest = chunkBuffer + this->fileOffset();
+ // Just emit an empty hash table.
+ std::memset(dest, 0, this->_fsize);
+ }
+
+private:
+ std::vector<SymbolTableEntry> _entries;
+};
} // end namespace elf
} // end namespace lld
Index: lib/ReaderWriter/ELF/Writer.cpp
===================================================================
--- lib/ReaderWriter/ELF/Writer.cpp
+++ lib/ReaderWriter/ELF/Writer.cpp
@@ -72,6 +72,7 @@
LLD_UNIQUE_BUMP_PTR(DynamicSymbolTable<ELFT>) _dynamicSymbolTable;
LLD_UNIQUE_BUMP_PTR(StringTable<ELFT>) _dynamicStringTable;
LLD_UNIQUE_BUMP_PTR(InterpSection<ELFT>) _interpSection;
+ LLD_UNIQUE_BUMP_PTR(HashSection<ELFT>) _hashTable;
/// @}
CRuntimeFile<ELFT> _runtimeFile;
};
@@ -348,10 +349,13 @@
_interpSection.reset(new (_alloc) InterpSection<ELFT>(
_targetInfo, ".interp", DefaultLayout<ELFT>::ORDER_INTERP,
_targetInfo.getInterpreter()));
+ _hashTable.reset(new (_alloc) HashSection<ELFT>(
+ _targetInfo, ".hash", DefaultLayout<ELFT>::ORDER_HASH));
_layout->addSection(_dynamicTable.get());
_layout->addSection(_dynamicStringTable.get());
_layout->addSection(_dynamicSymbolTable.get());
_layout->addSection(_interpSection.get());
+ _layout->addSection(_hashTable.get());
_dynamicSymbolTable->setStringSection(_dynamicStringTable.get());
}
Index: test/elf/dynamic-hash.test
===================================================================
--- /dev/null
+++ test/elf/dynamic-hash.test
@@ -0,0 +1,7 @@
+RUN: lld -core -target x86_64-linux %p/Inputs/use-shared.x86-64 \
+RUN: %p/Inputs/shared.so-x86-64 -output=%t -entry=main \
+RUN: -output-type=dynamic
+RUN: llvm-readobj %t | FileCheck %s
+
+CHECK: Sections:
+CHECK: .hash {{[0-9a-f]+}} 8 4 required,rodata
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D455.1.patch
Type: text/x-patch
Size: 2854 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20130222/0f3d56ac/attachment.bin>
More information about the llvm-commits
mailing list