summaryrefslogtreecommitdiff
path: root/src/cuda-sim/opcodes.def
diff options
context:
space:
mode:
authorAndrew M. B. Boktor <[email protected]>2012-05-02 18:47:44 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:19:06 -0700
commit710a0b7c3ac97324f0306f4df410c20967319508 (patch)
treef48914fc76f0123dffbe579cb66e8af0cd66fb4e /src/cuda-sim/opcodes.def
parent1a87b8b9b72e49b672b01312280a273f38430c31 (diff)
Adding support in the simulator for addition with carry specified in a given predicate register (calling it addp)
Adding support in cuobjdump_to_ptxplus for IADD.CARRY* which translates to the above Now power benchmarks should work [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 12266]
Diffstat (limited to 'src/cuda-sim/opcodes.def')
-rw-r--r--src/cuda-sim/opcodes.def1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cuda-sim/opcodes.def b/src/cuda-sim/opcodes.def
index 0963fa6..adeea86 100644
--- a/src/cuda-sim/opcodes.def
+++ b/src/cuda-sim/opcodes.def
@@ -39,6 +39,7 @@ Other 10
*/
OP_DEF(ABS_OP,abs_impl,"abs",1,1)
OP_DEF(ADD_OP,add_impl,"add",1,1)
+OP_DEF(ADDP_OP,addp_impl,"addp",1,1)
OP_DEF(ADDC_OP,addc_impl,"addc",1,1)
OP_DEF(AND_OP,and_impl,"and",1,1)
OP_DEF(ANDN_OP,andn_impl,"andn",1,1)