blob: 7c26b8e8cc5b5865a4756fa1a448ca4ecf0992df [file] [log] [blame]
//===- MipsPLT.h ----------------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef TARGET_MIPS_MIPSPLT_H_
#define TARGET_MIPS_MIPSPLT_H_
#include "mcld/Support/MemoryRegion.h"
#include "mcld/Target/PLT.h"
namespace mcld {
class MipsGOTPLT;
//===----------------------------------------------------------------------===//
// MipsPLT
//===----------------------------------------------------------------------===//
/** \class MipsPLT
* \brief Mips Procedure Linkage Table
*/
class MipsPLT : public PLT {
public:
explicit MipsPLT(LDSection& pSection);
// hasPLT1 - return if this PLT has any PLTA/PLTB entries
bool hasPLT1() const;
uint64_t emit(MemoryRegion& pRegion);
Fragment* consume();
void applyAllPLT(MipsGOTPLT& pGOTPLT);
public:
// PLT
void reserveEntry(size_t pNum = 1);
void finalizeSectionSize();
private:
// the last consumed entry.
SectionData::iterator m_Last;
};
} // namespace mcld
#endif // TARGET_MIPS_MIPSPLT_H_