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

References

lib/Object/WasmObjectFile.cpp
  535         GlobalType = &Global.Type;
  992     Global.Type.Type = readUint8(Ctx);
  993     Global.Type.Mutable = readVaruint1(Ctx);
tools/lld/wasm/Driver.cpp
  452   wasmGlobal.Type = {WASM_TYPE_I32, isMutable};
tools/lld/wasm/InputGlobal.h
   29   const WasmGlobalType &getType() const { return global.Type; }
tools/lld/wasm/SyntheticSections.cpp
  272     global.Type = {WASM_TYPE_I32, false};
  286     global.Type = {WASM_TYPE_I32, false};
tools/lld/wasm/WriterUtils.cpp
  167   writeGlobalType(os, global.Type);
tools/obj2yaml/wasm2yaml.cpp
  270         G.Type = Global.Type.Type;
  271         G.Mutable = Global.Type.Mutable;