Lines Matching refs:opcode

209     /** 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);
1858 code.emitop0(operator.opcode);
1863 (operator.opcode == iadd || operator.opcode == isub)) {
1869 code.emitop0(operator.opcode);
1881 (operator.opcode == iadd || operator.opcode == isub)) {
1889 code.emitop0(operator.opcode);
1919 if (operator.opcode == string_add) {
1934 makeCondItem(rcond.opcode,
1948 makeCondItem(rcond.opcode,
2001 ((OperatorSymbol) op.operator).opcode == string_add) {
2030 int opcode = operator.opcode;
2031 if (opcode >= if_icmpeq && opcode <= if_icmple &&
2034 opcode = opcode + (ifeq - if_icmpeq);
2035 } else if (opcode >= if_acmpeq && opcode <= if_acmpne &&
2037 opcode = opcode + (if_acmp_null - if_acmpeq);
2041 // shifts with long shiftcount, where we convert the opcode
2044 if (opcode >= ishll && opcode <= lushrl) {
2045 opcode = opcode + (ishl - ishll);
2050 // If there are two consecutive opcode instructions,
2052 if (opcode >= (1 << preShift)) {
2053 code.emitop0(opcode >> preShift);
2054 opcode = opcode & 0xFF;
2057 if (opcode >= ifeq && opcode <= if_acmpne ||
2058 opcode == if_acmp_null || opcode == if_acmp_nonnull) {
2059 return items.makeCondItem(opcode);
2061 code.emitop0(opcode);