Home
last modified time | relevance | path

Searched refs:DILabel (Results 1 – 25 of 29) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DDIBuilder.h98 Instruction *insertLabel(DILabel *LabelInfo, const DILocation *DL,
716 DILabel *
962 Instruction *insertLabel(DILabel *LabelInfo, const DILocation *DL,
969 Instruction *insertLabel(DILabel *LabelInfo, const DILocation *DL,
H A DMetadata.def111 HANDLE_SPECIALIZED_MDNODE_LEAF_UNIQUABLE(DILabel)
H A DDebugInfoMetadata.h3335 class DILabel : public DINode {
3339 DILabel(LLVMContext &C, StorageType Storage, unsigned Line,
3341 ~DILabel() = default;
3343 static DILabel *getImpl(LLVMContext &Context, DIScope *Scope, StringRef Name,
3349 static DILabel *getImpl(LLVMContext &Context, Metadata *Scope, MDString *Name,
3359 DEFINE_MDNODE_GET(DILabel,
3363 DEFINE_MDNODE_GET(DILabel,
H A DIntrinsicInst.h533 DILabel *getLabel() const { return cast<DILabel>(getRawLabel()); } in getLabel()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h294 DbgLabel(const DILabel *L, const DILocation *IA, const MCSymbol *Sym = nullptr)
299 const DILabel *getLabel() const { return cast<DILabel>(getEntity()); } in getLabel()
H A DDwarfCompileUnit.cpp1458 } else if (isa<const DILabel>(Node)) { in createAbstractEntity()
1460 cast<const DILabel>(Node), nullptr /* IA */); in createAbstractEntity()
1635 const auto *DILabel = Label.getLabel(); in applyLabelAttributes() local
1636 addSourceLine(LabelDie, DILabel); in applyLabelAttributes()
H A DDwarfDebug.cpp1516 else if (const auto *L = dyn_cast<DILabel>(N)) in getRetainedNodeScope()
1862 } else if (isa<const DILabel>(Node)) { in createConcreteEntity()
1864 std::make_unique<DbgLabel>(cast<const DILabel>(Node), in createConcreteEntity()
1963 const DILabel *Label = cast<DILabel>(IL.first); in collectEntityInfo()
1987 if (isa<DILocalVariable>(DN) || isa<DILabel>(DN)) { in collectEntityInfo()
2319 if (isa<DILocalVariable>(DN) || isa<DILabel>(DN)) { in endFunctionImpl()
H A DDwarfUnit.h216 void addSourceLine(DIE &Die, const DILabel *L);
H A DDbgEntityHistoryCalculator.cpp480 const DILabel *RawLabel = MI.getDebugLabel(); in calculateDbgEntityHistory()
H A DDwarfUnit.cpp435 void DwarfUnit::addSourceLine(DIE &Die, const DILabel *L) { in addSourceLine()
H A DAsmPrinter.cpp1279 const DILabel *V = MI->getDebugLabel(); in emitDebugLabelComment()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DDIBuilder.cpp803 DILabel *DIBuilder::createLabel(DIScope *Context, StringRef Name, DIFile *File, in createLabel()
806 auto *Node = DILabel::get(VMContext, Scope, Name, File, LineNo); in createLabel()
974 Instruction *DIBuilder::insertLabel(DILabel *LabelInfo, const DILocation *DL, in insertLabel()
981 Instruction *DIBuilder::insertLabel(DILabel *LabelInfo, const DILocation *DL, in insertLabel()
1084 Instruction *DIBuilder::insertLabel(DILabel *LabelInfo, const DILocation *DL, in insertLabel()
H A DDebugInfoMetadata.cpp1340 DILabel::DILabel(LLVMContext &C, StorageType Storage, unsigned Line, in DILabel() function in DILabel
1345 DILabel *DILabel::getImpl(LLVMContext &Context, Metadata *Scope, MDString *Name, in getImpl()
1350 DEFINE_GETIMPL_LOOKUP(DILabel, (Scope, Name, File, Line)); in getImpl()
1352 DEFINE_GETIMPL_STORE(DILabel, (Line), Ops); in getImpl()
H A DLLVMContextImpl.h1149 template <> struct MDNodeKeyImpl<DILabel> {
1157 MDNodeKeyImpl(const DILabel *N)
1161 bool isKeyOf(const DILabel *RHS) const {
H A DVerifier.cpp1419 CheckDI(Op && (isa<DILocalVariable>(Op) || isa<DILabel>(Op) || in visitDISubprogram()
1586 void Verifier::visitDILabel(const DILabel &N) { in visitDILabel()
6457 CheckDI(isa<DILabel>(DLI.getRawLabel()), in visitDbgLabelIntrinsic()
6470 DILabel *Label = DLI.getLabel(); in visitDbgLabelIntrinsic()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp500 const DILabel *Label; ///< The debug info label we are part of.
512 UserLabel(const DILabel *label, DebugLoc L, SlotIndex Idx) in UserLabel()
516 bool matches(const DILabel *L, const DILocation *IA, in matches()
706 } else if (const auto *L = dyn_cast<const DILabel>(Node)) { in printExtendedName()
905 const DILabel *Label = MI.getDebugLabel(); in handleDebugLabel()
H A DMachineInstr.cpp862 const DILabel *MachineInstr::getDebugLabel() const { in getDebugLabel()
864 return cast<DILabel>(getOperand(0).getMetadata()); in getDebugLabel()
1757 auto *DIL = dyn_cast<DILabel>(MO.getMetadata()); in print()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstr.h40 class DILabel; variable
506 const DILabel *getDebugLabel() const;
H A DSelectionDAG.h54 class DILabel; variable
1771 SDDbgLabel *getDbgLabel(DILabel *Label, const DebugLoc &DL, unsigned O);
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DMachineIRBuilder.cpp126 assert(isa<DILabel>(Label) && "not a label"); in buildDbgLabel()
127 assert(cast<DILabel>(Label)->isValidLocationForIntrinsic(State.DL) && in buildDbgLabel()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1619 DILabel *OldLabel = DLI->getLabel(); in fixupDebugInfoPostExtraction()
1624 NewLabel = DILabel::get(Ctx, NewScope, OldLabel->getName(), in fixupDebugInfoPostExtraction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp957 assert(cast<DILabel>(Label)->isValidLocationForIntrinsic(DL) && in EmitDbgLabel()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp2137 GET_OR_DISTINCT(DILabel, (Context, getMDOrNull(Record[1]), in parseOneMetadata()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp355 void writeDILabel(const DILabel *N,
2128 const DILabel *N, SmallVectorImpl<uint64_t> &Record, in writeDILabel()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp300 void writeDILabel(const DILabel *N, SmallVectorImpl<uint64_t> &Record, in writeDILabel()

12