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

References

lib/Object/WasmObjectFile.cpp
  735     Feature.Name = readString(Ctx);
  736     if (!FeaturesSeen.insert(Feature.Name).second)
  739               Feature.Name + "\"",
tools/lld/wasm/Writer.cpp
  394         used.insert({feature.Name, fileName});
  397         used.insert({feature.Name, fileName});
  398         required.insert({feature.Name, fileName});
  401         disallowed.insert({feature.Name, fileName});
  465       objectFeatures.insert(feature.Name);
  466       if (disallowed.count(feature.Name))
  467         error(Twine("Target feature '") + feature.Name + "' used in " +
  468               fileName + " is disallowed by " + disallowed[feature.Name] +
tools/obj2yaml/wasm2yaml.cpp
  164       Feature.Name = E.Name;