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

References

lib/MC/WasmObjectWriter.cpp
  719       W.OS << char(Import.Global.Type);
  720       W.OS << char(Import.Global.Mutable ? 1 : 0);
 1177         Import.Global = WS.getGlobalType();
 1209       Import.Global = {wasm::WASM_TYPE_I32, true};
lib/Object/WasmObjectFile.cpp
  544         GlobalType = &Import.Global;
  911       Im.Global.Type = readUint8(Ctx);
  912       Im.Global.Mutable = readVaruint1(Ctx);
tools/lld/wasm/SyntheticSections.cpp
  174       import.Global = *globalSym->getGlobalType();
  187     import.Global = {WASM_TYPE_I32, true};
tools/lld/wasm/WriterUtils.cpp
  194     writeGlobalType(os, import.Global);
tools/obj2yaml/wasm2yaml.cpp
  222           Im.GlobalImport.Type = Import.Global.Type;
  223           Im.GlobalImport.Mutable = Import.Global.Mutable;