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

References

tools/lld/ELF/Arch/MipsArchTree.cpp
   74     if (config->is64 && f.flags & EF_MIPS_MICROMIPS)
  305     if (config->emulation.empty() || config->is64)
tools/lld/ELF/Arch/RISCV.cpp
   78   if (config->is64) {
  103   if (config->is64)
  131   if (config->is64)
  138   if (config->is64)
  154   uint32_t load = config->is64 ? LD : LW;
  160   write32le(buf + 20, itype(SRLI, X_T1, X_T1, config->is64 ? 1 : 2));
  174   write32le(buf + 4, itype(config->is64 ? LD : LW, X_T3, X_T3, lo12(offset)));
tools/lld/ELF/Arch/X86_64.cpp
  542   if (!config->is64) {
tools/lld/ELF/Driver.cpp
 1098   config->is64 = (k == ELF64LEKind || k == ELF64BEKind);
 1104   config->wordsize = config->is64 ? 8 : 4;
tools/lld/ELF/InputSection.cpp
  241   if (config->is64) {
  891   const unsigned bits = config->is64 ? 64 : 32;
tools/lld/ELF/MapFile.cpp
   47   if (config->is64)
  159   int w = config->is64 ? 16 : 8;
tools/lld/ELF/SyntheticSections.cpp
   57   return config->is64 ? read64(buf) : read32(buf);
   61   if (config->is64)
  310   write32(buf + 4, config->is64 ? 16 : 12);          // Content size
  316   if (config->is64)
  320 size_t GnuPropertySection::getSize() const { return config->is64 ? 32 : 28; }
 2319   unsigned c = config->is64 ? 64 : 32;
 3496   eHdr->e_ident[EI_CLASS] = config->is64 ? ELFCLASS64 : ELFCLASS32;
tools/lld/ELF/Writer.cpp
 2587   uint64_t maxSize = config->is64 ? INT64_MAX : UINT32_MAX;