C++程序  |  71行  |  1.54 KB

//===- ARMToARMStub.h -----------------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef TARGET_ARM_ARMTOARMSTUB_H_
#define TARGET_ARM_ARMTOARMSTUB_H_

#include "mcld/Fragment/Stub.h"
#include <llvm/Support/DataTypes.h>
#include <string>
#include <vector>

namespace mcld {

class Relocation;
class ResolveInfo;

/** \class ARMToARMStub
 *  \brief ARM stub for long call from ARM source to ARM target
 *
 */
class ARMToARMStub : public Stub {
 public:
  explicit ARMToARMStub(bool pIsOutputPIC);

  ~ARMToARMStub();

  // isMyDuty
  bool isMyDuty(const class Relocation& pReloc,
                uint64_t pSource,
                uint64_t pTargetSymValue) const;

  // observers
  const std::string& name() const;

  const uint8_t* getContent() const;

  size_t size() const;

  size_t alignment() const;

 private:
  ARMToARMStub(const ARMToARMStub&);

  ARMToARMStub& operator=(const ARMToARMStub&);

  /// for doClone
  ARMToARMStub(const uint32_t* pData,
               size_t pSize,
               const_fixup_iterator pBegin,
               const_fixup_iterator pEnd);

  /// doClone
  Stub* doClone();

 private:
  static const uint32_t PIC_TEMPLATE[];
  static const uint32_t TEMPLATE[];
  const uint32_t* m_pData;
  std::string m_Name;
  size_t m_Size;
};

}  // namespace mcld

#endif  // TARGET_ARM_ARMTOARMSTUB_H_