OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getRegCount
(Results
1 - 25
of
80
) sorted by null
1
2
3
4
/dalvik/dx/src/com/android/dx/dex/cf/
OptimizerOptions.java
145
rmeth.getBlocks().
getRegCount
(),
146
skipRopMethod.getBlocks().
getRegCount
(),
147
100.0 * ((skipRopMethod.getBlocks().
getRegCount
()
148
- rmeth.getBlocks().
getRegCount
())
149
/ (float) skipRopMethod.getBlocks().
getRegCount
()),
CodeStatistics.java
116
int oldCountRegs = nonOptRmeth.getBlocks().
getRegCount
();
123
+ "/" + rmeth.getBlocks().
getRegCount
());
133
+= (rmeth.getBlocks().
getRegCount
() - oldCountRegs);
/dalvik/dx/src/com/android/dx/ssa/back/
NullRegisterAllocator.java
45
int oldRegCount = ssaMeth.
getRegCount
();
FirstFitAllocator.java
49
mapped = new BitSet(ssaMeth.
getRegCount
());
61
int oldRegCount = ssaMeth.
getRegCount
();
SsaToRop.java
221
= new BasicRegisterMapper(ssaMeth.
getRegCount
());
222
int regCount = ssaMeth.
getRegCount
();
361
int regCount = ssaMeth.
getRegCount
();
FirstFitLocalCombiningAllocator.java
137
ssaRegsMapped = new BitSet(ssaMeth.
getRegCount
());
140
interference, ssaMeth.
getRegCount
());
504
int szSsaRegs = ssaMeth.
getRegCount
();
622
int szSsaRegs = ssaMeth.
getRegCount
();
[
all
...]
LivenessAnalyzer.java
90
int szRegs = ssaMeth.
getRegCount
();
/dalvik/dx/src/com/android/dx/ssa/
PhiTypeResolver.java
59
worklist = new BitSet(ssaMeth.
getRegCount
());
67
int regCount = ssaMeth.
getRegCount
();
SsaBasicBlock.java
690
BitSet regsUsedAsSources = new BitSet(parent.
getRegCount
());
693
BitSet regsUsedAsResults = new BitSet(parent.
getRegCount
());
793
liveOut = SetFactory.makeLivenessSet(parent.
getRegCount
());
807
liveIn = SetFactory.makeLivenessSet(parent.
getRegCount
());
821
liveIn = SetFactory.makeLivenessSet(parent.
getRegCount
());
834
liveOut = SetFactory.makeLivenessSet(parent.
getRegCount
());
[
all
...]
ConstCollector.java
91
int regSz = ssaMeth.
getRegCount
();
158
int regSz = ssaMeth.
getRegCount
();
377
return ssaMeth.
getRegCount
();
LocalVariableInfo.java
63
this.regCount = method.
getRegCount
();
MoveParamCombiner.java
113
return ssaMeth.
getRegCount
();
DeadCodeRemover.java
35
/** ssaMeth.
getRegCount
() */
65
regCount = ssaMethod.
getRegCount
();
LocalVariableExtractor.java
84
if (method.
getRegCount
() > 0 ) {
Optimizer.java
103
if (resultMeth.getBlocks().
getRegCount
()
SsaMethod.java
123
this.registerCount = ropMethod.getBlocks().
getRegCount
();
290
public int
getRegCount
() {
394
definitionList = new SsaInsn[
getRegCount
()];
SsaConverter.java
307
regCount = ssaMeth.
getRegCount
() - threshold;
SsaRenamer.java
101
ropRegCount = ssaMeth.
getRegCount
();
EscapeAnalysis.java
101
/** ssaMeth.
getRegCount
() */
113
this.regCount = ssaMeth.
getRegCount
();
645
for (int i = 0; i < ssaMeth.
getRegCount
(); i++) {
667
return ssaMeth.
getRegCount
();
[
all
...]
/dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlockList.java
91
public int
getRegCount
() {
95
regCount = visitor.
getRegCount
();
331
public int
getRegCount
() {
LocalVariableInfo.java
63
this.regCount = blocks.
getRegCount
();
/dalvik/dx/src/com/android/dx/rop/code/
BasicBlockList.java
91
public int
getRegCount
() {
95
regCount = visitor.
getRegCount
();
329
public int
getRegCount
() {
LocalVariableInfo.java
62
this.regCount = blocks.
getRegCount
();
/dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java
150
this.regCount = blocks.
getRegCount
()
176
final int initialRegCount = method.getBlocks().
getRegCount
();
/dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java
156
this.regCount = blocks.
getRegCount
()
182
final int initialRegCount = method.getBlocks().
getRegCount
();
[
all
...]
Completed in 555 milliseconds
1
2
3
4