How can I get to know variables defined in the methods of a jimple file correspond to what variables in a java class file?

StackOverflow https://stackoverflow.com/questions/11806609

  •  24-06-2021
  •  | 
  •  

質問

Soot transforms a java class file into a jimple file with local variables renamed. Now I want to know the scheme based on which Soot does that.

役に立ちましたか?

解決

Judging by code in the Soot repository here, it appears to use the original local names while using names prefixed with $ and a single-character reflecting the type for the generated ones.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top