Lines Matching defs:libPath
281 [](StringRef libPath) {
282 SmallString<256> absPath(libPath.begin(), libPath.end());
294 for (auto &libPath : sharedLibPaths) {
296 libPath.str().str().c_str());
302 jitDyLibPaths.push_back(libPath);
339 for (auto &libPath : jitDyLibPaths) {
340 auto mb = llvm::MemoryBuffer::getFile(libPath);
342 errs() << "Failed to create MemoryBuffer for: " << libPath
346 auto &jd = session.createBareJITDylib(std::string(libPath));
348 libPath.str().c_str(), dataLayout.getGlobalPrefix());
350 errs() << "Could not load " << libPath << ":\n " << loaded.takeError()