Searched refs:OpRef (Results 1 – 1 of 1) sorted by relevance
622 struct OpRef { struct623 OpRef(SDValue V) : OpV(V) {} in OpRef() function627 static OpRef res(int N) { return OpRef(Whole | (N & Index)); } in res() argument628 static OpRef fail() { return OpRef(Invalid); } in fail() argument630 static OpRef lo(const OpRef &R) { in lo() argument632 return OpRef(R.OpN & (Undef | Index | LoHalf)); in lo()634 static OpRef hi(const OpRef &R) { in hi() argument636 return OpRef(R.OpN & (Undef | Index | HiHalf)); in hi()638 static OpRef undef(MVT Ty) { return OpRef(Undef | Ty.SimpleTy); } in undef() argument664 OpRef(unsigned N) : OpN(N) {} in OpRef() argument[all …]