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

  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 225 /// A DAGUpdateListener automatically registers itself with DAG when it is
227 struct DAGUpdateListener {
228 DAGUpdateListener *const Next;
231 explicit DAGUpdateListener(SelectionDAG &D)
236 virtual ~DAGUpdateListener() {
258 /// DAGUpdateListener is a friend so it can manipulate the listener stack.
259 friend struct DAGUpdateListener;
261 /// Linked list of registered DAGUpdateListener instances.
262 /// This stack is maintained by DAGUpdateListener RAII.
263 DAGUpdateListener *UpdateListeners
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 646 /// NodeUpdateListener - This class is a DAGUpdateListener that listens for
648 class NodeUpdateListener : public SelectionDAG::DAGUpdateListener {
654 : SelectionDAG::DAGUpdateListener(dtl.getDAG()),
    [all...]
SelectionDAGISel.cpp     [all...]
SelectionDAG.cpp 65 void SelectionDAG::DAGUpdateListener::NodeDeleted(SDNode*, SDNode*) {}
66 void SelectionDAG::DAGUpdateListener::NodeUpdated(SDNode*) {}
622 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
828 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
836 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
    [all...]
DAGCombiner.cpp 499 /// This class is a DAGUpdateListener that removes any deleted
501 class WorklistRemover : public SelectionDAG::DAGUpdateListener {
505 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
    [all...]

Completed in 1419 milliseconds