HomeSort by: relevance | last modified time | path
    Searched refs:DAGUpdateListener (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAG.h 286 /// A DAGUpdateListener automatically registers itself with DAG when it is
288 struct DAGUpdateListener {
289 DAGUpdateListener *const Next;
292 explicit DAGUpdateListener(SelectionDAG &D)
297 virtual ~DAGUpdateListener() {
314 struct DAGNodeDeletedListener : public DAGUpdateListener {
319 : DAGUpdateListener(DAG), Callback(std::move(Callback)) {}
358 /// DAGUpdateListener is a friend so it can manipulate the listener stack.
359 friend struct DAGUpdateListener;
361 /// Linked list of registered DAGUpdateListener instances
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 592 /// This class is a DAGUpdateListener that listens for updates to nodes and
594 class NodeUpdateListener : public SelectionDAG::DAGUpdateListener {
600 : SelectionDAG::DAGUpdateListener(dtl.getDAG()),
SelectionDAGISel.cpp 1020 class ISelUpdater : public SelectionDAG::DAGUpdateListener {
1025 : SelectionDAG::DAGUpdateListener(DAG), ISelPosition(isp) {}
2784 class MatchStateUpdater : public SelectionDAG::DAGUpdateListener
2794 : SelectionDAG::DAGUpdateListener(DAG), NodeToMatch(NodeToMatch),
SelectionDAG.cpp 92 void SelectionDAG::DAGUpdateListener::NodeDeleted(SDNode*, SDNode*) {}
93 void SelectionDAG::DAGUpdateListener::NodeUpdated(SDNode*) {}
94 void SelectionDAG::DAGUpdateListener::NodeInserted(SDNode *) {}
833 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
974 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
1054 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
1062 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
8910 class RAUWUpdateListener : public SelectionDAG::DAGUpdateListener {
8924 : SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {}
DAGCombiner.cpp 798 /// This class is a DAGUpdateListener that removes any deleted
800 class WorklistRemover : public SelectionDAG::DAGUpdateListener {
805 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
812 class WorklistInserter : public SelectionDAG::DAGUpdateListener {
817 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}

Completed in 64 milliseconds