Searched refs:DIVariable (Results 1 - 14 of 14) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h23 class DIVariable;
146 DIVariable *Var;
156 SDDbgValue(BumpPtrAllocator &Alloc, DIVariable *Var, DIExpression *Expr,
179 /// Returns the DIVariable pointer for the variable.
180 DIVariable *getVariable() const { return Var; }
H A DInstrEmitter.cpp894 DIVariable *Var = SD->getVariable();
H A DSelectionDAG.cpp10668 SDDbgValue *SelectionDAG::getDbgValue(DIVariable *Var, DIExpression *Expr,
10680 SDDbgValue *SelectionDAG::getConstantDbgValue(DIVariable *Var,
10693 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var,
10704 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var,
10719 SDDbgValue *SelectionDAG::getVRegDbgValue(DIVariable *Var, DIExpression *Expr,
10730 SDDbgValue *SelectionDAG::getDbgValueList(DIVariable *Var, DIExpression *Expr,
10785 DIVariable *Var = Dbg->getVariable();
H A DSelectionDAGBuilder.cpp1395 DIVariable *DanglingVariable = DDI.getVariable();
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DDIBuilder.h232 /// \param StringLength String length expressed as DIVariable *.
234 DIStringType *createStringType(StringRef Name, DIVariable *StringLength,
548 /// a DIVariable*.
551 /// a DIVariable*.
554 /// a DIVariable*.
557 /// a DIVariable*.
560 PointerUnion<DIExpression *, DIVariable *> DataLocation = nullptr,
561 PointerUnion<DIExpression *, DIVariable *> Associated = nullptr,
562 PointerUnion<DIExpression *, DIVariable *> Allocated = nullptr,
563 PointerUnion<DIExpression *, DIVariable *> Ran
[all...]
H A DDebugInfoMetadata.h395 typedef PointerUnion<ConstantInt *, DIVariable *, DIExpression *> BoundType;
442 using BoundType = PointerUnion<DIVariable *, DIExpression *>;
947 DIVariable *getStringLength() const {
948 return cast_or_null<DIVariable>(getRawStringLength());
1250 DIVariable *getDataLocation() const {
1251 return dyn_cast_or_null<DIVariable>(getRawDataLocation());
1257 DIVariable *getAssociated() const {
1258 return dyn_cast_or_null<DIVariable>(getRawAssociated());
1264 DIVariable *getAllocated() const {
1265 return dyn_cast_or_null<DIVariable>(getRawAllocate
2596 class DIVariable : public DINode { class in class:llvm::DICompileUnit::DILexicalBlock
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp482 assert((isa<ConstantAsMetadata>(CB) || isa<DIVariable>(CB) ||
484 "Count must be signed constant or DIVariable or DIExpression");
489 if (auto *MD = dyn_cast<DIVariable>(CB))
503 assert((isa<ConstantAsMetadata>(LB) || isa<DIVariable>(LB) ||
505 "LowerBound must be signed constant or DIVariable or DIExpression");
510 if (auto *MD = dyn_cast<DIVariable>(LB))
524 assert((isa<ConstantAsMetadata>(UB) || isa<DIVariable>(UB) ||
526 "UpperBound must be signed constant or DIVariable or DIExpression");
531 if (auto *MD = dyn_cast<DIVariable>(UB))
545 assert((isa<ConstantAsMetadata>(ST) || isa<DIVariable>(S
1311 DIVariable::DIVariable(LLVMContext &C, unsigned ID, StorageType Storage, function in class:DIVariable
[all...]
H A DDIBuilder.cpp282 DIVariable *StringLength,
569 PointerUnion<DIExpression *, DIVariable *> DL,
570 PointerUnion<DIExpression *, DIVariable *> AS,
571 PointerUnion<DIExpression *, DIVariable *> AL,
572 PointerUnion<DIExpression *, DIVariable *> RK) {
578 : (Metadata *)cast<DIVariable *>(DL),
580 : (Metadata *)cast<DIVariable *>(AS),
582 : (Metadata *)cast<DIVariable *>(AL),
584 : (Metadata *)cast<DIVariable *>(RK));
710 : (Metadata *)cast<DIVariable *>(Boun
[all...]
H A DVerifier.cpp519 void visitDIVariable(const DIVariable &N);
611 void verifyFragmentExpression(const DIVariable &V,
1107 isa<DIVariable>(CBound) || isa<DIExpression>(CBound),
1108 "Count must be signed constant or DIVariable or DIExpression", &N);
1115 isa<DIVariable>(LBound) || isa<DIExpression>(LBound),
1116 "LowerBound must be signed constant or DIVariable or DIExpression",
1120 isa<DIVariable>(UBound) || isa<DIExpression>(UBound),
1121 "UpperBound must be signed constant or DIVariable or DIExpression",
1125 isa<DIVariable>(Stride) || isa<DIExpression>(Stride),
1126 "Stride must be signed constant or DIVariable o
[all...]
H A DDebugInfo.cpp1621 return wrap(unwrapDI<DIVariable>(Var)->getFile());
1625 return wrap(unwrapDI<DIVariable>(Var)->getScope());
1629 return unwrapDI<DIVariable>(Var)->getLine();
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp974 static SmallVector<const DIVariable *, 2> dependencies(DbgVariable *Var) {
975 SmallVector<const DIVariable *, 2> Result;
988 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(Count))
991 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(LB))
994 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(UB))
997 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(ST))
1001 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(Count))
1004 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(LB))
1007 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(UB))
1010 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(S
[all...]
H A DDwarfUnit.cpp723 if (DIVariable *Var = STy->getStringLength()) {
1366 if (auto *BV = dyn_cast_if_present<DIVariable *>(Bound)) {
1405 if (auto *BV = dyn_cast_if_present<DIVariable *>(Bound)) {
1485 if (DIVariable *Var = CTy->getDataLocation()) {
1496 if (DIVariable *Var = CTy->getAssociated()) {
1507 if (DIVariable *Var = CTy->getAllocated()) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h55 class DIVariable;
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-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp435 DIVariable *Var = GVE->getVariable();

Completed in 497 milliseconds