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

References

tools/lld/wasm/SymbolTable.cpp
  275   std::tie(s, wasInserted) = insert(name, file);
  280     const WasmSignature *oldSig = s->getSignature();
  286   if (wasInserted || s->isLazy()) {
  287     replaceSym(s);
  288     return s;
  291   auto existingFunction = dyn_cast<FunctionSymbol>(s);
  293     reportTypeError(s, file, WASM_SYMBOL_TYPE_FUNCTION);
  294     return s;
  303     if (getFunctionVariant(s, &function->signature, file, &variant))
  306     else if (shouldReplace(s, file, flags))
  317   if (shouldReplace(s, file, flags))
  318     replaceSym(s);
  320   return s;