From e1a754d8e194c1cf91d833fc73ec20f96104091f Mon Sep 17 00:00:00 2001 From: Jimmy Kwa Date: Wed, 15 Dec 2010 13:35:58 -0800 Subject: Added next instruction type to ptxplus, ".ff64". It's the same as ".f64" except it reads and stores from two adjacent registers instead of a single 64 bit register. ".ff64" instructions are now printed in decuda_to_ptxplus. Support in the simulator for ".ff64" has been added but it is untested. [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 8278] --- src/cuda-sim/ptx.l | 1 + 1 file changed, 1 insertion(+) (limited to 'src/cuda-sim/ptx.l') diff --git a/src/cuda-sim/ptx.l b/src/cuda-sim/ptx.l index d54530d..527c625 100644 --- a/src/cuda-sim/ptx.l +++ b/src/cuda-sim/ptx.l @@ -257,6 +257,7 @@ breakaddr TC; ptx_lval.int_value = BREAKADDR_OP; return OPCODE; \.f16 TC; return F16_TYPE; \.f32 TC; return F32_TYPE; \.f64 TC; return F64_TYPE; +\.ff64 TC; return FF64_TYPE; \.b8 TC; return B8_TYPE; \.b16 TC; return B16_TYPE; \.b32 TC; return B32_TYPE; -- cgit v1.3