org.objectweb.asm.tree

Class InsnList

public class InsnList extends Object

A doubly linked list of AbstractInsnNode objects. This implementation is not thread safe.
Field Summary
static booleancheck
Indicates if preconditions of methods of this class must be checked.
Method Summary
voidaccept(MethodVisitor mv)
Makes the given visitor visit all of the instructions in this list.
voidadd(AbstractInsnNode insn)
Adds the given instruction to the end of this list.
voidadd(InsnList insns)
Adds the given instructions to the end of this list.
voidclear()
Removes all of the instructions of this list.
booleancontains(AbstractInsnNode insn)
Returns true if the given instruction belongs to this list.
AbstractInsnNodeget(int index)
Returns the instruction whose index is given.
AbstractInsnNodegetFirst()
Returns the first instruction in this list.
AbstractInsnNodegetLast()
Returns the last instruction in this list.
intindexOf(AbstractInsnNode insn)
Returns the index of the given instruction in this list.
voidinsert(AbstractInsnNode insn)
Inserts the given instruction at the begining of this list.
voidinsert(InsnList insns)
Inserts the given instructions at the begining of this list.
voidinsert(AbstractInsnNode location, AbstractInsnNode insn)
Inserts the given instruction after the specified instruction.
voidinsert(AbstractInsnNode location, InsnList insns)
Inserts the given instructions after the specified instruction.
voidinsertBefore(AbstractInsnNode location, AbstractInsnNode insn)
Inserts the given instruction before the specified instruction.
voidinsertBefore(AbstractInsnNode location, InsnList insns)
Inserts the given instructions before the specified instruction.
ListIteratoriterator()
Returns an iterator over the instructions in this list.
ListIteratoriterator(int index)
Returns an iterator over the instructions in this list.
voidremove(AbstractInsnNode insn)
Removes the given instruction from this list.
voidresetLabels()
Reset all labels in the instruction list.
voidset(AbstractInsnNode location, AbstractInsnNode insn)
Replaces an instruction of this list with another instruction.
intsize()
Returns the number of instructions in this list.
AbstractInsnNode[]toArray()
Returns an array containing all of the instructions in this list.

Field Detail

check

public static boolean check
Indicates if preconditions of methods of this class must be checked. Checking preconditions causes the indexOf, set, InsnList, InsnList, remove and InsnList methods to execute in O(n) time instead of O(1).

Method Detail

accept

public void accept(MethodVisitor mv)
Makes the given visitor visit all of the instructions in this list.

Parameters: mv the method visitor that must visit the instructions.

add

public void add(AbstractInsnNode insn)
Adds the given instruction to the end of this list.

Parameters: insn an instruction, which must not belong to any InsnList.

Throws: IllegalArgumentException if check is true, and if insn belongs to an instruction list.

add

public void add(InsnList insns)
Adds the given instructions to the end of this list.

Parameters: insns an instruction list, which is cleared during the process.

Throws: IllegalArgumentException if check is true, and if insn == this.

clear

public void clear()
Removes all of the instructions of this list.

contains

public boolean contains(AbstractInsnNode insn)
Returns true if the given instruction belongs to this list. This method always scans the instructions of this list until it finds the given instruction or reaches the end of the list.

Parameters: insn an instruction.

Returns: true if the given instruction belongs to this list.

get

public AbstractInsnNode get(int index)
Returns the instruction whose index is given. This method builds a cache of the instructions in this list to avoid scanning the whole list each time it is called. Once the cache is built, this method run in constant time. This cache is invalidated by all the methods that modify the list.

Parameters: index the index of the instruction that must be returned.

Returns: the instruction whose index is given.

Throws: IndexOutOfBoundsException if (index < 0 || index >= size()).

getFirst

public AbstractInsnNode getFirst()
Returns the first instruction in this list.

Returns: the first instruction in this list, or null if the list is empty.

getLast

public AbstractInsnNode getLast()
Returns the last instruction in this list.

Returns: the last instruction in this list, or null if the list is empty.

indexOf

public int indexOf(AbstractInsnNode insn)
Returns the index of the given instruction in this list. This method builds a cache of the instruction indexes to avoid scanning the whole list each time it is called. Once the cache is built, this method run in constant time. The cache is invalidated by all the methods that modify the list.

Parameters: insn an instruction of this list.

Returns: the index of the given instruction in this list. The result of this method is undefined if the given instruction does not belong to this list. Use contains to test if an instruction belongs to an instruction list or not.

Throws: IllegalArgumentException if check is true and if insn does not belong to this list.

insert

public void insert(AbstractInsnNode insn)
Inserts the given instruction at the begining of this list.

Parameters: insn an instruction, which must not belong to any InsnList.

Throws: IllegalArgumentException if check is true, and if insn belongs to an instruction list.

insert

public void insert(InsnList insns)
Inserts the given instructions at the begining of this list.

Parameters: insns an instruction list, which is cleared during the process.

Throws: IllegalArgumentException if check is true, and if insn == this.

insert

public void insert(AbstractInsnNode location, AbstractInsnNode insn)
Inserts the given instruction after the specified instruction.

Parameters: location an instruction of this list after which insn must be inserted. insn the instruction to be inserted, which must not belong to any InsnList.

Throws: IllegalArgumentException if check is true, and if i does not belong to this list or if insn belongs to an instruction list.

insert

public void insert(AbstractInsnNode location, InsnList insns)
Inserts the given instructions after the specified instruction.

Parameters: location an instruction of this list after which the instructions must be inserted. insns the instruction list to be inserted, which is cleared during the process.

Throws: IllegalArgumentException if check is true, and if i does not belong to this list or if insns == this.

insertBefore

public void insertBefore(AbstractInsnNode location, AbstractInsnNode insn)
Inserts the given instruction before the specified instruction.

Parameters: location an instruction of this list before which insn must be inserted. insn the instruction to be inserted, which must not belong to any InsnList.

Throws: IllegalArgumentException if check is true, and if i does not belong to this list or if insn belongs to an instruction list.

insertBefore

public void insertBefore(AbstractInsnNode location, InsnList insns)
Inserts the given instructions before the specified instruction.

Parameters: location an instruction of this list before which the instructions must be inserted. insns the instruction list to be inserted, which is cleared during the process.

Throws: IllegalArgumentException if check is true, and if i does not belong to this list or if insns == this.

iterator

public ListIterator iterator()
Returns an iterator over the instructions in this list.

Returns: an iterator over the instructions in this list.

iterator

public ListIterator iterator(int index)
Returns an iterator over the instructions in this list.

Returns: an iterator over the instructions in this list.

remove

public void remove(AbstractInsnNode insn)
Removes the given instruction from this list.

Parameters: insn the instruction of this list that must be removed.

Throws: IllegalArgumentException if check is true, and if insn does not belong to this list.

resetLabels

public void resetLabels()
Reset all labels in the instruction list. This method should be called before reusing same instructions list between several ClassWriters.

set

public void set(AbstractInsnNode location, AbstractInsnNode insn)
Replaces an instruction of this list with another instruction.

Parameters: location an instruction of this list. insn another instruction, which must not belong to any InsnList.

Throws: IllegalArgumentException if check is true, and if i does not belong to this list or if insn belongs to an instruction list.

size

public int size()
Returns the number of instructions in this list.

Returns: the number of instructions in this list.

toArray

public AbstractInsnNode[] toArray()
Returns an array containing all of the instructions in this list.

Returns: an array containing all of the instructions in this list.