Home
last modified time | relevance | path

Searched refs:NodeList (Results 1 – 25 of 25) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DDDG.cpp135 : DDGNode(NodeKind::PiBlock), NodeList(List) { in PiBlockDDGNode()
136 assert(!NodeList.empty() && "pi-block node constructed with an empty list."); in PiBlockDDGNode()
140 : DDGNode(N), NodeList(N.NodeList) { in PiBlockDDGNode()
141 assert(getKind() == NodeKind::PiBlock && !NodeList.empty() && in PiBlockDDGNode()
146 : DDGNode(std::move(N)), NodeList(std::move(N.NodeList)) { in PiBlockDDGNode()
147 assert(getKind() == NodeKind::PiBlock && !NodeList.empty() && in PiBlockDDGNode()
151 PiBlockDDGNode::~PiBlockDDGNode() { NodeList.clear(); } in ~PiBlockDDGNode()
H A DBlockFrequencyInfoImpl.cpp703 LoopData::NodeList &Headers, LoopData::NodeList &Others) { in findIrreducibleHeaders()
775 LoopData::NodeList Headers; in createIrreducibleLoop()
776 LoopData::NodeList Others; in createIrreducibleLoop()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DParentMapContext.cpp54 matchParents(const DynTypedNodeList &NodeList,
280 match(const DynTypedNodeList &NodeList, in match()
282 if (const auto *TypedNode = NodeList[0].get<T>()) { in match()
295 return std::tuple_cat(std::make_tuple(false, NodeList), in match()
302 match(const DynTypedNodeList &NodeList, in match()
304 if (const auto *TypedNode = NodeList[0].get<T>()) { in match()
308 return std::make_tuple(true, NodeList, TypedNode); in match()
310 return std::make_tuple(false, NodeList, nullptr); in match()
316 matchParents(const DynTypedNodeList &NodeList, in matchParents() argument
318 return MatchParents<T, U...>::match(NodeList, ParentMap); in matchParents()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp95 const NodeList &UNodeList);
97 bool analyzeUses(unsigned DefR, const NodeList &UNodeList,
101 const NodeList &UNodeList);
103 unsigned LRExtReg, const NodeList &UNodeList);
104 void getAllRealUses(NodeAddr<StmtNode *> SN, NodeList &UNodeList);
105 bool allValidCandidates(NodeAddr<StmtNode *> SA, NodeList &UNodeList);
160 const NodeList &UNodeList) { in canRemoveAddasl()
213 NodeList &UNodeList) { in allValidCandidates()
245 NodeList &UNodeList) { in getAllRealUses()
286 const NodeList &UNodeList) { in isSafeToExtLR()
[all …]
H A DHexagonRDFOpt.cpp200 NodeList Refs = IA.Addr->members(DFG); in removeOperand()
256 NodeList Defs; in rewrite()
H A DRDFDeadCode.cpp186 NodeList DRNs, DINs; in erase()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRDFLiveness.cpp109 NodeList Liveness::getAllReachingDefs(RegisterRef RefRR, in getAllReachingDefs()
112 NodeList RDefs; // Return value. in getAllReachingDefs()
275 NodeList Ds; in getAllReachingDefs()
328 NodeList RDs = getAllReachingDefs(RefRR, RefA, false, true, DefRRs); in getAllReachingDefsRecImpl()
365 NodeList Ins = BA.Addr->members(DFG); in getNearestAliasedRef()
379 NodeList Refs = I.Addr->members(DFG); in getNearestAliasedRef()
468 NodeList Phis; in computePhiInfo()
470 NodeList Blocks = FA.Addr->members(DFG); in computePhiInfo()
486 NodeList PhiRefs = PhiA.Addr->members(DFG); in computePhiInfo()
600 NodeList Ds = getAllReachingDefs(UR, PUA, true, false, NoRegs); in computePhiInfo()
[all …]
H A DRDFGraph.cpp174 raw_ostream &operator<< (raw_ostream &OS, const Print<NodeList> &P) { in operator <<()
198 PrintListV(const NodeList &L, const DataFlowGraph &G) : List(L), G(G) {} in PrintListV()
201 const NodeList &List;
527 NodeList CodeNode::members(const DataFlowGraph &G) const { in members()
581 NodeList Ms = members_if(EqBB, G); in findBlock()
886 NodeList Blocks = Func.Addr->members(*this); in build()
929 NodeList Preds; in build()
1049 NodeList Rel = getRelatedRefs(IA, DA); in pushClobbers()
1095 NodeList Rel = getRelatedRefs(IA, DA); in pushDefs()
1125 NodeList DataFlowGraph::getRelatedRefs(NodeAddr<InstrNode*> IA, in getRelatedRefs()
[all …]
H A DCodeGenPrepare.cpp3234 SmallVector<PHINode *, 32> NodeList; member in __anon7f6d13e30c11::PhiNodeSet
3252 if (NodeMap.insert(std::make_pair(Ptr, NodeList.size())).second) { in insert()
3253 NodeList.push_back(Ptr); in insert()
3273 NodeList.clear(); in clear()
3286 iterator end() { return PhiNodeSetIterator(this, NodeList.size()); } in end()
3305 while (CurrentIndex < NodeList.size()) { in SkipRemovedElements()
3306 auto it = NodeMap.find(NodeList[CurrentIndex]); in SkipRemovedElements()
3320 assert(CurrentIndex < Set->NodeList.size() && in operator *()
3322 return Set->NodeList[CurrentIndex]; in operator *()
3326 assert(CurrentIndex < Set->NodeList.size() && in operator ++()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DDDG.h184 NodeList = N.NodeList;
190 NodeList = std::move(N.NodeList);
196 assert(!NodeList.empty() && "Node list is empty."); in getNodes()
197 return NodeList; in getNodes()
211 PiNodeList NodeList;
H A DBlockFrequencyInfoImpl.h219 using NodeList = SmallVector<BlockNode, 4>; member
226 NodeList Nodes; ///< Header and the members of the loop.
261 NodeList::const_iterator members_begin() const { in members_begin()
265 NodeList::const_iterator members_end() const { return Nodes.end(); } in members_end()
266 iterator_range<NodeList::const_iterator> members() const { in members()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp37 struct NodeList { struct
39 NodeList *Next = nullptr; argument
1557 static NodeArrayNode *nodeListToNodeArray(ArenaAllocator &Arena, NodeList *Head, in nodeListToNodeArray()
1572 NodeList *Head = Arena.alloc<NodeList>(); in demangleNameScopeChain()
1579 NodeList *NewHead = Arena.alloc<NodeList>(); in demangleNameScopeChain()
2085 NodeList *Head = Arena.alloc<NodeList>(); in demangleArrayType()
2086 NodeList *Tail = Head; in demangleArrayType()
2097 Tail->Next = Arena.alloc<NodeList>(); in demangleArrayType()
2123 NodeList *Head = Arena.alloc<NodeList>(); in demangleFunctionParameterList()
2124 NodeList **Current = &Head; in demangleFunctionParameterList()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUAnnotateKernelFeatures.cpp39 SmallVector<CallGraphNode*, 8> NodeList; member in __anon5381a0560111::AMDGPUAnnotateKernelFeatures
214 for (auto *Node : reverse(NodeList)) { in processUniformWorkGroupAttribute()
399 NodeList.push_back(I); in runOnSCC()
402 NodeList.clear(); in runOnSCC()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRDFLiveness.h83 NodeList getAllReachingDefs(RegisterRef RefRR, NodeAddr<RefNode*> RefA,
86 NodeList getAllReachingDefs(NodeAddr<RefNode*> RefA) {
91 NodeList getAllReachingDefs(RegisterRef RefRR, NodeAddr<RefNode*> RefA) {
H A DRDFGraph.h512 using NodeList = SmallVector<NodeAddr<NodeBase *>, 4>; variable
605 NodeList members(const DataFlowGraph &G) const;
607 NodeList members_if(Predicate P, const DataFlowGraph &G) const;
761 NodeList getRelatedRefs(NodeAddr<InstrNode*> IA,
909 NodeList CodeNode::members_if(Predicate P, const DataFlowGraph &G) const { in members_if()
910 NodeList MM; in members_if()
944 raw_ostream &operator<<(raw_ostream &OS, const Print<NodeList> &P);
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Djs_objgc_example.txt61 <null> 1 NodeList
123 <null> 3 NodeList
188 <null> 1 NodeList
H A Djs_objnew_example.txt32 <null> NodeList 1
H A Djs_objcpu_example.txt66 NodeList
H A Djs_calls_example.txt47 <null> obj-free NodeList 1
62 <null> obj-new NodeList 1
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Djs_objgc_example.txt61 <null> 1 NodeList
123 <null> 3 NodeList
188 <null> 1 NodeList
H A Djs_objnew_example.txt32 <null> NodeList 1
H A Djs_objcpu_example.txt66 NodeList
H A Djs_calls_example.txt47 <null> obj-free NodeList 1
62 <null> obj-new NodeList 1
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DMachO.h111 using NodeList = SmallVector<NodeState, 16>; variable
112 using node_iterator = NodeList::const_iterator;
118 NodeList Stack;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp419 rdf::NodeList AnalyzedChildDefs; in getGadgetGraph()
474 NodeList Defs = ArgPhi.Addr->members_if(DataFlowGraph::IsDef, DFG); in getGadgetGraph()
486 NodeList Defs = SA.Addr->members_if(DataFlowGraph::IsDef, DFG); in getGadgetGraph()