Lines Matching refs:DbgOps
524 DbgOpID DbgOps[MAX_DBG_OPS];
546 DbgValue(ArrayRef<DbgOpID> DbgOps, const DbgValueProperties &Prop)
547 : OpCount(DbgOps.size()), BlockNo(0), Properties(Prop), Kind(Def) {
550 assert(DbgOps.size() == Prop.getLocationOpCount());
551 if (DbgOps.size() > MAX_DBG_OPS ||
552 any_of(DbgOps, [](DbgOpID ID) { return ID.isUndef(); })) {
556 if (DbgOps.size() > MAX_DBG_OPS) {
562 for (unsigned Idx = 0; Idx < DbgOps.size(); ++Idx)
563 this->DbgOps[Idx] = DbgOps[Idx];
602 ArrayRef<DbgOpID> getDbgOpIDs() const { return {DbgOps, OpCount}; }
611 return DbgOps[Index];
623 DbgOps[Idx] = NewIDs[Idx];
1025 MachineInstrBuilder emitLoc(const SmallVectorImpl<ResolvedDbgOp> &DbgOps,