Home
last modified time | relevance | path

Searched refs:DependentLibraries (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h158 Range<Str> DependentLibraries; member
243 ArrayRef<storage::Str> DependentLibraries; variable
264 DependentLibraries = range(header().DependentLibraries); in Reader()
303 Specifiers.reserve(DependentLibraries.size()); in getDependentLibraries()
304 for (auto S : DependentLibraries) { in getDependentLibraries()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DIRSymtab.cpp101 std::vector<storage::Str> DependentLibraries; member
176 DependentLibraries.emplace_back(Specifier); in addModule()
365 writeRange(Hdr.DependentLibraries, DependentLibraries); in build()
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h126 std::vector<StringRef> DependentLibraries; variable
168 ArrayRef<StringRef> getDependentLibraries() const { return DependentLibraries; } in getDependentLibraries()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp102 static bool DependentLibraries; variable
218 opts::DependentLibraries = Args.hasArg(OPT_dependent_libraries); in parseOptions()
456 if (opts::DependentLibraries) in dumpObject()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h269 std::vector<std::string> DependentLibraries; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h217 DependentLibraries, enumerator
525 DependentLibrariesSection() : Section(ChunkKind::DependentLibraries) {} in DependentLibrariesSection()
532 return S->Kind == ChunkKind::DependentLibraries; in classof()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DModuleBuilder.cpp168 for (auto &&Lib : CodeGenOpts.DependentLibraries) in Initialize()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp326 if (NamedMDNode *DependentLibraries = M.getNamedMetadata("llvm.dependent-libraries")) { in emitModuleMetadata() local
332 for (const auto *Operand : DependentLibraries->operands()) { in emitModuleMetadata()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp550 File->DependentLibraries = FOrErr->TheReader.getDependentLibraries(); in create()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td7516 MarshallingInfoStringVector<CodeGenOpts<"DependentLibraries">>;