Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp710 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC32Relocation()
713 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC32Relocation()
716 writeInt16BE(LocalAddress, applyPPCha(Value + Addend)); in resolvePPC32Relocation()
730 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation()
736 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation()
770 writeInt16BE(LocalAddress, applyPPClo(Delta)); in resolvePPC64Relocation()
775 writeInt16BE(LocalAddress, applyPPChi(Delta)); in resolvePPC64Relocation()
780 writeInt16BE(LocalAddress, applyPPCha(Delta)); in resolvePPC64Relocation()
827 writeInt16BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
840 writeInt16BE(LocalAddress, Delta); in resolveSystemZRelocation()
[all …]
H A DRuntimeDyld.cpp957 writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8 in createStubFunction()
958 writeInt16BE(Addr+2, 0x0000); in createStubFunction()
959 writeInt16BE(Addr+4, 0x0004); in createStubFunction()
960 writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1 in createStubFunction()
H A DRuntimeDyldImpl.h330 void writeInt16BE(uint8_t *Addr, uint16_t Value) { in writeInt16BE() function