diff options
| author | sspenst <[email protected]> | 2016-07-04 16:25:11 -0700 |
|---|---|---|
| committer | sspenst <[email protected]> | 2016-07-04 16:25:11 -0700 |
| commit | 91b2afe09dbeb0fa1c5eb57cd4b416a5eb24bf60 (patch) | |
| tree | 7e9023a8f2c9f884234f02b8e717cc10d99e42c6 /src/cuda-sim/ptx.l | |
| parent | 2683b8bd7ba9950e0aa174915ef9ff64e0a20421 (diff) | |
Initial SST recognition from PTX parser
Diffstat (limited to 'src/cuda-sim/ptx.l')
| -rw-r--r-- | src/cuda-sim/ptx.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cuda-sim/ptx.l b/src/cuda-sim/ptx.l index 88ccf6a..1ac047c 100644 --- a/src/cuda-sim/ptx.l +++ b/src/cuda-sim/ptx.l @@ -120,6 +120,7 @@ shr TC; ptx_lval.int_value = SHR_OP; return OPCODE; sin TC; ptx_lval.int_value = SIN_OP; return OPCODE; slct TC; ptx_lval.int_value = SLCT_OP; return OPCODE; sqrt TC; ptx_lval.int_value = SQRT_OP; return OPCODE; +sst TC; ptx_lval.int_value = SST_OP; return OPCODE; ssy TC; ptx_lval.int_value = SSY_OP; return OPCODE; st TC; ptx_lval.int_value = ST_OP; return OPCODE; st.volatile TC; ptx_lval.int_value = ST_OP; return OPCODE; |
