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