Home
last modified time | relevance | path

Searched refs:SUa (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUSubtarget.cpp763 SUnit *SUa = nullptr; in apply() local
771 SUa = nullptr; in apply()
774 if (!SUa) { in apply()
775 SUa = &SU; in apply()
779 MachineInstr &MI1 = *SUa->getInstr(); in apply()
784 SU.addPredBarrier(SUa); in apply()
787 if (SI.getSUnit() != SUa) in apply()
788 SUa->addPred(SDep(SI.getSUnit(), SDep::Artificial)); in apply()
792 for (const SDep &SI : SUa->Succs) { in apply()
799 SUa = &SU; in apply()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DScheduleDAGInstrs.h206 void addChainDependency(SUnit *SUa, SUnit *SUb,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DScheduleDAGInstrs.cpp544 void ScheduleDAGInstrs::addChainDependency (SUnit *SUa, SUnit *SUb, in addChainDependency() argument
546 if (SUa->getInstr()->mayAlias(AAForDep, *SUb->getInstr(), UseTBAA)) { in addChainDependency()
547 SDep Dep(SUa, SDep::MayAliasMem); in addChainDependency()
DMachineScheduler.cpp1574 SUnit *SUa = MemOpRecords[Idx].SU; in clusterNeighboringMemOps() local
1576 if (SUa->NodeNum > SUb->NodeNum) in clusterNeighboringMemOps()
1577 std::swap(SUa, SUb); in clusterNeighboringMemOps()
1581 DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) { in clusterNeighboringMemOps()
1582 LLVM_DEBUG(dbgs() << "Cluster ld/st SU(" << SUa->NodeNum << ") - SU(" in clusterNeighboringMemOps()
1588 for (const SDep &Succ : SUa->Succs) { in clusterNeighboringMemOps()
DMachinePipeliner.cpp605 static bool isSuccOrder(SUnit *SUa, SUnit *SUb) { in isSuccOrder() argument
608 Worklist.push_back(SUa); in isSuccOrder()