| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| D | SDNodeDbgValue.h | 22 class DIVariable; variable 145 DIVariable *Var; 155 SDDbgValue(BumpPtrAllocator &Alloc, DIVariable *Var, DIExpression *Expr, in SDDbgValue() 179 DIVariable *getVariable() const { return Var; } in getVariable()
|
| D | SelectionDAG.cpp | 8762 SDDbgValue *SelectionDAG::getDbgValue(DIVariable *Var, DIExpression *Expr, in getDbgValue() 8774 SDDbgValue *SelectionDAG::getConstantDbgValue(DIVariable *Var, in getConstantDbgValue() 8787 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var, in getFrameIndexDbgValue() 8798 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var, in getFrameIndexDbgValue() 8813 SDDbgValue *SelectionDAG::getVRegDbgValue(DIVariable *Var, DIExpression *Expr, in getVRegDbgValue() 8824 SDDbgValue *SelectionDAG::getDbgValueList(DIVariable *Var, DIExpression *Expr, in getDbgValueList() 8879 DIVariable *Var = Dbg->getVariable(); in transferDbgValues()
|
| D | SelectionDAGBuilder.cpp | 1172 DIVariable *DanglingVariable = DI->getVariable(); in dropDanglingDebugInfo()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/ |
| D | DebugInfoMetadata.cpp | 374 assert((isa<ConstantAsMetadata>(CB) || isa<DIVariable>(CB) || in getCount() 381 if (auto *MD = dyn_cast<DIVariable>(CB)) in getCount() 395 assert((isa<ConstantAsMetadata>(LB) || isa<DIVariable>(LB) || in getLowerBound() 402 if (auto *MD = dyn_cast<DIVariable>(LB)) in getLowerBound() 416 assert((isa<ConstantAsMetadata>(UB) || isa<DIVariable>(UB) || in getUpperBound() 423 if (auto *MD = dyn_cast<DIVariable>(UB)) in getUpperBound() 437 assert((isa<ConstantAsMetadata>(ST) || isa<DIVariable>(ST) || in getStride() 444 if (auto *MD = dyn_cast<DIVariable>(ST)) in getStride() 468 assert((isa<DIVariable>(CB) || isa<DIExpression>(CB)) && in getCount() 471 if (auto *MD = dyn_cast<DIVariable>(CB)) in getCount() [all …]
|
| D | DIBuilder.cpp | 547 PointerUnion<DIExpression *, DIVariable *> DL, in createArrayType() 548 PointerUnion<DIExpression *, DIVariable *> AS, in createArrayType() 549 PointerUnion<DIExpression *, DIVariable *> AL, in createArrayType() 550 PointerUnion<DIExpression *, DIVariable *> RK) { in createArrayType() 556 : (Metadata *)DL.get<DIVariable *>(), in createArrayType() 558 : (Metadata *)AS.get<DIVariable *>(), in createArrayType() 560 : (Metadata *)AL.get<DIVariable *>(), in createArrayType() 562 : (Metadata *)RK.get<DIVariable *>()); in createArrayType() 686 : (Metadata *)Bound.get<DIVariable *>(); in getOrCreateGenericSubrange()
|
| D | Verifier.cpp | 469 void visitDIVariable(const DIVariable &N); 559 void verifyFragmentExpression(const DIVariable &V, 954 isa<DIVariable>(CBound) || isa<DIExpression>(CBound), in visitDISubrange() 962 isa<DIVariable>(LBound) || isa<DIExpression>(LBound), in visitDISubrange() 967 isa<DIVariable>(UBound) || isa<DIExpression>(UBound), in visitDISubrange() 972 isa<DIVariable>(Stride) || isa<DIExpression>(Stride), in visitDISubrange() 983 AssertDI(!CBound || isa<DIVariable>(CBound) || isa<DIExpression>(CBound), in visitDIGenericSubrange() 987 AssertDI(isa<DIVariable>(LBound) || isa<DIExpression>(LBound), in visitDIGenericSubrange() 991 AssertDI(!UBound || isa<DIVariable>(UBound) || isa<DIExpression>(UBound), in visitDIGenericSubrange() 996 AssertDI(isa<DIVariable>(Stride) || isa<DIExpression>(Stride), in visitDIGenericSubrange() [all …]
|
| D | DebugInfo.cpp | 1466 return wrap(unwrapDI<DIVariable>(Var)->getFile()); in LLVMDIVariableGetFile() 1470 return wrap(unwrapDI<DIVariable>(Var)->getScope()); in LLVMDIVariableGetScope() 1474 return unwrapDI<DIVariable>(Var)->getLine(); in LLVMDIVariableGetLine()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| D | DIBuilder.h | 513 PointerUnion<DIExpression *, DIVariable *> DataLocation = nullptr, 514 PointerUnion<DIExpression *, DIVariable *> Associated = nullptr, 515 PointerUnion<DIExpression *, DIVariable *> Allocated = nullptr, 516 PointerUnion<DIExpression *, DIVariable *> Rank = nullptr);
|
| D | DebugInfoMetadata.h | 347 typedef PointerUnion<ConstantInt *, DIVariable *, DIExpression *> BoundType; 396 using BoundType = PointerUnion<DIVariable *, DIExpression *>; 896 DIVariable *getStringLength() const { in getStringLength() 897 return cast_or_null<DIVariable>(getRawStringLength()); in getStringLength() 1201 DIVariable *getDataLocation() const { in getDataLocation() 1202 return dyn_cast_or_null<DIVariable>(getRawDataLocation()); in getDataLocation() 1208 DIVariable *getAssociated() const { in getAssociated() 1209 return dyn_cast_or_null<DIVariable>(getRawAssociated()); in getAssociated() 1215 DIVariable *getAllocated() const { in getAllocated() 1216 return dyn_cast_or_null<DIVariable>(getRawAllocated()); in getAllocated() [all …]
|
| D | Metadata.def | 107 HANDLE_SPECIALIZED_MDNODE_BRANCH(DIVariable)
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| D | DwarfCompileUnit.cpp | 904 static SmallVector<const DIVariable *, 2> dependencies(DbgVariable *Var) { in dependencies() 905 SmallVector<const DIVariable *, 2> Result; in dependencies() 918 if (auto *Dependency = Count.dyn_cast<DIVariable *>()) in dependencies() 921 if (auto *Dependency = LB.dyn_cast<DIVariable *>()) in dependencies() 924 if (auto *Dependency = UB.dyn_cast<DIVariable *>()) in dependencies() 927 if (auto *Dependency = ST.dyn_cast<DIVariable *>()) in dependencies() 931 if (auto *Dependency = Count.dyn_cast<DIVariable *>()) in dependencies() 934 if (auto *Dependency = LB.dyn_cast<DIVariable *>()) in dependencies() 937 if (auto *Dependency = UB.dyn_cast<DIVariable *>()) in dependencies() 940 if (auto *Dependency = ST.dyn_cast<DIVariable *>()) in dependencies()
|
| D | DwarfUnit.cpp | 718 if (DIVariable *Var = STy->getStringLength()) { in constructTypeDIE() 1319 if (auto *BV = Bound.dyn_cast<DIVariable *>()) { in constructSubrangeDIE() 1358 if (auto *BV = Bound.dyn_cast<DIVariable *>()) { in constructGenericSubrangeDIE() 1436 if (DIVariable *Var = CTy->getDataLocation()) { in constructArrayTypeDIE() 1447 if (DIVariable *Var = CTy->getAssociated()) { in constructArrayTypeDIE() 1458 if (DIVariable *Var = CTy->getAllocated()) { in constructArrayTypeDIE()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| D | SelectionDAG.h | 1483 SDDbgValue *getDbgValue(DIVariable *Var, DIExpression *Expr, SDNode *N, 1488 SDDbgValue *getConstantDbgValue(DIVariable *Var, DIExpression *Expr, 1493 SDDbgValue *getFrameIndexDbgValue(DIVariable *Var, DIExpression *Expr, 1498 SDDbgValue *getFrameIndexDbgValue(DIVariable *Var, DIExpression *Expr, 1505 SDDbgValue *getVRegDbgValue(DIVariable *Var, DIExpression *Expr, 1510 SDDbgValue *getDbgValueList(DIVariable *Var, DIExpression *Expr,
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| D | LoopUtils.cpp | 600 llvm::SmallDenseSet<std::pair<DIVariable *, DIExpression *>, 4> DeadDebugSet; in deleteDeadLoop()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| D | GlobalOpt.cpp | 481 DIVariable *Var = GVE->getVariable(); in transferSRADebugInfo()
|