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

References

include/llvm/Object/Wasm.h
   69     return (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) != 0;
lib/MC/WasmObjectWriter.cpp
  949         if ((Sym.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0 ||
  955         if ((Sym.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0) {
 1448       Flags |= wasm::WASM_SYMBOL_UNDEFINED;
lib/Object/WasmObjectFile.cpp
  493     bool IsDefined = (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0;
lib/ObjectYAML/WasmEmitter.cpp
  192         if ((Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0 ||
  198         if ((Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0) {
lib/ObjectYAML/WasmYAML.cpp
  497     if ((Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0) {
  535   BCaseMask(UNDEFINED, UNDEFINED);
tools/lld/wasm/Driver.cpp
  443       name, name, defaultModule, WASM_SYMBOL_UNDEFINED, nullptr, type));
  581   return symtab->addUndefinedFunction(name, "", "", WASM_SYMBOL_UNDEFINED,
tools/lld/wasm/InputFiles.cpp
  440   uint32_t flags = sym.Info.Flags | WASM_SYMBOL_UNDEFINED;
  528     flags |= WASM_SYMBOL_UNDEFINED;
tools/lld/wasm/SymbolTable.cpp
  434   assert(flags & WASM_SYMBOL_UNDEFINED);
  479   assert(flags & WASM_SYMBOL_UNDEFINED);
  501   assert(flags & WASM_SYMBOL_UNDEFINED);
tools/llvm-readobj/WasmDumper.cpp
   51   ENUM_ENTRY(UNDEFINED),
  229   if (Symbol.Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) {
  235   } else if (!(Symbol.Info.Flags & wasm::WASM_SYMBOL_UNDEFINED)) {