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

References

include/llvm/BinaryFormat/Wasm.h
  377   return LHS.Type == RHS.Type && LHS.Mutable == RHS.Mutable;
  377   return LHS.Type == RHS.Type && LHS.Mutable == RHS.Mutable;
include/llvm/Object/WasmTraits.h
   58     return hash_combine(GlobalType.Type, GlobalType.Mutable);
lib/MC/WasmObjectWriter.cpp
  720       W.OS << char(Import.Global.Mutable ? 1 : 0);
lib/Object/WasmObjectFile.cpp
  912       Im.Global.Mutable = readVaruint1(Ctx);
  993     Global.Type.Mutable = readVaruint1(Ctx);
tools/lld/wasm/Writer.cpp
  529       if (g->getGlobalType()->Mutable) {
tools/lld/wasm/WriterUtils.cpp
   55   return (type.Mutable ? "var " : "const ") +
  163   writeU8(os, type.Mutable, "global mutable");
tools/obj2yaml/wasm2yaml.cpp
  223           Im.GlobalImport.Mutable = Import.Global.Mutable;
  271         G.Mutable = Global.Type.Mutable;