HomeSort by: relevance | last modified time | path
    Searched defs:LocalAddress (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOX86_64.h 89 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset);
109 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
117 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size);
168 uint8_t *LocalAddress = Sections[SectionID].getAddressWithOffset(Offset);
171 SignExtend64(readBytesUnaligned(LocalAddress, NumBytes), NumBytes * 8);
RuntimeDyldMachOAArch64.h 36 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset);
71 assert((((uintptr_t)LocalAddress & 0x3) == 0) &&
83 Addend = *reinterpret_cast<support::ulittle32_t *>(LocalAddress);
85 Addend = *reinterpret_cast<support::ulittle64_t *>(LocalAddress);
89 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
104 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
117 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
126 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
155 void encodeAddend(uint8_t *LocalAddress, unsigned NumBytes,
171 assert((((uintptr_t)LocalAddress & 0x3) == 0) &
    [all...]
RuntimeDyldMachOI386.h 102 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset);
111 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
120 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size);
159 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset);
161 uint64_t Addend = readBytesUnaligned(LocalAddress, NumBytes);
RuntimeDyldMachOARM.h 65 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset);
71 uint32_t Temp = readBytesUnaligned(LocalAddress, 4);
82 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2);
88 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2);
206 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset);
221 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2);
226 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2);
231 writeBytesUnaligned(HighInsn, LocalAddress, 2);
232 writeBytesUnaligned(LowInsn, LocalAddress + 2, 2);
239 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBlocks.h 244 Address LocalAddress;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 69 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset);
71 int64_t Addend = readBytesUnaligned(LocalAddress, NumBytes);
151 uint8_t *LocalAddress = Section.getAddress() + RE.Offset;
155 << " LocalAddress: " << format("%p", LocalAddress)
RuntimeDyldELF.cpp 388 LLVM_DEBUG(dbgs() << "resolveAArch64Relocation, LocalAddress: 0x"
561 LLVM_DEBUG(dbgs() << "resolveARMRelocation, LocalAddress: "
779 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset);
785 writeInt16BE(LocalAddress, applyPPClo(Value + Addend));
788 writeInt16BE(LocalAddress, applyPPChi(Value + Addend));
791 writeInt16BE(LocalAddress, applyPPCha(Value + Addend));
799 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset);
805 writeInt16BE(LocalAddress, applyPPClo(Value + Addend));
808 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3);
811 writeInt16BE(LocalAddress, applyPPClo(Value + Addend))
    [all...]

Completed in 62 milliseconds