Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h309 bool Mutable; member
459 return LHS.Type == RHS.Type && LHS.Mutable == RHS.Mutable;
H A DWasmTraits.h56 return hash_combine(GlobalType.Type, GlobalType.Mutable);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.cpp73 if (!Sym->getGlobalType().Mutable) in emitGlobalType()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DScopeInfo.cpp256 return !Mutable; in lambdaCaptureShouldBeConst()
H A DSemaLambda.cpp484 bool ExplicitParams, bool Mutable) { in buildLambdaScope() argument
495 LSI->Mutable = Mutable; in buildLambdaScope()
1282 LSI->Mutable = MutableLoc.isValid(); in ActOnLambdaClosureQualifiers()
H A DSemaDecl.cpp15610 LSI->Mutable = !CallOperator->isConst(); in RebuildLambdaScopeInfo()
18508 bool Mutable in HandleField() local
18512 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle, in HandleField()
18545 bool Mutable, Expr *BitWidth, in CheckFieldDecl() argument
18638 if (!InvalidDecl && Mutable) { in CheckFieldDecl()
18652 Mutable = false; in CheckFieldDecl()
18665 BitWidth, Mutable, InitStyle); in CheckFieldDecl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp808 bool Mutable = true; in parseDirective() local
815 Mutable = false; in parseDirective()
823 WasmSym->setGlobalType(wasm::WasmGlobalType{uint8_t(*Type), Mutable}); in parseDirective()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp228 bool Mutable = in getOrCreateWasmSymbol() local
234 Mutable}); in getOrCreateWasmSymbol()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp400 IO.mapRequired("GlobalMutable", Import.GlobalImport.Mutable); in mapping()
421 IO.mapRequired("Mutable", Global.Mutable); in mapping()
H A DWasmEmitter.cpp398 writeUint8(OS, Import.GlobalImport.Mutable); in writeSectionContent()
485 writeUint8(OS, Global.Mutable); in writeSectionContent()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3044 unsigned Mutable : 1;
3079 TypeSourceInfo *TInfo, Expr *BW, bool Mutable, in FieldDecl() argument
3082 Mutable(Mutable), StorageKind((InitStorageKind)InitStyle), in FieldDecl()
3095 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
3105 bool isMutable() const { return Mutable; } in isMutable()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h873 bool Mutable = true; variable
H A DSema.h3437 bool Mutable, Expr *BitfieldWidth,
7253 bool Mutable);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h85 bool Mutable; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp872 W->OS << char(Import.Global.Mutable ? 1 : 0); in writeImportSection()
935 W->OS << char(Global.Type.Mutable); in writeGlobalSection()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp1155 Im.Global.Mutable = readVaruint1(Ctx); in parseImportSection()
1283 Global.Type.Mutable = readVaruint1(Ctx); in parseGlobalSection()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp4492 TypeSourceInfo *TInfo, Expr *BW, bool Mutable, in Create() argument
4495 BW, Mutable, InitStyle); in Create()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1534 FD->Mutable = Record.readInt(); in VisitFieldDecl()