Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Dloongarch.h233 int64_t PageDelta = TargetPage - PCPage; in applyFixup() local
234 if (!isInt<32>(PageDelta)) in applyFixup()
238 uint32_t Imm31_12 = extractBits(PageDelta, /*Hi=*/31, /*Lo=*/12) << 5; in applyFixup()
H A Daarch64.h578 int64_t PageDelta = TargetPage - PCPage; in applyFixup() local
579 if (!isInt<33>(PageDelta)) in applyFixup()
585 uint32_t ImmLo = (static_cast<uint64_t>(PageDelta) >> 12) & 0x3; in applyFixup()
586 uint32_t ImmHi = (static_cast<uint64_t>(PageDelta) >> 14) & 0x7ffff; in applyFixup()