Searched refs:isLazy (Results 1 – 15 of 15) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTUnresolvedSet.h | 37 bool isLazy() const { return getTag(); } in isLazy() function 110 if (Impl.Decls.isLazy()) in get() 118 assert(Impl.empty() || Impl.Decls.isLazy()); in addLazyDecl()
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | SymbolTable.cpp | 306 if (l->isLazy() && !l->pendingArchiveLoad) { in loadMinGWSymbols() 312 if (l->isLazy() || isa<Defined>(l)) { in loadMinGWSymbols() 329 if (!l || l->pendingArchiveLoad || !l->isLazy()) in loadMinGWSymbols() 590 if (wasInserted || (s->isLazy() && isWeakAlias)) { in addUndefined() 594 if (s->isLazy()) in addUndefined() 712 if (wasInserted || isa<Undefined>(s) || s->isLazy()) in addAbsolute() 725 if (wasInserted || isa<Undefined>(s) || s->isLazy()) in addAbsolute() 738 if (wasInserted || isa<Undefined>(s) || s->isLazy()) in addSynthetic() 786 if (wasInserted || isa<Undefined>(s) || s->isLazy()) { in addImportData() 799 if (wasInserted || isa<Undefined>(s) || s->isLazy()) { in addImportThunk()
|
H A D | Symbols.h | 89 bool isLazy() const { in isLazy() function
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | Driver.cpp | 289 bool isLazy = false, bool isExplicit = true, in addFile() argument 403 newFile = make<ObjFile>(mbref, getModTime(path), "", isLazy); in addFile() 413 newFile = make<BitcodeFile>(mbref, "", 0, isLazy); in addFile() 441 if (config->printEachFile && magic != file_magic::archive && !isLazy) in addFile() 571 static void addFileList(StringRef path, bool isLazy) { in addFileList() argument 577 addFile(rerootPath(path), LoadType::CommandLine, isLazy); in addFileList() 1210 bool isLazy = false; in createFiles() local 1220 addFile(rerootPath(arg->getValue()), LoadType::CommandLine, isLazy); in createFiles() 1240 addFileList(arg->getValue(), isLazy); in createFiles() 1274 isLazy = true; in createFiles() [all …]
|
H A D | Symbols.h | 55 bool isLazy() const { in isLazy() function
|
H A D | UnwindInfoSection.cpp | 268 if (!sym->isLazy()) in prepareRelocations()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Symbols.cpp | 298 else if (sym.isLazy()) in printTraceSymbol() 416 if (isLazy()) { in resolve() 677 if (visibility() == STV_DEFAULT && (isUndefined() || isLazy())) { in resolve()
|
H A D | SymbolTable.cpp | 123 return sym.isDefined() || sym.isCommon() || sym.isLazy(); in canBeVersioned()
|
H A D | Symbols.h | 193 bool isLazy() const { return symbolKind == LazyKind; } in isLazy() function
|
H A D | Writer.cpp | 281 if (sym->isLazy() || (s && !cast<SharedFile>(s->file)->isNeeded)) { in demoteSymbolsAndComputeIsPreemptible() 282 uint8_t binding = sym->isLazy() ? sym->binding : uint8_t(STB_WEAK); in demoteSymbolsAndComputeIsPreemptible()
|
H A D | Driver.cpp | 2161 if (!sym->isLazy()) in handleUndefined() 2191 if (sym && sym->isLazy() && isa<BitcodeFile>(sym->file)) { in handleLibcall()
|
H A D | SyntheticSections.cpp | 3746 assert(!s.sym->isLazy()); in writeTo()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | GenericDomTreeUpdater.h | 58 bool isLazy() const { return Strategy == UpdateStrategy::Lazy; } in isLazy() function
|
H A D | GenericDomTreeUpdaterImpl.h | 116 if (isLazy()) in applyUpdatesPermissive()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclCXX.cpp | 67 assert(Impl.Decls.isLazy() && "getFromExternalSource for non-lazy set"); in getFromExternalSource()
|