Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DThreadPool.h67 auto Task = in async() local
69 return async(std::move(Task)); in async()
75 auto Task = in async() local
77 return async(Group, std::move(Task)); in async()
121 createTaskAndFuture(std::function<ResTy()> Task) { in createTaskAndFuture() argument
126 [Promise = std::move(Promise), Task]() { Promise->set_value(Task()); }, in createTaskAndFuture()
130 createTaskAndFuture(std::function<void()> Task) { in createTaskAndFuture() argument
134 return {[Promise = std::move(Promise), Task]() { in createTaskAndFuture()
135 Task(); in createTaskAndFuture()
148 std::shared_future<ResTy> asyncImpl(std::function<ResTy()> Task, in asyncImpl() argument
[all …]
H A DCaching.h42 unsigned Task, const Twine &ModuleName)>;
58 unsigned Task, StringRef Key, const Twine &ModuleName)>;
63 using AddBufferFn = std::function<void(unsigned Task, const Twine &ModuleName,
75 AddBufferFn AddBuffer = [](size_t Task, const Twine &ModuleName,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DCaching.cpp40 return [=](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()
138 AddBuffer(Task, ModuleName, std::move(*MBOrErr)); in localCache()
142 return [=](size_t Task, const Twine &ModuleName) in localCache()
167 Task); in localCache()
H A DThreadPool.cpp63 std::function<void()> Task; in processTasks() local
86 Task = std::move(Tasks.front().first); in processTasks()
101 Task(); in processTasks()
205 auto Task = std::move(Tasks.front().first); in wait() local
207 Task(); in wait()
H A DParallel.cpp119 auto Task = std::move(WorkStack.back()); in work() local
122 Task(); in work()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DTaskDispatch.h34 class Task : public RTTIExtends<Task, RTTIRoot> {
38 virtual ~Task() = default;
51 class GenericNamedTask : public RTTIExtends<GenericNamedTask, Task> {
100 virtual void dispatch(std::unique_ptr<Task> T) = 0;
109 void dispatch(std::unique_ptr<Task> T) override;
117 void dispatch(std::unique_ptr<Task> T) override;
H A DCore.h1352 class MaterializationTask : public RTTIExtends<MaterializationTask, Task> {
1370 class LookupTask : public RTTIExtends<LookupTask, Task> {
1399 using DispatchTaskFunction = unique_function<void(std::unique_ptr<Task> T)>;
1600 void dispatchTask(std::unique_ptr<Task> T) { in dispatchTask()
1712 static void runOnCurrentThread(std::unique_ptr<Task> T) { T->run(); } in runOnCurrentThread()
1785 void dumpDispatchInfo(Task &T);
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DTaskDispatch.cpp14 char Task::ID = 0;
18 void Task::anchor() {} in anchor()
21 void InPlaceTaskDispatcher::dispatch(std::unique_ptr<Task> T) { T->run(); } in dispatch()
26 void DynamicThreadPoolTaskDispatcher::dispatch(std::unique_ptr<Task> T) { in dispatch()
H A DLLJIT.cpp977 ES->setDispatchTask([this](std::unique_ptr<Task> T) { in LLJIT()
983 std::unique_ptr<Task> T(UnownedT); in LLJIT()
/freebsd-14.2/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp105 Hook = [=](unsigned Task, const Module &M) { in addSaveTemps() argument
108 if (LinkerHook && !LinkerHook(Task, M)) in addSaveTemps()
117 if (Task != (unsigned)-1) in addSaveTemps()
118 PathPrefix += utostr(Task) + "."; in addSaveTemps()
391 sys::path::append(DwoFile, std::to_string(Task) + ".dwo"); in codegen()
405 AddStream(Task, Mod.getModuleIdentifier()); in codegen()
567 Task); in thinBackend()
578 codegen(Conf, TM.get(), AddStream, Task, Mod, CombinedIndex); in thinBackend()
588 if (!opt(Conf, TM, Task, Mod, /*IsThinLTO=*/true, in thinBackend()
593 codegen(Conf, TM, AddStream, Task, Mod, CombinedIndex); in thinBackend()
[all …]
H A DLTO.cpp1377 unsigned Task, BitcodeModule BM,
1443 AddStreamFn AddStream, FileCache Cache, unsigned Task, BitcodeModule BM, in runThinLTOBackendThread() argument
1456 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex, in runThinLTOBackendThread()
1479 Expected<AddStreamFn> CacheAddStreamOrErr = Cache(Task, Key, ModuleID); in runThinLTOBackendThread()
1490 unsigned Task, BitcodeModule BM, in start() argument
1511 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList, in start()
1598 unsigned Task, BitcodeModule BM, in start() argument
H A DLTOCodeGenerator.cpp315 [&](size_t Task, in compileOptimizedToFile()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTOBackend.h37 bool opt(const Config &Conf, TargetMachine *TM, unsigned Task, Module &Mod,
54 Error thinBackend(const Config &C, unsigned Task, AddStreamFn AddStream,
H A DConfig.h222 using ModuleHookFn = std::function<bool(unsigned Task, const Module &)>;
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp416 [&](size_t Task, in run()
418 std::string Path = OutputFilename + "." + utostr(Task); in run()
426 auto AddBuffer = [&](size_t Task, const Twine &ModuleName, in run() argument
428 *AddStream(Task, ModuleName)->OS << MB->getBuffer(); in run()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Debuginfod/
H A DDebuginfod.cpp265 unsigned Task = 0; in getCachedOrDownloadArtifact() local
266 Expected<AddStreamFn> CacheAddStreamOrErr = Cache(Task, UniqueKey, ""); in getCachedOrDownloadArtifact()
295 [&]() { return CacheAddStream(Task, ""); }, Client); in getCachedOrDownloadArtifact()
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp464 FastDivInsertionTask Task(I, BypassWidths); in bypassSlowDivision() local
465 if (Value *Replacement = Task.getReplacement(PerBBDivCache)) { in bypassSlowDivision()
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp1195 auto AddStream = [&](size_t Task, const Twine &ModuleName) { in runThinLTOBackend() argument
1250 Conf.PreCodeGenModuleHook = [](size_t Task, const llvm::Module &Mod) { in runThinLTOBackend() argument
1255 Conf.PreCodeGenModuleHook = [&](size_t Task, const llvm::Module &Mod) { in runThinLTOBackend() argument
1261 Conf.PreCodeGenModuleHook = [&](size_t Task, const llvm::Module &Mod) { in runThinLTOBackend() argument
/freebsd-14.2/contrib/wpa/wpa_supplicant/doc/docbook/
H A Dwpa_background.sgml21 most networks that require some kind of security. Task group I
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp1100 [&](size_t Task, in main()
1104 PartFilename += "." + utostr(Task); in main()
/freebsd-14.2/contrib/wpa/hostapd/
H A DREADME231 networks that require some kind of security. Task group I (Security)
/freebsd-14.2/sys/dev/aic7xxx/
H A Daic79xx.reg168 * Task management function
1263 * Task Attribute Pointer
1274 * Task Management Flags Pointer

12