/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Descriptor.cpp | 287 bool IsConst, bool IsTemporary, bool IsMutable) in Descriptor() argument 290 IsConst(IsConst), IsMutable(IsMutable), IsTemporary(IsTemporary), in Descriptor() 299 size_t NumElems, bool IsConst, bool IsTemporary, in Descriptor() argument 304 IsConst(IsConst), IsMutable(IsMutable), IsTemporary(IsTemporary), in Descriptor() 313 bool IsTemporary, UnknownSize) in Descriptor() argument 317 IsMutable(false), IsTemporary(IsTemporary), IsArray(true), in Descriptor() 325 unsigned NumElems, bool IsConst, bool IsTemporary, in Descriptor() argument 331 IsTemporary(IsTemporary), IsArray(true), CtorFn(ctorArrayDesc), in Descriptor() 338 bool IsTemporary, UnknownSize) in Descriptor() argument 342 IsMutable(false), IsTemporary(IsTemporary), IsArray(true), in Descriptor() [all …]
|
H A D | Program.cpp | 221 const bool IsTemporary = D.dyn_cast<const Expr *>(); in createGlobal() local 223 Desc = createDescriptor(D, *T, Descriptor::GlobalMD, IsConst, IsTemporary); in createGlobal() 226 IsTemporary); in createGlobal() 365 bool IsConst, bool IsTemporary, in createDescriptor() argument 371 return allocateDescriptor(D, Record, MDSize, IsConst, IsTemporary, in createDescriptor() 387 return allocateDescriptor(D, *T, MDSize, NumElems, IsConst, IsTemporary, in createDescriptor() 393 D, ElemTy.getTypePtr(), std::nullopt, IsConst, IsTemporary); in createDescriptor() 401 IsTemporary, IsMutable); in createDescriptor() 410 return allocateDescriptor(D, *T, MDSize, IsTemporary, in createDescriptor() 414 MDSize, IsConst, IsTemporary); in createDescriptor() [all …]
|
H A D | Descriptor.h | 149 const bool IsTemporary = false; member 162 bool IsTemporary, bool IsMutable); 166 bool IsConst, bool IsTemporary, bool IsMutable); 170 bool IsTemporary, UnknownSize); 174 unsigned NumElems, bool IsConst, bool IsTemporary, bool IsMutable); 178 bool IsTemporary, UnknownSize); 182 bool IsTemporary, bool IsMutable);
|
H A D | Program.h | 120 bool IsConst = false, bool IsTemporary = false, 122 return allocateDescriptor(D, Type, MDSize, IsConst, IsTemporary, IsMutable); 128 bool IsConst = false, bool IsTemporary = false,
|
H A D | InterpBlock.h | 75 bool isTemporary() const { return Desc->IsTemporary; } in isTemporary()
|
H A D | Disasm.cpp | 159 if (GP.isInitialized() && Desc->IsTemporary) { in dump()
|
H A D | Compiler.cpp | 3498 bool IsTemporary = false; in allocateLocal() local 3507 IsTemporary = true; in allocateLocal() 3513 IsTemporary, /*IsMutable=*/false, Init); in allocateLocal()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCContext.cpp | 222 bool IsTemporary = IsRenamable && !SaveTempLabels; in getOrCreateSymbol() local 225 Entry.second.Symbol = createSymbolImpl(&Entry, IsTemporary); in getOrCreateSymbol() 229 Entry.second.Symbol = createRenamableSymbol(NameRef, false, IsTemporary); in getOrCreateSymbol() 257 bool IsTemporary) { in createSymbolImpl() argument 271 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl() 273 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl() 275 return new (Name, *this) MCSymbolGOFF(Name, IsTemporary); in createSymbolImpl() 277 return new (Name, *this) MCSymbolMachO(Name, IsTemporary); in createSymbolImpl() 279 return new (Name, *this) MCSymbolWasm(Name, IsTemporary); in createSymbolImpl() 281 return createXCOFFSymbolImpl(Name, IsTemporary); in createSymbolImpl() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCSymbolGOFF.h | 23 MCSymbolGOFF(const MCSymbolTableEntry *Name, bool IsTemporary) in MCSymbolGOFF() argument 24 : MCSymbol(SymbolKindGOFF, Name, IsTemporary) {} in MCSymbolGOFF()
|
H A D | MCSymbol.h | 88 unsigned IsTemporary : 1; variable 165 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol() 222 bool isTemporary() const { return IsTemporary; } in isTemporary()
|
H A D | MCContext.h | 347 MCSymbol *createSymbolImpl(const MCSymbolTableEntry *Name, bool IsTemporary); 349 bool IsTemporary); 364 bool IsTemporary);
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngine.cpp | 1985 bool IsTemporary = false; in Visit() local 1988 IsTemporary = true; in Visit() 1999 if (IsTemporary) in Visit()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaInit.cpp | 7981 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local 7983 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()
|