1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Remove some special-case logic in ScheduleDAGSDNodes's

latency computation code that is no longer needed with the
new method for handling latencies.

llvm-svn: 61074
This commit is contained in:
Dan Gohman 2008-12-16 03:31:11 +00:00
parent 40a40dd7c1
commit e2cf452271

View File

@ -196,12 +196,6 @@ void ScheduleDAGSDNodes::ComputeLatency(SUnit *SU) {
// Compute the latency for the node. We use the sum of the latencies for
// all nodes flagged together into this SUnit.
if (InstrItins.isEmpty()) {
// No latency information.
SU->Latency = 1;
return;
}
SU->Latency = 0;
bool SawMachineOpcode = false;
for (SDNode *N = SU->getNode(); N; N = N->getFlaggedNode())
@ -210,10 +204,6 @@ void ScheduleDAGSDNodes::ComputeLatency(SUnit *SU) {
SU->Latency +=
InstrItins.getLatency(TII->get(N->getMachineOpcode()).getSchedClass());
}
// Ensure that CopyToReg and similar nodes have a non-zero latency.
if (!SawMachineOpcode)
SU->Latency = 1;
}
/// CountResults - The results of target nodes have register or immediate