Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOARM.h87 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in decodeAddend() local
88 if ((LowInsn & 0xf800) != 0xf800) in decodeAddend()
94 ((LowInsn & 0x7ff) << 1)); in decodeAddend()
225 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in resolveRelocation() local
226 assert((LowInsn & 0xf800) == 0xf800 && in resolveRelocation()
228 LowInsn = (LowInsn & 0xf800) | ((Value >> 1) & 0x7ff); in resolveRelocation()
231 writeBytesUnaligned(LowInsn, LocalAddress + 2, 2); in resolveRelocation()