Home
last modified time | relevance | path

Searched refs:isLazy (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTUnresolvedSet.h36 bool isLazy() const { return getTag(); } in isLazy() function
105 if (Impl.Decls.isLazy()) in get()
113 assert(Impl.empty() || Impl.Decls.isLazy()); in addLazyDecl()
/freebsd/contrib/llvm-project/lld/COFF/
H A DSymbolTable.cpp306 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()
568 if (wasInserted || (s->isLazy() && isWeakAlias)) { in addUndefined()
572 if (s->isLazy()) in addUndefined()
690 if (wasInserted || isa<Undefined>(s) || s->isLazy()) in addAbsolute()
703 if (wasInserted || isa<Undefined>(s) || s->isLazy()) in addAbsolute()
716 if (wasInserted || isa<Undefined>(s) || s->isLazy()) in addSynthetic()
764 if (wasInserted || isa<Undefined>(s) || s->isLazy()) { in addImportData()
777 if (wasInserted || isa<Undefined>(s) || s->isLazy()) { in addImportThunk()
H A DSymbols.h89 bool isLazy() const { in isLazy() function
/freebsd/contrib/llvm-project/lld/MachO/
H A DDriver.cpp274 bool isLazy = false, bool isExplicit = true, in addFile() argument
370 newFile = make<ObjFile>(mbref, getModTime(path), "", isLazy); in addFile()
380 newFile = make<BitcodeFile>(mbref, "", 0, isLazy); in addFile()
538 static void addFileList(StringRef path, bool isLazy) { in addFileList() argument
544 addFile(rerootPath(path), LoadType::CommandLine, isLazy); in addFileList()
1141 bool isLazy = false; in createFiles() local
1169 addFileList(arg->getValue(), isLazy); in createFiles()
1199 if (isLazy) in createFiles()
1201 isLazy = true; in createFiles()
1204 if (!isLazy) in createFiles()
[all …]
H A DSymbols.h55 bool isLazy() const { in isLazy() function
H A DUnwindInfoSection.cpp268 if (!sym->isLazy()) in prepareRelocations()
/freebsd/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp298 else if (sym.isLazy()) in printTraceSymbol()
416 if (isLazy()) { in resolve()
677 if (visibility() == STV_DEFAULT && (isUndefined() || isLazy())) { in resolve()
H A DSymbolTable.cpp123 return sym.isDefined() || sym.isCommon() || sym.isLazy(); in canBeVersioned()
H A DSymbols.h184 bool isLazy() const { return symbolKind == LazyKind; } in isLazy() function
H A DWriter.cpp285 if (sym->isLazy() || (s && !cast<SharedFile>(s->file)->isNeeded)) { in demoteSymbolsAndComputeIsPreemptible()
286 uint8_t binding = sym->isLazy() ? sym->binding : uint8_t(STB_WEAK); in demoteSymbolsAndComputeIsPreemptible()
H A DDriver.cpp2032 if (!sym->isLazy()) in handleUndefined()
2062 if (sym && sym->isLazy() && isa<BitcodeFile>(sym->file)) in handleLibcall()
H A DSyntheticSections.cpp3134 assert(!s.sym->isLazy()); in writeTo()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDomTreeUpdater.h51 bool isLazy() const { return Strategy == UpdateStrategy::Lazy; }; in isLazy() function
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDomTreeUpdater.cpp286 if (isLazy()) in applyUpdatesPermissive()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp66 assert(Impl.Decls.isLazy() && "getFromExternalSource for non-lazy set"); in getFromExternalSource()