Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DDIBuilder.h86 Instruction *insertLabel(DILabel *LabelInfo, const DILocation *DL,
664 DILabel *
877 Instruction *insertLabel(DILabel *LabelInfo, const DILocation *DL,
884 Instruction *insertLabel(DILabel *LabelInfo, const DILocation *DL,
H A DMetadata.def110 HANDLE_SPECIALIZED_MDNODE_LEAF_UNIQUABLE(DILabel)
H A DDebugInfoMetadata.h3130 class DILabel : public DINode {
3136 DILabel(LLVMContext &C, StorageType Storage, unsigned Line,
3139 ~DILabel() = default;
3141 static DILabel *getImpl(LLVMContext &Context, DIScope *Scope,
3148 static DILabel *getImpl(LLVMContext &Context, Metadata *Scope,
3159 DEFINE_MDNODE_GET(DILabel,
3163 DEFINE_MDNODE_GET(DILabel,
H A DIntrinsicInst.h372 DILabel *getLabel() const { return cast<DILabel>(getRawLabel()); } in getLabel()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h238 DbgLabel(const DILabel *L, const DILocation *IA, const MCSymbol *Sym = nullptr)
243 const DILabel *getLabel() const { return cast<DILabel>(getEntity()); } in getLabel()
H A DDwarfCompileUnit.cpp1325 } else if (isa<const DILabel>(Node)) { in createAbstractEntity()
1327 cast<const DILabel>(Node), nullptr /* IA */); in createAbstractEntity()
1498 const auto *DILabel = Label.getLabel(); in applyLabelAttributes() local
1499 addSourceLine(LabelDie, DILabel); in applyLabelAttributes()
H A DDwarfUnit.h206 void addSourceLine(DIE &Die, const DILabel *L);
H A DDwarfDebug.cpp1775 } else if (isa<const DILabel>(Node)) { in createConcreteEntity()
1777 std::make_unique<DbgLabel>(cast<const DILabel>(Node), in createConcreteEntity()
1876 const DILabel *Label = cast<DILabel>(IL.first); in collectEntityInfo()
1904 } else if (auto *DL = dyn_cast<DILabel>(DN)) { in collectEntityInfo()
2174 else if (auto *DL = dyn_cast<DILabel>(DN)) in endFunctionImpl()
H A DDbgEntityHistoryCalculator.cpp474 const DILabel *RawLabel = MI.getDebugLabel(); in calculateDbgEntityHistory()
H A DDwarfUnit.cpp440 void DwarfUnit::addSourceLine(DIE &Die, const DILabel *L) { in addSourceLine()
H A DAsmPrinter.cpp1031 const DILabel *V = MI->getDebugLabel(); in emitDebugLabelComment()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DDIBuilder.cpp773 DILabel *DIBuilder::createLabel( in createLabel()
779 DILabel::get(VMContext, cast_or_null<DILocalScope>(Context), Name, in createLabel()
925 Instruction *DIBuilder::insertLabel(DILabel *LabelInfo, const DILocation *DL, in insertLabel()
932 Instruction *DIBuilder::insertLabel(DILabel *LabelInfo, const DILocation *DL, in insertLabel()
1022 DILabel *LabelInfo, const DILocation *DL, in insertLabel()
H A DDebugInfoMetadata.cpp1041 DILabel *DILabel::getImpl(LLVMContext &Context, Metadata *Scope, in getImpl()
1047 DEFINE_GETIMPL_LOOKUP(DILabel, in getImpl()
1050 DEFINE_GETIMPL_STORE(DILabel, (Line), Ops); in getImpl()
H A DLLVMContextImpl.h1064 template <> struct MDNodeKeyImpl<DILabel> {
1072 MDNodeKeyImpl(const DILabel *N)
1076 bool isKeyOf(const DILabel *RHS) const {
H A DVerifier.cpp1258 AssertDI(Op && (isa<DILocalVariable>(Op) || isa<DILabel>(Op)), in visitDISubprogram()
1416 void Verifier::visitDILabel(const DILabel &N) { in visitDILabel()
5499 AssertDI(isa<DILabel>(DLI.getRawLabel()), in visitDbgLabelIntrinsic()
5512 DILabel *Label = DLI.getLabel(); in visitDbgLabelIntrinsic()
H A DAsmWriter.cpp2330 static void writeDILabel(raw_ostream &Out, const DILabel *N, in writeDILabel()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp499 const DILabel *Label; ///< The debug info label we are part of.
511 UserLabel(const DILabel *label, DebugLoc L, SlotIndex Idx) in UserLabel()
515 bool matches(const DILabel *L, const DILocation *IA, in matches()
673 } else if (const auto *L = dyn_cast<const DILabel>(Node)) { in printExtendedName()
867 const DILabel *Label = MI.getDebugLabel(); in handleDebugLabel()
H A DMachineInstr.cpp838 const DILabel *MachineInstr::getDebugLabel() const { in getDebugLabel()
840 return cast<DILabel>(getOperand(0).getMetadata()); in getDebugLabel()
1732 auto *DIL = dyn_cast<DILabel>(MO.getMetadata()); in print()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DMachineIRBuilder.cpp118 assert(isa<DILabel>(Label) && "not a label"); in buildDbgLabel()
119 assert(cast<DILabel>(Label)->isValidLocationForIntrinsic(State.DL) && in buildDbgLabel()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1507 DILabel *OldLabel = DLI->getLabel(); in fixupDebugInfoPostExtraction()
1510 NewLabel = DILabel::get(Ctx, NewSP, OldLabel->getName(), in fixupDebugInfoPostExtraction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineInstr.h452 const DILabel *getDebugLabel() const;
H A DSelectionDAG.h1509 SDDbgLabel *getDbgLabel(DILabel *Label, const DebugLoc &DL, unsigned O);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp860 assert(cast<DILabel>(Label)->isValidLocationForIntrinsic(DL) && in EmitDbgLabel()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp1967 GET_OR_DISTINCT(DILabel, in parseOneMetadata()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp353 void writeDILabel(const DILabel *N,
1994 const DILabel *N, SmallVectorImpl<uint64_t> &Record, in writeDILabel()

12