Available Methods
- INVOKEVIRTUAL
- INVOKESTATIC
- INVOKESPECIAL
- INVOKEINTERFACE
- ACC_PUBLIC
- PUTFIELD
- PUTSTATIC
- GETFIELD
- T_DOUBLE
- T_LONG
- ALOAD_3 ( )
- IFNULL
- T_CHAR
- ACC_STATIC
- T_FLOAT
- T_ARRAY
- INVOKEDYNAMIC
- ASTORE_2 ( )
- ALOAD_0 ( )
- IFNE
- IRETURN
- ASTORE_0 ( )
- DUP
- IFGE
- NEW
- CONSTANT_Long ( )
- GETSTATIC
- IF_ICMPEQ
- CONSTANT_String ( )
- IF_ICMPNE
- CONSTANT_NameAndType ( )
- LASTORE
- LSHL
- IFEQ
- ASTORE_3 ( )
- CONSTANT_InterfaceMethodref ( )
- IF_ACMPNE
- ACC_ABSTRACT
- IAND
- T_OBJECT
- T_BYTE
- ANEWARRAY
- CONSTANT_Utf8 ( )
- IF_ICMPGT
- IF_ACMPEQ
- LSUB
- T_INT
- UNPREDICTABLE
- IF_ICMPLE
- ILOAD_0 ( )
- ACC_VOLATILE
- LDC
- SAME_LOCALS_1_STACK_ITEM_FRAME ( )
- ACC_FINAL
- ICONST_0 ( )
- ATHROW
- AASTORE
- CASTORE
- IREM
- CONSTANT_MethodType ( )
- CONSTANT_Float ( )
- BASTORE
- ACONST_NULL
- LALOAD
- IADD
- RETURN
- LLOAD
- LDC_W
- ATTR_CONSTANT_VALUE
- ACC_SYNCHRONIZED
- FSUB
- GOTO
- GOTO_W
- T_VOID
- LRETURN
- CONSTANT_Fieldref ( )
- CONSTANT_Package ( )
- IALOAD
- ARETURN
- LAND
- IXOR
- DLOAD_2 ( )
- LDC2_W ( )
- ATTR_INNER_CLASSES
- CONSTANT_InvokeDynamic ( )
- CONSTANT_Class ( )
- ISTORE_3 ( )
- ISHR
- DCMPG
- NOP
- RET
- T_BOOLEAN
- LADD
- WIDE
- ISTORE
- ATTR_LINE_NUMBER_TABLE
- ATTR_MODULE
- ACC_TRANSIENT
- CONSTANT_Methodref ( )
- CONSTANT_Module ( )
- SAME_LOCALS_1_STACK_ITEM_FRAME_EXTENDED ( )
- MULTIANEWARRAY
- ACC_SUPER
- LSTORE_2 ( )
- TABLESWITCH
- ACC_PROTECTED
- MONITOREXIT
- LREM
- IFNONNULL
- FSTORE_2 ( )
- JSR
- FRETURN
- ATTR_CODE
- ACC_INTERFACE
- ITEM_NewObject ( )
- IFLE
- SAME_LOCALS_1_STACK_ITEM_FRAME_MAX ( )
- FULL_FRAME
- ISTORE_2 ( )
- ACC_NATIVE
- DASTORE
- MONITORENTER
- LOR
- FMUL
- NEWARRAY
- ILOAD
- FLOAD
- ATTR_LOCAL_VARIABLE_TABLE
- CONSTANT_Integer ( )
- ACC_PRIVATE
- IF_ICMPGE
- DRETURN
- IOR
- IASTORE
- CONSTANT_Double ( )
- F2D ( )
- POP
Related Classes
- java.util.Collections
- java.util.Iterator
- java.util.Locale
- javax.annotation.Nonnull
- java.util.BitSet
- javax.annotation.CheckForNull
- javax.annotation.meta.When
- org.apache.bcel.classfile.JavaClass
- org.apache.bcel.Repository
- org.apache.bcel.classfile.Method
- org.apache.bcel.generic.Type
- org.apache.bcel.classfile.Field
- org.apache.bcel.generic.InstructionHandle
- org.apache.bcel.generic.ConstantPoolGen
- org.apache.bcel.generic.InstructionList
- org.apache.bcel.classfile.ConstantPool
- org.apache.bcel.generic.ObjectType
- org.apache.bcel.classfile.Constant
- org.apache.bcel.generic.MethodGen
- edu.umd.cs.findbugs.Priorities
- edu.umd.cs.findbugs.BugInstance
- org.apache.bcel.generic.Instruction
- org.apache.bcel.generic.INVOKESPECIAL
- org.apache.bcel.generic.ReferenceType
- org.apache.bcel.generic.GETFIELD
Java Code Examples for org.apache.bcel.Const#IXOR
The following examples show how to use
org.apache.bcel.Const#IXOR .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Noise.java From spotbugs with GNU Lesser General Public License v2.1 | 4 votes |
@Override public void sawOpcode(int seen) { int priority; switch (seen) { case Const.INVOKEINTERFACE: case Const.INVOKEVIRTUAL: case Const.INVOKESPECIAL: case Const.INVOKESTATIC: hq.pushHash(getClassConstantOperand()); if (getNameConstantOperand().indexOf('$') == -1) { hq.pushHash(getNameConstantOperand()); } hq.pushHash(getSigConstantOperand()); priority = hq.getPriority(); if (priority <= Priorities.LOW_PRIORITY) { accumulator.accumulateBug(new BugInstance(this, "NOISE_METHOD_CALL", priority).addClassAndMethod(this) .addCalledMethod(this), this); } break; case Const.GETFIELD: case Const.PUTFIELD: case Const.GETSTATIC: case Const.PUTSTATIC: hq.pushHash(getClassConstantOperand()); if (getNameConstantOperand().indexOf('$') == -1) { hq.pushHash(getNameConstantOperand()); } hq.pushHash(getSigConstantOperand()); priority = hq.getPriority(); if (priority <= Priorities.LOW_PRIORITY) { accumulator.accumulateBug(new BugInstance(this, "NOISE_FIELD_REFERENCE", priority).addClassAndMethod(this) .addReferencedField(this), this); } break; case Const.CHECKCAST: case Const.INSTANCEOF: case Const.NEW: hq.pushHash(getClassConstantOperand()); break; case Const.IFEQ: case Const.IFNE: case Const.IFNONNULL: case Const.IFNULL: case Const.IF_ICMPEQ: case Const.IF_ICMPNE: case Const.IF_ICMPLE: case Const.IF_ICMPGE: case Const.IF_ICMPGT: case Const.IF_ICMPLT: case Const.IF_ACMPEQ: case Const.IF_ACMPNE: case Const.RETURN: case Const.ARETURN: case Const.IRETURN: case Const.MONITORENTER: case Const.MONITOREXIT: case Const.IINC: case Const.NEWARRAY: case Const.TABLESWITCH: case Const.LOOKUPSWITCH: case Const.LCMP: case Const.INEG: case Const.IADD: case Const.IMUL: case Const.ISUB: case Const.IDIV: case Const.IREM: case Const.IXOR: case Const.ISHL: case Const.ISHR: case Const.IUSHR: case Const.IAND: case Const.IOR: case Const.LAND: case Const.LOR: case Const.LADD: case Const.LMUL: case Const.LSUB: case Const.LDIV: case Const.LSHL: case Const.LSHR: case Const.LUSHR: case Const.AALOAD: case Const.AASTORE: case Const.IALOAD: case Const.IASTORE: case Const.BALOAD: case Const.BASTORE: hq.push(seen); priority = hq.getPriority(); if (priority <= Priorities.LOW_PRIORITY) { accumulator.accumulateBug( new BugInstance(this, "NOISE_OPERATION", priority).addClassAndMethod(this).addString(Const.getOpcodeName(seen)), this); } break; default: break; } }
Example 2
Source File: ArithmeticInstruction.java From commons-bcel with Apache License 2.0 | 4 votes |
/** @return type associated with the instruction */ @Override public Type getType( final ConstantPoolGen cp ) { final short _opcode = super.getOpcode(); switch (_opcode) { case Const.DADD: case Const.DDIV: case Const.DMUL: case Const.DNEG: case Const.DREM: case Const.DSUB: return Type.DOUBLE; case Const.FADD: case Const.FDIV: case Const.FMUL: case Const.FNEG: case Const.FREM: case Const.FSUB: return Type.FLOAT; case Const.IADD: case Const.IAND: case Const.IDIV: case Const.IMUL: case Const.INEG: case Const.IOR: case Const.IREM: case Const.ISHL: case Const.ISHR: case Const.ISUB: case Const.IUSHR: case Const.IXOR: return Type.INT; case Const.LADD: case Const.LAND: case Const.LDIV: case Const.LMUL: case Const.LNEG: case Const.LOR: case Const.LREM: case Const.LSHL: case Const.LSHR: case Const.LSUB: case Const.LUSHR: case Const.LXOR: return Type.LONG; default: // Never reached throw new ClassGenException("Unknown type " + _opcode); } }