HexagonGOT.h revision 87f34658dec9097d987d254a990ea7f311bfc95f
1//===- HexagonGOT.h -------------------------------------------------------===//
2//
3//                     The MCLinker Project
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9#ifndef MCLD_TARGET_HEXAGON_GOT_H
10#define MCLD_TARGET_HEXAGON_GOT_H
11#ifdef ENABLE_UNITTEST
12#include <gtest.h>
13#endif
14
15#include <mcld/Target/GOT.h>
16
17namespace mcld {
18
19class LDSection;
20class SectionData;
21
22/** \class HexagonGOTEntry
23 *  \brief GOT Entry with size of 4 bytes
24 */
25class HexagonGOTEntry : public GOT::Entry<4>
26{
27public:
28  HexagonGOTEntry(uint64_t pContent, SectionData* pParent)
29   : GOT::Entry<4>(pContent, pParent)
30  {}
31};
32
33/** \class HexagonGOT
34 *  \brief Hexagon Global Offset Table.
35 */
36
37class HexagonGOT : public GOT
38{
39public:
40  HexagonGOT(LDSection& pSection);
41
42  ~HexagonGOT();
43
44  HexagonGOTEntry* create();
45
46private:
47  HexagonGOTEntry* m_pLast; ///< the last consumed entry
48};
49
50} // namespace of mcld
51
52#endif
53
54