2012-01-22 07:05:02 +00:00
|
|
|
//===-- RuntimeDyldMachO.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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// MachO support for MC-JIT runtime dynamic linker.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_RUNTIME_DYLD_MACHO_H
|
|
|
|
#define LLVM_RUNTIME_DYLD_MACHO_H
|
|
|
|
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "RuntimeDyldImpl.h"
|
2012-01-22 07:05:02 +00:00
|
|
|
#include "llvm/ADT/IndexedMap.h"
|
|
|
|
#include "llvm/Object/MachOObject.h"
|
|
|
|
#include "llvm/Support/Format.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace llvm::object;
|
|
|
|
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class RuntimeDyldMachO : public RuntimeDyldImpl {
|
2012-03-30 16:45:19 +00:00
|
|
|
protected:
|
2012-03-26 20:45:52 +00:00
|
|
|
bool resolveI386Relocation(uint8_t *LocalAddress,
|
|
|
|
uint64_t FinalAddress,
|
|
|
|
uint64_t Value,
|
|
|
|
bool isPCRel,
|
|
|
|
unsigned Type,
|
|
|
|
unsigned Size,
|
|
|
|
int64_t Addend);
|
2012-03-07 23:05:25 +00:00
|
|
|
bool resolveX86_64Relocation(uint8_t *LocalAddress,
|
|
|
|
uint64_t FinalAddress,
|
|
|
|
uint64_t Value,
|
|
|
|
bool isPCRel,
|
|
|
|
unsigned Type,
|
|
|
|
unsigned Size,
|
|
|
|
int64_t Addend);
|
|
|
|
bool resolveARMRelocation(uint8_t *LocalAddress,
|
|
|
|
uint64_t FinalAddress,
|
|
|
|
uint64_t Value,
|
|
|
|
bool isPCRel,
|
|
|
|
unsigned Type,
|
|
|
|
unsigned Size,
|
|
|
|
int64_t Addend);
|
2012-01-22 07:05:02 +00:00
|
|
|
|
2012-03-30 16:45:19 +00:00
|
|
|
virtual void processRelocationRef(const ObjRelocationInfo &Rel,
|
2012-04-16 22:12:58 +00:00
|
|
|
ObjectImage &Obj,
|
2012-03-30 16:45:19 +00:00
|
|
|
ObjSectionToIDMap &ObjSectionToID,
|
2012-05-01 06:58:59 +00:00
|
|
|
const SymbolTableMap &Symbols,
|
|
|
|
StubMap &Stubs);
|
2012-01-22 07:05:02 +00:00
|
|
|
|
|
|
|
public:
|
2012-11-02 19:45:23 +00:00
|
|
|
virtual void resolveRelocation(const SectionEntry &Section,
|
|
|
|
uint64_t Offset,
|
2012-03-30 16:45:19 +00:00
|
|
|
uint64_t Value,
|
|
|
|
uint32_t Type,
|
|
|
|
int64_t Addend);
|
2012-04-16 22:12:58 +00:00
|
|
|
|
2012-01-22 07:05:02 +00:00
|
|
|
RuntimeDyldMachO(RTDyldMemoryManager *mm) : RuntimeDyldImpl(mm) {}
|
|
|
|
|
2012-10-02 21:18:39 +00:00
|
|
|
bool isCompatibleFormat(const ObjectBuffer *Buffer) const;
|
2012-01-22 07:05:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|