reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
439 StringRef name = sym.Info.Name; 440 uint32_t flags = sym.Info.Flags | WASM_SYMBOL_UNDEFINED; 442 switch (sym.Info.Kind) { 444 if (sym.isBindingLocal()) 445 return make<UndefinedFunction>(name, sym.Info.ImportName, 446 sym.Info.ImportModule, flags, this, 447 sym.Signature, isCalledDirectly); 448 return symtab->addUndefinedFunction(name, sym.Info.ImportName, 449 sym.Info.ImportModule, flags, this, 450 sym.Signature, isCalledDirectly); 452 if (sym.isBindingLocal()) 456 if (sym.isBindingLocal()) 457 return make<UndefinedGlobal>(name, sym.Info.ImportName, 458 sym.Info.ImportModule, flags, this, 459 sym.GlobalType); 460 return symtab->addUndefinedGlobal(name, sym.Info.ImportName, 461 sym.Info.ImportModule, flags, this, 462 sym.GlobalType);