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

References

tools/lld/ELF/Arch/Mips.cpp
  210   uint32_t v = read32(loc);
  218   uint32_t instr = read32(loc);
  377     return SignExtend64<32>(read32(buf));
  382     return SignExtend64<28>(read32(buf) << 2);
  386     return SignExtend64<16>(read32(buf)) << 16;
  394     return SignExtend64<16>(read32(buf));
  408     return SignExtend64<18>(read32(buf) << 2);
  410     return SignExtend64<21>(read32(buf) << 2);
  412     return SignExtend64<23>(read32(buf) << 2);
  414     return SignExtend64<28>(read32(buf) << 2);
  416     return SignExtend64<32>(read32(buf));
  492     uint32_t inst = read32(loc) >> 26;
  641       switch (read32(loc)) {
tools/lld/ELF/Arch/PPC.cpp
   58   return read32(config->isLE ? loc : loc - 2);
  319     write32(loc, (read32(loc) & ~mask) | (val & mask));
  328     write32(loc, (read32(loc) & ~mask) | (val & mask));
  424     uint32_t insn = read32(loc);
  428     uint32_t dFormOp = getPPCDFormOp((read32(loc) & 0x000007fe) >> 1);
tools/lld/ELF/Arch/PPC64.cpp
  288   return read32(config->isLE ? loc : loc - 2);
  514     uint32_t regNo = read32(loc - offset) & 0x03E00000; // bits 6-10
  520     uint32_t primaryOp = getPrimaryOpCode(read32(loc));
  523     uint32_t secondaryOp = (read32(loc) & 0x000007FE) >> 1; // bits 21-30
  527     write32(loc, ((dFormOp << 26) | (read32(loc) & 0x03FFFFFF)));
  882     write32(loc, (read32(loc) & ~mask) | (val & mask));
  889     write32(loc, (read32(loc) & ~mask) | (val & mask));
 1032   if (read32(loc) != 0xe80d8fc0)
 1039   int32_t firstInstr = read32(loc + 4);
 1050   uint32_t secondInstr = read32(loc + 8);
tools/lld/ELF/EhFrame.cpp
   72   uint64_t v = read32(d.data());
tools/lld/ELF/InputSection.cpp
  969       if (read32(bufLoc) == 0x60000000) // nop
  974         if (bufLoc + 8 > bufEnd || read32(bufLoc + 4) != 0x60000000) {
tools/lld/ELF/OutputSections.cpp
  313   bool nonZeroFiller = read32(filler.data()) != 0;
tools/lld/ELF/SyntheticSections.cpp
   57   return config->is64 ? read64(buf) : read32(buf);
  410     uint32_t id = read32(piece.data().data() + 4);
  546     return read32(buf);
  548     return (int32_t)read32(buf);