Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h123 struct AADepGraphNode;
155 struct AADepGraphNode { struct
157 virtual ~AADepGraphNode(){}; in ~AADepGraphNode() argument
158 using DepTy = PointerIntPair<AADepGraphNode *, 1>; argument
165 static AADepGraphNode *DepGetVal(DepTy &DT) { return DT.getPointer(); } in DepGetVal() argument
199 using DepTy = AADepGraphNode::DepTy; argument
200 static AADepGraphNode *DepGetVal(DepTy &DT) { return DT.getPointer(); } in DepGetVal()
207 AADepGraphNode SyntheticRoot;
208 AADepGraphNode *GetEntryNode() { return &SyntheticRoot; } in GetEntryNode()
1273 AADepGraphNode::DepTy(&AA, unsigned(DepClassTy::REQUIRED)));
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DAttributor.cpp2482 template <> struct GraphTraits<AADepGraphNode *> {
2483 using NodeRef = AADepGraphNode *;
2484 using DepTy = PointerIntPair<AADepGraphNode *, 1>;
2485 using EdgeRef = PointerIntPair<AADepGraphNode *, 1>;
2487 static NodeRef getEntryNode(AADepGraphNode *DGN) { return DGN; } in getEntryNode()
2500 struct GraphTraits<AADepGraph *> : public GraphTraits<AADepGraphNode *> {
2514 static std::string getNodeLabel(const AADepGraphNode *Node, in getNodeLabel()