HomeSort by relevance Sort by last modified time
    Searched defs:interference (Results 1 - 6 of 6) sorted by null

  /dalvik/dx/src/com/android/dx/ssa/back/
InterferenceGraph.java 24 * A register interference graph
28 * {@code non-null;} interference graph, indexed by register in
31 private final ArrayList<IntSet> interference; field in class:InterferenceGraph
40 interference = new ArrayList<IntSet>(countRegs);
43 interference.add(SetFactory.makeInterferenceSet(countRegs));
48 * Adds a register pair to the interference/liveness graph. Parameter
57 interference.get(regV).add(regW);
58 interference.get(regW).add(regV);
62 * Dumps interference graph to stdout for debugging.
65 int oldRegCount = interference.size()
    [all...]
RegisterAllocator.java 41 /** interference graph, indexed by register in both dimensions */
42 protected final InterferenceGraph interference; field in class:RegisterAllocator
47 * @param interference Interference graph, indexed by register in both
51 InterferenceGraph interference) {
53 this.interference = interference;
125 * interference graph in the process. The insn currently must be the
146 * Presently, the interference updater only works when
172 * Adjust interference graph based on what's live out of the curren
    [all...]
FirstFitAllocator.java 46 final SsaMethod ssaMeth, final InterferenceGraph interference) {
47 super(ssaMeth, interference);
87 interference.mergeInterferenceSet(i, current);
120 interference.mergeInterferenceSet(j, current);
LivenessAnalyzer.java 59 /** interference graph being updated */
60 private final InterferenceGraph interference; field in class:LivenessAnalyzer
82 * returning an interference graph.
85 * @return {@code non-null;} interference graph indexed by SSA
91 InterferenceGraph interference = new InterferenceGraph(szRegs); local
94 new LivenessAnalyzer(ssaMeth, i, interference).run();
97 coInterferePhis(ssaMeth, interference);
99 return interference;
107 * @param interference {@code non-null;} indexed by SSA reg in
112 InterferenceGraph interference) {
    [all...]
SsaToRop.java 56 /** {@code non-null;} interference graph */
57 private final InterferenceGraph interference; field in class:SsaToRop
82 this.interference =
93 interference.dumpToStdout();
97 // allocator = new NullRegisterAllocator(ssaMeth, interference);
98 // allocator = new FirstFitAllocator(ssaMeth, interference);
101 new FirstFitLocalCombiningAllocator(ssaMeth, interference,
  /external/dexmaker/lib/
dalvik-dx-9.0.0_r3.jar 

Completed in 280 milliseconds