HomeSort by: relevance | last modified time | path
    Searched defs:Executor (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Tooling/
Execution.cpp 19 ExecutorName("executor", llvm::cl::desc("The name of the executor to use."),
71 llvm::Expected<std::unique_ptr<ToolExecutor>> Executor =
73 if (!Executor) {
76 "': " + llvm::toString(Executor.takeError()) + "\n",
79 return std::move(*Executor);
82 llvm::Twine("Executor \"") + ExecutorName + "\" is not registered.",
  /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/
LLJITWithRemoteDebugging.cpp 25 // > ninja LLJITWithRemoteDebugging llvm-jitlink-executor
28 // Found out-of-process executor: bin/llvm-jitlink-executor
29 // Launched executor in subprocess: 65535
53 // Initialized LLJIT for remote executor
116 OOPExecutor("executor", cl::desc("Set the out-of-process executor"),
119 // Network address of a running executor process that we can connected through a
123 cl::desc("Connect to an out-of-process executor through a TCP socket"),
126 // Give the user a chance to connect a debugger. Once we connected the executor
    [all...]
RemoteJITUtils.cpp 154 std::string BestGuess = defaultPath(HostArgv, "llvm-jitlink-executor");
155 auto Executor = CreateLocal(BestGuess);
156 if (!Executor) {
157 consumeError(Executor.takeError());
159 formatv("Unable to find usable executor: {0}", BestGuess),
162 return Executor;
169 formatv("Specified executor invalid: {0}", ExecutablePath),
208 // Create pipes to/from the executor..
210 return make_error<StringError>("Unable to create pipe for executor",
239 "Unable to launch out-of-process executor '" + ExecutablePath + "'\n"
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Parallel.cpp 31 class Executor {
33 virtual ~Executor() = default;
36 static Executor *getDefaultExecutor();
39 /// An implementation of an Executor that runs closures on a thread pool
41 class ThreadPoolExecutor : public Executor {
120 Executor *Executor::getDefaultExecutor() {
150 // lock if all threads in the default executor are blocked. To prevent the dead
159 Executor::getDefaultExecutor()->add([&, F] {

Completed in 20 milliseconds