Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
227 Descriptor::Descriptor(const DeclTy &D, Descriptor *Elem, bool IsTemporary, in Descriptor() argument
231 IsConst(true), IsMutable(false), IsTemporary(IsTemporary), IsArray(true), in Descriptor()
[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
302 return allocateDescriptor(D, Record, IsConst, IsTemporary, IsMutable); in createDescriptor()
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()
[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 DByteCodeExprGen.cpp441 bool IsTemporary = false; in allocateLocal() local
447 IsTemporary = true; in allocateLocal()
452 Ty.isConstQualified(), IsTemporary); in allocateLocal()
H A DInterpBlock.h57 bool isTemporary() const { return Desc->IsTemporary; } in isTemporary()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCContext.cpp217 bool IsTemporary) { in createSymbolImpl() argument
231 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl()
233 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl()
235 return new (Name, *this) MCSymbolMachO(Name, IsTemporary); in createSymbolImpl()
237 return new (Name, *this) MCSymbolWasm(Name, IsTemporary); in createSymbolImpl()
239 return createXCOFFSymbolImpl(Name, IsTemporary); in createSymbolImpl()
242 IsTemporary); in createSymbolImpl()
252 bool IsTemporary = CanBeUnnamed; in createSymbol() local
253 if (AllowTemporaryLabels && !IsTemporary) in createSymbol()
254 IsTemporary = Name.startswith(MAI->getPrivateGlobalPrefix()); in createSymbol()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCSymbol.h87 unsigned IsTemporary : 1; variable
156 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
214 bool isTemporary() const { return IsTemporary; } in isTemporary()
H A DMCContext.h345 bool IsTemporary);
358 bool IsTemporary);
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1448 bool IsTemporary = false; in Visit() local
1451 IsTemporary = true; in Visit()
1462 if (IsTemporary) in Visit()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaInit.cpp8459 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local
8461 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()