Searched refs:DbgOp (Results 1 – 5 of 5) sorted by relevance
196 for (const SDDbgOperand &DbgOp : getLocationOps()) in getSDNodes() local197 if (DbgOp.getKind() == SDDbgOperand::SDNODE) in getSDNodes()198 Dependencies.push_back(DbgOp.getSDNode()); in getSDNodes()
770 auto IsInvalidOp = [](SDDbgOperand DbgOp) { in EmitDbgInstrRef() argument771 return DbgOp.getKind() == SDDbgOperand::FRAMEIX; in EmitDbgInstrRef()775 auto IsNonInstrRefOp = [](SDDbgOperand DbgOp) { in EmitDbgInstrRef() argument776 return DbgOp.getKind() == SDDbgOperand::CONST; in EmitDbgInstrRef()
282 struct DbgOp {289 DbgOp() : ID(ValueIDNum::EmptyValue), IsConst(false) {}290 DbgOp(ValueIDNum ID) : ID(ID), IsConst(false) {}291 DbgOp(MachineOperand MO) : MO(MO), IsConst(true) {}384 DbgOpID insert(DbgOp Op) {393 DbgOp find(DbgOpID ID) const {395 return DbgOp();397 return DbgOp(ConstOps[ID.getIndex()]);398 return DbgOp(ValueOps[ID.getIndex()]);
245 SmallVector<DbgOp> Values;349 SmallVector<DbgOp> DbgOps; in loadVarInloc()365 DbgOp Op = DbgOpStore.find(ID); in loadVarInloc()515 for (DbgOp &Op : Use.Values) { in checkInstForNewValues()556 for (DbgOp &Op : Use.Values) { in checkInstForNewValues()1640 SmallVector<DbgOp> DbgOps; in transferDebugInstrRef()1651 for (const DbgOp &Op : DbgOps) { in transferDebugInstrRef()1680 for (const DbgOp &DbgOp : DbgOps) { in transferDebugInstrRef() local1681 if (DbgOp.IsConst) { in transferDebugInstrRef()1682 NewLocs.push_back(DbgOp.MO); in transferDebugInstrRef()[all …]
1542 for (auto &DbgOp : User->getDebugOperandsForReg(Reg)) { in SalvageUnsunkDebugUsersOfCopy() local1543 DbgOp.setReg(MI.getOperand(1).getReg()); in SalvageUnsunkDebugUsersOfCopy()1544 DbgOp.setSubReg(MI.getOperand(1).getSubReg()); in SalvageUnsunkDebugUsersOfCopy()