Package | Description |
---|---|
org.objectweb.asm.commons |
Provides some useful class and method adapters.
|
org.objectweb.asm.tree |
Provides an ASM visitor that constructs a tree representation of the
classes it visits.
|
org.objectweb.asm.tree.analysis |
Provides a framework for static code analysis based on the asm.tree package.
|
org.objectweb.asm.util |
Provides ASM visitors that can be useful for programming and
debugging purposes.
|
Modifier and Type | Class and Description |
---|---|
class |
JSRInlinerAdapter
A
MethodVisitor that removes JSR instructions and inlines the
referenced subroutines. |
class |
TryCatchBlockSorter
A
MethodVisitor adapter to sort the exception handlers. |
Modifier and Type | Field and Description |
---|---|
java.util.List<MethodNode> |
ClassNode.methods
The methods of this class.
|
Modifier and Type | Method and Description |
---|---|
Frame<V>[] |
Analyzer.analyze(java.lang.String owner,
MethodNode method)
Analyzes the given method.
|
private Frame<V> |
Analyzer.computeInitialFrame(java.lang.String owner,
MethodNode method)
Computes the initial execution stack frame of the given method.
|
protected void |
Analyzer.init(java.lang.String owner,
MethodNode method)
Initializes this analyzer.
|
Modifier and Type | Method and Description |
---|---|
(package private) static void |
CheckClassAdapter.printAnalyzerResult(MethodNode method,
Analyzer<BasicValue> analyzer,
java.io.PrintWriter printWriter) |