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

References

lib/Object/WasmObjectFile.cpp
  197   Result.Flags = readVaruint32(Ctx);
  199   if (Result.Flags & wasm::WASM_LIMITS_FLAG_HAS_MAX)
tools/lld/wasm/SyntheticSections.cpp
  134     import.Memory.Flags = 0;
  137       import.Memory.Flags |= WASM_LIMITS_FLAG_HAS_MAX;
  141       import.Memory.Flags |= WASM_LIMITS_FLAG_IS_SHARED;
tools/lld/wasm/WriterUtils.cpp
  154   writeU8(os, limits.Flags, "limits flags");
  156   if (limits.Flags & WASM_LIMITS_FLAG_HAS_MAX)
tools/llvm-readobj/WasmDumper.cpp
  203         if (Memory.Flags & wasm::WASM_LIMITS_FLAG_HAS_MAX) {
tools/obj2yaml/wasm2yaml.cpp
   37   T.TableLimits.Flags = Table.Limits.Flags;
   45   L.Flags = Limits.Flags;