29 lines
795 B
C
29 lines
795 B
C
|
|
//===- ARMELFDynamic.h ----------------------------------------------------===//
|
||
|
|
//
|
||
|
|
// The MCLinker Project
|
||
|
|
//
|
||
|
|
// This file is distributed under the University of Illinois Open Source
|
||
|
|
// License. See LICENSE.TXT for details.
|
||
|
|
//
|
||
|
|
//===----------------------------------------------------------------------===//
|
||
|
|
#ifndef TARGET_ARM_ARMELFDYNAMIC_H_
|
||
|
|
#define TARGET_ARM_ARMELFDYNAMIC_H_
|
||
|
|
|
||
|
|
#include "mcld/Target/ELFDynamic.h"
|
||
|
|
|
||
|
|
namespace mcld {
|
||
|
|
|
||
|
|
class ARMELFDynamic : public ELFDynamic {
|
||
|
|
public:
|
||
|
|
ARMELFDynamic(const GNULDBackend& pParent, const LinkerConfig& pConfig);
|
||
|
|
~ARMELFDynamic();
|
||
|
|
|
||
|
|
private:
|
||
|
|
void reserveTargetEntries(const ELFFileFormat& pFormat);
|
||
|
|
void applyTargetEntries(const ELFFileFormat& pFormat);
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace mcld
|
||
|
|
|
||
|
|
#endif // TARGET_ARM_ARMELFDYNAMIC_H_
|