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

References

tools/lld/COFF/Chunks.cpp
  745 size_t LocalImportChunk::getSize() const { return config->wordsize; }
  911 size_t AbsolutePointerChunk::getSize() const { return config->wordsize; }
tools/lld/COFF/Chunks.h
  529     setAlignment(config->wordsize);
tools/lld/COFF/DLL.cpp
   63     setAlignment(config->wordsize);
   65   size_t getSize() const override { return config->wordsize; }
   83     setAlignment(config->wordsize);
   85   size_t getSize() const override { return config->wordsize; }
  444     setAlignment(config->wordsize);
  446   size_t getSize() const override { return config->wordsize; }
  587     lookups.push_back(make<NullChunk>(config->wordsize));
  588     addresses.push_back(make<NullChunk>(config->wordsize));
tools/lld/COFF/Driver.cpp
 1627   config->wordsize = config->is64() ? 8 : 4;
tools/lld/COFF/SymbolTable.cpp
  293   if (refptr && refptr->getChunk()->getSize() == config->wordsize) {