Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1034 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC32Relocation()
1037 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC32Relocation()
1040 writeInt16BE(LocalAddress, applyPPCha(Value + Addend)); in resolvePPC32Relocation()
1054 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation()
1057 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation()
1060 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation()
1063 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation()
1067 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC64Relocation()
1071 writeInt16BE(LocalAddress, applyPPCha(Value + Addend)); in resolvePPC64Relocation()
1074 writeInt16BE(LocalAddress, applyPPChigher(Value + Addend)); in resolvePPC64Relocation()
[all …]
H A DRuntimeDyld.cpp1075 writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8 in createStubFunction()
1076 writeInt16BE(Addr+2, 0x0000); in createStubFunction()
1077 writeInt16BE(Addr+4, 0x0004); in createStubFunction()
1078 writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1 in createStubFunction()
H A DRuntimeDyldImpl.h315 void writeInt16BE(uint8_t *Addr, uint16_t Value) { in writeInt16BE() function