summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86ELFDynamic.cpp
blob: ee6b1f68175f9ed1cb540e379936dc66ac5a381a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//===- X86ELFDynamic.cpp --------------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include <mcld/LD/ELFFileFormat.h>
#include "X86ELFDynamic.h"

using namespace mcld;

X86ELFDynamic::X86ELFDynamic(const GNULDBackend& pParent)
  : ELFDynamic(pParent), m_HasGOTPLT(false) {
}

X86ELFDynamic::~X86ELFDynamic() {
}

void X86ELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) {
  // reservePLTGOT
  if (m_HasGOTPLT ? pFormat.hasGOTPLT() : pFormat.hasGOT())
    reserveOne(llvm::ELF::DT_PLTGOT);
}

void X86ELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) {
  // applyPLTGOT
  if (m_HasGOTPLT) {
      if (pFormat.hasGOTPLT())
	applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr());
  }
  else if (pFormat.hasGOT())
    applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr());
}