Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:kind

51   enum DbgValueKind kind;
60 kind = SDNODE;
69 kind = CONST;
77 kind = FRAMEIX;
81 // Returns the kind.
82 DbgValueKind getKind() const { return kind; }
91 SDNode *getSDNode() const { assert (kind==SDNODE); return u.s.Node; }
94 unsigned getResNo() const { assert (kind==SDNODE); return u.s.ResNo; }
97 const Value *getConst() const { assert (kind==CONST); return u.Const; }
100 unsigned getFrameIx() const { assert (kind==FRAMEIX); return u.FrameIx; }