Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DThreadPool.h52 virtual void asyncEnqueue(std::function<void()> Task,
79 auto Task = in async() local
81 return async(std::move(Task)); in async()
87 auto Task = in async() local
89 return async(Group, std::move(Task)); in async()
111 std::shared_future<ResTy> asyncImpl(std::function<ResTy()> Task, in asyncImpl() argument
113 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl()
165 void asyncEnqueue(std::function<void()> Task, in asyncEnqueue() argument
174 Tasks.emplace_back(std::make_pair(std::move(Task), Group)); in asyncEnqueue()
245 void asyncEnqueue(std::function<void()> Task, in asyncEnqueue() 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/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DTaskDispatch.h35 class Task : public RTTIExtends<Task, RTTIRoot> {
39 virtual ~Task() = default;
52 class GenericNamedTask : public RTTIExtends<GenericNamedTask, Task> {
101 virtual void dispatch(std::unique_ptr<Task> T) = 0;
110 void dispatch(std::unique_ptr<Task> T) override;
121 void dispatch(std::unique_ptr<Task> T) override;
131 std::deque<std::unique_ptr<Task>> MaterializationTaskQueue;
H A DCore.h1400 class MaterializationTask : public RTTIExtends<MaterializationTask, Task> {
1418 class LookupTask : public RTTIExtends<LookupTask, Task> {
1639 void dispatchTask(std::unique_ptr<Task> T) { in dispatchTask()
1853 void dumpDispatchInfo(Task &T);
/freebsd/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()
41 __anon9be2c5490102(unsigned Task, StringRef Key, const Twine &ModuleName) localCache() argument
143 __anon9be2c5490302(size_t Task, const Twine &ModuleName) localCache() argument
H A DThreadPool.cpp62 std::function<void()> Task; in processTasks() local
85 Task = std::move(Tasks.front().first); in processTasks()
100 Task(); in processTasks()
204 auto Task = std::move(Tasks.front().first); in wait() local
206 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.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()
341 bool lto::opt(const Config &Conf, TargetMachine *TM, unsigned Task, Module &Mod, in opt() argument
365 return !Conf.PostOptModuleHook || Conf.PostOptModuleHook(Task, Mod); in opt()
369 AddStreamFn AddStream, unsigned Task, Module &Mod, in codegen() argument
371 if (Conf.PreCodeGenModuleHook && !Conf.PreCodeGenModuleHook(Task, Mod)) in codegen()
389 sys::path::append(DwoFile, std::to_string(Task) + ".dwo"); in codegen()
403 AddStream(Task, Mod.getModuleIdentifier()); in codegen()
[all …]
H A DLTO.cpp1389 unsigned Task, BitcodeModule BM,
1460 AddStreamFn AddStream, FileCache Cache, unsigned Task, BitcodeModule BM, in runThinLTOBackendThread() argument
1473 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex, in runThinLTOBackendThread()
1496 Expected<AddStreamFn> CacheAddStreamOrErr = Cache(Task, Key, ModuleID); in runThinLTOBackendThread()
1507 unsigned Task, BitcodeModule BM, in start() argument
1528 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList, in start()
1630 unsigned Task, BitcodeModule BM, in start() argument
H A DLTOCodeGenerator.cpp314 [&](size_t Task, in compileOptimizedToFile()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DTaskDispatch.cpp15 char Task::ID = 0;
19 void Task::anchor() {} in anchor()
22 void InPlaceTaskDispatcher::dispatch(std::unique_ptr<Task> T) { T->run(); } in dispatch()
27 void DynamicThreadPoolTaskDispatcher::dispatch(std::unique_ptr<Task> T) { in dispatch()
/freebsd/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.h219 using ModuleHookFn = std::function<bool(unsigned Task, const Module &)>;
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp438 [&](size_t Task, in run()
440 std::string Path = OutputFilename + "." + utostr(Task); in run()
448 auto AddBuffer = [&](size_t Task, const Twine &ModuleName, in run() argument
450 *AddStream(Task, ModuleName)->OS << MB->getBuffer(); in run()
/freebsd/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/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.cpp464 FastDivInsertionTask Task(I, BypassWidths); in bypassSlowDivision() local
465 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.cpp1208 auto AddStream = [&](size_t Task, const Twine &ModuleName) { in runThinLTOBackend() argument
1263 Conf.PreCodeGenModuleHook = [](size_t Task, const llvm::Module &Mod) { in runThinLTOBackend() argument
1268 Conf.PreCodeGenModuleHook = [&](size_t Task, const llvm::Module &Mod) { in runThinLTOBackend() argument
1274 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.cpp1124 [&](size_t Task, in main()
1128 PartFilename += "." + utostr(Task); in main()
/freebsd/contrib/wpa/hostapd/
H A DREADME231 networks that require some kind of security. Task group I (Security)
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DConstructDecompositionT.h896 case ReductionModifier::Task: in applyClause()
/freebsd/sys/dev/aic7xxx/
H A Daic79xx.reg168 * Task management function
1263 * Task Attribute Pointer
1274 * Task Management Flags Pointer

12