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

References

tools/lld/COFF/Chunks.cpp
  103   case IMAGE_REL_AMD64_ADDR32:   add32(off, s + config->imageBase); break;
  104   case IMAGE_REL_AMD64_ADDR64:   add64(off, s + config->imageBase); break;
  124   case IMAGE_REL_I386_DIR32:    add32(off, s + config->imageBase); break;
  190   case IMAGE_REL_ARM_ADDR32:    add32(off, sx + config->imageBase); break;
  192   case IMAGE_REL_ARM_MOV32T:    applyMOV32T(off, sx + config->imageBase); break;
  302   case IMAGE_REL_ARM64_ADDR32:         add32(off, s + config->imageBase); break;
  304   case IMAGE_REL_ARM64_ADDR64:         add64(off, s + config->imageBase); break;
  682             impSymbol->getRVA() + config->imageBase);
  692   applyMOV32T(buf, impSymbol->getRVA() + config->imageBase);
  749     write64le(buf, sym->getRVA() + config->imageBase);
  751     write32le(buf, sym->getRVA() + config->imageBase);
tools/lld/COFF/DLL.cpp
  334     write32le(buf + 1, imp->getRVA() + config->imageBase);
  354     write32le(buf + 4, desc->getRVA() + config->imageBase);
  374     applyMOV32T(buf + 0, imp->getRVA() + config->imageBase);
  394     applyMOV32T(buf + 14, desc->getRVA() + config->imageBase);
  450       write64le(buf, thunk->getRVA() + config->imageBase);
  456       write32le(buf, (thunk->getRVA() + config->imageBase) | bit);
tools/lld/COFF/Driver.cpp
  812     config->imageBase = m.ImageBase;
 1302     parseNumbers(arg->getValue(), &config->imageBase);
 1756   if (config->imageBase == uint64_t(-1))
 1757     config->imageBase = getDefaultImageBase();
tools/lld/COFF/Symbols.h
  229   uint64_t getRVA() { return va - config->imageBase; }
tools/lld/COFF/Writer.cpp
 1324   pe->ImageBase = config->imageBase;