Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOARM.h81 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in decodeAddend() local
82 if ((HighInsn & 0xf800) != 0xf000) in decodeAddend()
93 return SignExtend64<23>(((HighInsn & 0x7ff) << 12) | in decodeAddend()
220 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in resolveRelocation() local
221 assert((HighInsn & 0xf800) == 0xf000 && in resolveRelocation()
223 HighInsn = (HighInsn & 0xf800) | ((Value >> 12) & 0x7ff); in resolveRelocation()
230 writeBytesUnaligned(HighInsn, LocalAddress, 2); in resolveRelocation()