Hi Jianbin,
You get their meaning by
1. reading NV docs. The information is scattered all over so there's no fixed place to find it all
2. compare your CUDA source code to the output of cuobjdump, and
3. do some guess work, the names are somewhat self-explanatory
SR_ClockLo is the (lower 32 bits) scheduler clock number, which is incremented at every scheduler clock.
SR_Tid_X really is threadIdx.x
And yes, the information in that page was obtained through manual/semi-automated work
I'd be surprised if there's anything I had missed. I did get all the strings in the cuobjdump executable dumped, and checked through all the things that looked like instruction names and I think I had them all listed in the nanb page.
Regards,
Yunqing