I'm using the asm instrumentation library. Using visitVarInsn I get the index of a local variable. I want to use that index and recieve more useful information like the name of the variable and the type. do you have any idea how? thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Pick it up in the LocalVariablesSorter.visitLocalVariable method.

link|improve this answer
I have previously tried using visiLocalVariable but I want to monitor all the accesses to variables and visitLocalVariable was called only when a local variable was declared – tomer Dec 1 '10 at 13:10
Right. You'll have to maintain a map from index to variable name yourself (based on the calls to visitLocalvariable) if you want to use this in a visitor pattern. – aioobe Dec 1 '10 at 13:11
Of course. thanks. – tomer Dec 1 '10 at 13:13
thanks for your help sor far. I'm getting bad results trying to use what you suggested. I try printing a message when visiting and it's all mixed up. first, the declarations appears after the usage. second, I get various decalarations for the same index (for example 0 is at first "this", then it's "args" and so on. have any idea if I'm missing anything? – tomer Dec 5 '10 at 21:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.