/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | GCNSchedStrategy.cpp | 112 Cand.RPDelta.Excess = PressureChange(SRI->getVGPRPressureSet()); in initCandidate() 113 Cand.RPDelta.Excess.setUnitInc(NewVGPRPressure - VGPRExcessLimit); in initCandidate() 117 Cand.RPDelta.Excess = PressureChange(SRI->getSGPRPressureSet()); in initCandidate() 118 Cand.RPDelta.Excess.setUnitInc(NewSGPRPressure - SGPRExcessLimit); in initCandidate() 227 if (TopCand.Reason == RegExcess && TopCand.RPDelta.Excess.getUnitInc() <= 0) { in pickNodeBidirectional() 229 } else if (BotCand.Reason == RegExcess && BotCand.RPDelta.Excess.getUnitInc() <= 0) { in pickNodeBidirectional()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | RegisterPressure.cpp | 943 Delta.Excess = PressureChange(); in computeExcessPressureDelta() 964 Delta.Excess = PressureChange(i); in computeExcessPressureDelta() 965 Delta.Excess.setUnitInc(PDiff); in computeExcessPressureDelta() 1107 if (Delta.Excess.isValid()) in getMaxUpwardPressureDelta() 1108 dbgs() << "Excess1 " << TRI->getRegPressureSetName(Delta.Excess.getPSet()) in getMaxUpwardPressureDelta() 1109 << " " << Delta.Excess.getUnitInc() << "\n"; in getMaxUpwardPressureDelta() 1116 if (Delta2.Excess.isValid()) in getMaxUpwardPressureDelta() 1117 dbgs() << "Excess2 " << TRI->getRegPressureSetName(Delta2.Excess.getPSet()) in getMaxUpwardPressureDelta() 1118 << " " << Delta2.Excess.getUnitInc() << "\n"; in getMaxUpwardPressureDelta() 1165 if (!Delta.Excess.isValid()) { in getUpwardPressureDelta() [all …]
|
D | MachineScheduler.cpp | 2503 P = Cand.RPDelta.Excess; in traceCandidate() 2865 LLVM_DEBUG(if (Cand.RPDelta.Excess.isValid()) dbgs() in initCandidate() 2867 << TRI->getRegPressureSetName(Cand.RPDelta.Excess.getPSet()) << ":" in initCandidate() 2868 << Cand.RPDelta.Excess.getUnitInc() << "\n"); in initCandidate() 2896 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess, in tryCandidate() 2897 Cand.RPDelta.Excess, in tryCandidate()
|
D | MachinePipeliner.cpp | 1885 if (RPDelta.Excess.isValid()) { in registerPressureFilter() 1888 << TRI->getRegPressureSetName(RPDelta.Excess.getPSet()) in registerPressureFilter() 1889 << ":" << RPDelta.Excess.getUnitInc()); in registerPressureFilter()
|
/external/llvm/lib/CodeGen/ |
D | RegisterPressure.cpp | 922 Delta.Excess = PressureChange(); in computeExcessPressureDelta() 943 Delta.Excess = PressureChange(i); in computeExcessPressureDelta() 944 Delta.Excess.setUnitInc(PDiff); in computeExcessPressureDelta() 1086 if (Delta.Excess.isValid()) in getMaxUpwardPressureDelta() 1087 dbgs() << "Excess1 " << TRI->getRegPressureSetName(Delta.Excess.getPSet()) in getMaxUpwardPressureDelta() 1088 << " " << Delta.Excess.getUnitInc() << "\n"; in getMaxUpwardPressureDelta() 1095 if (Delta2.Excess.isValid()) in getMaxUpwardPressureDelta() 1096 dbgs() << "Excess2 " << TRI->getRegPressureSetName(Delta2.Excess.getPSet()) in getMaxUpwardPressureDelta() 1097 << " " << Delta2.Excess.getUnitInc() << "\n"; in getMaxUpwardPressureDelta() 1144 if (!Delta.Excess.isValid()) { in getUpwardPressureDelta() [all …]
|
D | MachineScheduler.cpp | 2423 P = Cand.RPDelta.Excess; in traceCandidate() 2779 DEBUG(if (Cand.RPDelta.Excess.isValid()) in initCandidate() 2781 << TRI->getRegPressureSetName(Cand.RPDelta.Excess.getPSet()) in initCandidate() 2782 << ":" << Cand.RPDelta.Excess.getUnitInc() << "\n"); in initCandidate() 2810 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess, in tryCandidate() 2811 Cand.RPDelta.Excess, in tryCandidate()
|
D | MachinePipeliner.cpp | 1759 if (RPDelta.Excess.isValid()) { in registerPressureFilter() 1761 << TRI->getRegPressureSetName(RPDelta.Excess.getPSet()) in registerPressureFilter() 1762 << ":" << RPDelta.Excess.getUnitInc()); in registerPressureFilter()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | RegisterPressure.h | 243 PressureChange Excess; 250 return Excess == RHS.Excess && CriticalMax == RHS.CriticalMax
|
/external/llvm/include/llvm/CodeGen/ |
D | RegisterPressure.h | 224 PressureChange Excess; 231 return Excess == RHS.Excess && CriticalMax == RHS.CriticalMax
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonMachineScheduler.cpp | 667 ResCount -= (Delta.Excess.getUnitInc()*PriorityOne); in SchedulingCost() 677 (Delta.Excess.getUnitInc() || Delta.CriticalMax.getUnitInc() || in SchedulingCost() 681 dbgs() << "RP " << Delta.Excess.getUnitInc() << "/" in SchedulingCost()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/ |
D | llvm-objdump.cpp | 1662 for (int Excess = 8 - NumBytes; Excess < 8; Excess++) in DisassembleObject() local 1663 AsciiData[Excess] = '\0'; in DisassembleObject()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonMachineScheduler.cpp | 526 ResCount -= (Delta.Excess.getUnitInc()*PriorityTwo); in SchedulingCost()
|
/external/mesa3d/docs/relnotes/ |
D | 12.0.2.rst | 41 GL Excess demo renders incorrectly on nv43
|
D | 13.0.0.rst | 77 GL Excess demo renders incorrectly on nv43
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 2005 unsigned Excess = 4 * (ARM::R4 - Reg); in HandleByVal() local 2012 if (NSAAOffset != 0 && Size > Excess) { in HandleByVal() 2035 Size = std::max<int>(Size - Excess, 0); in HandleByVal()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 2206 unsigned Excess = 4 * (ARM::R4 - Reg); in HandleByVal() local 2213 if (NSAAOffset != 0 && Size > Excess) { in HandleByVal() 2236 Size = std::max<int>(Size - Excess, 0); in HandleByVal()
|
/external/brotli/tests/testdata/ |
D | plrabn12.txt | 4346 Excess, before the all-bounteous King, who showered
|