Home
last modified time | relevance | path

Searched refs:AADepGraphNode (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h127 struct AADepGraphNode;
227 struct AADepGraphNode { struct
229 virtual ~AADepGraphNode(){}; in ~AADepGraphNode() argument
230 using DepTy = PointerIntPair<AADepGraphNode *, 1>; argument
237 static AADepGraphNode *DepGetVal(DepTy &DT) { return DT.getPointer(); } in DepGetVal() argument
271 using DepTy = AADepGraphNode::DepTy; argument
279 AADepGraphNode SyntheticRoot;
280 AADepGraphNode *GetEntryNode() { return &SyntheticRoot; } in GetEntryNode()
1401 AADepGraphNode::DepTy(&AA, unsigned(DepClassTy::REQUIRED)));
2630 struct AbstractAttribute : public IRPosition, public AADepGraphNode {
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp2944 template <> struct GraphTraits<AADepGraphNode *> {
2945 using NodeRef = AADepGraphNode *;
2946 using DepTy = PointerIntPair<AADepGraphNode *, 1>;
2947 using EdgeRef = PointerIntPair<AADepGraphNode *, 1>;
2949 static NodeRef getEntryNode(AADepGraphNode *DGN) { return DGN; } in getEntryNode()
2962 struct GraphTraits<AADepGraph *> : public GraphTraits<AADepGraphNode *> {
2976 static std::string getNodeLabel(const AADepGraphNode *Node, in getNodeLabel()