Home
last modified time | relevance | path

Searched refs:FDSpecifier (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/
H A DRemoteJITUtils.cpp113 std::unique_ptr<char[]> ExecPath, FDSpecifier; in launchLocalExecutor() local
122 FDSpecifier = std::make_unique<char[]>(FDSpecifierStr.size() + 1); in launchLocalExecutor()
123 strcpy(FDSpecifier.get(), FDSpecifierStr.c_str()); in launchLocalExecutor()
126 char *const Args[] = {ExecPath.get(), FDSpecifier.get(), nullptr}; in launchLocalExecutor()
/llvm-project-15.0.7/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.cpp855 std::unique_ptr<char[]> ExecutorPath, FDSpecifier; in launchExecutor()
864 FDSpecifier = std::make_unique<char[]>(FDSpecifierStr.size() + 1); in launchExecutor()
865 strcpy(FDSpecifier.get(), FDSpecifierStr.c_str()); in launchExecutor()
868 char *const Args[] = {ExecutorPath.get(), FDSpecifier.get(), nullptr}; in launchExecutor()