Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/interception/
H A Dinterception_win.cpp429 static size_t GetInstructionSize(uptr address, size_t* rel_offset = nullptr) { in GetInstructionSize() argument
545 if (rel_offset) in GetInstructionSize()
546 *rel_offset = 2; in GetInstructionSize()
593 if (rel_offset) in GetInstructionSize()
594 *rel_offset = 3; in GetInstructionSize()
679 size_t rel_offset = 0; in CopyInstructions() local
680 size_t instruction_size = GetInstructionSize(from + cursor, &rel_offset); in CopyInstructions()
683 if (rel_offset) { in CopyInstructions()
685 uptr relocated_offset = *(u32*)(to + cursor + rel_offset) - delta; in CopyInstructions()
690 *(u32*)(to + cursor + rel_offset) = relocated_offset; in CopyInstructions()
/llvm-project-15.0.7/llvm/test/CodeGen/MIR/AArch64/
H A Dcfi.mir30 ; CHECK: CFI_INSTRUCTION rel_offset $w30, -8
31 frame-setup CFI_INSTRUCTION rel_offset $w30, -8
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dcfi-inserter-callee-save-register-2.mir50 CFI_INSTRUCTION rel_offset $r14, -24
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp874 uint64_t rel_offset; in GetImageInfoAddress() local
875 rel_offset = target->ReadUnsignedIntegerFromMemory( in GetImageInfoAddress()
877 if (error.Success() && rel_offset != UINT64_MAX) { in GetImageInfoAddress()
880 dyn_base + (offset - GetAddressByteSize()) + rel_offset; in GetImageInfoAddress()