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

References

tools/lld/wasm/InputFiles.cpp
   82       "\n              Symbols : " + Twine(symbols.size()) +
   96   const Symbol *sym = symbols[reloc.Index];
  168     sym = symbols[reloc.Index];
  348   symbols.reserve(wasmObj->getNumberOfSymbols());
  355         symbols.push_back(d);
  359     size_t idx = symbols.size();
  360     symbols.push_back(createUndefined(wasmSym, isCalledDirectly[idx]));
  372   return cast<FunctionSymbol>(symbols[index]);
  376   return cast<GlobalSymbol>(symbols[index]);
  380   return cast<EventSymbol>(symbols[index]);
  384   return cast<SectionSymbol>(symbols[index]);
  388   return cast<DataSymbol>(symbols[index]);
  553     symbols.push_back(createBitcodeSymbol(keptComdats, objSym, *this));
tools/lld/wasm/InputFiles.h
   59   ArrayRef<Symbol *> getSymbols() const { return symbols; }
   61   MutableArrayRef<Symbol *> getMutableSymbols() { return symbols; }
  110     return symbols[reloc.Index];
  129   Symbol *getSymbol(uint32_t index) const { return symbols[index]; }