HomeSort by: relevance | last modified time | path
    Searched refs:Dylib (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
TargetProcessControl.cpp 59 auto Dylib = std::make_unique<sys::DynamicLibrary>(
61 if (!Dylib->isValid())
63 DynamicLibraries.push_back(std::move(Dylib));
72 auto *Dylib = jitTargetAddressToPointer<sys::DynamicLibrary *>(Elem.Handle);
75 return DL.get() == Dylib;
84 void *Addr = Dylib->getAddressOfSymbol(Tmp.c_str());
ExecutionUtils.cpp 222 sys::DynamicLibrary Dylib, char GlobalPrefix, SymbolPredicate Allow)
223 : Dylib(std::move(Dylib)), Allow(std::move(Allow)),
258 if (void *Addr = Dylib.getAddressOfSymbol(Tmp.c_str())) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
ExecutionUtils.h 228 DynamicLibrarySearchGenerator(sys::DynamicLibrary Dylib, char GlobalPrefix,
251 sys::DynamicLibrary Dylib;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 79 Dylibs("dylib",
349 for (const std::string &Dylib : Dylibs) {
350 if (!sys::fs::is_regular_file(Dylib))
351 report_fatal_error("Dylib not found: '" + Dylib + "'.");
353 if (sys::DynamicLibrary::LoadLibraryPermanently(Dylib.c_str(), &ErrMsg))
354 report_fatal_error("Error loading '" + Dylib + "': " + ErrMsg);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
llvm-jitlink.cpp 1104 for (const auto &Dylib : Dylibs) {
1105 auto G = orc::TPCDynamicLibrarySearchGenerator::Load(*S.TPC, Dylib.c_str());
1143 // Set every dylib to link against every other, in command line order.
1218 dbgs() << "Dylib search order is [ ";
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOObjectFile.cpp 739 if (D.dylib.name < sizeof(MachO::dylib_command))
743 if (D.dylib.name >= D.cmdsize)
751 for (i = D.dylib.name; i < D.cmdsize; i++)
2300 // libFoo.A.dylib
2301 // libFoo.dylib
2304 // libFoo_profile.A.dylib
2305 // libFoo_profile.dylib
2308 // filenames guessLibraryShortName() cannot reliably separate a dylib's short
2324 StringRef Foo, F, DotFramework, V, Dylib, Lib, Dot, Qtx;
2387 Dylib = Name.slice(a, Name.npos)
    [all...]

Completed in 81 milliseconds