LLVM 22.0.0git
TaskDispatch.h File Reference
#include "llvm/Config/llvm-config.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ExtensibleRTTI.h"
#include "llvm/Support/raw_ostream.h"
#include <cassert>
#include <string>

Go to the source code of this file.

Classes

class  llvm::orc::Task
 Represents an abstract task for ORC to run. More...
class  llvm::orc::GenericNamedTask
 Base class for generic tasks. More...
class  llvm::orc::GenericNamedTaskImpl< FnT >
 Generic task implementation. More...
class  llvm::orc::IdleTask
 IdleTask can be used as the basis for low-priority tasks, e.g. More...
class  llvm::orc::TaskDispatcher
 Abstract base for classes that dispatch ORC Tasks. More...
class  llvm::orc::InPlaceTaskDispatcher
 Runs all tasks on the current thread. More...

Namespaces

namespace  llvm
 This is an optimization pass for GlobalISel generic memory operations.
namespace  llvm::orc

Functions

template<typename FnT>
std::unique_ptr< GenericNamedTaskllvm::orc::makeGenericNamedTask (FnT &&Fn, std::string Desc)
 Create a generic named task from a std::string description.
template<typename FnT>
std::unique_ptr< GenericNamedTaskllvm::orc::makeGenericNamedTask (FnT &&Fn, const char *Desc=nullptr)
 Create a generic named task from a const char * description.