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

  /external/llvm/lib/CodeGen/
RegisterPressure.cpp 542 int PDiff = (int)PNew - (int)POld;
543 if (!PDiff) // No change in this set in the common case.
549 PDiff = 0; // Under the limit
551 PDiff = PNew - Limit; // Just exceeded limit.
554 PDiff = Limit - POld; // Just obeyed limit.
556 if (std::abs(PDiff) > std::abs(ExcessUnits)) {
557 ExcessUnits = PDiff;
590 int PDiff = (int)PNew - (int)CriticalPSets[CritIdx].UnitIncrease;
591 if (PDiff > Delta.CriticalMax.UnitIncrease) {
593 Delta.CriticalMax.UnitIncrease = PDiff;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp     [all...]

Completed in 46 milliseconds