Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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.h58 void applyMIPSRelocation(uint8_t *TargetPtr, int64_t CalculatedValue,
/llvm-project-15.0.7/openmp/libomptarget/include/
H A Domptargetplugin.h91 int32_t __tgt_rtl_data_submit(int32_t ID, void *TargetPtr, void *HostPtr,
94 int32_t __tgt_rtl_data_submit_async(int32_t ID, void *TargetPtr, void *HostPtr,
99 int32_t __tgt_rtl_data_retrieve(int32_t ID, void *HostPtr, void *TargetPtr,
104 void *TargetPtr, int64_t Size,
121 int32_t __tgt_rtl_data_delete(int32_t ID, void *TargetPtr);
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp408 uint32_t *TargetPtr = in resolveAArch64Relocation() local
440 write(isBE, TargetPtr, Value + Addend); in resolveAArch64Relocation()
470 *TargetPtr &= 0xff00001fU; in resolveAArch64Relocation()
480 *TargetPtr &= 0xfff8001fU; in resolveAArch64Relocation()
564 *TargetPtr &= 0xff00001fU; in resolveAArch64Relocation()
577 *TargetPtr &= 0x9f00001fU; in resolveAArch64Relocation()
581 *TargetPtr |= (Result & 0x3) << 29; in resolveAArch64Relocation()
591 uint32_t *TargetPtr = in resolveARMRelocation() local
611 support::ulittle32_t::ref{TargetPtr} = in resolveARMRelocation()
627 support::ulittle32_t::ref{TargetPtr} = in resolveARMRelocation()
[all …]
/llvm-project-15.0.7/openmp/libomptarget/plugins/ve/src/
H A Drtl.cpp369 int32_t __tgt_rtl_data_submit(int32_t ID, void *TargetPtr, void *HostPtr, in __tgt_rtl_data_submit() argument
371 int ret = veo_write_mem(DeviceInfo.ProcHandles[ID], (uint64_t)TargetPtr, in __tgt_rtl_data_submit()
382 int32_t __tgt_rtl_data_retrieve(int32_t ID, void *HostPtr, void *TargetPtr, in __tgt_rtl_data_retrieve() argument
385 (uint64_t)TargetPtr, Size); in __tgt_rtl_data_retrieve()
395 int32_t __tgt_rtl_data_delete(int32_t ID, void *TargetPtr) { in __tgt_rtl_data_delete() argument
396 int ret = veo_free_mem(DeviceInfo.ProcHandles[ID], (uint64_t)TargetPtr); in __tgt_rtl_data_delete()
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dmbp.ll20 %TargetPtr = load %Target*, %Target** %ha, align 4
21 %cmp1 = icmp eq %Target* %TargetPtr, null
25 %TargetPhi = phi %Target* [ %NextPtr, %for.inc ], [ %TargetPtr, %entry ]