Home
last modified time | relevance | path

Searched refs:SDDbgOperand (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h31 class SDDbgOperand {
72 return SDDbgOperand(Node, ResNo); in fromNode()
75 return SDDbgOperand(FrameIdx, FRAMEIX); in fromFrameIdx()
77 static SDDbgOperand fromVReg(unsigned VReg) { in fromVReg()
78 return SDDbgOperand(VReg, VREG); in fromVReg()
80 static SDDbgOperand fromConst(const Value *Const) { in fromConst()
81 return SDDbgOperand(Const); in fromConst()
85 bool operator==(const SDDbgOperand &Other) const {
141 SDDbgOperand *LocationOps;
185 ArrayRef<SDDbgOperand> getLocationOps() const { in getLocationOps()
[all …]
H A DInstrEmitter.cpp720 ArrayRef<SDDbgOperand> LocationOps, in AddDbgValueLocationOps()
722 for (const SDDbgOperand &Op : LocationOps) { in AddDbgValueLocationOps()
724 case SDDbgOperand::FRAMEIX: in AddDbgValueLocationOps()
727 case SDDbgOperand::VREG: in AddDbgValueLocationOps()
730 case SDDbgOperand::SDNODE: { in AddDbgValueLocationOps()
743 case SDDbgOperand::CONST: { in AddDbgValueLocationOps()
769 SDDbgOperand DbgOperand = SD->getLocationOps()[0]; in EmitDbgInstrRef()
777 if (DbgOperand.getKind() == SDDbgOperand::FRAMEIX || in EmitDbgInstrRef()
778 DbgOperand.getKind() == SDDbgOperand::CONST) in EmitDbgInstrRef()
810 if (DbgOperand.getKind() == SDDbgOperand::VREG) { in EmitDbgInstrRef()
[all …]
H A DInstrEmitter.h28 class SDDbgOperand; variable
114 ArrayRef<SDDbgOperand> Locations,
H A DSelectionDAGDumper.cpp858 for (const SDDbgOperand &Op : getLocationOps()) { in print()
862 case SDDbgOperand::SDNODE: in print()
868 case SDDbgOperand::CONST: in print()
871 case SDDbgOperand::FRAMEIX: in print()
874 case SDDbgOperand::VREG: in print()
H A DScheduleDAGSDNodes.cpp740 for (const SDDbgOperand &L : DV->getLocationOps()) { in ProcessSDDbgValues()
741 if (L.getKind() == SDDbgOperand::SDNODE && in ProcessSDDbgValues()
H A DSelectionDAG.cpp9835 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromNode(N, R), in getDbgValue()
9848 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromConst(C), {}, in getConstantDbgValue()
9874 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromFrameIdx(FI), in getFrameIndexDbgValue()
9886 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromVReg(VReg), in getVRegDbgValue()
9892 ArrayRef<SDDbgOperand> Locs, in getDbgValueList()
9919 SDDbgOperand FromLocOp = in transferDbgValues()
9920 SDDbgOperand::fromNode(From.getNode(), From.getResNo()); in transferDbgValues()
9921 SDDbgOperand ToLocOp = SDDbgOperand::fromNode(To.getNode(), To.getResNo()); in transferDbgValues()
9936 [&Changed, FromLocOp](const SDDbgOperand &Op) { in transferDbgValues()
10014 if (NewLocOps[i].getKind() != SDDbgOperand::SDNODE || in salvageDebugInfo()
[all …]
H A DSelectionDAGBuilder.cpp1157 SmallVector<SDDbgOperand, 2> Locs; in addDanglingDebugInfo()
1160 Locs.push_back(SDDbgOperand::fromConst(Undef)); in addDanglingDebugInfo()
1337 SmallVector<SDDbgOperand> LocationOps; in handleDebugValue()
1343 LocationOps.emplace_back(SDDbgOperand::fromConst(V)); in handleDebugValue()
1352 LocationOps.emplace_back(SDDbgOperand::fromFrameIdx(SI->second)); in handleDebugValue()
1380 LocationOps.emplace_back(SDDbgOperand::fromFrameIdx(FISDN->getIndex())); in handleDebugValue()
1384 SDDbgOperand::fromNode(N.getNode(), N.getResNo())); in handleDebugValue()
1439 LocationOps.emplace_back(SDDbgOperand::fromVReg(Reg)); in handleDebugValue()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h81 class SDDbgOperand; variable
1684 ArrayRef<SDDbgOperand> Locs,