Searched defs:opcode (Results 1 - 25 of 68) sorted by relevance

123

/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 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 DArrayInstruction.java75 * @param opcode of instruction
77 protected ArrayInstruction(short opcode) { argument
78 super(opcode, (short)1);
88 switch(opcode) {
106 default: throw new ClassGenException("Oops: unknown case in switch" + opcode);
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 DFieldOrMethod.java78 protected FieldOrMethod(short opcode, int index) { argument
79 super(opcode, index);
H A DIfInstruction.java76 protected IfInstruction(short opcode, InstructionHandle target) { argument
77 super(opcode, target);
H A DJsrInstruction.java69 JsrInstruction(short opcode, InstructionHandle target) { argument
70 super(opcode, target);
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 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 DStackInstruction.java74 * @param opcode instruction opcode
76 protected StackInstruction(short opcode) { argument
77 super(opcode, (short)1);
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 DFieldInstruction.java83 protected FieldInstruction(short opcode, int index) { argument
84 super(opcode, index);
91 return com.sun.org.apache.bcel.internal.Constants.OPCODE_NAMES[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 DCPInstruction.java90 protected CPInstruction(short opcode, int index) { argument
91 super(opcode, (short)3);
100 out.writeByte(opcode);
107 * <name of opcode> "["<opcode number>"]"
127 return com.sun.org.apache.bcel.internal.Constants.OPCODE_NAMES[opcode] + " " + str;
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DREDebugCompiler.java65 * Returns a descriptive string for an opcode.
66 * @param opcode Opcode to convert to a string
67 * @return Description of opcode
69 String opcodeToString(char opcode) argument
71 // Get string for opcode
72 String ret =(String)hashOpcode.get(new Integer(opcode));
106 // Get opcode and opdata for node
107 char opcode = instruction[node + RE.offsetOpcode];
110 // Return opcode as a string and opdata value
111 return opcodeToString(opcode)
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCMoveInstruction.java32 public SPARCMoveInstruction(String name, int opcode, ImmediateOrRegister operand2, SPARCRegister rd) { argument
33 super(name, opcode, null, operand2, rd);
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 DSPARCFPArithmeticInstruction.java34 public SPARCFPArithmeticInstruction(String name, int opcode, int rtlOperation, argument
37 super(name, opcode, rs1, rs2, rd);
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 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 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 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 DSPARCShiftInstruction.java33 public SPARCShiftInstruction(String name, int opcode, int operation, SPARCRegister rs1, argument
35 super(name, opcode, rs1, operand2, rd);
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) {
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DEPoll.c72 jint opcode, jint fd, jint events)
80 RESTARTABLE(epoll_ctl(epfd, (int)opcode, (int)fd, &event), res);
71 Java_sun_nio_ch_EPoll_epollCtl(JNIEnv *env, jclass c, jint epfd, jint opcode, jint fd, jint events) argument

Completed in 87 milliseconds

123