HomeSort by relevance Sort by last modified time
    Searched defs:SUnits (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/CodeGen/
LatencyPriorityQueue.h 33 // SUnits - The SUnits for the current graph.
34 std::vector<SUnit> *SUnits;
52 void initNodes(std::vector<SUnit> &sunits) {
53 SUnits = &sunits;
54 NumNodesSolelyBlocking.resize(SUnits->size(), 0);
58 NumNodesSolelyBlocking.resize(SUnits->size(), 0);
65 SUnits = 0;
69 assert(NodeNum < (*SUnits).size())
    [all...]
ResourcePriorityQueue.h 39 /// SUnits - The SUnits for the current graph.
40 std::vector<SUnit> *SUnits;
86 void initNodes(std::vector<SUnit> &sunits);
89 NumNodesSolelyBlocking.resize(SUnits->size(), 0);
95 SUnits = 0;
99 assert(NodeNum < (*SUnits).size());
100 return (*SUnits)[NodeNum].getHeight();
ScheduleDAG.h 101 /// classes which require default constructors. SUnits may not
207 /// as "must alias", meaning that the SUnits at either end of the edge
281 // Preds/Succs - The SUnits before/after us in the graph.
510 virtual void initNodes(std::vector<SUnit> &SUnits) = 0;
563 std::vector<SUnit> SUnits; // The scheduling units.
607 /// VerifyScheduledDAG - Verify that all SUnits were scheduled and that
608 /// their state is consistent. Return the number of scheduled SUnits.
682 return G->SUnits.begin();
685 return G->SUnits.end();
690 /// ordering for SUnits and provides methods for dynamically updatin
    [all...]

Completed in 59 milliseconds