2012-01-22 07:05:02 +00:00
|
|
|
//===-- RuntimeDyldELF.h - Run-time dynamic linker for MC-JIT ---*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// ELF support for MC-JIT runtime dynamic linker.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_RUNTIME_DYLD_ELF_H
|
|
|
|
#define LLVM_RUNTIME_DYLD_ELF_H
|
|
|
|
|
|
|
|
#include "RuntimeDyldImpl.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace llvm {
|
2012-10-29 10:47:04 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
// Helper for extensive error checking in debug builds.
|
|
|
|
error_code Check(error_code Err) {
|
|
|
|
if (Err) {
|
|
|
|
report_fatal_error(Err.message());
|
|
|
|
}
|
|
|
|
return Err;
|
|
|
|
}
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2012-01-22 07:05:02 +00:00
|
|
|
class RuntimeDyldELF : public RuntimeDyldImpl {
|
2013-04-29 17:24:34 +00:00
|
|
|
void resolveRelocation(const SectionEntry &Section,
|
|
|
|
uint64_t Offset,
|
|
|
|
uint64_t Value,
|
|
|
|
uint32_t Type,
|
|
|
|
int64_t Addend);
|
|
|
|
|
2012-11-02 19:45:23 +00:00
|
|
|
void resolveX86_64Relocation(const SectionEntry &Section,
|
|
|
|
uint64_t Offset,
|
2012-03-30 16:45:19 +00:00
|
|
|
uint64_t Value,
|
|
|
|
uint32_t Type,
|
|
|
|
int64_t Addend);
|
|
|
|
|
2012-11-02 19:45:23 +00:00
|
|
|
void resolveX86Relocation(const SectionEntry &Section,
|
|
|
|
uint64_t Offset,
|
2012-03-30 16:45:19 +00:00
|
|
|
uint32_t Value,
|
|
|
|
uint32_t Type,
|
|
|
|
int32_t Addend);
|
|
|
|
|
2013-05-04 20:13:59 +00:00
|
|
|
void resolveAArch64Relocation(const SectionEntry &Section,
|
|
|
|
uint64_t Offset,
|
|
|
|
uint64_t Value,
|
|
|
|
uint32_t Type,
|
|
|
|
int64_t Addend);
|
|
|
|
|
2012-11-02 19:45:23 +00:00
|
|
|
void resolveARMRelocation(const SectionEntry &Section,
|
|
|
|
uint64_t Offset,
|
2012-03-30 16:45:19 +00:00
|
|
|
uint32_t Value,
|
2012-08-17 21:28:04 +00:00
|
|
|
uint32_t Type,
|
|
|
|
int32_t Addend);
|
|
|
|
|
2012-11-02 19:45:23 +00:00
|
|
|
void resolveMIPSRelocation(const SectionEntry &Section,
|
|
|
|
uint64_t Offset,
|
2012-08-20 17:53:24 +00:00
|
|
|
uint32_t Value,
|
|
|
|
uint32_t Type,
|
|
|
|
int32_t Addend);
|
2012-03-30 16:45:19 +00:00
|
|
|
|
2012-11-02 19:45:23 +00:00
|
|
|
void resolvePPC64Relocation(const SectionEntry &Section,
|
|
|
|
uint64_t Offset,
|
2012-10-25 13:13:48 +00:00
|
|
|
uint64_t Value,
|
|
|
|
uint32_t Type,
|
|
|
|
int64_t Addend);
|
|
|
|
|
2013-05-03 14:15:35 +00:00
|
|
|
void resolveSystemZRelocation(const SectionEntry &Section,
|
|
|
|
uint64_t Offset,
|
|
|
|
uint64_t Value,
|
|
|
|
uint32_t Type,
|
|
|
|
int64_t Addend);
|
2012-01-22 07:05:02 +00:00
|
|
|
|
2012-10-25 13:13:48 +00:00
|
|
|
uint64_t findPPC64TOC() const;
|
|
|
|
void findOPDEntrySection(ObjectImage &Obj,
|
|
|
|
ObjSectionToIDMap &LocalSections,
|
|
|
|
RelocationValueRef &Rel);
|
|
|
|
|
2012-01-22 07:05:02 +00:00
|
|
|
public:
|
2013-04-29 22:06:33 +00:00
|
|
|
RuntimeDyldELF(RTDyldMemoryManager *mm) : RuntimeDyldImpl(mm) {}
|
2012-04-16 22:12:58 +00:00
|
|
|
|
2013-04-29 22:06:33 +00:00
|
|
|
virtual void resolveRelocation(const RelocationEntry &RE, uint64_t Value);
|
|
|
|
virtual void processRelocationRef(unsigned SectionID,
|
|
|
|
RelocationRef RelI,
|
|
|
|
ObjectImage &Obj,
|
|
|
|
ObjSectionToIDMap &ObjSectionToID,
|
|
|
|
const SymbolTableMap &Symbols,
|
|
|
|
StubMap &Stubs);
|
|
|
|
virtual bool isCompatibleFormat(const ObjectBuffer *Buffer) const;
|
|
|
|
virtual ObjectImage *createObjectImage(ObjectBuffer *InputBuffer);
|
2012-04-16 22:12:58 +00:00
|
|
|
virtual ~RuntimeDyldELF();
|
2012-01-22 07:05:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
2012-03-30 16:45:19 +00:00
|
|
|
#endif
|