HomeSort by relevance Sort by last modified time
    Searched refs:Overdefined (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Analysis/
SparsePropagation.cpp 36 OS << "overdefined";
50 /// out in the underdefined state... Arguments should be overdefined, and
65 // All other non-instructions are overdefined.
141 // Overdefined condition variables can branch either way.
242 LatticeVal Overdefined = LatticeFunc->getOverdefinedVal();
244 // If this value is already overdefined (common) just return.
245 if (PNIV == Overdefined || PNIV == LatticeFunc->getUntrackedVal())
249 // and slow us down a lot. Just mark them overdefined.
251 UpdateState(PN, Overdefined);
256 // are overdefined, the PHI becomes overdefined as well. Otherwise, ask th
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 274 enum { Overdefined = -3, Undefined = -2 };
282 // -2 when undefined, -3 when overdefined and >= 0 when that index is true.
292 /// This is -2 when undefined, -3 when overdefined, and otherwise the last
347 SecondTrueElement = Overdefined;
353 TrueRangeEnd = Overdefined;
364 SecondFalseElement = Overdefined;
370 FalseRangeEnd = Overdefined;
379 // If all of our states become overdefined, bail out early. Since the
382 if ((i & 8) == 0 && i >= 64 && SecondTrueElement == Overdefined &&
383 SecondFalseElement == Overdefined && TrueRangeEnd == Overdefined &
    [all...]

Completed in 291 milliseconds