Home
last modified time | relevance | path

Searched refs:PCRelVal (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFAArch64.h318 uint64_t PCRelVal = Value + RE.Addend - FinalAddress; in resolveRelocation() local
319 assert(isInt<28>(PCRelVal) && "Branch target is out of range."); in resolveRelocation()
321 (PCRelVal & 0x0FFFFFFC) >> 2); in resolveRelocation()
327 uint64_t PCRelVal = Value + RE.Addend - FinalAddress; in resolveRelocation() local
328 assert(isInt<21>(PCRelVal) && "Branch target is out of range."); in resolveRelocation()
330 (PCRelVal & 0x001FFFFC) << 3); in resolveRelocation()
336 uint64_t PCRelVal = Value + RE.Addend - FinalAddress; in resolveRelocation() local
337 assert(isInt<16>(PCRelVal) && "Branch target is out of range."); in resolveRelocation()
339 (PCRelVal & 0x0000FFFC) << 3); in resolveRelocation()
H A DRuntimeDyldMachOAArch64.h393 int64_t PCRelVal = Value - FinalAddress + RE.Addend; in resolveRelocation() local
394 encodeAddend(LocalAddress, /*Size=*/4, RelType, PCRelVal); in resolveRelocation()
402 int64_t PCRelVal = in resolveRelocation() local
404 encodeAddend(LocalAddress, /*Size=*/4, RelType, PCRelVal); in resolveRelocation()