Home | History | Annotate | Download | only in Hexagon
      1 //===- HexagonELFDynamic.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 TARGET_HEXAGON_HEXAGONELFDYNAMIC_H
     10 #define TARGET_HEXAGON_HEXAGONELFDYNAMIC_H
     11 
     12 #include <mcld/Target/ELFDynamic.h>
     13 
     14 namespace mcld {
     15 
     16 class HexagonELFDynamic : public ELFDynamic
     17 {
     18 public:
     19   HexagonELFDynamic(const GNULDBackend& pParent, const LinkerConfig& pConfig);
     20   ~HexagonELFDynamic();
     21 
     22 private:
     23   void reserveTargetEntries(const ELFFileFormat& pFormat);
     24   void applyTargetEntries(const ELFFileFormat& pFormat);
     25 };
     26 
     27 } // namespace of mcld
     28 
     29 #endif
     30