You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
831 B
29 lines
831 B
4 months ago
|
//===- AArch64ELFDynamic.h ------------------------------------------------===//
|
||
|
//
|
||
|
// The MCLinker Project
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
#ifndef TARGET_AARCH64_AARCH64ELFDYNAMIC_H_
|
||
|
#define TARGET_AARCH64_AARCH64ELFDYNAMIC_H_
|
||
|
|
||
|
#include "mcld/Target/ELFDynamic.h"
|
||
|
|
||
|
namespace mcld {
|
||
|
|
||
|
class AArch64ELFDynamic : public ELFDynamic {
|
||
|
public:
|
||
|
AArch64ELFDynamic(const GNULDBackend& pParent, const LinkerConfig& pConfig);
|
||
|
~AArch64ELFDynamic();
|
||
|
|
||
|
private:
|
||
|
void reserveTargetEntries(const ELFFileFormat& pFormat);
|
||
|
void applyTargetEntries(const ELFFileFormat& pFormat);
|
||
|
};
|
||
|
|
||
|
} // namespace mcld
|
||
|
|
||
|
#endif // TARGET_AARCH64_AARCH64ELFDYNAMIC_H_
|