Searched defs:SUnits (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DLatencyPriorityQueue.h33 // SUnits - The SUnits for the current graph.
34 std::vector<SUnit> *SUnits; member in class:llvm::LatencyPriorityQueue
53 SUnits = &sunits;
54 NumNodesSolelyBlocking.resize(SUnits->size(), 0);
58 NumNodesSolelyBlocking.resize(SUnits->size(), 0);
65 SUnits = nullptr;
69 assert(NodeNum < (*SUnits).size());
70 return (*SUnits)[NodeNum].getHeight();
H A DResourcePriorityQueue.h39 /// SUnits - The SUnits for the current graph.
40 std::vector<SUnit> *SUnits; member in class:llvm::ResourcePriorityQueue
89 NumNodesSolelyBlocking.resize(SUnits->size(), 0);
95 SUnits = nullptr;
99 assert(NodeNum < (*SUnits).size());
100 return (*SUnits)[NodeNum].getHeight();
H A DScheduleDAG.h96 /// classes which require default constructors. SUnits may not
194 /// as "must alias", meaning that the SUnits at either end of the edge
268 // Preds/Succs - The SUnits before/after us in the graph.
506 virtual void initNodes(std::vector<SUnit> &SUnits) = 0;
559 std::vector<SUnit> SUnits; // The scheduling units. member in class:llvm::SUnit::ScheduleDAG
603 /// VerifyScheduledDAG - Verify that all SUnits were scheduled and that
604 /// their state is consistent. Return the number of scheduled SUnits.
678 return G->SUnits.begin();
681 return G->SUnits.end();
686 /// ordering for SUnits an
693 std::vector<SUnit> &SUnits; member in class:llvm::SUnit::ScheduleDAGTopologicalSort
[all...]
/external/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp446 BreakAntiDependencies(const std::vector<SUnit>& SUnits, argument
453 if (SUnits.empty()) return 0;
463 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
464 const SUnit *SU = &SUnits[i];
583 // Also, if there are dependencies on other SUnits with the
H A DScheduleDAGInstrs.cpp331 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
332 // retrieve the existing SUnits list for this register's uses.
678 /// After initSUnits, the SUnits vector cannot be resized and the scheduler may
687 SUnits.reserve(NumRegionInstrs);
749 PDiffs->init(SUnits.size());
1452 void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) { argument
1458 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {

Completed in 913 milliseconds