summaryrefslogtreecommitdiff
path: root/src/cuda-sim/opcodes.def
diff options
context:
space:
mode:
authorWilson Fung <[email protected]>2012-07-05 07:33:54 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:47:33 -0700
commit6f99ffb9b171495df7ef0725f8a8cbffb8d9591c (patch)
tree2915c2e1da7dbac024fcb5da6f845f6d47092629 /src/cuda-sim/opcodes.def
parent3d2d74e5e876e10c207756fa9b3b7508a6a92f8a (diff)
Adding the madp instruction, which does multiply add with carry-in. Still need to modify carry and overflow flags.
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 13317]
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 adeea86..46e6d94 100644
--- a/src/cuda-sim/opcodes.def
+++ b/src/cuda-sim/opcodes.def
@@ -68,6 +68,7 @@ OP_DEF(LDU_OP,ldu_impl,"ldu",1,5)
OP_DEF(LG2_OP,lg2_impl,"lg2",1,4)
OP_DEF(MAD24_OP,mad24_impl,"mad24",1,2)
OP_DEF(MAD_OP,mad_impl,"mad",1,2)
+OP_DEF(MADP_OP,mad_impl,"mad",1,2)
OP_DEF(MAX_OP,max_impl,"max",1,1)
OP_DEF(MEMBAR_OP,membar_impl,"membar",1,3)
OP_DEF(MIN_OP,min_impl,"min",1,1)