Home
last modified time | relevance | path

Searched refs:getRegCount (Results 1 – 25 of 26) sorted by relevance

12

/dalvik/dx/src/com/android/dx/dex/cf/
DOptimizerOptions.java145 rmeth.getBlocks().getRegCount(), in compareOptimizerStep()
146 skipRopMethod.getBlocks().getRegCount(), in compareOptimizerStep()
147 100.0 * ((skipRopMethod.getBlocks().getRegCount() in compareOptimizerStep()
148 - rmeth.getBlocks().getRegCount()) in compareOptimizerStep()
149 / (float) skipRopMethod.getBlocks().getRegCount()), in compareOptimizerStep()
DCodeStatistics.java116 int oldCountRegs = nonOptRmeth.getBlocks().getRegCount(); in updateRopStatistics()
123 + "/" + rmeth.getBlocks().getRegCount()); in updateRopStatistics()
133 += (rmeth.getBlocks().getRegCount() - oldCountRegs); in updateRopStatistics()
/dalvik/dx/src/com/android/dx/ssa/back/
DFirstFitAllocator.java49 mapped = new BitSet(ssaMeth.getRegCount()); in FirstFitAllocator()
61 int oldRegCount = ssaMeth.getRegCount(); in allocateRegisters()
DNullRegisterAllocator.java45 int oldRegCount = ssaMeth.getRegCount(); in allocateRegisters()
DSsaToRop.java221 = new BasicRegisterMapper(ssaMeth.getRegCount()); in moveParametersToHighRegisters()
222 int regCount = ssaMeth.getRegCount(); in moveParametersToHighRegisters()
361 int regCount = ssaMeth.getRegCount(); in getRegistersByFrequency()
DFirstFitLocalCombiningAllocator.java137 ssaRegsMapped = new BitSet(ssaMeth.getRegCount()); in FirstFitLocalCombiningAllocator()
140 interference, ssaMeth.getRegCount()); in FirstFitLocalCombiningAllocator()
504 int szSsaRegs = ssaMeth.getRegCount(); in handleUnassociatedParameters()
622 int szSsaRegs = ssaMeth.getRegCount(); in handleNormalUnassociated()
1040 BitSet seen = new BitSet(ssaMeth.getRegCount()); in fitPlanForRange()
DLivenessAnalyzer.java90 int szRegs = ssaMeth.getRegCount(); in constructInterferenceGraph()
/dalvik/dexgen/src/com/android/dexgen/rop/code/
DBasicBlockList.java91 public int getRegCount() { in getRegCount() method in BasicBlockList
95 regCount = visitor.getRegCount(); in getRegCount()
331 public int getRegCount() { in getRegCount() method in BasicBlockList.RegCountVisitor
DLocalVariableInfo.java63 this.regCount = blocks.getRegCount(); in LocalVariableInfo()
/dalvik/dx/src/com/android/dx/rop/code/
DBasicBlockList.java91 public int getRegCount() { in getRegCount() method in BasicBlockList
95 regCount = visitor.getRegCount(); in getRegCount()
329 public int getRegCount() { in getRegCount() method in BasicBlockList.RegCountVisitor
DLocalVariableInfo.java62 this.regCount = blocks.getRegCount(); in LocalVariableInfo()
/dalvik/dx/src/com/android/dx/ssa/
DPhiTypeResolver.java59 worklist = new BitSet(ssaMeth.getRegCount()); in PhiTypeResolver()
67 int regCount = ssaMeth.getRegCount(); in run()
DSsaBasicBlock.java690 BitSet regsUsedAsSources = new BitSet(parent.getRegCount()); in scheduleUseBeforeAssigned()
693 BitSet regsUsedAsResults = new BitSet(parent.getRegCount()); in scheduleUseBeforeAssigned()
793 liveOut = SetFactory.makeLivenessSet(parent.getRegCount()); in addLiveOut()
807 liveIn = SetFactory.makeLivenessSet(parent.getRegCount()); in addLiveIn()
821 liveIn = SetFactory.makeLivenessSet(parent.getRegCount()); in getLiveInRegs()
834 liveOut = SetFactory.makeLivenessSet(parent.getRegCount()); in getLiveOutRegs()
DConstCollector.java91 int regSz = ssaMeth.getRegCount(); in run()
158 int regSz = ssaMeth.getRegCount(); in getConstsSortedByCountUse()
377 return ssaMeth.getRegCount(); in updateConstUses()
DMoveParamCombiner.java113 return ssaMeth.getRegCount(); in run()
DLocalVariableInfo.java63 this.regCount = method.getRegCount(); in LocalVariableInfo()
DLocalVariableExtractor.java84 if (method.getRegCount() > 0 ) { in doit()
DSsaMethod.java123 this.registerCount = ropMethod.getBlocks().getRegCount(); in SsaMethod()
290 public int getRegCount() { in getRegCount() method in SsaMethod
394 definitionList = new SsaInsn[getRegCount()]; in getDefinitionForRegister()
DDeadCodeRemover.java65 regCount = ssaMethod.getRegCount(); in DeadCodeRemover()
DOptimizer.java103 if (resultMeth.getBlocks().getRegCount() in optimize()
DEscapeAnalysis.java113 this.regCount = ssaMeth.getRegCount(); in EscapeAnalysis()
645 for (int i = 0; i < ssaMeth.getRegCount(); i++) { in movePropagate()
667 return ssaMeth.getRegCount(); in movePropagate()
DSsaConverter.java307 regCount = ssaMeth.getRegCount() - threshold; in placePhiFunctions()
DSsaRenamer.java101 ropRegCount = ssaMeth.getRegCount(); in SsaRenamer()
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DRopTranslator.java150 this.regCount = blocks.getRegCount() in RopTranslator()
176 final int initialRegCount = method.getBlocks().getRegCount(); in calculateParamsAreInOrder()
/dalvik/dx/src/com/android/dx/dex/code/
DRopTranslator.java156 this.regCount = blocks.getRegCount() in RopTranslator()
182 final int initialRegCount = method.getBlocks().getRegCount(); in calculateParamsAreInOrder()

12