HomeSort by relevance Sort by last modified time
    Searched refs:DAGUpdateListener (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 177 /// DAGUpdateListener - Clients of various APIs that cause global effects on
181 /// A DAGUpdateListener automatically registers itself with DAG when it is
183 struct DAGUpdateListener {
184 DAGUpdateListener *const Next;
187 explicit DAGUpdateListener(SelectionDAG &D)
192 virtual ~DAGUpdateListener() {
207 /// DAGUpdateListener is a friend so it can manipulate the listener stack.
208 friend struct DAGUpdateListener;
210 /// UpdateListeners - Linked list of registered DAGUpdateListener instances.
211 /// This stack is maintained by DAGUpdateListener RAII
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 623 /// NodeUpdateListener - This class is a DAGUpdateListener that listens for
625 class NodeUpdateListener : public SelectionDAG::DAGUpdateListener {
631 : SelectionDAG::DAGUpdateListener(dtl.getDAG()),
    [all...]
SelectionDAG.cpp 64 void SelectionDAG::DAGUpdateListener::NodeDeleted(SDNode*, SDNode*) {}
65 void SelectionDAG::DAGUpdateListener::NodeUpdated(SDNode*) {}
577 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
721 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
729 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
    [all...]
SelectionDAGISel.cpp 728 class ISelUpdater : public SelectionDAG::DAGUpdateListener {
732 : SelectionDAG::DAGUpdateListener(DAG), ISelPosition(isp) {}
    [all...]
LegalizeDAG.cpp 50 class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
150 // DAGUpdateListener implementation.
212 : SelectionDAG::DAGUpdateListener(dag),
    [all...]
DAGCombiner.cpp 343 /// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
345 class WorkListRemover : public SelectionDAG::DAGUpdateListener {
349 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
    [all...]

Completed in 1292 milliseconds