blob: 85898948e56b7ad923ad2d845044035804941353 [file] [log] [blame]
//===- Relocator.h --------------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MCLD_RELOCATOR_H
#define MCLD_RELOCATOR_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include <mcld/Fragment/Relocation.h>
namespace mcld
{
class FragmentLinker;
class TargetLDBackend;
/** \class Relocator
* \brief Relocator provides the interface of performing relocations
*/
class Relocator
{
public:
typedef Relocation::Type Type;
typedef Relocation::Address Address;
typedef Relocation::DWord DWord;
typedef Relocation::SWord SWord;
typedef Relocation::Size Size;
public:
enum Result {
OK,
BadReloc,
Overflow,
Unsupport,
Unknown
};
public:
virtual ~Relocator() = 0;
/// apply - general apply function
virtual Result applyRelocation(Relocation& pRelocation) = 0;
// ------ observers -----//
virtual TargetLDBackend& getTarget() = 0;
virtual const TargetLDBackend& getTarget() const = 0;
/// getName - get the name of a relocation
virtual const char* getName(Type pType) const = 0;
/// getSize - get the size of a relocation in bit
virtual Size getSize(Type pType) const = 0;
};
} // namespace of mcld
#endif