Home
last modified time | relevance | path

Searched refs:DbgOps (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.h519 DbgOpID DbgOps[MAX_DBG_OPS];
541 DbgValue(ArrayRef<DbgOpID> DbgOps, const DbgValueProperties &Prop)
542 : OpCount(DbgOps.size()), BlockNo(0), Properties(Prop), Kind(Def) {
545 assert(DbgOps.size() == Prop.getLocationOpCount());
546 if (DbgOps.size() > MAX_DBG_OPS ||
547 any_of(DbgOps, [](DbgOpID ID) { return ID.isUndef(); })) {
551 if (DbgOps.size() > MAX_DBG_OPS) {
557 for (unsigned Idx = 0; Idx < DbgOps.size(); ++Idx)
558 this->DbgOps[Idx] = DbgOps[Idx];
597 ArrayRef<DbgOpID> getDbgOpIDs() const { return {DbgOps, OpCount}; }
[all …]
H A DInstrRefBasedImpl.cpp358 SmallVector<DbgOp> DbgOps; in loadVarInloc() local
376 DbgOps.push_back(Op); in loadVarInloc()
427 addUseBeforeDef(VarID, Value.Properties, DbgOps, LastUseBeforeDef); in loadVarInloc()
522 const SmallVectorImpl<DbgOp> &DbgOps, unsigned Inst) { in addUseBeforeDef() argument
523 UseBeforeDefs[Inst].emplace_back(DbgOps, VarID, Properties); in addUseBeforeDef()
585 SmallVector<ResolvedDbgOp> DbgOps; in checkInstForNewValues() local
589 DbgOps.push_back(Op.MO); in checkInstForNewValues()
595 DbgOps.push_back(NewLoc); in checkInstForNewValues()
601 if (DbgOps.size() != Use.Values.size()) in checkInstForNewValues()
607 Use.VarID, MTracker->emitLoc(DbgOps, Var, DILoc, Use.Properties))); in checkInstForNewValues()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocFast.cpp1732 SmallVector<MachineOperand *> DbgOps( in handleDebugValue() local
1737 for (auto &RegMO : DbgOps) in handleDebugValue()
1745 LiveDbgValueMap[Reg].append(DbgOps.begin(), DbgOps.end()); in handleDebugValue()