Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DDescriptor.cpp341 MetadataSize MD, bool IsConst, bool IsTemporary, in Descriptor() argument
345 IsConst(IsConst), IsMutable(IsMutable), IsTemporary(IsTemporary), in Descriptor()
354 size_t NumElems, bool IsConst, bool IsTemporary, in Descriptor() argument
359 IsConst(IsConst), IsMutable(IsMutable), IsTemporary(IsTemporary), in Descriptor()
368 bool IsTemporary, bool IsConst, UnknownSize) in Descriptor() argument
372 IsConst(IsConst), IsMutable(false), IsTemporary(IsTemporary), in Descriptor()
381 unsigned NumElems, bool IsConst, bool IsTemporary, in Descriptor() argument
388 IsTemporary(IsTemporary), IsArray(true), CtorFn(ctorArrayDesc), in Descriptor()
395 bool IsTemporary, UnknownSize) in Descriptor() argument
399 IsMutable(false), IsTemporary(IsTemporary), IsArray(true), in Descriptor()
[all …]
H A DProgram.cpp251 const bool IsTemporary = D.dyn_cast<const Expr *>(); in createGlobal() local
255 IsTemporary, /*IsMutable=*/false, IsVolatile); in createGlobal()
258 IsTemporary, /*IsMutable=*/false, IsVolatile); in createGlobal()
397 bool IsConst, bool IsTemporary, in createDescriptor() argument
404 return allocateDescriptor(D, Record, MDSize, IsConst, IsTemporary, in createDescriptor()
421 return allocateDescriptor(D, *T, MDSize, NumElems, IsConst, IsTemporary, in createDescriptor()
427 D, ElemTy.getTypePtr(), std::nullopt, IsConst, IsTemporary); in createDescriptor()
434 IsTemporary, IsMutable); in createDescriptor()
443 return allocateDescriptor(D, *T, MDSize, IsConst, IsTemporary, in createDescriptor()
447 D, ElemTy.getTypePtr(), std::nullopt, IsConst, IsTemporary); in createDescriptor()
[all …]
H A DDescriptor.h169 const bool IsTemporary = false; member
184 MetadataSize MD, bool IsConst, bool IsTemporary, bool IsMutable,
189 bool IsConst, bool IsTemporary, bool IsMutable);
193 bool IsTemporary, UnknownSize);
197 MetadataSize MD, unsigned NumElems, bool IsConst, bool IsTemporary,
202 bool IsTemporary, UnknownSize);
206 bool IsTemporary, bool IsMutable, bool IsVolatile);
H A DProgram.h121 bool IsConst = false, bool IsTemporary = false,
124 return allocateDescriptor(D, SourceTy, T, MDSize, IsConst, IsTemporary,
131 bool IsConst = false, bool IsTemporary = false,
H A DInterpBlock.h76 bool isTemporary() const { return Desc->IsTemporary; } in isTemporary()
H A DDisasm.cpp315 if (GP.isInitialized() && Desc->IsTemporary) { in dump()
H A DCompiler.cpp4428 bool IsTemporary = false; in allocateLocal() local
4437 IsTemporary = true; in allocateLocal()
4444 IsTemporary, /*IsMutable=*/false, /*IsVolatile=*/false, Init); in allocateLocal()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp226 bool IsTemporary = IsRenamable && !SaveTempLabels; in getOrCreateSymbol() local
229 Entry.second.Symbol = createSymbolImpl(&Entry, IsTemporary); in getOrCreateSymbol()
233 Entry.second.Symbol = createRenamableSymbol(NameRef, false, IsTemporary); in getOrCreateSymbol()
289 bool IsTemporary) { in createSymbolImpl() argument
303 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl()
305 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl()
307 return new (Name, *this) MCSymbolGOFF(Name, IsTemporary); in createSymbolImpl()
309 return new (Name, *this) MCSymbolMachO(Name, IsTemporary); in createSymbolImpl()
311 return new (Name, *this) MCSymbolWasm(Name, IsTemporary); in createSymbolImpl()
313 return createXCOFFSymbolImpl(Name, IsTemporary); in createSymbolImpl()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolGOFF.h35 MCSymbolGOFF(const MCSymbolTableEntry *Name, bool IsTemporary) in MCSymbolGOFF() argument
36 : MCSymbol(SymbolKindGOFF, Name, IsTemporary) {} in MCSymbolGOFF()
H A DMCSymbol.h89 unsigned IsTemporary : 1; variable
166 : IsTemporary(isTemporary), IsRedefinable(false), IsRegistered(false), in MCSymbol()
224 bool isTemporary() const { return IsTemporary; } in isTemporary()
H A DMCContext.h341 MCSymbol *createSymbolImpl(const MCSymbolTableEntry *Name, bool IsTemporary);
343 bool IsTemporary);
358 bool IsTemporary);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2006 bool IsTemporary = false; in Visit() local
2009 IsTemporary = true; in Visit()
2020 if (IsTemporary) in Visit()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp8250 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local
8252 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()