Package jadx.core.dex.instructions.args

Examples of jadx.core.dex.instructions.args.InsnArg.merge()


    }
    ArgType resType = insn.getResult().getType();
    // make sure arg has correct type
    if (!arg.getType().isTypeKnown()) {
      arg.merge(resType);
    }
    return replaceConst(mth, sVar, lit);
  }

  /**
 
View Full Code Here


        InsnArg arg0 = insn.getArg(0);
        InsnArg arg1 = insn.getArg(1);
        if (arg0 == litArg) {
          arg0.merge(arg1);
        } else {
          arg1.merge(arg0);
        }
        break;
      }
      case CMP_G:
      case CMP_L:
View Full Code Here

        InsnArg arg0 = insn.getArg(0);
        InsnArg arg1 = insn.getArg(1);
        if (arg0 == litArg) {
          arg0.merge(arg1);
        } else {
          arg1.merge(arg0);
        }
        break;

      case RETURN:
        if (insn.getArgsCount() != 0) {
View Full Code Here

            if (k >= 0) {
              type = types.get(k);
            } else {
              type = mth.getParentClass().getClassInfo().getType();
            }
            arg.merge(type);
          }
          k++;
        }
        break;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.