Searched refs:opcode (Results 1 - 25 of 115) sorted by relevance

12345

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DGotoInstruction.java69 GotoInstruction(short opcode, InstructionHandle target) { argument
70 super(opcode, target);
H A DIfInstruction.java76 protected IfInstruction(short opcode, InstructionHandle target) { argument
77 super(opcode, target);
H A DStackInstruction.java74 * @param opcode instruction opcode
76 protected StackInstruction(short opcode) { argument
77 super(opcode, (short)1);
H A DLocalVariableInstruction.java97 * @param opcode Instruction opcode
101 protected LocalVariableInstruction(short opcode, short c_tag, int n) { argument
102 super(opcode, (short)2);
105 canon_tag = opcode;
118 out.writeByte(opcode);
131 * <name of opcode> "["<opcode number>"]"
138 if(((opcode >= Constants.ILOAD_0) &&
139 (opcode <
[all...]
H A DInstruction.java74 protected short opcode = -1; // Opcode number field in class:Instruction
84 public Instruction(short opcode, short length) { argument
86 this.opcode = opcode;
94 out.writeByte(opcode); // Common for all instructions
97 /** @return name of instruction, i.e., opcode name
100 return Constants.OPCODE_NAMES[opcode];
106 * &lt;name of opcode&gt; "["&lt;opcode number&gt;"]"
114 return getName() + "[" + opcode
219 className(short opcode) argument
274 setOpcode(short opcode) argument
[all...]
H A DConversionInstruction.java75 * @param opcode opcode of instruction
77 protected ConversionInstruction(short opcode) { argument
78 super(opcode, (short)1);
84 switch(opcode) {
101 throw new ClassGenException("Unknown type " + opcode);
H A DReturnInstruction.java77 * @param opcode of instruction
79 protected ReturnInstruction(short opcode) { argument
80 super(opcode, (short)1);
84 switch(opcode) {
93 throw new ClassGenException("Unknown type " + opcode);
H A DLoadInstruction.java80 * @param opcode Instruction opcode
84 protected LoadInstruction(short opcode, short c_tag, int n) { argument
85 super(opcode, c_tag, n);
H A DStoreInstruction.java80 * @param opcode Instruction opcode
84 protected StoreInstruction(short opcode, short c_tag, int n) { argument
85 super(opcode, c_tag, n);
H A DFCONST.java82 opcode = com.sun.org.apache.bcel.internal.Constants.FCONST_0;
84 opcode = com.sun.org.apache.bcel.internal.Constants.FCONST_1;
86 opcode = com.sun.org.apache.bcel.internal.Constants.FCONST_2;
H A DJsrInstruction.java69 JsrInstruction(short opcode, InstructionHandle target) { argument
70 super(opcode, target);
H A DArithmeticInstruction.java75 * @param opcode of instruction
77 protected ArithmeticInstruction(short opcode) { argument
78 super(opcode, (short)1);
84 switch(opcode) {
106 throw new ClassGenException("Unknown type " + opcode);
H A DInvokeInstruction.java80 protected InvokeInstruction(short opcode, int index) { argument
81 super(opcode, index);
91 return Constants.OPCODE_NAMES[opcode] + " " +
105 if(opcode == Constants.INVOKESTATIC)
H A DDCONST.java82 opcode = com.sun.org.apache.bcel.internal.Constants.DCONST_0;
84 opcode = com.sun.org.apache.bcel.internal.Constants.DCONST_1;
H A DLCONST.java82 opcode = com.sun.org.apache.bcel.internal.Constants.LCONST_0;
84 opcode = com.sun.org.apache.bcel.internal.Constants.LCONST_1;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCMemoryInstruction.java35 final protected int opcode; field in class:SPARCMemoryInstruction
37 public SPARCMemoryInstruction(String name, int opcode, SPARCRegisterIndirectAddress address, SPARCRegister register, int dataType) { argument
42 this.opcode = opcode;
68 return opcode;
H A DSPARCFormat3AInstruction.java30 final protected int opcode; field in class:SPARCFormat3AInstruction
35 public SPARCFormat3AInstruction(String name, int opcode, SPARCRegister rs1, argument
38 this.opcode = opcode;
73 return opcode;
H A DSPARCStoreInstruction.java34 public SPARCStoreInstruction(String name, int opcode, SPARCRegisterIndirectAddress address, SPARCRegister register, int dataType) { argument
35 super(name, opcode, address, register, dataType);
36 if (opcode == STD || opcode == STDA) {
61 switch (opcode) {
H A DSPARCLogicInstruction.java33 public SPARCLogicInstruction(String name, int opcode, int operation, SPARCRegister rs1, argument
35 super(name, opcode, rs1, operand2, rd);
41 if (opcode == ORcc && rd == G0 && rd == operand2) {
47 } else if (opcode == XNOR && G0 == operand2) {
57 } else if (opcode == ANDcc && rd == G0) {
67 switch (opcode) {
H A DSPARCShiftInstruction.java33 public SPARCShiftInstruction(String name, int opcode, int operation, SPARCRegister rs1, argument
35 super(name, opcode, rs1, operand2, rd);
H A DSPARCLoadInstruction.java34 public SPARCLoadInstruction(String name, int opcode, SPARCRegisterIndirectAddress address, SPARCRegister register, int dataType) { argument
35 super(name, opcode,address, register, dataType);
36 if (opcode == LDD || opcode == LDDA) {
H A DSPARCArithmeticInstruction.java33 public SPARCArithmeticInstruction(String name, int opcode, int operation, SPARCRegister rs1, argument
35 super(name, opcode, rs1, operand2, rd);
43 switch (opcode) {
65 } else if (rd == SPARCRegisters.G0 && opcode == SUBcc) {
73 } else if (rs1 == SPARCRegisters.G0 && opcode == SUB && operand2.isRegister()) {
H A DSPARCInstructionFactoryImpl.java61 public SPARCInstruction newLoadInstruction(String name, int opcode, argument
64 return new SPARCLoadInstruction(name, opcode, addr, rd, dataType);
67 public SPARCInstruction newStoreInstruction(String name, int opcode, argument
70 return new SPARCStoreInstruction(name, opcode, addr, rd, dataType);
140 public SPARCInstruction newArithmeticInstruction(String name, int opcode, int rtlOperation, argument
143 return new SPARCArithmeticInstruction(name, opcode, rtlOperation, rs1, operand2, rd);
146 public SPARCInstruction newLogicInstruction(String name, int opcode, int rtlOperation, argument
149 return new SPARCLogicInstruction(name, opcode, rtlOperation, rs1, operand2, rd);
152 public SPARCInstruction newMoveInstruction(String name, int opcode, argument
155 return new SPARCMoveInstruction(name, opcode, operand
158 newShiftInstruction(String name, int opcode, int rtlOperation, SPARCRegister rs1, ImmediateOrRegister operand2, SPARCRegister rd) argument
164 newCoprocessorInstruction(int instruction, int cpopcode, int opcode, int rs1Num, int rs2Num, int rd) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java195 * @param opcode the opcode of the instruction to be visited. This opcode is
210 void visitInsn(int opcode); argument
215 * @param opcode the opcode of the instruction to be visited. This opcode is
218 * opcode is BIPUSH, operand value should be between Byte.MIN_VALUE
219 * and Byte.MAX_VALUE.<br> When opcode is SIPUSH, operand value
221 * opcode i
227 visitIntInsn(int opcode, int operand) argument
239 visitVarInsn(int opcode, int var) argument
251 visitTypeInsn(int opcode, String type) argument
264 visitFieldInsn(int opcode, String owner, String name, String desc) argument
278 visitMethodInsn(int opcode, String owner, String name, String desc) argument
292 visitJumpInsn(int opcode, Label label) argument
[all...]
H A DType.java711 * Returns a JVM instruction opcode adapted to this Java type.
713 * @param opcode a JVM instruction opcode. This opcode must be one of ILOAD,
716 * @return an opcode that is similar to the given opcode, but adapted to
718 * <tt>opcode</tt> is IRETURN, this method returns FRETURN.
720 public int getOpcode(final int opcode) { argument
721 if (opcode == Opcodes.IALOAD || opcode
[all...]

Completed in 131 milliseconds

12345