HomeSort by relevance Sort by last modified time
    Searched refs:LSTORE (Results 1 - 25 of 33) sorted by null

1 2

  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
LSTORE.java 21 * LSTORE - Store long into local variable
26 public class LSTORE extends StoreInstruction {
32 LSTORE() {
33 super(org.apache.bcel.Const.LSTORE, org.apache.bcel.Const.LSTORE_0);
37 public LSTORE(final int n) {
38 super(org.apache.bcel.Const.LSTORE, org.apache.bcel.Const.LSTORE_0, n);
Instruction.java 266 case Const.LSTORE:
267 obj = new LSTORE();
291 obj = new LSTORE(0);
294 obj = new LSTORE(1);
297 obj = new LSTORE(2);
300 obj = new LSTORE(3);
LocalVariableInstruction.java 208 case Const.LSTORE:
Visitor.java 129 void visitLSTORE( LSTORE obj );
EmptyVisitor.java 193 public void visitLSTORE( final LSTORE obj ) {
InstructionFactory.java 490 return new LSTORE(index);
  /dalvik/dx/src/com/android/dx/cf/code/
ByteOps.java 82 public static final int LSTORE = 0x37;
410 "37 - lstore;" +
BytecodeArray.java 462 case ByteOps.LSTORE: {
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
InstructionFinder.java 317 map.put("localvariableinstruction","(fstore|iinc|lload|dstore|dload|iload|aload|astore|istore|fload|lstore)");
324 map.put("storeinstruction", "(istore|fstore|dstore|astore|lstore)");
331 map.put("typedinstruction", "(imul|lsub|aload|fload|lor|new|aaload|fcmpg|iand|iaload|lrem|idiv|d2l|isub|dcmpg|dastore|ret|f2d|f2i|drem|iinc|i2c|checkcast|frem|lreturn|astore|lushr|daload|dneg|fastore|istore|lshl|ldiv|lstore|areturn|ishr|ldc_w|invokeinterface|invokedynamic|aastore|lxor|ishl|l2d|i2f|return|faload|sipush|iushr|caload|instanceof|invokespecial|putfield|fmul|ireturn|laload|d2f|lneg|ixor|i2l|fdiv|lastore|multianewarray|i2b|getstatic|i2d|putstatic|fcmpl|saload|ladd|irem|dload|jsr_w|dconst|dcmpl|fsub|freturn|ldc|aconst_null|castore|lmul|ldc2_w|dadd|iconst|f2l|ddiv|dstore|land|jsr|anewarray|dmul|bipush|dsub|sastore|d2i|i2s|lshr|iadd|l2i|lload|bastore|fstore|fneg|iload|fadd|baload|fconst|ior|ineg|dreturn|l2f|lconst|getfield|invokevirtual|invokestatic|iastore)");
332 map.put("popinstruction", "(fstore|dstore|pop|pop2|astore|putstatic|istore|lstore)");
334 map.put("indexedinstruction", "(lload|lstore|fload|ldc2_w|invokeinterface|invokedynamic|multianewarray|astore|dload|putstatic|instanceof|getstatic|checkcast|getfield|invokespecial|dstore|istore|iinc|ldc_w|ret|fstore|invokestatic|iload|putfield|invokevirtual|ldc|new|aload|anewarray)");
337 map.put("stackconsumer", "(imul|lsub|lor|iflt|fcmpg|if_icmpgt|iand|ifeq|if_icmplt|lrem|ifnonnull|idiv|d2l|isub|dcmpg|dastore|if_icmpeq|f2d|f2i|drem|i2c|checkcast|frem|lreturn|astore|lushr|pop2|monitorexit|dneg|fastore|istore|lshl|ldiv|lstore|areturn|if_icmpge|ishr|monitorenter|invokeinterface|invokedynamic|aastore|lxor|ishl|l2d|i2f|return|iushr|instanceof|invokespecial|fmul|ireturn|d2f|lneg|ixor|pop|i2l|ifnull|fdiv|lastore|i2b|if_acmpeq|ifge|swap|i2d|putstatic|fcmpl|ladd|irem|dcmpl|fsub|freturn|ifgt|castore|lmul|dadd|f2l|ddiv|dstore|land|if_icmpne|if_acmpne|dmul|dsub|sastore|ifle|d2i|i2s|lshr|iadd|l2i|bastore|fstore|fneg|fadd|ior|ineg|ifne|dreturn|l2f|if_icmple|getfield|invokevirtual|invokestatic|iastore)");
355 map.put("lstore", precompile(Const.LSTORE_0, Const.LSTORE_3, Const.LSTORE));
CodeHTML.java 199 case Const.LSTORE:
  /dalvik/dx/tests/135-invoke-custom/src/invokecustom/
TestGenerator.java 228 mv.visitVarInsn(Opcodes.LSTORE, 0);
  /dalvik/dx/tests/137-dexmerger-dex38/src/invokecustom/
TestGenerator.java 303 mv.visitVarInsn(Opcodes.LSTORE, 0);
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/
Const.java 753 * @see <a href="http://docs.oracle.com/javase/specs/jvms/se8/html/jvms-6.html#jvms-6.5.lstore">
755 public static final short LSTORE = 55;
    [all...]
Constants.java 500 short LSTORE = 55;
    [all...]
  /external/jarjar/lib/
asm-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-3.3.jar 
bcel.jar 
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
Pass3aVerifier.java 80 import org.apache.bcel.generic.LSTORE;
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
Utility.java 295 case Const.LSTORE:
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
BytecodeTypeInference.java 410 case Opcodes.LSTORE:
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
ExecutionVisitor.java     [all...]
InstConstraintVisitor.java     [all...]
  /external/guice/lib/build/
asm-6.0.jar 
jarjar-1.1.jar 
  /external/testng/lib-supplied/
jarjar-issue-21.jar 

Completed in 189 milliseconds

1 2