Home
last modified time | relevance | path

Searched refs:Mutable (Results 1 – 23 of 23) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DWasm.h114 bool Mutable; member
457 return LHS.Type == RHS.Type && LHS.Mutable == RHS.Mutable;
H A DWasmTraits.h56 return hash_combine(GlobalType.Type, GlobalType.Mutable);
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp243 Im.GlobalImport.Mutable = Import.Global.Mutable; in dump()
300 G.Mutable = Global.Type.Mutable; in dump()
/openbsd-src/gnu/llvm/lld/wasm/
H A DWriterUtils.cpp57 return (type.Mutable ? "var " : "const ") + in toString()
203 writeU8(os, type.Mutable, "global mutable"); in writeGlobalType()
H A DWriter.cpp598 if (global->getGlobalType()->Mutable) { in checkImportExportTargetFeatures()
697 if (g->getGlobalType()->Mutable && !g->getFile() && !g->forceExport) { in calculateExports()
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.cpp73 if (!Sym->getGlobalType().Mutable) in emitGlobalType()
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp226 bool Mutable = in getOrCreateWasmSymbol() local
232 Mutable}); in getOrCreateWasmSymbol()
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp809 bool Mutable = true; in ParseDirective() local
814 Mutable = false; in ParseDirective()
822 WasmSym->setGlobalType(wasm::WasmGlobalType{uint8_t(*Type), Mutable}); in ParseDirective()
/openbsd-src/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A Dindex.rst73 - `Chapter #7: Extending the Language: Mutable Variables
H A DLangImpl07.rst2 Kaleidoscope: Extending the Language: Mutable Variables
258 Mutable Variables in Kaleidoscope
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp398 writeUint8(OS, Import.GlobalImport.Mutable); in writeSectionContent()
485 writeUint8(OS, Global.Mutable); in writeSectionContent()
H A DWasmYAML.cpp399 IO.mapRequired("GlobalMutable", Import.GlobalImport.Mutable); in mapping()
420 IO.mapRequired("Mutable", Global.Mutable); in mapping()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDecl.h2945 unsigned Mutable : 1; variable
2992 QualType T, TypeSourceInfo *TInfo, Expr *BW, bool Mutable, in FieldDecl() argument
2995 BitField(false), Mutable(Mutable), CachedFieldIndex(0), in FieldDecl()
3008 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
3018 bool isMutable() const { return Mutable; } in isMutable()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaLambda.cpp498 bool Mutable) { in buildLambdaScope() argument
509 LSI->Mutable = Mutable; in buildLambdaScope()
H A DSemaDecl.cpp15072 LSI->Mutable = !CallOperator->isConst(); in RebuildLambdaScopeInfo()
17898 bool Mutable in HandleField() local
17902 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle, in HandleField()
17935 bool Mutable, Expr *BitWidth, in CheckFieldDecl() argument
18028 if (!InvalidDecl && Mutable) { in CheckFieldDecl()
18042 Mutable = false; in CheckFieldDecl()
18055 BitWidth, Mutable, InitStyle); in CheckFieldDecl()
H A DSemaExpr.cpp18621 !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable) && in isVariableAlreadyCapturedInScopeInfo()
18932 if (!LSI->Mutable && !CaptureType->isReferenceType()) in captureInLambda()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DScopeInfo.h853 bool Mutable = false; variable
H A DSema.h3368 bool Mutable, Expr *BitfieldWidth,
7114 bool Mutable);
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h85 bool Mutable; member
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DWasmObjectWriter.cpp870 W->OS << char(Import.Global.Mutable ? 1 : 0); in writeImportSection()
933 W->OS << char(Global.Type.Mutable); in writeGlobalSection()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DWasmObjectFile.cpp1130 Im.Global.Mutable = readVaruint1(Ctx); in parseImportSection()
1258 Global.Type.Mutable = readVaruint1(Ctx); in parseGlobalSection()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDecl.cpp4293 TypeSourceInfo *TInfo, Expr *BW, bool Mutable, in Create() argument
4296 BW, Mutable, InitStyle); in Create()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderDecl.cpp1492 FD->Mutable = Record.readInt(); in VisitFieldDecl()