Home
last modified time | relevance | path

Searched refs:IsTemporary (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DDescriptor.cpp231 bool IsConst, bool IsTemporary, bool IsMutable) in Descriptor() argument
234 IsMutable(IsMutable), IsTemporary(IsTemporary), CtorFn(getCtorPrim(Type)), in Descriptor()
242 size_t NumElems, bool IsConst, bool IsTemporary, in Descriptor() argument
247 IsMutable(IsMutable), IsTemporary(IsTemporary), IsArray(true), in Descriptor()
258 IsMutable(false), IsTemporary(IsTemporary), IsArray(true), in Descriptor()
272 IsTemporary(IsTemporary), IsArray(true), CtorFn(ctorArrayDesc), in Descriptor()
279 bool IsTemporary, UnknownSize) in Descriptor() argument
283 IsConst(true), IsMutable(false), IsTemporary(IsTemporary), IsArray(true), in Descriptor()
290 bool IsConst, bool IsTemporary, bool IsMutable) in Descriptor() argument
294 IsTemporary(IsTemporary), CtorFn(ctorRecord), DtorFn(dtorRecord), in Descriptor()
[all …]
H A DDescriptor.h111 const bool IsTemporary = false; member
124 bool IsTemporary, bool IsMutable);
128 bool IsConst, bool IsTemporary, bool IsMutable);
131 Descriptor(const DeclTy &D, PrimType Type, bool IsTemporary, UnknownSize);
135 unsigned NumElems, bool IsConst, bool IsTemporary, bool IsMutable);
138 Descriptor(const DeclTy &D, const Descriptor *Elem, bool IsTemporary,
143 bool IsTemporary, bool IsMutable);
H A DProgram.cpp192 const bool IsTemporary = D.dyn_cast<const Expr *>(); in createGlobal() local
194 Desc = createDescriptor(D, *T, std::nullopt, IsConst, IsTemporary); in createGlobal()
197 IsTemporary); in createGlobal()
315 bool IsConst, bool IsTemporary, in createDescriptor() argument
320 return allocateDescriptor(D, Record, MDSize, IsConst, IsTemporary, in createDescriptor()
342 D, ElemTy.getTypePtr(), std::nullopt, IsConst, IsTemporary); in createDescriptor()
350 IsTemporary, IsMutable); in createDescriptor()
358 return allocateDescriptor(D, *T, IsTemporary, in createDescriptor()
365 return allocateDescriptor(D, Desc, IsTemporary, in createDescriptor()
374 return createDescriptor(D, InnerTy, MDSize, IsConst, IsTemporary, in createDescriptor()
[all …]
H A DProgram.h119 bool IsConst = false, bool IsTemporary = false,
121 return allocateDescriptor(D, Type, MDSize, IsConst, IsTemporary, IsMutable);
127 bool IsConst = false, bool IsTemporary = false,
H A DInterpBlock.h69 bool isTemporary() const { return Desc->IsTemporary; } in isTemporary()
H A DByteCodeExprGen.cpp2272 bool IsTemporary = false; in allocateLocal() local
2281 IsTemporary = true; in allocateLocal()
2287 IsTemporary, /*IsMutable=*/false, Init); in allocateLocal()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp230 bool IsTemporary) { in createSymbolImpl() argument
244 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl()
246 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl()
248 return new (Name, *this) MCSymbolGOFF(Name, IsTemporary); in createSymbolImpl()
252 return new (Name, *this) MCSymbolWasm(Name, IsTemporary); in createSymbolImpl()
254 return createXCOFFSymbolImpl(Name, IsTemporary); in createSymbolImpl()
262 MCSymbol(MCSymbol::SymbolKindUnset, Name, IsTemporary); in createSymbolImpl()
272 bool IsTemporary = CanBeUnnamed; in createSymbol() local
273 if (AllowTemporaryLabels && !IsTemporary) in createSymbol()
380 bool IsTemporary) { in createXCOFFSymbolImpl() argument
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolGOFF.h22 MCSymbolGOFF(const StringMapEntry<bool> *Name, bool IsTemporary) in MCSymbolGOFF() argument
23 : MCSymbol(SymbolKindGOFF, Name, IsTemporary) {} in MCSymbolGOFF()
H A DMCSymbol.h87 unsigned IsTemporary : 1; variable
164 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
222 bool isTemporary() const { return IsTemporary; } in isTemporary()
H A DMCContext.h369 bool IsTemporary);
382 bool IsTemporary);
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1979 bool IsTemporary = false; in Visit() local
1982 IsTemporary = true; in Visit()
1993 if (IsTemporary) in Visit()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp9034 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local
9036 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()