Home
last modified time | relevance | path

Searched refs:DbgOp (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h196 for (const SDDbgOperand &DbgOp : getLocationOps()) in getSDNodes() local
197 if (DbgOp.getKind() == SDDbgOperand::SDNODE) in getSDNodes()
198 Dependencies.push_back(DbgOp.getSDNode()); in getSDNodes()
H A DInstrEmitter.cpp770 auto IsInvalidOp = [](SDDbgOperand DbgOp) { in EmitDbgInstrRef() argument
771 return DbgOp.getKind() == SDDbgOperand::FRAMEIX; in EmitDbgInstrRef()
775 auto IsNonInstrRefOp = [](SDDbgOperand DbgOp) { in EmitDbgInstrRef() argument
776 return DbgOp.getKind() == SDDbgOperand::CONST; in EmitDbgInstrRef()
/openbsd/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.h282 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()]);
H A DInstrRefBasedImpl.cpp245 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() local
1681 if (DbgOp.IsConst) { in transferDebugInstrRef()
1682 NewLocs.push_back(DbgOp.MO); in transferDebugInstrRef()
[all …]
/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DMachineSink.cpp1542 for (auto &DbgOp : User->getDebugOperandsForReg(Reg)) { in SalvageUnsunkDebugUsersOfCopy() local
1543 DbgOp.setReg(MI.getOperand(1).getReg()); in SalvageUnsunkDebugUsersOfCopy()
1544 DbgOp.setSubReg(MI.getOperand(1).getSubReg()); in SalvageUnsunkDebugUsersOfCopy()