Lines Matching refs:NumCompileThreads
40 unsigned NumCompileThreads) { in Create() argument
42 if (NumCompileThreads == 0) { in Create()
53 NumCompileThreads)); in Create()
93 DataLayout DL, unsigned NumCompileThreads) in LLJIT() argument
101 assert(NumCompileThreads != 0 &&
110 CompileThreads = llvm::make_unique<ThreadPool>(NumCompileThreads);
148 JITTargetAddress ErrorAddr, unsigned NumCompileThreads) { in Create() argument
163 if (NumCompileThreads == 0) { in Create()
173 std::move(ES), std::move(JTMB), std::move(DL), NumCompileThreads, in Create()
199 DataLayout DL, unsigned NumCompileThreads, in LLLazyJIT() argument
202 : LLJIT(std::move(ES), std::move(JTMB), std::move(DL), NumCompileThreads), in LLLazyJIT()