HomeSort by relevance Sort by last modified time
    Searched defs:interference (Results 1 - 13 of 13) 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 58 /** interference graph being updated */
59 private final InterferenceGraph interference; field in class:LivenessAnalyzer
81 * returning an interference graph.
84 * @return {@code non-null;} interference graph indexed by SSA
90 InterferenceGraph interference = new InterferenceGraph(szRegs); local
93 new LivenessAnalyzer(ssaMeth, i, interference).run();
96 coInterferePhis(ssaMeth, interference);
98 return interference;
106 * @param interference {@code non-null;} indexed by SSA reg in
111 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/src/dx/java/com/android/dx/ssa/back/
InterferenceGraph.java 34 * A register interference graph
38 * {@code non-null;} interference graph, indexed by register in
41 private final ArrayList<IntSet> interference; field in class:InterferenceGraph
50 interference = new ArrayList<IntSet>(countRegs);
53 interference.add(SetFactory.makeInterferenceSet(countRegs));
58 * Adds a register pair to the interference/liveness graph. Parameter
67 interference.get(regV).add(regW);
68 interference.get(regW).add(regV);
72 * Dumps interference graph to stdout for debugging.
75 int oldRegCount = interference.size()
    [all...]
RegisterAllocator.java 43 /** interference graph, indexed by register in both dimensions */
44 protected final InterferenceGraph interference; field in class:RegisterAllocator
49 * @param interference Interference graph, indexed by register in both
53 InterferenceGraph interference) {
55 this.interference = interference;
127 * interference graph in the process. The insn currently must be the
148 * Presently, the interference updater only works when
174 * Adjust interference graph based on what's live out of the curren
    [all...]
FirstFitAllocator.java 48 final SsaMethod ssaMeth, final InterferenceGraph interference) {
49 super(ssaMeth, interference);
89 interference.mergeInterferenceSet(i, current);
122 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 57 /** {@code non-null;} interference graph */
58 private final InterferenceGraph interference; field in class:SsaToRop
83 this.interference =
94 interference.dumpToStdout();
98 // allocator = new NullRegisterAllocator(ssaMeth, interference);
99 // allocator = new FirstFitAllocator(ssaMeth, interference);
102 new FirstFitLocalCombiningAllocator(ssaMeth, interference,
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 679 #define CCA_ERRNO_INTERFER 4 /* After filtering for interference, no choices left */
687 uint32 interference; /* millisecs detecting a non 802.11 interferer. */ member in struct:__anon40179
697 /* interference source detection and identification mode */
702 /* interference sources */
704 ITFR_NONE = 0, /* interference */
713 ITFR_UNIDENTIFIED /* interference from unidentified source */
716 /* structure for interference source report */
719 uint32 source; /* last detected interference source */
723 /* bit definitions for flags in interference source report */
724 #define ITFR_INTERFERENCED 1 /* interference detected *
    [all...]

Completed in 184 milliseconds