reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
  334     for (uint64_t Byte = 0, End = PltContents.size(); Byte + 7 < End;
  335          Byte += 4) {
  336       uint32_t Insn = support::endian::read32le(PltContents.data() + Byte);
  341          Insn = support::endian::read32le(PltContents.data() + Byte + Off);
  347       uint64_t Imm = (((PltSectionVA + Byte) >> 12) << 12) +
  350           support::endian::read32le(PltContents.data() + Byte + Off);
  354         Result.push_back(std::make_pair(PltSectionVA + Byte, Imm));
  355         Byte += 4;