LLVM 20.0.0git
|
Represents a use of a SDNode. More...
#include "llvm/CodeGen/SelectionDAGNodes.h"
Public Member Functions | |
SDUse ()=default | |
SDUse (const SDUse &U)=delete | |
SDUse & | operator= (const SDUse &)=delete |
operator const SDValue & () const | |
Normally SDUse will just implicitly convert to an SDValue that it holds. | |
const SDValue & | get () const |
If implicit conversion to SDValue doesn't work, the get() method returns the SDValue. | |
SDNode * | getUser () |
This returns the SDNode that contains this Use. | |
const SDNode * | getUser () const |
SDUse * | getNext () const |
Get the next SDUse in the use list. | |
SDNode * | getNode () const |
Convenience function for get().getNode(). | |
unsigned | getResNo () const |
Convenience function for get().getResNo(). | |
EVT | getValueType () const |
Convenience function for get().getValueType(). | |
bool | operator== (const SDValue &V) const |
Convenience function for get().operator==. | |
bool | operator!= (const SDValue &V) const |
Convenience function for get().operator!=. | |
bool | operator< (const SDValue &V) const |
Convenience function for get().operator<. | |
Friends | |
class | SelectionDAG |
class | SDNode |
class | HandleSDNode |
Represents a use of a SDNode.
This class holds an SDValue, which records the SDNode being used and the result number, a pointer to the SDNode using the value, and Next and Prev pointers, which link together all the uses of an SDNode.
Definition at line 284 of file SelectionDAGNodes.h.
|
default |
If implicit conversion to SDValue doesn't work, the get() method returns the SDValue.
Definition at line 304 of file SelectionDAGNodes.h.
|
inline |
Get the next SDUse in the use list.
Definition at line 311 of file SelectionDAGNodes.h.
|
inline |
Convenience function for get().getNode().
Definition at line 314 of file SelectionDAGNodes.h.
References llvm::SDValue::getNode().
Referenced by llvm::simplify_type< SDUse >::getSimplifiedValue().
|
inline |
Convenience function for get().getResNo().
Definition at line 316 of file SelectionDAGNodes.h.
References llvm::SDValue::getResNo().
|
inline |
This returns the SDNode that contains this Use.
Definition at line 307 of file SelectionDAGNodes.h.
Definition at line 308 of file SelectionDAGNodes.h.
|
inline |
Convenience function for get().getValueType().
Definition at line 318 of file SelectionDAGNodes.h.
References llvm::SDValue::getValueType().
Normally SDUse will just implicitly convert to an SDValue that it holds.
Definition at line 300 of file SelectionDAGNodes.h.
Convenience function for get().operator!=.
Definition at line 326 of file SelectionDAGNodes.h.
Convenience function for get().operator<.
Definition at line 331 of file SelectionDAGNodes.h.
Convenience function for get().operator==.
Definition at line 321 of file SelectionDAGNodes.h.
|
friend |
Definition at line 339 of file SelectionDAGNodes.h.
|
friend |
Definition at line 337 of file SelectionDAGNodes.h.
|
friend |
Definition at line 336 of file SelectionDAGNodes.h.