Methods Summary |
---|
static com.android.dx.util.IntSet | makeDomFrontSet(int szBlocks)Make IntSet for the dominance-frontier sets.
/*package*/
return szBlocks <= DOMFRONT_SET_THRESHOLD_SIZE
? new BitIntSet(szBlocks)
: new ListIntSet();
|
public static com.android.dx.util.IntSet | makeInterferenceSet(int countRegs)Make IntSet for the interference graph sets. Public because
InterferenceGraph is in another package.
return countRegs <= INTERFERENCE_SET_THRESHOLD_SIZE
? new BitIntSet(countRegs)
: new ListIntSet();
|
static com.android.dx.util.IntSet | makeLivenessSet(int countRegs)Make IntSet for register live in/out sets.
return countRegs <= LIVENESS_SET_THRESHOLD_SIZE
? new BitIntSet(countRegs)
: new ListIntSet();
|