Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOARM.h72 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in decodeAddend()
83 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in decodeAddend()
89 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in decodeAddend()
222 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in resolveRelocation()
227 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in resolveRelocation()
255 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in resolveRelocation()
273 uint32_t Insn = readBytesUnaligned(LocalAddress, 4); in resolveRelocation()
363 int64_t Immediate = readBytesUnaligned(LocalAddress, 4); // Copy the whole instruction out. in processHALFSECTDIFFRelocation()
H A DRuntimeDyldCOFFX86_64.h230 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
241 Addend = readBytesUnaligned(Displacement, 8); in processRelocationRef()
H A DRuntimeDyldELFMips.cpp156 uint64_t GOTEntry = readBytesUnaligned(LocalGOTAddr, getGOTEntrySize()); in evaluateMIPS64Relocation()
216 uint32_t Insn = readBytesUnaligned(TargetPtr, 4); in applyMIPSRelocation()
H A DRuntimeDyldCOFFI386.h72 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
H A DRuntimeDyldMachOI386.h159 uint64_t Addend = readBytesUnaligned(LocalAddress, NumBytes); in processSECTDIFFRelocation()
H A DRuntimeDyldMachOX86_64.h172 SignExtend64(readBytesUnaligned(LocalAddress, NumBytes), NumBytes * 8); in processSubtractRelocation()
H A DRuntimeDyldCOFFThumb.h90 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
H A DRuntimeDyldMachOAArch64.h501 SignExtend64(readBytesUnaligned(LocalAddress, NumBytes), NumBytes * 8); in processSubtractRelocation()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp51 return static_cast<int64_t>(readBytesUnaligned(Src, NumBytes)); in memcpyAddend()
72 int64_t Addend = readBytesUnaligned(LocalAddress, NumBytes); in processScatteredVANILLA()
280 uint32_t Length = readBytesUnaligned(P, 4); in processFDE()
283 uint32_t Offset = readBytesUnaligned(P, 4); in processFDE()
288 TargetPtrT FDELocation = readBytesUnaligned(P, sizeof(TargetPtrT)); in processFDE()
300 TargetPtrT LSDA = readBytesUnaligned(P, sizeof(TargetPtrT)); in processFDE()
H A DRuntimeDyldImpl.h366 uint64_t readBytesUnaligned(uint8_t *Src, unsigned Size) const;
H A DRuntimeDyldELF.cpp794 uint32_t Inst = readBytesUnaligned(LocalAddress, 4); in resolvePPC64Relocation()
1261 uint32_t Opcode = readBytesUnaligned(Placeholder, 4); in processRelocationRef()
H A DRuntimeDyldChecker.cpp791 return getRTDyld().readBytesUnaligned(Src, Size); in readMemoryAtAddr()
H A DRuntimeDyld.cpp621 uint64_t RuntimeDyldImpl::readBytesUnaligned(uint8_t *Src, in readBytesUnaligned() function in llvm::RuntimeDyldImpl