| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | TaskDispatch.h | 36 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 D | Core.h | 1323 : 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 D | ThreadPool.h | 53 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 D | Caching.h | 60 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 D | Caching.cpp | 40 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 D | ThreadPool.cpp | 62 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 D | Parallel.cpp | 119 auto Task = std::move(WorkStack.back()); in work() local 122 Task(); in work()
|
| /freebsd/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | LTOBackend.cpp | 104 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 D | LTO.cpp | 1494 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 D | LTOCodeGenerator.cpp | 301 [&](size_t Task, in compileOptimizedToFile()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | TaskDispatch.cpp | 16 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 D | CodeGenData.cpp | 222 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 D | CodeGenData.h | 213 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 D | LTOBackend.h | 38 LLVM_ABI bool opt(const Config &Conf, TargetMachine *TM, unsigned Task, 60 thinBackend(const Config &C, unsigned Task, AddStreamFn AddStream, Module &M,
|
| H A D | Config.h | 225 using ModuleHookFn = std::function<bool(unsigned Task, const Module &)>;
|
| H A D | LTO.h | 235 unsigned Task, BitcodeModule BM,
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-lto2/ |
| H A D | llvm-lto2.cpp | 468 [&](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 D | Debuginfod.cpp | 275 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 D | mpi2_history.txt | 242 * 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 D | BypassSlowDivision.cpp | 463 FastDivInsertionTask Task(I, BypassWidths); in bypassSlowDivision() local 464 if (Value *Replacement = Task.getReplacement(PerBBDivCache)) { in bypassSlowDivision()
|
| /freebsd/sys/dev/mpr/mpi/ |
| H A D | mpi2_history.txt | 387 * 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 D | BackendUtil.cpp | 1314 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 D | wpa_background.sgml | 21 most networks that require some kind of security. Task group I
|
| /freebsd/share/misc/ |
| H A D | usb_hid_usages | 778 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 D | llvm-lto.cpp | 1160 [&](size_t Task, in main() 1164 PartFilename += "." + utostr(Task); in main()
|