/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/ |
H A D | GotoInstruction.java | 69 GotoInstruction(short opcode, InstructionHandle target) { argument 70 super(opcode, target);
|
H A D | ArithmeticInstruction.java | 75 * @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 D | ArrayInstruction.java | 75 * @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 D | ConversionInstruction.java | 75 * @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 D | FieldOrMethod.java | 78 protected FieldOrMethod(short opcode, int index) { argument 79 super(opcode, index);
|
H A D | IfInstruction.java | 76 protected IfInstruction(short opcode, InstructionHandle target) { argument 77 super(opcode, target);
|
H A D | JsrInstruction.java | 69 JsrInstruction(short opcode, InstructionHandle target) { argument 70 super(opcode, target);
|
H A D | LoadInstruction.java | 80 * @param opcode Instruction opcode 84 protected LoadInstruction(short opcode, short c_tag, int n) { argument 85 super(opcode, c_tag, n);
|
H A D | ReturnInstruction.java | 77 * @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 D | StackInstruction.java | 74 * @param opcode instruction opcode 76 protected StackInstruction(short opcode) { argument 77 super(opcode, (short)1);
|
H A D | StoreInstruction.java | 80 * @param opcode Instruction opcode 84 protected StoreInstruction(short opcode, short c_tag, int n) { argument 85 super(opcode, c_tag, n);
|
H A D | FieldInstruction.java | 83 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 D | InvokeInstruction.java | 80 protected InvokeInstruction(short opcode, int index) { argument 81 super(opcode, index); 91 return Constants.OPCODE_NAMES[opcode] + " " + 105 if(opcode == Constants.INVOKESTATIC)
|
H A D | CPInstruction.java | 90 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 D | REDebugCompiler.java | 65 * 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 D | SPARCMoveInstruction.java | 32 public SPARCMoveInstruction(String name, int opcode, ImmediateOrRegister operand2, SPARCRegister rd) { argument 33 super(name, opcode, null, operand2, rd);
|
H A D | SPARCArithmeticInstruction.java | 33 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 D | SPARCFPArithmeticInstruction.java | 34 public SPARCFPArithmeticInstruction(String name, int opcode, int rtlOperation, argument 37 super(name, opcode, rs1, rs2, rd);
|
H A D | SPARCFormat3AInstruction.java | 30 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 D | SPARCLoadInstruction.java | 34 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 D | SPARCLogicInstruction.java | 33 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 D | SPARCMemoryInstruction.java | 35 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 D | SPARCShiftInstruction.java | 33 public SPARCShiftInstruction(String name, int opcode, int operation, SPARCRegister rs1, argument 35 super(name, opcode, rs1, operand2, rd);
|
H A D | SPARCStoreInstruction.java | 34 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 D | EPoll.c | 72 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
|