Home
last modified time | relevance | path

Searched refs:DIVariable (Results 1 – 15 of 15) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h23 class DIVariable; variable
146 DIVariable *Var;
156 SDDbgValue(BumpPtrAllocator &Alloc, DIVariable *Var, DIExpression *Expr, in SDDbgValue()
180 DIVariable *getVariable() const { return Var; } in getVariable()
H A DInstrEmitter.cpp894 DIVariable *Var = SD->getVariable(); in EmitDbgNoLocation()
H A DSelectionDAG.cpp10668 SDDbgValue *SelectionDAG::getDbgValue(DIVariable *Var, DIExpression *Expr, in getDbgValue()
10680 SDDbgValue *SelectionDAG::getConstantDbgValue(DIVariable *Var, in getConstantDbgValue()
10693 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var, in getFrameIndexDbgValue()
10704 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var, in getFrameIndexDbgValue()
10719 SDDbgValue *SelectionDAG::getVRegDbgValue(DIVariable *Var, DIExpression *Expr, in getVRegDbgValue()
10730 SDDbgValue *SelectionDAG::getDbgValueList(DIVariable *Var, DIExpression *Expr, in getDbgValueList()
10785 DIVariable *Var = Dbg->getVariable(); in transferDbgValues()
H A DSelectionDAGBuilder.cpp1395 DIVariable *DanglingVariable = DDI.getVariable(); in dropDanglingDebugInfo()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp489 if (auto *MD = dyn_cast<DIVariable>(CB)) in getCount()
510 if (auto *MD = dyn_cast<DIVariable>(LB)) in getLowerBound()
531 if (auto *MD = dyn_cast<DIVariable>(UB)) in getUpperBound()
552 if (auto *MD = dyn_cast<DIVariable>(ST)) in getStride()
580 assert((isa<DIVariable>(CB) || isa<DIExpression>(CB)) && in getCount()
583 if (auto *MD = dyn_cast<DIVariable>(CB)) in getCount()
597 assert((isa<DIVariable>(LB) || isa<DIExpression>(LB)) && in getLowerBound()
600 if (auto *MD = dyn_cast<DIVariable>(LB)) in getLowerBound()
617 if (auto *MD = dyn_cast<DIVariable>(UB)) in getUpperBound()
634 if (auto *MD = dyn_cast<DIVariable>(ST)) in getStride()
[all …]
H A DDIBuilder.cpp282 DIVariable *StringLength, in createStringType()
569 PointerUnion<DIExpression *, DIVariable *> DL, in createArrayType()
570 PointerUnion<DIExpression *, DIVariable *> AS, in createArrayType()
571 PointerUnion<DIExpression *, DIVariable *> AL, in createArrayType()
572 PointerUnion<DIExpression *, DIVariable *> RK) { in createArrayType()
578 : (Metadata *)cast<DIVariable *>(DL), in createArrayType()
580 : (Metadata *)cast<DIVariable *>(AS), in createArrayType()
582 : (Metadata *)cast<DIVariable *>(AL), in createArrayType()
584 : (Metadata *)cast<DIVariable *>(RK)); in createArrayType()
710 : (Metadata *)cast<DIVariable *>(Bound); in getOrCreateGenericSubrange()
H A DVerifier.cpp519 void visitDIVariable(const DIVariable &N);
611 void verifyFragmentExpression(const DIVariable &V,
1107 isa<DIVariable>(CBound) || isa<DIExpression>(CBound), in visitDISubrange()
1115 isa<DIVariable>(LBound) || isa<DIExpression>(LBound), in visitDISubrange()
1120 isa<DIVariable>(UBound) || isa<DIExpression>(UBound), in visitDISubrange()
1125 isa<DIVariable>(Stride) || isa<DIExpression>(Stride), in visitDISubrange()
1136 CheckDI(!CBound || isa<DIVariable>(CBound) || isa<DIExpression>(CBound), in visitDIGenericSubrange()
1140 CheckDI(isa<DIVariable>(LBound) || isa<DIExpression>(LBound), in visitDIGenericSubrange()
1149 CheckDI(isa<DIVariable>(Stride) || isa<DIExpression>(Stride), in visitDIGenericSubrange()
1547 void Verifier::visitDIVariable(const DIVariable &N) { in visitDIVariable()
[all …]
H A DDebugInfo.cpp1621 return wrap(unwrapDI<DIVariable>(Var)->getFile()); in LLVMDIVariableGetFile()
1625 return wrap(unwrapDI<DIVariable>(Var)->getScope()); in LLVMDIVariableGetScope()
1629 return unwrapDI<DIVariable>(Var)->getLine(); in LLVMDIVariableGetLine()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DDIBuilder.h234 DIStringType *createStringType(StringRef Name, DIVariable *StringLength,
560 PointerUnion<DIExpression *, DIVariable *> DataLocation = nullptr,
561 PointerUnion<DIExpression *, DIVariable *> Associated = nullptr,
562 PointerUnion<DIExpression *, DIVariable *> Allocated = nullptr,
563 PointerUnion<DIExpression *, DIVariable *> Rank = nullptr);
H A DDebugInfoMetadata.h947 DIVariable *getStringLength() const { in getStringLength()
948 return cast_or_null<DIVariable>(getRawStringLength()); in getStringLength()
1250 DIVariable *getDataLocation() const { in getDataLocation()
1257 DIVariable *getAssociated() const { in getAssociated()
1264 DIVariable *getAllocated() const { in getAllocated()
1265 return dyn_cast_or_null<DIVariable>(getRawAllocated()); in getAllocated()
2596 class DIVariable : public DINode {
2602 ~DIVariable() = default;
3099 class DIGlobalVariable : public DIVariable {
3244 class DILocalVariable : public DIVariable {
[all …]
H A DMetadata.def108 HANDLE_SPECIALIZED_MDNODE_BRANCH(DIVariable)
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp974 static SmallVector<const DIVariable *, 2> dependencies(DbgVariable *Var) { in dependencies()
975 SmallVector<const DIVariable *, 2> Result; in dependencies()
988 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(Count)) in dependencies()
991 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(LB)) in dependencies()
994 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(UB)) in dependencies()
997 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(ST)) in dependencies()
1001 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(Count)) in dependencies()
1004 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(LB)) in dependencies()
1007 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(UB)) in dependencies()
1010 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(ST)) in dependencies()
H A DDwarfUnit.cpp723 if (DIVariable *Var = STy->getStringLength()) { in constructTypeDIE()
1366 if (auto *BV = dyn_cast_if_present<DIVariable *>(Bound)) { in constructSubrangeDIE()
1405 if (auto *BV = dyn_cast_if_present<DIVariable *>(Bound)) { in constructGenericSubrangeDIE()
1485 if (DIVariable *Var = CTy->getDataLocation()) { in constructArrayTypeDIE()
1496 if (DIVariable *Var = CTy->getAssociated()) { in constructArrayTypeDIE()
1507 if (DIVariable *Var = CTy->getAllocated()) { in constructArrayTypeDIE()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h55 class DIVariable; variable
1738 SDDbgValue *getDbgValue(DIVariable *Var, DIExpression *Expr, SDNode *N,
1743 SDDbgValue *getConstantDbgValue(DIVariable *Var, DIExpression *Expr,
1748 SDDbgValue *getFrameIndexDbgValue(DIVariable *Var, DIExpression *Expr,
1753 SDDbgValue *getFrameIndexDbgValue(DIVariable *Var, DIExpression *Expr,
1760 SDDbgValue *getVRegDbgValue(DIVariable *Var, DIExpression *Expr,
1765 SDDbgValue *getDbgValueList(DIVariable *Var, DIExpression *Expr,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp435 DIVariable *Var = GVE->getVariable(); in transferSRADebugInfo()