OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SuccSU
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp
116
SUnit *
SuccSU
= D.getSUnit();
119
if (
SuccSU
->NumPredsLeft == 0) {
121
SuccSU
->dump(this);
128
--
SuccSU
->NumPredsLeft;
130
SuccSU
->setDepthToAtLeast(SU->getDepth() + D.getLatency());
134
if (
SuccSU
->NumPredsLeft == 0 &&
SuccSU
!= &ExitSU) {
135
PendingQueue.push_back(
SuccSU
);
ResourcePriorityQueue.cpp
116
SUnit *
SuccSU
= I->getSUnit();
117
const SDNode *ScegN =
SuccSU
->getNode();
ScheduleDAGFast.cpp
369
SUnit *
SuccSU
= I->getSUnit();
370
if (
SuccSU
->isScheduled) {
373
AddPred(
SuccSU
, D);
375
DelDeps.push_back(std::make_pair(
SuccSU
, D));
406
SUnit *
SuccSU
= I->getSUnit();
407
if (
SuccSU
->isScheduled) {
410
AddPred(
SuccSU
, D);
411
DelDeps.push_back(std::make_pair(
SuccSU
, *I));
ScheduleDAGRRList.cpp
[
all
...]
/external/llvm/lib/CodeGen/
PostRASchedulerList.cpp
564
SUnit *
SuccSU
= SuccEdge->getSUnit();
567
--
SuccSU
->WeakPredsLeft;
571
if (
SuccSU
->NumPredsLeft == 0) {
573
SuccSU
->dump(this);
578
--
SuccSU
->NumPredsLeft;
582
//
SuccSU
->setDepthToAtLeast(SU->getDepth() + SuccEdge->getLatency());
593
if (
SuccSU
->NumPredsLeft == 0 &&
SuccSU
!= &ExitSU)
594
PendingQueue.push_back(
SuccSU
);
MachineScheduler.cpp
327
bool ScheduleDAGMI::canAddEdge(SUnit *
SuccSU
, SUnit *PredSU) {
328
return
SuccSU
== &ExitSU || !Topo.IsReachable(PredSU,
SuccSU
);
331
bool ScheduleDAGMI::addEdge(SUnit *
SuccSU
, const SDep &PredDep) {
332
if (
SuccSU
!= &ExitSU) {
335
if (Topo.IsReachable(PredDep.getSUnit(),
SuccSU
))
337
Topo.AddPred(
SuccSU
, PredDep.getSUnit());
339
SuccSU
->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
347
/// FIXME: Adjust
SuccSU
height based on MinLatency.
349
SUnit *
SuccSU
= SuccEdge->getSUnit()
[
all
...]
Completed in 293 milliseconds