Searched refs:IsTemporary (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCContext.cpp | 153 bool IsTemporary) { in createSymbolImpl() argument 157 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl() 159 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl() 161 return new (Name, *this) MCSymbolMachO(Name, IsTemporary); in createSymbolImpl() 163 return new (Name, *this) MCSymbolWasm(Name, IsTemporary); in createSymbolImpl() 167 IsTemporary); in createSymbolImpl() 177 bool IsTemporary = CanBeUnnamed; in createSymbol() local 178 if (AllowTemporaryLabels && !IsTemporary) in createSymbol() 179 IsTemporary = Name.startswith(MAI->getPrivateGlobalPrefix()); in createSymbol() 196 return createSymbolImpl(&*NameEntry.first, IsTemporary); in createSymbol() [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/MC/ |
| H A D | MCSymbol.h | 86 unsigned IsTemporary : 1; variable 154 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol() 220 bool isTemporary() const { return IsTemporary; } in isTemporary()
|
| H A D | MCContext.h | 266 bool IsTemporary);
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngine.cpp | 1372 bool IsTemporary = false; in Visit() local 1375 IsTemporary = true; in Visit() 1386 if (IsTemporary) in Visit()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaInit.cpp | 7744 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local 7746 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()
|