Package sootup.interceptors
Class StaticSingleAssignmentFormer
java.lang.Object
sootup.interceptors.StaticSingleAssignmentFormer
- All Implemented Interfaces:
BodyInterceptor
In Static Single Assignment Form, each variable be assigned exactly once, and every variable be
defined before it is used.
- Author:
- Zun Wang
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
interceptBody
(Body.BodyBuilder builder, View view) Takes a BodyBuilder and may apply a transformation to it, for example removing unused local variables.
-
Constructor Details
-
StaticSingleAssignmentFormer
public StaticSingleAssignmentFormer()
-
-
Method Details
-
interceptBody
Description copied from interface:BodyInterceptor
Takes a BodyBuilder and may apply a transformation to it, for example removing unused local variables.- Specified by:
interceptBody
in interfaceBodyInterceptor
-