reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
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.cpp912 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.cpp55 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;