Home
last modified time | relevance | path

Searched refs:Task (Results 1 – 25 of 43) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DTaskDispatch.h36 class LLVM_ABI Task : public RTTIExtends<Task, RTTIRoot> {
40 virtual ~Task() = default;
53 class GenericNamedTask : public RTTIExtends<GenericNamedTask, Task> {
98 class LLVM_ABI IdleTask : public RTTIExtends<IdleTask, Task> {
112 virtual void dispatch(std::unique_ptr<Task> T) = 0;
121 void dispatch(std::unique_ptr<Task> T) override;
133 void dispatch(std::unique_ptr<Task> T) override;
146 std::deque<std::unique_ptr<Task>> MaterializationTaskQueue;
147 std::deque<std::unique_ptr<Task>> IdleTaskQueue;
H A DCore.h1323 : public RTTIExtends<MaterializationTask, Task> {
1342 class LLVM_ABI LookupTask : public RTTIExtends<LookupTask, Task> {
1564 void dispatchTask(std::unique_ptr<Task> T) { in dispatchTask()
1821 void dumpDispatchInfo(Task &T);
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DThreadPool.h53 virtual void asyncEnqueue(std::function<void()> Task,
80 auto Task = in async() local
82 return async(std::move(Task)); in async()
88 auto Task = in async() local
90 return async(Group, std::move(Task)); in async()
112 std::shared_future<ResTy> asyncImpl(std::function<ResTy()> Task, in asyncImpl() argument
114 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl()
166 void asyncEnqueue(std::function<void()> Task, in asyncEnqueue() argument
175 Tasks.emplace_back(std::make_pair(std::move(Task), Group)); in asyncEnqueue()
246 void asyncEnqueue(std::function<void()> Task, in asyncEnqueue() argument
[all …]
H A DCaching.h60 unsigned Task, const Twine &ModuleName)>;
67 unsigned Task, StringRef Key, const Twine &ModuleName)>;
90 Expected<AddStreamFn> operator()(unsigned Task, StringRef Key, in operator()
93 return CacheFunction(Task, Key, ModuleName); in operator()
108 using AddBufferFn = std::function<void(unsigned Task, const Twine &ModuleName,
120 AddBufferFn AddBuffer = [](size_t Task, const Twine &ModuleName,
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCaching.cpp40 auto Func = [=](unsigned Task, StringRef Key, in localCache()
58 AddBuffer(Task, ModuleName, std::move(*MBOrErr)); in localCache()
82 unsigned Task; in localCache() member
86 std::string ModuleName, unsigned Task) in localCache()
89 ModuleName(ModuleName), Task(Task) {} in localCache()
142 AddBuffer(Task, ModuleName, std::move(*MBOrErr)); in localCache()
147 return [=](size_t Task, const Twine &ModuleName) in localCache()
172 Task); in localCache()
H A DThreadPool.cpp62 std::function<void()> Task; in processTasks() local
85 Task = std::move(Tasks.front().first); in processTasks()
100 Task(); in processTasks()
203 auto Task = std::move(Tasks.front().first); in wait() local
205 Task(); in wait()
H A DParallel.cpp119 auto Task = std::move(WorkStack.back()); in work() local
122 Task(); in work()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp104 Hook = [=](unsigned Task, const Module &M) { in addSaveTemps() argument
107 if (LinkerHook && !LinkerHook(Task, M)) in addSaveTemps()
116 if (Task != (unsigned)-1) in addSaveTemps()
117 PathPrefix += utostr(Task) + "."; in addSaveTemps()
365 bool lto::opt(const Config &Conf, TargetMachine *TM, unsigned Task, Module &Mod, in opt() argument
396 return !Conf.PostOptModuleHook || Conf.PostOptModuleHook(Task, Mod); in opt()
400 AddStreamFn AddStream, unsigned Task, Module &Mod, in codegen() argument
402 if (Conf.PreCodeGenModuleHook && !Conf.PreCodeGenModuleHook(Task, Mod)) in codegen()
420 sys::path::append(DwoFile, std::to_string(Task) + ".dwo"); in codegen()
434 AddStream(Task, Mod.getModuleIdentifier()); in codegen()
[all …]
H A DLTO.cpp1494 AddStreamFn AddStream, FileCache Cache, unsigned Task, BitcodeModule BM, in runThinLTOBackendThread() argument
1507 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex, in runThinLTOBackendThread()
1530 Expected<AddStreamFn> CacheAddStreamOrErr = Cache(Task, Key, ModuleID); in runThinLTOBackendThread()
1541 unsigned Task, BitcodeModule BM, in start() argument
1562 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList, in start()
1607 AddStreamFn CGAddStream, FileCache CGCache, unsigned Task, in runThinLTOBackendThread() argument
1621 return thinBackend(Conf, Task, CGAddStream, **MOrErr, CombinedIndex, in runThinLTOBackendThread()
1649 CGCache(Task, CGKey, ModuleID); in runThinLTOBackendThread()
1657 IRCache(Task, IRKey, ModuleID); in runThinLTOBackendThread()
1703 AddStreamFn AddStream, FileCache Cache, unsigned Task, BitcodeModule BM, in runThinLTOBackendThread() argument
[all …]
H A DLTOCodeGenerator.cpp301 [&](size_t Task, in compileOptimizedToFile()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DTaskDispatch.cpp16 char Task::ID = 0;
22 void Task::anchor() {} in anchor()
27 void InPlaceTaskDispatcher::dispatch(std::unique_ptr<Task> T) { T->run(); } in dispatch()
32 void DynamicThreadPoolTaskDispatcher::dispatch(std::unique_ptr<Task> T) { in dispatch()
/freebsd/contrib/llvm-project/llvm/lib/CGData/
H A DCodeGenData.cpp222 void saveModuleForTwoRounds(const Module &TheModule, unsigned Task, in saveModuleForTwoRounds() argument
225 << " in Task " << Task << "\n"); in saveModuleForTwoRounds()
227 AddStream(Task, TheModule.getModuleIdentifier()); in saveModuleForTwoRounds()
240 unsigned Task, in loadModuleForTwoRounds() argument
244 << " in Task " << Task << "\n"); in loadModuleForTwoRounds()
246 IRFiles[Task], "in-memory IR file", /*RequiresNullTerminator=*/false); in loadModuleForTwoRounds()
251 Twine(Task) + "\n"); in loadModuleForTwoRounds()
/freebsd/contrib/llvm-project/llvm/include/llvm/CGData/
H A DCodeGenData.h213 AddStream = [&](size_t Task, const Twine &ModuleName) { in StreamCacheData()
215 std::make_unique<raw_svector_ostream>(Outputs[Task])); in StreamCacheData()
221 [&](size_t Task, const Twine &ModuleName, in StreamCacheData()
223 Files[Task] = std::move(MB); in StreamCacheData()
249 LLVM_ABI void saveModuleForTwoRounds(const Module &TheModule, unsigned Task,
259 loadModuleForTwoRounds(BitcodeModule &OrigModule, unsigned Task,
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTOBackend.h38 LLVM_ABI bool opt(const Config &Conf, TargetMachine *TM, unsigned Task,
60 thinBackend(const Config &C, unsigned Task, AddStreamFn AddStream, Module &M,
H A DConfig.h225 using ModuleHookFn = std::function<bool(unsigned Task, const Module &)>;
H A DLTO.h235 unsigned Task, BitcodeModule BM,
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp468 [&](size_t Task, in run()
470 std::string Path = OutputFilename + "." + utostr(Task); in run()
478 auto AddBuffer = [&](size_t Task, const Twine &ModuleName, in run() argument
480 auto Stream = AddStream(Task, ModuleName); in run()
/freebsd/contrib/llvm-project/llvm/lib/Debuginfod/
H A DDebuginfod.cpp275 unsigned Task = 0; in getCachedOrDownloadArtifact() local
276 Expected<AddStreamFn> CacheAddStreamOrErr = Cache(Task, UniqueKey, ""); in getCachedOrDownloadArtifact()
305 [&]() { return CacheAddStream(Task, ""); }, Client); in getCachedOrDownloadArtifact()
/freebsd/sys/dev/mps/mpi/
H A Dmpi2_history.txt242 * 12-18-07 02.00.02 Modified Task Management Target Reset Method defines.
243 * 02-29-08 02.00.03 Added Query Task Set and Query Unit Attention.
247 * Control field Task Attribute flags.
255 * both SCSI IO Error Reply and SCSI Task Management Reply.
352 * 05-12-10 02.00.15 Marked Task Set Full Event as obsolete.
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp463 FastDivInsertionTask Task(I, BypassWidths); in bypassSlowDivision() local
464 if (Value *Replacement = Task.getReplacement(PerBBDivCache)) { in bypassSlowDivision()
/freebsd/sys/dev/mpr/mpi/
H A Dmpi2_history.txt387 * 12-18-07 02.00.02 Modified Task Management Target Reset Method defines.
388 * 02-29-08 02.00.03 Added Query Task Set and Query Unit Attention.
392 * Control field Task Attribute flags.
400 * both SCSI IO Error Reply and SCSI Task Management Reply.
407 * 02-06-12 02.00.13 Added alternate defines for Task Priority / Command
514 * 05-12-10 02.00.15 Marked Task Set Full Event as obsolete.
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp1314 auto AddStream = [&](size_t Task, const Twine &ModuleName) { in runThinLTOBackend() argument
1370 Conf.PreCodeGenModuleHook = [](size_t Task, const llvm::Module &Mod) { in runThinLTOBackend() argument
1375 Conf.PreCodeGenModuleHook = [&](size_t Task, const llvm::Module &Mod) { in runThinLTOBackend() argument
1381 Conf.PreCodeGenModuleHook = [&](size_t Task, const llvm::Module &Mod) { in runThinLTOBackend() argument
/freebsd/contrib/wpa/wpa_supplicant/doc/docbook/
H A Dwpa_background.sgml21 most networks that require some kind of security. Task group I
/freebsd/share/misc/
H A Dusb_hid_usages778 0x18F AL Task/Project Manager
796 0x1A1 AL Process/Task Manager
798 0x1A3 AL Next Task/Application
799 0x1A4 AL Previous Task/Application
800 0x1A5 AL Preemptive Halt Task/Application
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp1160 [&](size_t Task, in main()
1164 PartFilename += "." + utostr(Task); in main()

12