clang 20.0.0git
|
Defines the interface for synch scope model. More...
#include "clang/Basic/SyncScope.h"
Public Member Functions | |
virtual | ~AtomicScopeModel () |
virtual SyncScope | map (unsigned S) const =0 |
Maps language specific synch scope values to internal SyncScope enum. | |
virtual bool | isValid (unsigned S) const =0 |
Check if the compile-time constant synch scope value is valid. | |
virtual ArrayRef< unsigned > | getRuntimeValues () const =0 |
Get all possible synch scope values that might be encountered at runtime for the current language. | |
virtual unsigned | getFallBackValue () const =0 |
If atomic builtin function is called with invalid synch scope value at runtime, it will fall back to a valid synch scope value returned by this function. | |
Static Public Member Functions | |
static std::unique_ptr< AtomicScopeModel > | create (AtomicScopeModelKind K) |
Create an atomic scope model by AtomicScopeModelKind. | |
Defines the interface for synch scope model.
Definition at line 98 of file SyncScope.h.
|
inlinevirtual |
Definition at line 100 of file SyncScope.h.
|
inlinestatic |
Create an atomic scope model by AtomicScopeModelKind.
Definition at line 273 of file SyncScope.h.
References clang::Generic, clang::HIP, clang::None, and clang::OpenCL.
Referenced by clang::AtomicExpr::getScopeModel().
|
pure virtual |
If atomic builtin function is called with invalid synch scope value at runtime, it will fall back to a valid synch scope value returned by this function.
Implemented in clang::AtomicScopeOpenCLModel, clang::AtomicScopeHIPModel, and clang::AtomicScopeGenericModel.
Get all possible synch scope values that might be encountered at runtime for the current language.
Implemented in clang::AtomicScopeOpenCLModel, clang::AtomicScopeHIPModel, and clang::AtomicScopeGenericModel.
Check if the compile-time constant synch scope value is valid.
Implemented in clang::AtomicScopeOpenCLModel, clang::AtomicScopeHIPModel, and clang::AtomicScopeGenericModel.
Maps language specific synch scope values to internal SyncScope enum.
Implemented in clang::AtomicScopeOpenCLModel, clang::AtomicScopeHIPModel, and clang::AtomicScopeGenericModel.