Search in sources :

Example 16 with RopMethod

use of com.android.dx.rop.code.RopMethod in project J2ME-Loader by nikita36078.

the class Optimizer method optimize.

/**
 * Runs optimization algorthims over this method, and returns a new
 * instance of RopMethod with the changes.
 *
 * @param rmeth method to process
 * @param paramWidth the total width, in register-units, of this method's
 * parameters
 * @param isStatic true if this method has no 'this' pointer argument.
 * @param inPreserveLocals true if local variable info should be preserved,
 * at the cost of some registers and insns
 * @param inAdvice {@code non-null;} translation advice
 * @param steps set of optional optimization steps to run
 * @return optimized method
 */
public static RopMethod optimize(RopMethod rmeth, int paramWidth, boolean isStatic, boolean inPreserveLocals, TranslationAdvice inAdvice, EnumSet<OptionalStep> steps) {
    SsaMethod ssaMeth = null;
    preserveLocals = inPreserveLocals;
    advice = inAdvice;
    ssaMeth = SsaConverter.convertToSsaMethod(rmeth, paramWidth, isStatic);
    runSsaFormSteps(ssaMeth, steps);
    RopMethod resultMeth = SsaToRop.convertToRopMethod(ssaMeth, false);
    if (resultMeth.getBlocks().getRegCount() > advice.getMaxOptimalRegisterCount()) {
        // Try to see if we can squeeze it under the register count bar
        resultMeth = optimizeMinimizeRegisters(rmeth, paramWidth, isStatic, steps);
    }
    return resultMeth;
}
Also used : RopMethod(com.android.dx.rop.code.RopMethod)

Example 17 with RopMethod

use of com.android.dx.rop.code.RopMethod in project J2ME-Loader by nikita36078.

the class Optimizer method optimizeMinimizeRegisters.

/**
 * Runs the optimizer with a strategy to minimize the number of rop-form
 * registers used by the end result. Dex bytecode does not have instruction
 * forms that take register numbers larger than 15 for all instructions.
 * If we've produced a method that uses more than 16 registers, try again
 * with a different strategy to see if we can get under the bar. The end
 * result will be much more efficient.
 *
 * @param rmeth method to process
 * @param paramWidth the total width, in register-units, of this method's
 * parameters
 * @param isStatic true if this method has no 'this' pointer argument.
 * @param steps set of optional optimization steps to run
 * @return optimized method
 */
private static RopMethod optimizeMinimizeRegisters(RopMethod rmeth, int paramWidth, boolean isStatic, EnumSet<OptionalStep> steps) {
    SsaMethod ssaMeth;
    RopMethod resultMeth;
    ssaMeth = SsaConverter.convertToSsaMethod(rmeth, paramWidth, isStatic);
    EnumSet<OptionalStep> newSteps = steps.clone();
    /*
         * CONST_COLLECTOR trades insns for registers, which is not an
         * appropriate strategy here.
         */
    newSteps.remove(OptionalStep.CONST_COLLECTOR);
    runSsaFormSteps(ssaMeth, newSteps);
    resultMeth = SsaToRop.convertToRopMethod(ssaMeth, true);
    return resultMeth;
}
Also used : RopMethod(com.android.dx.rop.code.RopMethod)

Aggregations

RopMethod (com.android.dx.rop.code.RopMethod)17 DexTranslationAdvice (com.android.dx.rop.code.DexTranslationAdvice)5 TranslationAdvice (com.android.dx.rop.code.TranslationAdvice)5 IntList (com.android.dx.util.IntList)5 ConcreteMethod (com.android.dx.cf.code.ConcreteMethod)4 Method (com.android.dx.cf.iface.Method)4 BasicBlock (com.android.dx.rop.code.BasicBlock)4 BasicBlockList (com.android.dx.rop.code.BasicBlockList)4 BitSet (java.util.BitSet)3 MethodList (com.android.dx.cf.iface.MethodList)2 DalvCode (com.android.dx.dex.code.DalvCode)2 EncodedMethod (com.android.dx.dex.file.EncodedMethod)2 Annotations (com.android.dx.rop.annotation.Annotations)2 AnnotationsList (com.android.dx.rop.annotation.AnnotationsList)2 LocalVariableInfo (com.android.dx.rop.code.LocalVariableInfo)2 CstMethodRef (com.android.dx.rop.cst.CstMethodRef)2 CstString (com.android.dx.rop.cst.CstString)2 CstType (com.android.dx.rop.cst.CstType)2 TypeList (com.android.dx.rop.type.TypeList)2 BasicRegisterMapper (com.android.dx.ssa.BasicRegisterMapper)2