Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.techtrader.modules.tools.bytecode.MathInstruction

Uses of MathInstruction in com.techtrader.modules.tools.bytecode
 

Methods in com.techtrader.modules.tools.bytecode that return MathInstruction
 MathInstruction MathInstruction.setOperation(int operation)
          Set the math operation to be performed.
 MathInstruction MathInstruction.setType(java.lang.Class type)
          Set the type of args to operate on.
 MathInstruction MathInstruction.setTypeName(java.lang.String name)
          Set the type to load by name.
 MathInstruction Code.math()
          This is a convenience method to invoke the proper math instruction if neither the type nor operation are known at compile time.
 MathInstruction Code.add()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.iadd()
           
 MathInstruction Code.ladd()
           
 MathInstruction Code.fadd()
           
 MathInstruction Code.dadd()
           
 MathInstruction Code.sub()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.isub()
           
 MathInstruction Code.lsub()
           
 MathInstruction Code.fsub()
           
 MathInstruction Code.dsub()
           
 MathInstruction Code.mul()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.imul()
           
 MathInstruction Code.lmul()
           
 MathInstruction Code.fmul()
           
 MathInstruction Code.dmul()
           
 MathInstruction Code.div()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.idiv()
           
 MathInstruction Code.ldiv()
           
 MathInstruction Code.fdiv()
           
 MathInstruction Code.ddiv()
           
 MathInstruction Code.rem()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.irem()
           
 MathInstruction Code.lrem()
           
 MathInstruction Code.frem()
           
 MathInstruction Code.drem()
           
 MathInstruction Code.neg()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.ineg()
           
 MathInstruction Code.lneg()
           
 MathInstruction Code.fneg()
           
 MathInstruction Code.dneg()
           
 MathInstruction Code.shl()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.ishl()
           
 MathInstruction Code.lshl()
           
 MathInstruction Code.shr()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.ishr()
           
 MathInstruction Code.lshr()
           
 MathInstruction Code.ushr()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.iushr()
           
 MathInstruction Code.lushr()
           
 MathInstruction Code.and()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.iand()
           
 MathInstruction Code.land()
           
 MathInstruction Code.or()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.ior()
           
 MathInstruction Code.lor()
           
 MathInstruction Code.xor()
          This is a convenience method to invoke the proper math instruction if the type is not known at compile time.
 MathInstruction Code.ixor()
           
 MathInstruction Code.lxor()