|
|||||||||
| Home >> All >> org >> apache >> bcel >> verifier >> [ statics overview ] | PREV NEXT | ||||||||
A
- add(int) - Method in class org.apache.bcel.verifier.statics.IntList
- Adds an element to the list.
- add(String, int, int, Type) - Method in class org.apache.bcel.verifier.statics.LocalVariableInfo
- Adds some information about this local variable (slot).
- add(int, String, Type) - Method in class org.apache.bcel.verifier.statics.LocalVariableInfo
- Adds information about name and type for a given offset.
- add(int, String, int, int, Type) - Method in class org.apache.bcel.verifier.statics.LocalVariablesInfo
- Adds information about the local variable in slot 'slot'.
C
- CONST_Class - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- CONST_Double - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- CONST_Float - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- CONST_Integer - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- CONST_Long - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- CONST_NameAndType - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- CONST_String - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- CONST_Utf8 - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- carrier - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- checkIndex(Node, int, Class) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- code - Variable in class org.apache.bcel.verifier.statics.Pass3aVerifier
- The one and only Code object used by an instance of this class.
- constant_pool_entries_satisfy_static_constraints() - Method in class org.apache.bcel.verifier.statics.Pass2Verifier
- Ensures that the constant pool entries satisfy the static constraints as described in The Java Virtual Machine Specification, 2nd Edition.
- constraintViolated(Instruction, String) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- A utility method to always raise an exeption.
- contains(int) - Method in class org.apache.bcel.verifier.statics.IntList
- Checks if the specified int is already in the list.
- contains(int[], int) - Static method in class org.apache.bcel.verifier.statics.Pass3aVerifier
- A small utility method returning if a given int i is in the given int[] ints.
- cp - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- cp - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.FAMRAV_Visitor
- cp - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.InnerClassDetector
- cpg - Variable in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- The ConstantPoolGen instance this Visitor operates on.
- cplen - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
D
- DOUBLE_Upper - class org.apache.bcel.verifier.statics.DOUBLE_Upper.
- This class represents the upper half of a DOUBLE variable.
- DOUBLE_Upper() - Constructor for class org.apache.bcel.verifier.statics.DOUBLE_Upper
- The constructor; this class must not be instantiated from the outside.
- delayedPass2Checks() - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier
- These are the checks that could be done in pass 2 but are delayed to pass 3 for performance reasons.
- do_verify() - Method in class org.apache.bcel.verifier.statics.Pass1Verifier
- Pass-one verification basically means loading in a class file.
- do_verify() - Method in class org.apache.bcel.verifier.statics.Pass2Verifier
- Pass 2 is the pass where static properties of the class file are checked without looking into "Code" arrays of methods.
- do_verify() - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier
- Pass 3a is the verification of static constraints of JVM code (such as legal targets of branch instructions).
E
- every_class_has_an_accessible_superclass() - Method in class org.apache.bcel.verifier.statics.Pass2Verifier
- Ensures that every class has a super class and that final classes are not subclassed.
F
- field_and_method_refs_are_valid() - Method in class org.apache.bcel.verifier.statics.Pass2Verifier
- Ensures that the ConstantCP-subclassed entries of the constant pool are valid.
- field_names - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- field_names_and_desc - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- final_methods_are_not_overridden() - Method in class org.apache.bcel.verifier.statics.Pass2Verifier
- Ensures that final methods are not overridden.
G
- getJavaClass() - Method in class org.apache.bcel.verifier.statics.Pass1Verifier
- Used to load in and return the myOwner-matching JavaClass object when needed.
- getLocalVariableInfo(int) - Method in class org.apache.bcel.verifier.statics.LocalVariablesInfo
- Returns the LocalVariableInfo for the given slot.
- getLocalVariablesInfo(int) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier
- Returns a LocalVariablesInfo object containing information about the usage of the local variables in the Code attribute of the said method or null if the class file this Pass2Verifier operates on could not be pass-2-verified correctly.
- getMessages() - Method in class org.apache.bcel.verifier.statics.Pass1Verifier
- Currently this returns an empty array of String.
- getMethodNo() - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier
- Returns the method number as supplied when instantiating.
- getName(int) - Method in class org.apache.bcel.verifier.statics.LocalVariableInfo
- Returns the name of the local variable that uses this local variable slot at the given bytecode offset.
- getType(int) - Method in class org.apache.bcel.verifier.statics.LocalVariableInfo
- Returns the type of the local variable that uses this local variable slot at the given bytecode offset.
H
- hasInnerClass - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.InnerClassDetector
I
- IntList - class org.apache.bcel.verifier.statics.IntList.
- A small utility class representing a set of basic int values.
- IntList() - Constructor for class org.apache.bcel.verifier.statics.IntList
- This constructor creates an empty list.
- indexValid(Instruction, int) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- A utility method to raise an exception if the index is not a valid constant pool index.
- innerClassReferenced() - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.InnerClassDetector
- Returns if the JavaClass this InnerClassDetector is working on has an Inner Class reference in its constant pool.
- instructionList - Variable in class org.apache.bcel.verifier.statics.Pass3aVerifier
- The one and only InstructionList object used by an instance of this class.
J
- jc - Variable in class org.apache.bcel.verifier.statics.Pass1Verifier
- DON'T USE THIS EVEN PRIVATELY! USE getJavaClass() INSTEAD.
- jc - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- jc - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.InnerClassDetector
L
- LONG_Upper - class org.apache.bcel.verifier.statics.LONG_Upper.
- This class represents the upper half of a LONG variable.
- LONG_Upper() - Constructor for class org.apache.bcel.verifier.statics.LONG_Upper
- The constructor; this class must not be instantiated from the outside.
- LocalVariableInfo - class org.apache.bcel.verifier.statics.LocalVariableInfo.
- A utility class holding the information about the name and the type of a local variable in a given slot (== index).
- LocalVariableInfo() - Constructor for class org.apache.bcel.verifier.statics.LocalVariableInfo
- LocalVariablesInfo - class org.apache.bcel.verifier.statics.LocalVariablesInfo.
- A utility class holding the information about the names and the types of the local variables in a given method.
- LocalVariablesInfo(int) - Constructor for class org.apache.bcel.verifier.statics.LocalVariablesInfo
- The constructor.
- localVariableInfos - Variable in class org.apache.bcel.verifier.statics.LocalVariablesInfo
- The information about the local variables is stored here.
- localVariablesInfos - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier
- The LocalVariableInfo instances used by Pass3bVerifier.
M
- max_locals() - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Utility method to return the max_locals value of the method verified by the surrounding Pass3aVerifier instance.
- method_names_and_desc - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- method_no - Variable in class org.apache.bcel.verifier.statics.Pass3aVerifier
- The method number to verify.
- myOwner - Variable in class org.apache.bcel.verifier.statics.Pass1Verifier
- The Verifier that created this.
- myOwner - Variable in class org.apache.bcel.verifier.statics.Pass2Verifier
- The Verifier that created this.
- myOwner - Variable in class org.apache.bcel.verifier.statics.Pass3aVerifier
- The Verifier that created this.
N
- n - Variable in class org.apache.bcel.verifier.statics.StringRepresentation
- The node we ask for its string representation.
- names - Variable in class org.apache.bcel.verifier.statics.LocalVariableInfo
- The names database.
O
- objarrayequals(Object[], Object[]) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- A utility method like equals(Object) for arrays.
- org.apache.bcel.verifier.statics - package org.apache.bcel.verifier.statics
P
- Pass1Verifier - class org.apache.bcel.verifier.statics.Pass1Verifier.
- This PassVerifier verifies a class file according to pass 1 as described in The Java Virtual Machine Specification, 2nd edition.
- Pass1Verifier(Verifier) - Constructor for class org.apache.bcel.verifier.statics.Pass1Verifier
- Should only be instantiated by a Verifier.
- Pass2Verifier - class org.apache.bcel.verifier.statics.Pass2Verifier.
- This PassVerifier verifies a class file according to pass 2 as described in The Java Virtual Machine Specification, 2nd edition.
- Pass2Verifier(Verifier) - Constructor for class org.apache.bcel.verifier.statics.Pass2Verifier
- Should only be instantiated by a Verifier.
- Pass2Verifier.CPESSC_Visitor - class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor.
- A Visitor class that ensures the constant pool satisfies the static constraints.
- Pass2Verifier.CPESSC_Visitor(JavaClass) - Constructor for class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- Pass2Verifier.FAMRAV_Visitor - class org.apache.bcel.verifier.statics.Pass2Verifier.FAMRAV_Visitor.
- A Visitor class that ensures the ConstantCP-subclassed entries of the constant pool are valid.
- Pass2Verifier.FAMRAV_Visitor(JavaClass) - Constructor for class org.apache.bcel.verifier.statics.Pass2Verifier.FAMRAV_Visitor
- Pass2Verifier.InnerClassDetector - class org.apache.bcel.verifier.statics.Pass2Verifier.InnerClassDetector.
- This class serves for finding out if a given JavaClass' ConstantPool references an Inner Class.
- Pass2Verifier.InnerClassDetector(JavaClass) - Constructor for class org.apache.bcel.verifier.statics.Pass2Verifier.InnerClassDetector
- Constructs an InnerClassDetector working on the JavaClass _jc.
- Pass3aVerifier - class org.apache.bcel.verifier.statics.Pass3aVerifier.
- This PassVerifier verifies a class file according to pass 3, static part as described in The Java Virtual Machine Specification, 2nd edition.
- Pass3aVerifier(Verifier, int) - Constructor for class org.apache.bcel.verifier.statics.Pass3aVerifier
- Should only be instantiated by a Verifier.
- Pass3aVerifier.InstOperandConstraintVisitor - class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor.
- This visitor class does the actual checking for the instruction operand's constraints.
- Pass3aVerifier.InstOperandConstraintVisitor(ConstantPoolGen) - Constructor for class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- The only Constructor.
- pass3StaticInstructionChecks() - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier
- These are the checks if constraints are satisfied which are described in the Java Virtual Machine Specification, Second Edition as Static Constraints on the instructions of Java Virtual Machine Code (chapter 4.8.1).
- pass3StaticInstructionOperandsChecks() - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier
- These are the checks for the satisfaction of constraints which are described in the Java Virtual Machine Specification, Second Edition as Static Constraints on the operands of instructions of Java Virtual Machine Code (chapter 4.8.1).
S
- StringRepresentation - class org.apache.bcel.verifier.statics.StringRepresentation.
- BCEL's Node classes (those from the classfile API that accept() Visitor instances) have toString() methods that were not designed to be robust, this gap is closed by this class.
- StringRepresentation(Node) - Constructor for class org.apache.bcel.verifier.statics.StringRepresentation
- Creates a new StringRepresentation object which is the representation of n.
- setName(int, String) - Method in class org.apache.bcel.verifier.statics.LocalVariableInfo
- Adds a name of a local variable and a certain slot to our 'names' (Hashtable) database.
- setType(int, Type) - Method in class org.apache.bcel.verifier.statics.LocalVariableInfo
- Adds a type of a local variable and a certain slot to our 'types' (Hashtable) database.
- singleInstance - Static variable in class org.apache.bcel.verifier.statics.DOUBLE_Upper
- The one and only instance of this class.
- singleInstance - Static variable in class org.apache.bcel.verifier.statics.LONG_Upper
- The one and only instance of this class.
T
- theInstance() - Static method in class org.apache.bcel.verifier.statics.DOUBLE_Upper
- Use this method to get the single instance of this class.
- theInstance() - Static method in class org.apache.bcel.verifier.statics.LONG_Upper
- Use this method to get the single instance of this class.
- theList - Variable in class org.apache.bcel.verifier.statics.IntList
- The int are stored as Integer objects here.
- toString() - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- Returns the String representation.
- toString(Node) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- Returns the String representation of the Node object obj; this is obj.toString() if it does not throw any RuntimeException, or else it is a string derived only from obj's class name.
- tostring(Node) - Static method in class org.apache.bcel.verifier.statics.Pass2Verifier
- This method is here to save typing work and improve code readability.
- tostring - Variable in class org.apache.bcel.verifier.statics.StringRepresentation
- The string representation, created by a visitXXX() method, output by toString().
- types - Variable in class org.apache.bcel.verifier.statics.LocalVariableInfo
- The types database.
V
- validClassMethodName(String) - Static method in class org.apache.bcel.verifier.statics.Pass2Verifier
- This method returns true if and only if the supplied String represents a valid method name that may be referenced by ConstantMethodref objects.
- validClassName(String) - Static method in class org.apache.bcel.verifier.statics.Pass2Verifier
- This method returns true if and only if the supplied String represents a valid Java class name.
- validFieldName(String) - Static method in class org.apache.bcel.verifier.statics.Pass2Verifier
- This method returns true if and only if the supplied String represents a valid Java field name.
- validInterfaceMethodName(String) - Static method in class org.apache.bcel.verifier.statics.Pass2Verifier
- This method returns true if and only if the supplied String represents a valid Java interface method name that may be referenced by ConstantInterfaceMethodref objects.
- validJavaIdentifier(String) - Static method in class org.apache.bcel.verifier.statics.Pass2Verifier
- This method returns true if and only if the supplied String represents a valid Java identifier (so-called simple name).
- validJavaLangMethodName(String) - Static method in class org.apache.bcel.verifier.statics.Pass2Verifier
- This method returns true if and only if the supplied String represents a valid Java programming language method name stored as a simple (non-qualified) name.
- validMethodName(String, boolean) - Static method in class org.apache.bcel.verifier.statics.Pass2Verifier
- This method returns true if and only if the supplied String represents a valid method name.
- visitALOAD(ALOAD) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitANEWARRAY(ANEWARRAY) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitASTORE(ASTORE) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitCHECKCAST(CHECKCAST) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitCode(Code) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitCode(Code) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitCodeException(CodeException) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitCodeException(CodeException) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantClass(ConstantClass) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantClass(ConstantClass) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.InnerClassDetector
- This method casually visits ConstantClass references.
- visitConstantClass(ConstantClass) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantDouble(ConstantDouble) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantDouble(ConstantDouble) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantFieldref(ConstantFieldref) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantFieldref(ConstantFieldref) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.FAMRAV_Visitor
- visitConstantFieldref(ConstantFieldref) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantFloat(ConstantFloat) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantFloat(ConstantFloat) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantInteger(ConstantInteger) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantInteger(ConstantInteger) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantInterfaceMethodref(ConstantInterfaceMethodref) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantInterfaceMethodref(ConstantInterfaceMethodref) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.FAMRAV_Visitor
- visitConstantInterfaceMethodref(ConstantInterfaceMethodref) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantLong(ConstantLong) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantLong(ConstantLong) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantMethodref(ConstantMethodref) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantMethodref(ConstantMethodref) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.FAMRAV_Visitor
- visitConstantMethodref(ConstantMethodref) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantNameAndType(ConstantNameAndType) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantNameAndType(ConstantNameAndType) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantPool(ConstantPool) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantPool(ConstantPool) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantString(ConstantString) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantString(ConstantString) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantUtf8(ConstantUtf8) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantUtf8(ConstantUtf8) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitConstantValue(ConstantValue) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitConstantValue(ConstantValue) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitDLOAD(DLOAD) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitDSTORE(DSTORE) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitDeprecated(Deprecated) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitDeprecated(Deprecated) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitExceptionTable(ExceptionTable) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitExceptionTable(ExceptionTable) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitFLOAD(FLOAD) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitFSTORE(FSTORE) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitField(Field) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitField(Field) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitFieldInstruction(FieldInstruction) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitGETSTATIC(GETSTATIC) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitIINC(IINC) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitILOAD(ILOAD) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitINSTANCEOF(INSTANCEOF) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitINVOKEINTERFACE(INVOKEINTERFACE) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitINVOKESPECIAL(INVOKESPECIAL) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitINVOKESTATIC(INVOKESTATIC) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitINVOKEVIRTUAL(INVOKEVIRTUAL) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitISTORE(ISTORE) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitInnerClass(InnerClass) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitInnerClass(InnerClass) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitInnerClasses(InnerClasses) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitInnerClasses(InnerClasses) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitInvokeInstruction(InvokeInstruction) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitJavaClass(JavaClass) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitJavaClass(JavaClass) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitLDC(LDC) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitLDC2_W(LDC2_W) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitLLOAD(LLOAD) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitLOOKUPSWITCH(LOOKUPSWITCH) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitLSTORE(LSTORE) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitLineNumber(LineNumber) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitLineNumber(LineNumber) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitLineNumberTable(LineNumberTable) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitLineNumberTable(LineNumberTable) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitLoadClass(LoadClass) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Assures the generic preconditions of a LoadClass instance.
- visitLocalVariable(LocalVariable) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitLocalVariable(LocalVariable) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitLocalVariableTable(LocalVariableTable) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitLocalVariableTable(LocalVariableTable) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitMULTIANEWARRAY(MULTIANEWARRAY) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitMethod(Method) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitMethod(Method) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitNEW(NEW) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitNEWARRAY(NEWARRAY) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitPUTSTATIC(PUTSTATIC) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitRET(RET) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitSignature(Signature) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitSourceFile(SourceFile) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitSourceFile(SourceFile) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitStackMap(StackMap) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitSynthetic(Synthetic) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitSynthetic(Synthetic) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
- visitTABLESWITCH(TABLESWITCH) - Method in class org.apache.bcel.verifier.statics.Pass3aVerifier.InstOperandConstraintVisitor
- Checks if the constraints of operands of the said instruction(s) are satisfied.
- visitUnknown(Unknown) - Method in class org.apache.bcel.verifier.statics.Pass2Verifier.CPESSC_Visitor
- visitUnknown(Unknown) - Method in class org.apache.bcel.verifier.statics.StringRepresentation
A C D E F G H I J L M N O P S T V
|
|||||||||
| Home >> All >> org >> apache >> bcel >> verifier >> [ statics overview ] | PREV NEXT | ||||||||