Valgrind uses an intermediate code representation to let us instrument binary code so that we don't have to deal with programming language level constructs. In the process of converting binary code into Valgrind's Intermediate Representation (IR) code, it shows the use of registers for operations like additions etc. There are 1024 of these that are being used. What I don't get is another type of registers called temporary registers represented as tX where X is some number. Thus, I can see this:
t28 = Add32(t26,0xFFFFFFFC:I32)
t4 = LDle:I32(t28)
t meaning a temporary register. As far as I can see, they seem to behave very similar to regular registers but am not able to figure out how they are different. Can someone tell me what a temporary register is and how it differs from a regular register?
RnorTin that example...? – Laurence Gonsalves Dec 10 '10 at 5:21