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/
DWasm.h114 bool Mutable; member
457 return LHS.Type == RHS.Type && LHS.Mutable == RHS.Mutable;
DWasmTraits.h56 return hash_combine(GlobalType.Type, GlobalType.Mutable);
/openbsd/src/gnu/llvm/llvm/tools/obj2yaml/
Dwasm2yaml.cpp243 Im.GlobalImport.Mutable = Import.Global.Mutable; in dump()
300 G.Mutable = Global.Type.Mutable; in dump()
/openbsd/src/gnu/llvm/lld/wasm/
DWriterUtils.cpp57 return (type.Mutable ? "var " : "const ") + in toString()
203 writeU8(os, type.Mutable, "global mutable"); in writeGlobalType()
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/
DWebAssemblyTargetStreamer.cpp73 if (!Sym->getGlobalType().Mutable) in emitGlobalType()
/openbsd/src/gnu/llvm/llvm/lib/Target/WebAssembly/
DWebAssemblyAsmPrinter.cpp226 bool Mutable = in getOrCreateWasmSymbol() local
232 Mutable}); in getOrCreateWasmSymbol()
/openbsd/src/gnu/llvm/llvm/lib/Target/WebAssembly/AsmParser/
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/
Dindex.rst73 - `Chapter #7: Extending the Language: Mutable Variables
DLangImpl07.rst2 Kaleidoscope: Extending the Language: Mutable Variables
258 Mutable Variables in Kaleidoscope
/openbsd/src/gnu/llvm/llvm/lib/ObjectYAML/
DWasmYAML.cpp399 IO.mapRequired("GlobalMutable", Import.GlobalImport.Mutable); in mapping()
420 IO.mapRequired("Mutable", Global.Mutable); in mapping()
DWasmEmitter.cpp398 writeUint8(OS, Import.GlobalImport.Mutable); in writeSectionContent()
485 writeUint8(OS, Global.Mutable); in writeSectionContent()
/openbsd/src/gnu/llvm/clang/include/clang/AST/
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/
DSemaLambda.cpp498 bool Mutable) { in buildLambdaScope() argument
509 LSI->Mutable = Mutable; in buildLambdaScope()
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()
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/
DScopeInfo.h853 bool Mutable = false; variable
DSema.h3368 bool Mutable, Expr *BitfieldWidth,
7114 bool Mutable);
/openbsd/src/gnu/llvm/llvm/include/llvm/ObjectYAML/
DWasmYAML.h85 bool Mutable; member
/openbsd/src/gnu/llvm/llvm/lib/MC/
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/
DWasmObjectFile.cpp1130 Im.Global.Mutable = readVaruint1(Ctx); in parseImportSection()
1258 Global.Type.Mutable = readVaruint1(Ctx); in parseGlobalSection()
/openbsd/src/gnu/llvm/clang/lib/AST/
DDecl.cpp4293 TypeSourceInfo *TInfo, Expr *BW, bool Mutable, in Create() argument
4296 BW, Mutable, InitStyle); in Create()
/openbsd/src/gnu/llvm/clang/lib/Serialization/
DASTReaderDecl.cpp1492 FD->Mutable = Record.readInt(); in VisitFieldDecl()