Where to find the memory address of constant memory space (c[0][x])?

How do we find the starting memory address of c? For example

/0000/ IMAD.MOV.U32 R1, RZ, RZ, c[0x0][0x28] ; /* 0x00000a00ff017624 /
/
0x000fc400078e00ff */

I understand that we can get 0x28 from the immediate field, but how do we know the address of c?

Furthermore, how do we generally get the virtual address information of the code section, data section, etc?