Searched refs:opcode (Results 51 - 75 of 115) sorted by relevance

12345

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DJSR_W.java86 out.writeByte(opcode);
H A DIINC.java85 this.opcode = com.sun.org.apache.bcel.internal.Constants.IINC;
100 out.writeByte(opcode);
H A DLDC.java86 opcode = com.sun.org.apache.bcel.internal.Constants.LDC;
89 opcode = com.sun.org.apache.bcel.internal.Constants.LDC_W;
99 out.writeByte(opcode);
H A DLDC2_W.java85 throw new RuntimeException("Unknown constant type " + opcode);
H A DNEWARRAY.java94 out.writeByte(opcode);
H A DRET.java93 out.writeByte(opcode);
H A DINVOKEINTERFACE.java97 out.writeByte(opcode);
H A DMULTIANEWARRAY.java95 out.writeByte(opcode);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DLabel.java403 * changes the opcode of the jump instruction, in order to
411 int opcode = data[reference - 1] & 0xFF;
412 if (opcode <= Opcodes.JSR) {
414 data[reference - 1] = (byte) (opcode + 49);
417 data[reference - 1] = (byte) (opcode + 20);
H A DClassReader.java911 int opcode = b[v] & 0xFF;
912 switch (ClassWriter.TYPE[opcode]) {
926 opcode = b[v + 1] & 0xFF;
927 if (opcode == Opcodes.IINC) {
1294 int opcode = b[v] & 0xFF;
1295 switch (ClassWriter.TYPE[opcode]) {
1297 mv.visitInsn(opcode);
1301 if (opcode > Opcodes.ISTORE) {
1302 opcode -= 59; // ISTORE_0
1303 mv.visitVarInsn(Opcodes.ISTORE + (opcode >>
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DOpcode.java402 Opcode(int opcode) { argument
403 this(STANDARD, opcode, NO_OPERANDS);
406 Opcode(int opcode, Instruction.Kind kind) { argument
407 this(STANDARD, opcode, kind);
410 Opcode(Set set, int opcode) { argument
411 this(set, opcode, (set == STANDARD ? NO_OPERANDS : WIDE_NO_OPERANDS));
414 Opcode(Set set, int opcode, Instruction.Kind kind) { argument
416 this.opcode = opcode;
421 public final int opcode; field in class:Opcode
425 get(int opcode) argument
430 get(int opcodePrefix, int opcode) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DItems.java167 * @param opcode The jump's opcode.
173 CondItem makeCondItem(int opcode, Chain trueJumps, Chain falseJumps) { argument
174 return new CondItem(opcode, trueJumps, falseJumps);
178 * @param opcode The jump's opcode.
180 CondItem makeCondItem(int opcode) { argument
181 return makeCondItem(opcode, null, null);
706 /** The jump's opcode.
708 int opcode; field in class:Items.CondItem
716 CondItem(int opcode, Chain truejumps, Chain falsejumps) argument
[all...]
H A DGen.java209 /** The opcode that loads a zero constant of a given type code.
227 /** The opcode that loads a one constant of a given type code.
811 CondItem result = items.makeCondItem(second.opcode,
1163 int opcode =
1171 code.emitop0(opcode);
1176 if (opcode == tableswitch) {
1202 if (opcode == tableswitch) {
1225 if (opcode == tableswitch) {
1793 if (operator.opcode == string_add) {
1853 code.emitop0(operator.opcode);
[all...]
H A DCode.java146 /** A chain for jumps to be resolved before the next opcode is emitted.
355 /** Emit an opcode.
472 /** Emit an opcode with no operand field.
878 /** Emit an opcode with a one-byte operand field.
909 /** Emit an opcode with a one-byte operand field;
956 /** Emit an opcode with two one-byte operand fields;
979 /** Emit an opcode with a two-byte operand field.
1055 /** Emit an opcode with a four-byte operand field.
1390 /** Negate a branch opcode.
1392 public static int negate(int opcode) { argument
1401 emitJump(int opcode) argument
1421 branch(int opcode) argument
1984 mnem(int opcode) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEPoll.java110 static native int epollCtl(int epfd, int opcode, int fd, int events); argument
/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
H A DEPollArrayWrapper.c107 jint opcode, jint fd, jint events)
115 RESTARTABLE(epoll_ctl(epfd, (int)opcode, (int)fd, &event), res);
106 Java_sun_nio_ch_EPollArrayWrapper_epollCtl(JNIEnv *env, jobject this, jint epfd, jint opcode, jint fd, jint events) argument
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp80 * USELABELS - If using GCC, then use labels for the opcode dispatching
83 * next opcode to jump to be intermixed with the rest of the instructions
84 * that implement the opcode (see UPDATE_PC_AND_TOS_AND_CONTINUE macro).
99 #define CASE(opcode) opc ## opcode
102 #define CASE(opcode) case Bytecodes:: opcode
108 * opcode before going back to the top of the while loop, rather then having
156 #define DO_UPDATE_INSTRUCTION_COUNT(opcode)
158 #define DO_UPDATE_INSTRUCTION_COUNT(opcode) \
487 register jubyte opcode; local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DCodeHTML.java109 short opcode = (short)bytes.readUnsignedByte();
117 buf = new StringBuffer("<TT>" + OPCODE_NAMES[opcode] + "</TT></TD><TD>");
122 if((opcode == TABLESWITCH) || (opcode == LOOKUPSWITCH)) {
133 switch(opcode) {
228 * the following opcode.
276 if(opcode == INVOKEINTERFACE) { // Special treatment needed
375 if(NO_OF_OPERANDS[opcode] > 0) {
376 for(int i=0; i < TYPE_OF_OPERANDS[opcode].length; i++) {
377 switch(TYPE_OF_OPERANDS[opcode][
[all...]
/openjdk7/jdk/src/share/demo/jvmti/java_crw_demo/
H A Djava_crw_demo.c100 typedef unsigned ClassOpcode; /* One opcode */
109 /* Given the position of an opcode, find the next 4byte boundary position */
889 /* Called to create injection code before an opcode */
891 before_injection_code(MethodImage *mi, ClassOpcode opcode, argument
898 switch ( opcode ) {
916 /* Called to create injection code after an opcode */
918 after_injection_code(MethodImage *mi, ClassOpcode opcode, argument
928 switch ( opcode ) {
1047 * NOTE: That this map is not the new bytecode location of the opcode
1088 CRW_FATAL(ci, "Invalid opcode supplie
1094 opcode_length(CrwClassImage *ci, ClassOpcode opcode) argument
1111 ClassOpcode opcode; local
1214 ClassOpcode opcode; local
1335 ClassOpcode opcode; local
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp632 Bytecodes::Code opcode;
637 opcode = bcs.raw_next();
664 tty->print_cr("offset = %d, opcode = %s", bci, Bytecodes::name(opcode));
670 if (opcode != Bytecodes::_iinc && opcode != Bytecodes::_iload &&
671 opcode != Bytecodes::_aload && opcode != Bytecodes::_lload &&
672 opcode != Bytecodes::_istore && opcode !
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmachnode.cpp97 return opcode() == oper.opcode();
109 return (opcode() == oper.opcode()) && (_label == oper.label());
121 return (opcode() == oper.opcode()) && (_method == oper.method());
H A Dmatcher.hpp62 // Convert a dense opcode number to an expanded rule number
67 // Map dense opcode number to info on when rule is swallowed constant.
239 static const bool has_match_rule(int opcode);
246 static const bool match_rule_supported(int opcode);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java80 * for local variables. This opcode
81 * precedes an `ILOAD', e.g.. The opcode
200 short opcode = (short)bytes.readUnsignedByte();
205 StringBuffer buf = new StringBuffer(Constants.OPCODE_NAMES[opcode]);
210 if((opcode == Constants.TABLESWITCH) || (opcode == Constants.LOOKUPSWITCH)) {
219 Constants.OPCODE_NAMES[opcode] + ":" + b);
226 switch(opcode) {
314 * the following opcode.
424 if(Constants.NO_OF_OPERANDS[opcode] >
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java40 protected int bc; // opcode of this instruction
152 return getByte(bytes, pc+indexLoc); // _ldc opcode only
161 setByte(bytes, pc+indexLoc, cpi); // _ldc opcode only
365 return s+"opcode#"+bc;
519 continue; // unknown opcode
629 tag = CONSTANT_Literal; // _ldc opcode only
651 int opcode = i.getBC();
652 if (opcode == _xxxunusedxxx || opcode < _nop || opcode > _jsr_
[all...]

Completed in 90 milliseconds

12345