| //===- X86GOT.h -----------------------------------------------------------===// |
| // |
| // The MCLinker Project |
| // |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // |
| //===----------------------------------------------------------------------===// |
| #ifndef MCLD_TARGET_X86_GOT_H |
| #define MCLD_TARGET_X86_GOT_H |
| #ifdef ENABLE_UNITTEST |
| #include <gtest.h> |
| #endif |
| |
| #include <mcld/Target/GOT.h> |
| |
| namespace mcld { |
| |
| class LDSection; |
| class SectionData; |
| |
| /** \class X86GOTEntry |
| * \brief GOT Entry with size of 4 bytes |
| */ |
| class X86GOTEntry : public GOT::Entry<4> |
| { |
| public: |
| X86GOTEntry(uint64_t pContent, SectionData* pParent) |
| : GOT::Entry<4>(pContent, pParent) |
| {} |
| }; |
| |
| /** \class X86GOT |
| * \brief X86 Global Offset Table. |
| */ |
| |
| class X86GOT : public GOT |
| { |
| public: |
| X86GOT(LDSection& pSection); |
| |
| ~X86GOT(); |
| |
| void reserve(size_t pNum = 1); |
| |
| X86GOTEntry* consume(); |
| |
| private: |
| X86GOTEntry* m_pLast; ///< the last consumed entry |
| }; |
| |
| } // namespace of mcld |
| |
| #endif |
| |