Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/
H A DDescriptor.cpp189 bool IsTemporary, bool IsMutable) in Descriptor() argument
191 IsConst(IsConst), IsMutable(IsMutable), IsTemporary(IsTemporary), in Descriptor()
198 bool IsConst, bool IsTemporary, bool IsMutable) in Descriptor() argument
201 IsMutable(IsMutable), IsTemporary(IsTemporary), IsArray(true), in Descriptor()
207 Descriptor::Descriptor(const DeclTy &D, PrimType Type, bool IsTemporary, in Descriptor() argument
211 IsTemporary(IsTemporary), IsArray(true), CtorFn(getCtorArrayPrim(Type)), in Descriptor()
217 bool IsConst, bool IsTemporary, bool IsMutable) in Descriptor() argument
221 IsConst(IsConst), IsMutable(IsMutable), IsTemporary(IsTemporary), in Descriptor()
231 IsConst(true), IsMutable(false), IsTemporary(IsTemporary), IsArray(true), in Descriptor()
237 bool IsTemporary, bool IsMutable) in Descriptor() argument
[all …]
H A DDescriptor.h78 const bool IsTemporary = false; member
88 Descriptor(const DeclTy &D, PrimType Type, bool IsConst, bool IsTemporary,
93 bool IsTemporary, bool IsMutable);
96 Descriptor(const DeclTy &D, PrimType Type, bool IsTemporary, UnknownSize);
100 bool IsTemporary, bool IsMutable);
103 Descriptor(const DeclTy &D, Descriptor *Elem, bool IsTemporary, UnknownSize);
106 Descriptor(const DeclTy &D, Record *R, bool IsConst, bool IsTemporary,
H A DProgram.cpp167 const bool IsTemporary = D.dyn_cast<const Expr *>(); in createGlobal() local
169 Desc = createDescriptor(D, *T, IsConst, IsTemporary); in createGlobal()
171 Desc = createDescriptor(D, Ty.getTypePtr(), IsConst, IsTemporary); in createGlobal()
297 bool IsConst, bool IsTemporary, in createDescriptor() argument
317 return allocateDescriptor(D, *T, NumElems, IsConst, IsTemporary, in createDescriptor()
323 createDescriptor(D, ElemTy.getTypePtr(), IsConst, IsTemporary); in createDescriptor()
329 return allocateDescriptor(D, Desc, NumElems, IsConst, IsTemporary, in createDescriptor()
338 return allocateDescriptor(D, *T, IsTemporary, in createDescriptor()
342 createDescriptor(D, ElemTy.getTypePtr(), IsConst, IsTemporary); in createDescriptor()
345 return allocateDescriptor(D, Desc, IsTemporary, in createDescriptor()
[all …]
H A DProgram.h103 bool IsTemporary = false,
105 return allocateDescriptor(D, Type, IsConst, IsTemporary, IsMutable);
110 bool IsConst = false, bool IsTemporary = false,
H A DInterpBlock.h57 bool isTemporary() const { return Desc->IsTemporary; } in isTemporary()
H A DByteCodeExprGen.cpp441 bool IsTemporary = false; in allocateLocal() local
447 IsTemporary = true; in allocateLocal()
452 Ty.isConstQualified(), IsTemporary); in allocateLocal()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp221 bool IsTemporary) { in createSymbolImpl() argument
235 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl()
237 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl()
239 return new (Name, *this) MCSymbolGOFF(Name, IsTemporary); in createSymbolImpl()
243 return new (Name, *this) MCSymbolWasm(Name, IsTemporary); in createSymbolImpl()
245 return createXCOFFSymbolImpl(Name, IsTemporary); in createSymbolImpl()
248 IsTemporary); in createSymbolImpl()
258 bool IsTemporary = CanBeUnnamed; in createSymbol() local
259 if (AllowTemporaryLabels && !IsTemporary) in createSymbol()
363 bool IsTemporary) { in createXCOFFSymbolImpl() argument
[all …]
/freebsd-13.1/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.h88 unsigned IsTemporary : 1; variable
157 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
215 bool isTemporary() const { return IsTemporary; } in isTemporary()
H A DMCContext.h348 bool IsTemporary);
361 bool IsTemporary);
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1450 bool IsTemporary = false; in Visit() local
1453 IsTemporary = true; in Visit()
1464 if (IsTemporary) in Visit()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp8460 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local
8462 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()