diff options
| author | gpgpu-sim <[email protected]> | 2016-09-06 06:43:14 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2016-09-06 06:43:14 -0700 |
| commit | 3e9c0b4308ad32f381dc90f7763df46fa9ba721c (patch) | |
| tree | d77c8320f986a1c64d2018a7e50d09f8e4dd6a40 /src/cuda-sim/ptx.y | |
| parent | bab2a234abfadc50cb14dadb01c10595ce6ad1ef (diff) | |
| parent | 0afe825c212560c3b473366d005a50c2568cad1a (diff) | |
Merge pull request #30 from sspenst/dev
shfl instruction implemented
Diffstat (limited to 'src/cuda-sim/ptx.y')
| -rw-r--r-- | src/cuda-sim/ptx.y | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cuda-sim/ptx.y b/src/cuda-sim/ptx.y index d81e935..e00aa4b 100644 --- a/src/cuda-sim/ptx.y +++ b/src/cuda-sim/ptx.y @@ -195,6 +195,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. %token WB_OPTION; %token WT_OPTION; %token NC_OPTION; +%token UP_OPTION; +%token DOWN_OPTION; +%token BFLY_OPTION; +%token IDX_OPTION; %type <int_value> function_decl_header %type <ptr_value> function_decl @@ -455,6 +459,10 @@ option: type_spec | WB_OPTION { add_option(WB_OPTION); } | WT_OPTION { add_option(WT_OPTION); } | NC_OPTION { add_option(NC_OPTION); } + | UP_OPTION { add_option(UP_OPTION); } + | DOWN_OPTION { add_option(DOWN_OPTION); } + | BFLY_OPTION { add_option(BFLY_OPTION); } + | IDX_OPTION { add_option(IDX_OPTION); } ; atomic_operation_spec: ATOMIC_AND { add_option(ATOMIC_AND); } |
