/dalvik/dx/src/com/android/dx/ssa/ |
D | SsaConverter.java | 42 public static SsaMethod convertToSsaMethod(RopMethod rmeth, in convertToSsaMethod() 44 SsaMethod result in convertToSsaMethod() 45 = SsaMethod.newFromRopMethod(rmeth, paramWidth, isStatic); in convertToSsaMethod() 70 public static void updateSsaMethod(SsaMethod ssaMeth, int threshold) { in updateSsaMethod() 85 public static SsaMethod testEdgeSplit (RopMethod rmeth, int paramWidth, in testEdgeSplit() 87 SsaMethod result; in testEdgeSplit() 89 result = SsaMethod.newFromRopMethod(rmeth, paramWidth, isStatic); in testEdgeSplit() 105 public static SsaMethod testPhiPlacement (RopMethod rmeth, int paramWidth, in testPhiPlacement() 107 SsaMethod result; in testPhiPlacement() 109 result = SsaMethod.newFromRopMethod(rmeth, paramWidth, isStatic); in testPhiPlacement() [all …]
|
D | Optimizer.java | 93 SsaMethod ssaMeth = null; in optimize() 130 SsaMethod ssaMeth; in optimizeMinimizeRegisters() 150 private static void runSsaFormSteps(SsaMethod ssaMeth, in runSsaFormSteps() 194 public static SsaMethod debugEdgeSplit(RopMethod rmeth, int paramWidth, in debugEdgeSplit() 204 public static SsaMethod debugPhiPlacement(RopMethod rmeth, int paramWidth, in debugPhiPlacement() 214 public static SsaMethod debugRenaming(RopMethod rmeth, int paramWidth, in debugRenaming() 224 public static SsaMethod debugDeadCodeRemover(RopMethod rmeth, in debugDeadCodeRemover() 228 SsaMethod ssaMeth; in debugDeadCodeRemover() 239 public static SsaMethod debugNoRegisterAllocation(RopMethod rmeth, in debugNoRegisterAllocation() 243 SsaMethod ssaMeth; in debugNoRegisterAllocation()
|
D | MoveParamCombiner.java | 34 private final SsaMethod ssaMeth; 41 public static void process(SsaMethod ssaMethod) { in process() 45 private MoveParamCombiner(SsaMethod ssaMeth) { in MoveParamCombiner()
|
D | LocalVariableExtractor.java | 36 private final SsaMethod method; 53 public static LocalVariableInfo extract(SsaMethod method) { in extract() 63 private LocalVariableExtractor(SsaMethod method) { in LocalVariableExtractor()
|
D | PhiTypeResolver.java | 45 SsaMethod ssaMeth; 53 public static void process (SsaMethod ssaMeth) { in process() 57 private PhiTypeResolver(SsaMethod ssaMeth) { in PhiTypeResolver()
|
D | DeadCodeRemover.java | 33 private final SsaMethod ssaMeth; 52 public static void process(SsaMethod ssaMethod) { in process() 62 private DeadCodeRemover(SsaMethod ssaMethod) { in DeadCodeRemover()
|
D | LiteralOpUpgrader.java | 43 private final SsaMethod ssaMeth; 50 public static void process(SsaMethod ssaMethod) { in process() 58 private LiteralOpUpgrader(SsaMethod ssaMethod) { in LiteralOpUpgrader()
|
D | Dominators.java | 48 private final SsaMethod meth; 68 private Dominators(SsaMethod meth, DomFront.DomInfo[] domInfos, in Dominators() 86 public static Dominators make(SsaMethod meth, DomFront.DomInfo[] domInfos, in make()
|
D | SsaBasicBlock.java | 75 private final SsaMethod parent; 115 final SsaMethod parent) { in SsaBasicBlock() 138 int basicBlockIndex, final SsaMethod parent) { in newFromRop() 151 result.predecessors = SsaMethod.bitSetFromLabelList( in newFromRop() 156 = SsaMethod.bitSetFromLabelList(ropBlocks, bb.getSuccessors()); in newFromRop() 159 = SsaMethod.indexListFromLabelList(ropBlocks, in newFromRop() 399 public SsaMethod getParent() { in getParent()
|
D | DomFront.java | 33 private final SsaMethod meth; 58 public DomFront(SsaMethod meth) { in DomFront()
|
D | ConstCollector.java | 66 private final SsaMethod ssaMeth; 73 public static void process(SsaMethod ssaMethod) { in process() 83 private ConstCollector(SsaMethod ssaMethod) { in ConstCollector()
|
D | SsaMethod.java | 40 public final class SsaMethod { class 99 public static SsaMethod newFromRopMethod(RopMethod ropMethod, in newFromRopMethod() 101 SsaMethod result = new SsaMethod(ropMethod, paramWidth, isStatic); in newFromRopMethod() 118 private SsaMethod(RopMethod ropMethod, int paramWidth, boolean isStatic) { in SsaMethod() method in SsaMethod
|
D | SsaRenamer.java | 66 private final SsaMethod ssaMeth; 100 public SsaRenamer(SsaMethod ssaMeth) { in SsaRenamer() 152 public SsaRenamer(SsaMethod ssaMeth, int thresh) { in SsaRenamer()
|
D | PhiInsn.java | 94 public void updateSourcesToDefinitions(SsaMethod ssaMeth) { in updateSourcesToDefinitions() 300 public List<SsaBasicBlock> predBlocksForReg(int reg, SsaMethod ssaMeth) { in predBlocksForReg()
|
D | LocalVariableInfo.java | 56 public LocalVariableInfo(SsaMethod method) { in LocalVariableInfo()
|
D | SCCP.java | 45 private final SsaMethod ssaMeth; 69 private SCCP(SsaMethod ssaMeth) { in SCCP() 90 public static void process (SsaMethod ssaMethod) { in process()
|
D | EscapeAnalysis.java | 100 private final SsaMethod ssaMeth; 111 private EscapeAnalysis(SsaMethod ssaMeth) { in EscapeAnalysis() 207 public static void process(SsaMethod ssaMethod) { in process()
|
/dalvik/dx/src/com/android/dx/ssa/back/ |
D | NullRegisterAllocator.java | 21 import com.android.dx.ssa.SsaMethod; 30 public NullRegisterAllocator(SsaMethod ssaMeth, in NullRegisterAllocator()
|
D | LivenessAnalyzer.java | 24 import com.android.dx.ssa.SsaMethod; 57 private final SsaMethod ssaMeth; 89 SsaMethod ssaMeth) { in constructInterferenceGraph() 111 private LivenessAnalyzer(SsaMethod ssaMeth, int reg, in LivenessAnalyzer() 259 private static void coInterferePhis(SsaMethod ssaMeth, in coInterferePhis()
|
D | RegisterAllocator.java | 29 import com.android.dx.ssa.SsaMethod; 39 protected final SsaMethod ssaMeth; 50 public RegisterAllocator(SsaMethod ssaMeth, in RegisterAllocator()
|
D | FirstFitAllocator.java | 24 import com.android.dx.ssa.SsaMethod; 46 final SsaMethod ssaMeth, final InterferenceGraph interference) { in FirstFitAllocator()
|
D | SsaToRop.java | 32 import com.android.dx.ssa.SsaMethod; 48 private final SsaMethod ssaMeth; 67 public static RopMethod convertToRopMethod(SsaMethod ssaMeth, in convertToRopMethod() 79 private SsaToRop(SsaMethod ssaMethod, boolean minimizeRegisters) { in SsaToRop()
|
D | FirstFitLocalCombiningAllocator.java | 34 import com.android.dx.ssa.SsaMethod; 133 SsaMethod ssaMeth, InterferenceGraph interference, in FirstFitLocalCombiningAllocator()
|
/dalvik/dx/src/com/android/dx/command/dump/ |
D | SsaDumper.java | 30 import com.android.dx.ssa.SsaMethod; 94 SsaMethod ssaMeth = null; in endParsingMember()
|