LLVM 19.0.0git
RuntimeDyldELFMips.h
Go to the documentation of this file.
1//===-- RuntimeDyldELFMips.h ---- ELF/Mips specific code. -------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDELFMIPS_H
10#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDELFMIPS_H
11
12#include "../RuntimeDyldELF.h"
13
14#define DEBUG_TYPE "dyld"
15
16namespace llvm {
17
19public:
20
22
25 : RuntimeDyldELF(MM, Resolver) {}
26
27 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override;
28
29protected:
31 uint32_t Value, uint32_t Type, int32_t Addend);
33 uint64_t Value, uint32_t Type, int64_t Addend,
34 uint64_t SymOffset, SID SectionID);
36 uint64_t Value, uint32_t Type, int64_t Addend,
37 uint64_t SymOffset, SID SectionID);
38
39private:
40 /// A object file specific relocation resolver
41 /// \param RE The relocation to be resolved
42 /// \param Value Target symbol address to apply the relocation action
43 uint64_t evaluateRelocation(const RelocationEntry &RE, uint64_t Value,
44 uint64_t Addend);
45
46 /// A object file specific relocation resolver
47 /// \param RE The relocation to be resolved
48 /// \param Value Target symbol address to apply the relocation action
49 void applyRelocation(const RelocationEntry &RE, uint64_t Value);
50
51 int64_t evaluateMIPS32Relocation(const SectionEntry &Section, uint64_t Offset,
53 int64_t evaluateMIPS64Relocation(const SectionEntry &Section,
55 uint32_t Type, int64_t Addend,
56 uint64_t SymOffset, SID SectionID);
57
58 void applyMIPSRelocation(uint8_t *TargetPtr, int64_t CalculatedValue,
60
61};
62}
63
64#undef DEBUG_TYPE
65
66#endif
Symbol resolution interface.
Definition: JITSymbol.h:371
RelocationEntry - used to represent relocations internally in the dynamic linker.
Interface for looking up the initializer for a variable name, used by Init::resolveReferences.
Definition: Record.h:2213
void resolveMIPSN32Relocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend, uint64_t SymOffset, SID SectionID)
void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override
A object file specific relocation resolver.
void resolveMIPSN64Relocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend, uint64_t SymOffset, SID SectionID)
RuntimeDyldELFMips(RuntimeDyld::MemoryManager &MM, JITSymbolResolver &Resolver)
void resolveMIPSO32Relocation(const SectionEntry &Section, uint64_t Offset, uint32_t Value, uint32_t Type, int32_t Addend)
SectionEntry - represents a section emitted into memory by the dynamic linker.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
LLVM Value Representation.
Definition: Value.h:74
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:456