Lines Matching refs:IsConst
326 bool IsConst;
328 DbgOp() : ID(ValueIDNum::EmptyValue), IsConst(false) {}
329 DbgOp(ValueIDNum ID) : ID(ID), IsConst(false) {}
330 DbgOp(MachineOperand MO) : MO(MO), IsConst(true) {}
332 bool isUndef() const { return !IsConst && ID == ValueIDNum::EmptyValue; }
348 bool IsConst;
350 ResolvedDbgOp(LocIdx Loc) : Loc(Loc), IsConst(false) {}
351 ResolvedDbgOp(MachineOperand MO) : MO(MO), IsConst(true) {}
354 if (IsConst != Other.IsConst)
356 if (IsConst)
375 uint32_t IsConst : 1;
388 DbgOpID(bool IsConst, uint32_t Index) : ID({IsConst, Index}) {}
398 bool isConst() const { return ID.IsConst && !isUndef(); }
426 if (Op.IsConst)