Class AbstractDCollectionOptimizer
- All Implemented Interfaces:
IPlugin
,IDOptimizer
dexdec
(DEX decompiler) IR optimizer plugins working on a collection of IR
contexts. Those plugins can access and modify the intermediate representation of a group of
methods being decompiled. They can be used to implement a wide range of optimizations, from
trivial code clean-up to the most complex deobfuscation passes. Internally, dexdec
uses
IR optimizers to perform dead-code removal, variable substitutions, immediate propagation,
restructuring, constant folding, arithmetic operation simplifications, deobfuscations such as
control-flow unflattening, etc.
Optimizers are usually managed by master optimizers
(also called
orchestrators
). Third-party optimizer plugins can be automatically registered when
creating an orchestrator. Refer to createMasterOptimizer
.
Life-cycle information:
- plugins are reused (i.e. the performOnCollection()
method is called multiple
times)
- thread-safety:
-- Python script plugins must be thread-safe: a plugin instance may be executed by multiple
threads concurrently
-- Java plugins (including Java script plugins) are not required to be thread-safe: a plugin
instance will not be executed by multiple threads concurrently
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe list of IR method contexts available to the optimizer.Managing dex decompiler.Underlying dex code.IR global context.static final ILogger
Public logger accessible by the implementing optimizer.IR/AST operation factory reference (for convenience).IR/AST type factory reference (for convenience).Fields inherited from interface com.pnfsoftware.jeb.core.units.code.android.ir.IDOptimizer
DEOBFUSCATOR, INLINER, REORDERER
-
Constructor Summary
ConstructorsConstructorDescriptionCreate astandard
optimizer.Create an optimizer.AbstractDCollectionOptimizer
(DOptimizerType type, String name) Create an optimizer. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
void
assignLocalFields
(List<IDMethodContext> _ctxlist) This convenience method can be used to assign the object's attributes from the values of the provided IR contexts.protected void
Verify if an interruption request was made by the managing decompiler.getName()
Retrieve the plugin name.Retrieve basic information about the plugin, such as name, version, author, and organization.double
Get the optimizer priority.getTags()
Get the optimizer tags.getType()
Get the optimizer type.boolean
Determine whether this optimizer performs on a single method or an a collection of methods.boolean
Determine whether the optimizer is enabled or not.int
perform
(IDMethodContext ctx) Run the optimizer on the provided target method.abstract int
An optimizer must implement this method.final int
performOnCollection
(List<IDMethodContext> ctxlist, Map<IDMethodContext, Integer> pmcntmap) Run the optimizer on the provided collection of methods.protected void
recordMethodOptimization
(IDMethodContext ctx, int cnt) protected void
void
Reset this object's attributes.void
setEnabled
(boolean enabled) Enable or disable this optimizer.protected void
Set the optimizer name.protected void
setPriority
(double priority) Set the optimizer priority.protected void
setType
(DOptimizerType type) Set the optimizer type.Methods inherited from class com.pnfsoftware.jeb.core.AbstractPlugin
dispose, getData, setData
-
Field Details
-
logger
Public logger accessible by the implementing optimizer. Writing to the logger should be favored over writing directly tostdout
. -
tf
IR/AST type factory reference (for convenience). -
of
IR/AST operation factory reference (for convenience). -
g
IR global context. -
dex
Underlying dex code. -
decomp
Managing dex decompiler. -
ctxlist
The list of IR method contexts available to the optimizer. A collection is not a class. Those IR contexts may represent methods from multiple classes.
-
-
Constructor Details
-
AbstractDCollectionOptimizer
public AbstractDCollectionOptimizer()Create astandard
optimizer. -
AbstractDCollectionOptimizer
Create an optimizer.- Parameters:
type
-
-
AbstractDCollectionOptimizer
Create an optimizer.- Parameters:
type
-name
-
-
-
Method Details
-
checkInterrupted
protected void checkInterrupted()Verify if an interruption request was made by the managing decompiler. This method may be called when potentially length computations are performed in a loop. -
getPluginInformation
Description copied from interface:IPlugin
Retrieve basic information about the plugin, such as name, version, author, and organization.- Specified by:
getPluginInformation
in interfaceIPlugin
- Returns:
- the plugin information
-
setName
Set the optimizer name. To be used by the constructor.- Parameters:
name
- if null, a name will be auto-generated
-
getName
Description copied from interface:IDOptimizer
Retrieve the plugin name. Should be consistent with the value returned bygetPluginInformation().getName()
.- Specified by:
getName
in interfaceIDOptimizer
- Returns:
-
isCollectionOptimizer
public boolean isCollectionOptimizer()Description copied from interface:IDOptimizer
Determine whether this optimizer performs on a single method or an a collection of methods.- Specified by:
isCollectionOptimizer
in interfaceIDOptimizer
- Returns:
-
setType
Set the optimizer type. To be used by the constructor.- Parameters:
type
- if null, astandard
optimizer is assumed
-
getType
Description copied from interface:IDOptimizer
Get the optimizer type. Types are used byoptimizer orchestrators
to determine whether an optimizer should run.- Specified by:
getType
in interfaceIDOptimizer
- Returns:
-
addTag
-
removeTag
-
getTags
Description copied from interface:IDOptimizer
Get the optimizer tags. An optimizer may have 0, 1, or more tags. A tag is a non-null, non-empty string.- Specified by:
getTags
in interfaceIDOptimizer
- Returns:
- a collection of tags; may be empty (tags are optional), but never null
-
setPriority
protected void setPriority(double priority) Set the optimizer priority. To be used by the constructor.- Parameters:
priority
- the new priority (high means higher priority). When optimizers are managed and run by an orchestrator, the optimizers with a higher priority are run before those having a lower priority. The default priority is 0.
-
getPriority
public double getPriority()Description copied from interface:IDOptimizer
Get the optimizer priority. A higher value means a higher priority. Priorities are used byoptimizer orchestrators
to determine in which order optimizers should be executed.- Specified by:
getPriority
in interfaceIDOptimizer
- Returns:
- the default priority
-
setEnabled
public void setEnabled(boolean enabled) Enable or disable this optimizer. This flag is checked by amaster optimizer
.- Parameters:
enabled
-
-
isEnabled
public boolean isEnabled()Description copied from interface:IDOptimizer
Determine whether the optimizer is enabled or not. This method is used byoptimizer orchestrators
to determine whether an optimizer can be scheduled for execution.- Specified by:
isEnabled
in interfaceIDOptimizer
- Returns:
- true if this optimizer is enabled
-
performOnCollection
public final int performOnCollection(List<IDMethodContext> ctxlist, Map<IDMethodContext, Integer> pmcntmap) Description copied from interface:IDOptimizer
Run the optimizer on the provided collection of methods.For this method to be called by an
orchestrator
,IDOptimizer.isCollectionOptimizer()
must returntrue
.- Specified by:
performOnCollection
in interfaceIDOptimizer
- Parameters:
ctxlist
- a collection of method contextspmcntmap
- optional output map that will receive the per-method optimization counts- Returns:
- number of optimizations performed
-
perform
Description copied from interface:IDOptimizer
Run the optimizer on the provided target method.For this method to be called by an
orchestrator
,IDOptimizer.isCollectionOptimizer()
must returnfalse
.- Specified by:
perform
in interfaceIDOptimizer
- Parameters:
ctx
- a method context- Returns:
- number of optimizations performed
-
recordMethodOptimization
-
performOnCollection
public abstract int performOnCollection()An optimizer must implement this method. This method is called by a master optimizer to perform optimizations on the provided target contexts.- Returns:
- total count of optimizations; it is also recommended to
register per-method optimizations
-
assignLocalFields
This convenience method can be used to assign the object's attributes from the values of the provided IR contexts.- Parameters:
_ctxlist
- an IR context
-
resetLocalFields
public void resetLocalFields()Reset this object's attributes. Same asassignLocalFields(null)
.
-