Home
last modified time | relevance | path

Searched refs:NodeSet (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRDFLiveness.h95 NodeSet getAllReachedUses(RegisterRef RefRR, NodeAddr<DefNode*> DefA,
98 NodeSet getAllReachedUses(RegisterRef RefRR, NodeAddr<DefNode*> DefA) {
102 std::pair<NodeSet,bool> getAllReachingDefsRec(RegisterRef RefRR,
103 NodeAddr<RefNode*> RefA, NodeSet &Visited, const NodeSet &Defs);
164 std::pair<NodeSet,bool> getAllReachingDefsRecImpl(RegisterRef RefRR,
165 NodeAddr<RefNode*> RefA, NodeSet &Visited, const NodeSet &Defs,
H A DMachinePipeliner.h53 class NodeSet; variable
138 using NodeSetType = SmallVector<NodeSet, 8>;
292 void addConnectedNodes(SUnit *SU, NodeSet &NewSet,
311 class NodeSet {
324 NodeSet() = default;
325 NodeSet(iterator S, iterator E) : Nodes(S, E), HasRecurrence(true) { in NodeSet() function
371 int compareRecMII(NodeSet &RHS) { return RecMII - RHS.RecMII; } in compareRecMII()
403 bool operator>(const NodeSet &RHS) const {
414 bool operator==(const NodeSet &RHS) const {
419 bool operator!=(const NodeSet &RHS) const { return !operator==(RHS); }
H A DRegAllocPBQP.h436 NodeSet::iterator NItr = OptimallyReducibleNodes.begin(); in reduce()
458 NodeSet::iterator NItr = ConservativelyAllocatableNodes.begin(); in reduce()
464 NodeSet::iterator NItr = in reduce()
496 using NodeSet = std::set<NodeId>; variable
497 NodeSet OptimallyReducibleNodes;
498 NodeSet ConservativelyAllocatableNodes;
499 NodeSet NotProvablyAllocatableNodes;
H A DRDFGraph.h513 using NodeSet = std::set<NodeId>; variable
945 raw_ostream &operator<<(raw_ostream &OS, const Print<NodeSet> &P);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DImmutableGraph.h111 class NodeSet {
116 NodeSet(const ImmutableGraph &G, bool ContainsAll = false)
139 NodeSet &operator|=(const NodeSet &RHS) {
145 NodeSet &operator&=(const NodeSet &RHS) {
151 NodeSet &operator^=(const NodeSet &RHS) {
164 const NodeSet &Set;
173 iterator(const NodeSet &Set, size_type Begin) in iterator()
303 using NodeSet = typename GraphT::NodeSet; variable
354 static std::unique_ptr<GraphT> trim(const GraphT &G, const NodeSet &TrimNodes, in trim()
H A DX86LoadValueInjectionLoadHardening.cpp155 using NodeSet = MachineGadgetGraph::NodeSet; typedef in __anonfec41a3c0111::X86LoadValueInjectionLoadHardeningPass
171 NodeSet &ElimNodes /* in, out */) const;
369 rdf::NodeSet Uses; in getGadgetGraph()
544 NodeSet &ElimNodes /* in, out */) const { in elimMitigatedEdgesAndNodes()
561 NodeSet ReachableNodes{G}; in elimMitigatedEdgesAndNodes()
600 NodeSet ElimNodes{*Graph}; in trimMitigatedEdges()
653 Graph = GraphBuilder::trim(*Graph, NodeSet{*Graph}, CutEdges); in hardenLoadsWithPlugin()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp71 using NodeSet = std::set<GepNode *>; typedef
297 in_set(const NodeSet &S) : NS(S) {} in in_set()
304 const NodeSet &NS;
439 NodeSet &Nodes) { in nodes_for_root()
458 using NodeSymRel = std::set<NodeSet>;
464 static const NodeSet *node_class(GepNode *N, NodeSymRel &Rel) { in node_class()
530 using NodeSetMap = std::map<unsigned, NodeSet>; in common()
545 NodeSet &S = I->second; in common()
546 for (NodeSet::iterator NI = S.begin(), NE = S.end(); NI != NE; ++NI) { in common()
555 NodeSet C; in common()
[all …]
H A DHexagonISelDAGToDAGHVX.cpp130 using NodeSet = std::set<Node>; typedef
131 std::map<Node,NodeSet> Edges;
143 std::pair<bool, ColorKind> getUniqueColor(const NodeSet &Nodes);
150 std::pair<bool, ColorKind> Coloring::getUniqueColor(const NodeSet &Nodes) { in getUniqueColor()
183 NodeSet &Is = Edges[I]; in build()
195 NodeSet &Ns = Edges[Q[I]]; in color()
206 NodeSet &Ns = Edges[N]; in color()
235 NodeSet &Ns = Edges[N]; in color()
246 NodeSet &Cs = Edges[C]; in color()
247 NodeSet CopyNs = Ns; in color()
H A DHexagonOptAddrMode.cpp217 NodeSet Visited, Defs; in allValidCandidates()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRDFLiveness.cpp308 std::pair<NodeSet,bool>
310 NodeSet &Visited, const NodeSet &Defs) { in getAllReachingDefsRec()
314 std::pair<NodeSet,bool>
316 NodeSet &Visited, const NodeSet &Defs, unsigned Nest, unsigned MaxNest) { in getAllReachingDefsRecImpl()
318 return { NodeSet(), false }; in getAllReachingDefsRecImpl()
333 NodeSet TmpDefs = Defs; in getAllReachingDefsRecImpl()
337 NodeSet Result = Defs; in getAllReachingDefsRecImpl()
419 NodeSet Liveness::getAllReachedUses(RegisterRef RefRR, in getAllReachedUses()
421 NodeSet Uses; in getAllReachedUses()
451 NodeSet T; in getAllReachedUses()
[all …]
H A DMachinePipeliner.cpp545 llvm::stable_sort(NodeSets, std::greater<NodeSet>()); in schedule()
1175 for (NodeSet &Nodes : NodeSets) { in calculateRecMII()
1290 NodeSets.push_back(NodeSet(Stack.begin(), Stack.end())); in circuit()
1501 for (NodeSet &I : NodeSets) in computeNodeFunctions()
1523 const NodeSet *S = nullptr) { in pred_L()
1553 const NodeSet *S = nullptr) { in succ_L()
1607 NodeSet &NS) { in computeLiveOuts()
1695 NodeSet &N1 = NodeSets[i]; in colocateNodeSets()
1700 NodeSet &N2 = NodeSets[j]; in colocateNodeSets()
1742 for (NodeSet &I : NodeSets) { in groupRemainingNodes()
[all …]
H A DRDFGraph.cpp184 raw_ostream &operator<< (raw_ostream &OS, const Print<NodeSet> &P) { in operator <<()
1028 NodeSet Visited; in pushClobbers()
1072 NodeSet Visited; in pushDefs()