Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h94 bool Mutable; member
425 return LHS.Type == RHS.Type && LHS.Mutable == RHS.Mutable;
H A DWasmTraits.h58 return hash_combine(GlobalType.Type, GlobalType.Mutable);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp193 bool Mutable = true; in emitGlobalVariable() local
196 Sym->setGlobalType(wasm::WasmGlobalType{uint8_t(Type), Mutable}); in emitGlobalVariable()
227 bool Mutable = in getOrCreateWasmSymbol() local
233 Mutable}); in getOrCreateWasmSymbol()
H A DWebAssemblyMCInstLower.cpp64 bool Mutable = true; in GetGlobalAddressSymbol() local
67 WasmSym->setGlobalType(wasm::WasmGlobalType{uint8_t(Type), Mutable}); in GetGlobalAddressSymbol()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.cpp75 if (!Sym->getGlobalType().Mutable) in emitGlobalType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp817 bool Mutable = true; in ParseDirective() local
822 Mutable = false; in ParseDirective()
831 wasm::WasmGlobalType{uint8_t(Type.getValue()), Mutable}); in ParseDirective()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h2824 unsigned Mutable : 1; variable
2871 QualType T, TypeSourceInfo *TInfo, Expr *BW, bool Mutable, in FieldDecl() argument
2874 BitField(false), Mutable(Mutable), CachedFieldIndex(0), in FieldDecl()
2887 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
2897 bool isMutable() const { return Mutable; } in isMutable()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp398 IO.mapRequired("GlobalMutable", Import.GlobalImport.Mutable); in mapping()
422 IO.mapRequired("Mutable", Global.Mutable); in mapping()
H A DWasmEmitter.cpp385 writeUint8(OS, Import.GlobalImport.Mutable); in writeSectionContent()
478 writeUint8(OS, Global.Mutable); in writeSectionContent()
/freebsd-13.1/contrib/subversion/subversion/libsvn_fs_base/notes/
H A DTODO95 invalidating the cache. Mutable node objects will need special
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp492 bool Mutable) { in buildLambdaScope() argument
503 LSI->Mutable = Mutable; in buildLambdaScope()
H A DSemaDecl.cpp14160 LSI->Mutable = !CallOperator->isConst(); in RebuildLambdaScopeInfo()
16786 bool Mutable in HandleField() local
16790 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle, in HandleField()
16823 bool Mutable, Expr *BitWidth, in CheckFieldDecl() argument
16918 if (!InvalidDecl && Mutable) { in CheckFieldDecl()
16932 Mutable = false; in CheckFieldDecl()
16945 BitWidth, Mutable, InitStyle); in CheckFieldDecl()
H A DSemaExpr.cpp17417 !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable) && in isVariableAlreadyCapturedInScopeInfo()
17705 if (!LSI->Mutable && !CaptureType->isReferenceType()) in captureInLambda()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h839 bool Mutable = false; variable
H A DSema.h3077 bool Mutable, Expr *BitfieldWidth,
6675 bool Mutable);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h76 bool Mutable; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp816 W->OS << char(Import.Global.Mutable ? 1 : 0); in writeImportSection()
879 W->OS << char(Global.Type.Mutable); in writeGlobalSection()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp1051 Im.Global.Mutable = readVaruint1(Ctx); in parseImportSection()
1166 Global.Type.Mutable = readVaruint1(Ctx); in parseGlobalSection()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp4133 TypeSourceInfo *TInfo, Expr *BW, bool Mutable, in Create() argument
4136 BW, Mutable, InitStyle); in Create()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1351 FD->Mutable = Record.readInt(); in VisitFieldDecl()