Searched refs:SDDbgValue (Results 1 – 9 of 9) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SDNodeDbgValue.h | 30 class SDDbgValue { 59 SDDbgValue(DIVariable *Var, DIExpression *Expr, SDNode *N, unsigned R, in SDDbgValue() function 68 SDDbgValue(DIVariable *Var, DIExpression *Expr, const Value *C, DebugLoc dl, in SDDbgValue() function 76 SDDbgValue(DIVariable *Var, DIExpression *Expr, unsigned VRegOrFrameIdx, in SDDbgValue() function
|
D | InstrEmitter.h | 26 class SDDbgValue; variable 107 MachineInstr *EmitDbgValue(SDDbgValue *SD,
|
D | InstrEmitter.cpp | 677 InstrEmitter::EmitDbgValue(SDDbgValue *SD, in EmitDbgValue() 699 if (SD->getKind() == SDDbgValue::FRAMEIX) { in EmitDbgValue() 715 if (SD->getKind() == SDDbgValue::SDNODE) { in EmitDbgValue() 729 } else if (SD->getKind() == SDDbgValue::VREG) { in EmitDbgValue() 731 } else if (SD->getKind() == SDDbgValue::CONST) { in EmitDbgValue()
|
D | SelectionDAGDumper.cpp | 764 for (SDDbgValue *Dbg : G->GetDbgValues(this)) in print_details() 772 LLVM_DUMP_METHOD void SDDbgValue::print(raw_ostream &OS) const { in print() 802 LLVM_DUMP_METHOD void SDDbgValue::dump() const { in dump()
|
D | SelectionDAGBuilder.h | 79 class SDDbgValue; variable 815 SDDbgValue *getDbgValue(SDValue N, DILocalVariable *Variable,
|
D | ScheduleDAGSDNodes.cpp | 942 [](const SDDbgValue *LHS, const SDDbgValue *RHS) { in EmitSchedule()
|
D | SelectionDAG.cpp | 8123 SDDbgValue *SelectionDAG::getDbgValue(DIVariable *Var, DIExpression *Expr, in getDbgValue() 8129 SDDbgValue(Var, Expr, N, R, IsIndirect, DL, O); in getDbgValue() 8133 SDDbgValue *SelectionDAG::getConstantDbgValue(DIVariable *Var, in getConstantDbgValue() 8139 return new (DbgInfo->getAlloc()) SDDbgValue(Var, Expr, C, DL, O); in getConstantDbgValue() 8143 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var, in getFrameIndexDbgValue() 8151 SDDbgValue(Var, Expr, FI, IsIndirect, DL, O, SDDbgValue::FRAMEIX); in getFrameIndexDbgValue() 8155 SDDbgValue *SelectionDAG::getVRegDbgValue(DIVariable *Var, in getVRegDbgValue() 8162 SDDbgValue(Var, Expr, VReg, IsIndirect, DL, O, SDDbgValue::VREG); in getVRegDbgValue() 8181 SmallVector<SDDbgValue *, 2> ClonedDVs; in transferDbgValues() 8182 for (SDDbgValue *Dbg : GetDbgValues(FromNode)) { in transferDbgValues() [all …]
|
D | SelectionDAGBuilder.cpp | 1207 SDDbgValue *SDV; in resolveDanglingDebugInfo() 1303 SDDbgValue *SDV; in handleDebugValue() 5689 SDDbgValue *SDV = DAG.getConstantDbgValue( in EmitFuncArgumentDbgValue() 5737 SDDbgValue *SelectionDAGBuilder::getDbgValue(SDValue N, in getDbgValue() 5990 SDDbgValue *SDV = DAG.getFrameIndexDbgValue( in visitIntrinsicCall() 6001 SDDbgValue *SDV; in visitIntrinsicCall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 76 class SDDbgValue; variable 151 SmallVector<SDDbgValue*, 32> DbgValues; 152 SmallVector<SDDbgValue*, 32> ByvalParmDbgValues; 154 using DbgValMapType = DenseMap<const SDNode *, SmallVector<SDDbgValue *, 2>>; 162 void add(SDDbgValue *V, const SDNode *Node, bool isParameter) { 192 ArrayRef<SDDbgValue*> getSDDbgValues(const SDNode *Node) const { 196 return ArrayRef<SDDbgValue*>(); 199 using DbgIterator = SmallVectorImpl<SDDbgValue*>::iterator; 1318 SDDbgValue *getDbgValue(DIVariable *Var, DIExpression *Expr, SDNode *N, 1323 SDDbgValue *getConstantDbgValue(DIVariable *Var, DIExpression *Expr, [all …]
|