Lines Matching refs:IsConst
364 bool IsConst;
366 DbgOp() : ID(ValueIDNum::EmptyValue), IsConst(false) {}
367 DbgOp(ValueIDNum ID) : ID(ID), IsConst(false) {}
368 DbgOp(MachineOperand MO) : MO(MO), IsConst(true) {}
370 bool isUndef() const { return !IsConst && ID == ValueIDNum::EmptyValue; }
386 bool IsConst;
388 ResolvedDbgOp(LocIdx Loc) : Loc(Loc), IsConst(false) {}
389 ResolvedDbgOp(MachineOperand MO) : MO(MO), IsConst(true) {}
392 if (IsConst != Other.IsConst)
394 if (IsConst)
413 uint32_t IsConst : 1;
426 DbgOpID(bool IsConst, uint32_t Index) : ID({IsConst, Index}) {}
436 bool isConst() const { return ID.IsConst && !isUndef(); }
464 if (Op.IsConst)