Home
last modified time | relevance | path

Searched refs:TargetPtr (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.cpp213 void RuntimeDyldELFMips::applyMIPSRelocation(uint8_t *TargetPtr, int64_t Value, in applyMIPSRelocation() argument
215 uint32_t Insn = readBytesUnaligned(TargetPtr, 4); in applyMIPSRelocation()
234 writeBytesUnaligned(Insn, TargetPtr, 4); in applyMIPSRelocation()
238 writeBytesUnaligned(Insn, TargetPtr, 4); in applyMIPSRelocation()
242 writeBytesUnaligned(Insn, TargetPtr, 4); in applyMIPSRelocation()
246 writeBytesUnaligned(Insn, TargetPtr, 4); in applyMIPSRelocation()
251 writeBytesUnaligned(Insn, TargetPtr, 4); in applyMIPSRelocation()
256 writeBytesUnaligned(Value & 0xffffffff, TargetPtr, 4); in applyMIPSRelocation()
260 writeBytesUnaligned(Value, TargetPtr, 8); in applyMIPSRelocation()
307 uint8_t *TargetPtr = Section.getAddressWithOffset(Offset); in resolveMIPSO32Relocation() local
[all …]
H A DRuntimeDyldELFMips.h59 void applyMIPSRelocation(uint8_t *TargetPtr, int64_t CalculatedValue,
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp382 uint32_t *TargetPtr = in resolveAArch64Relocation() local
412 write(isBE, TargetPtr, Value + Addend); in resolveAArch64Relocation()
435 *TargetPtr &= 0xff00001fU; in resolveAArch64Relocation()
445 *TargetPtr &= 0xfff8001fU; in resolveAArch64Relocation()
529 *TargetPtr &= 0xff00001fU; in resolveAArch64Relocation()
542 *TargetPtr &= 0x9f00001fU; in resolveAArch64Relocation()
546 *TargetPtr |= (Result & 0x3) << 29; in resolveAArch64Relocation()
556 uint32_t *TargetPtr = in resolveARMRelocation() local
576 support::ulittle32_t::ref{TargetPtr} = in resolveARMRelocation()
592 support::ulittle32_t::ref{TargetPtr} = in resolveARMRelocation()
[all …]
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Dacmacros.h479 #define ACPI_SET_BITS(TargetPtr, Position, Mask, Value) \ argument
480 (*(TargetPtr) |= (((Value) & (Mask)) << (Position)))