Home
last modified time | relevance | path

Searched refs:InstructionConst (Results 1 – 13 of 13) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DInstructionFactory.java304 return InstructionConst.ARETURN; in createReturn()
310 return InstructionConst.IRETURN; in createReturn()
312 return InstructionConst.FRETURN; in createReturn()
314 return InstructionConst.DRETURN; in createReturn()
316 return InstructionConst.LRETURN; in createReturn()
318 return InstructionConst.RETURN; in createReturn()
328 return InstructionConst.ISUB; in createBinaryIntOp()
330 return InstructionConst.IADD; in createBinaryIntOp()
332 return InstructionConst.IREM; in createBinaryIntOp()
334 return InstructionConst.IMUL; in createBinaryIntOp()
[all …]
DPUSH.java41 instruction = InstructionConst.getInstruction(Const.ICONST_0 + value); in PUSH()
57 instruction = InstructionConst.getInstruction(Const.ICONST_0 + (value ? 1 : 0)); in PUSH()
67 instruction = InstructionConst.FCONST_0; in PUSH()
69 instruction = InstructionConst.FCONST_1; in PUSH()
71 instruction = InstructionConst.FCONST_2; in PUSH()
84 instruction = InstructionConst.LCONST_0; in PUSH()
86 instruction = InstructionConst.LCONST_1; in PUSH()
99 instruction = InstructionConst.DCONST_0; in PUSH()
101 instruction = InstructionConst.DCONST_1; in PUSH()
114 instruction = InstructionConst.ACONST_NULL; in PUSH()
[all …]
DInstruction.java124 if (InstructionConst.getInstruction(this.getOpcode()) != null) { in copy()
167 final Instruction instruction = InstructionConst.getInstruction(opcode); in readInstruction()
DClassGen.java300 il.append(InstructionConst.THIS); // Push `this' in addEmptyConstructor()
302 il.append(InstructionConst.RETURN); in addEmptyConstructor()
DInstructionConst.java38 public final class InstructionConst { class
287 private InstructionConst() { } // non-instantiable in InstructionConst() method in InstructionConst
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DGeneratingAnnotatedClassesTestCase.java430 il.append(InstructionConst.DUP); // Use predefined constant in buildClassContentsWithAnnotatedMethods()
432 il.append(InstructionConst.DUP); in buildClassContentsWithAnnotatedMethods()
447 il.append(InstructionConst.ACONST_NULL); in buildClassContentsWithAnnotatedMethods()
472 var_ex.setEnd(il.append(InstructionConst.RETURN)); in buildClassContentsWithAnnotatedMethods()
483 il.append(InstructionConst.DUP); in buildClassContentsWithAnnotatedMethods()
499 il.append(InstructionConst.RETURN); in buildClassContentsWithAnnotatedMethods()
524 il.append(InstructionConst.DUP); // Use predefined constant in buildClassContents()
526 il.append(InstructionConst.DUP); in buildClassContents()
541 il.append(InstructionConst.ACONST_NULL); in buildClassContents()
566 var_ex.setEnd(il.append(InstructionConst.RETURN)); in buildClassContents()
[all …]
DInstructionHandleTestCase.java59 final InstructionHandle ih = il.append(InstructionConst.NOP); in testBCEL195()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/verifier/tests/
DTestReturn01Creator.java26 import org.apache.bcel.generic.InstructionConst;
77 il.append(InstructionConst.DUP); in createMethod_1()
79 il.append(InstructionConst.NOP); in createMethod_1()
DTestArrayAccess03Creator.java26 import org.apache.bcel.generic.InstructionConst;
85 il.append(InstructionConst.DUP); in createMethod_1()
87 il.append(InstructionConst.AASTORE); in createMethod_1()
DTestArrayAccess02Creator.java26 import org.apache.bcel.generic.InstructionConst;
89 il.append(InstructionConst.DUP); in createMethod_1()
91 il.append(InstructionConst.AASTORE); in createMethod_1()
DTestReturn03Creator.java26 import org.apache.bcel.generic.InstructionConst;
75 final InstructionHandle ih_0 = il.append(InstructionConst.ACONST_NULL); in createMethod_1()
DTestArrayAccess04Creator.java27 import org.apache.bcel.generic.InstructionConst;
88 il.append(InstructionConst.AASTORE); in createMethod_1()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
DBCELFactory.java44 import org.apache.bcel.generic.InstructionConst;
112 if ((InstructionConst.getInstruction(opcode) != null) in visitInstruction()