Lines Matching refs:inst_op

294     u2 inst_op = INST_INST(inst);
295 if(inst_op == OP_IF_EQ || inst_op == OP_IF_NE || inst_op == OP_IF_LT ||
296 inst_op == OP_IF_GE || inst_op == OP_IF_GT || inst_op == OP_IF_LE) return true;
297 if(inst_op == OP_IF_EQZ || inst_op == OP_IF_NEZ || inst_op == OP_IF_LTZ ||
298 inst_op == OP_IF_GEZ || inst_op == OP_IF_GTZ || inst_op == OP_IF_LEZ) return true;
299 if(inst_op == OP_GOTO || inst_op == OP_GOTO_16 || inst_op == OP_GOTO_32) return true;
300 if(inst_op == OP_PACKED_SWITCH || inst_op == OP_SPARSE_SWITCH) return true;
679 u2 inst_op = INST_INST(inst);
681 if((inst_op >= OP_MOVE_RESULT && inst_op <= OP_RETURN_OBJECT) ||
682 (inst_op >= OP_MONITOR_ENTER && inst_op <= OP_INSTANCE_OF) ||
683 (inst_op == OP_FILLED_NEW_ARRAY) ||
684 (inst_op == OP_FILLED_NEW_ARRAY_RANGE) ||
685 (inst_op == OP_THROW) ||
686 (inst_op >= OP_INVOKE_VIRTUAL && inst_op <= OP_INVOKE_INTERFACE_RANGE) ||
687 (inst_op >= OP_THROW_VERIFICATION_ERROR &&
688 inst_op <= OP_EXECUTE_INLINE_RANGE) ||
689 (inst_op >= OP_INVOKE_VIRTUAL_QUICK && inst_op <= OP_INVOKE_SUPER_QUICK_RANGE))
692 if(inst_op == OP_RETURN_VOID || inst_op == OP_RETURN || inst_op == OP_RETURN_VOID_BARRIER ||
693 inst_op == OP_RETURN_OBJECT || inst_op == OP_RETURN_WIDE)
3170 u2 inst_op = INST_INST(inst);
3172 if(inst_op != OP_CONST_STRING && inst_op != OP_CONST_STRING_JUMBO &&
3173 inst_op != OP_MOVE && inst_op != OP_MOVE_OBJECT &&
3174 inst_op != OP_MOVE_FROM16 && inst_op != OP_MOVE_OBJECT_FROM16 &&
3175 inst_op != OP_MOVE_16 && inst_op != OP_CONST_CLASS &&
3176 inst_op != OP_MOVE_OBJECT_16 && inst_op != OP_MOVE_WIDE &&
3177 inst_op != OP_MOVE_WIDE_FROM16 && inst_op != OP_MOVE_WIDE_16 &&
3178 inst_op != OP_MOVE_RESULT && inst_op != OP_MOVE_RESULT_OBJECT) {