Home
last modified time | relevance | path

Searched refs:maxLabel (Results 1 – 12 of 12) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/code/
DBlockAddresses.java51 int maxLabel = blocks.getMaxLabel(); in BlockAddresses() local
53 this.starts = new CodeAddress[maxLabel]; in BlockAddresses()
54 this.lasts = new CodeAddress[maxLabel]; in BlockAddresses()
55 this.ends = new CodeAddress[maxLabel]; in BlockAddresses()
DRopTranslator.java313 int maxLabel = blocks.getMaxLabel(); in pickOrder() local
314 int[] workSet = Bits.makeBitSet(maxLabel); in pickOrder()
315 int[] tracebackSet = Bits.makeBitSet(maxLabel); in pickOrder()
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DBlockAddresses.java51 int maxLabel = blocks.getMaxLabel(); in BlockAddresses() local
53 this.starts = new CodeAddress[maxLabel]; in BlockAddresses()
54 this.lasts = new CodeAddress[maxLabel]; in BlockAddresses()
55 this.ends = new CodeAddress[maxLabel]; in BlockAddresses()
DRopTranslator.java307 int maxLabel = blocks.getMaxLabel(); in pickOrder() local
308 int[] workSet = Bits.makeBitSet(maxLabel); in pickOrder()
309 int[] tracebackSet = Bits.makeBitSet(maxLabel); in pickOrder()
/dalvik/dexgen/src/com/android/dexgen/rop/code/
DRopMethod.java152 int maxLabel = blocks.getMaxLabel(); in calcPredecessors() local
153 IntList[] predecessors = new IntList[maxLabel]; in calcPredecessors()
183 for (int i = 0; i < maxLabel; i++) { in calcPredecessors()
DLocalVariableInfo.java61 int maxLabel = blocks.getMaxLabel(); in LocalVariableInfo() local
65 this.blockStarts = new RegisterSpecSet[maxLabel]; in LocalVariableInfo()
DLocalVariableExtractor.java61 int maxLabel = blocks.getMaxLabel(); in LocalVariableExtractor() local
66 this.workSet = Bits.makeBitSet(maxLabel); in LocalVariableExtractor()
/dalvik/dx/src/com/android/dx/rop/code/
DRopMethod.java151 int maxLabel = blocks.getMaxLabel(); in calcPredecessors() local
152 IntList[] predecessors = new IntList[maxLabel]; in calcPredecessors()
182 for (int i = 0; i < maxLabel; i++) { in calcPredecessors()
DLocalVariableInfo.java60 int maxLabel = blocks.getMaxLabel(); in LocalVariableInfo() local
64 this.blockStarts = new RegisterSpecSet[maxLabel]; in LocalVariableInfo()
DLocalVariableExtractor.java61 int maxLabel = blocks.getMaxLabel(); in LocalVariableExtractor() local
66 this.workSet = Bits.makeBitSet(maxLabel); in LocalVariableExtractor()
/dalvik/dx/src/com/android/dx/cf/code/
DRopper.java97 private final int maxLabel; field in Ropper
237 retBlocks = new BitSet(maxLabel); in Subroutine()
238 callerBlocks = new BitSet(maxLabel); in Subroutine()
378 this.maxLabel = blocks.getMaxLabel(); in Ropper()
382 this.startFrames = new Frame[maxLabel]; in Ropper()
383 this.subroutines = new Subroutine[maxLabel]; in Ropper()
395 this.catchInfos = new CatchInfo[maxLabel]; in Ropper()
441 return maxLabel + method.getCatches().size() + ~label; in getSpecialLabel()
455 return maxLabel + method.getCatches().size() + SPECIAL_LABEL_COUNT; in getMinimumUnreservedLabel()
727 int[] workSet = Bits.makeBitSet(maxLabel); in doit()
[all …]
/dalvik/dx/src/com/android/dx/ssa/
DSsaMethod.java63 private int maxLabel; field in SsaMethod
122 this.maxLabel = ropMethod.getBlocks().getMaxLabel(); in SsaMethod()
201 = new SsaBasicBlock(exitBlockIndex, maxLabel++, this); in makeExitBlock()
213 maxLabel--; in makeExitBlock()
239 SsaBasicBlock newBlock = new SsaBasicBlock(newIndex, maxLabel++, this); in makeNewGotoBlock()