/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | DIBuilder.h | 86 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 D | Metadata.def | 110 HANDLE_SPECIALIZED_MDNODE_LEAF_UNIQUABLE(DILabel)
|
H A D | DebugInfoMetadata.h | 3130 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 D | IntrinsicInst.h | 372 DILabel *getLabel() const { return cast<DILabel>(getRawLabel()); } in getLabel()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfDebug.h | 238 DbgLabel(const DILabel *L, const DILocation *IA, const MCSymbol *Sym = nullptr) 243 const DILabel *getLabel() const { return cast<DILabel>(getEntity()); } in getLabel()
|
H A D | DwarfCompileUnit.cpp | 1325 } 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 D | DwarfUnit.h | 206 void addSourceLine(DIE &Die, const DILabel *L);
|
H A D | DwarfDebug.cpp | 1775 } 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 D | DbgEntityHistoryCalculator.cpp | 474 const DILabel *RawLabel = MI.getDebugLabel(); in calculateDbgEntityHistory()
|
H A D | DwarfUnit.cpp | 440 void DwarfUnit::addSourceLine(DIE &Die, const DILabel *L) { in addSourceLine()
|
H A D | AsmPrinter.cpp | 1031 const DILabel *V = MI->getDebugLabel(); in emitDebugLabelComment()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | DIBuilder.cpp | 773 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 D | DebugInfoMetadata.cpp | 1041 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 D | LLVMContextImpl.h | 1064 template <> struct MDNodeKeyImpl<DILabel> { 1072 MDNodeKeyImpl(const DILabel *N) 1076 bool isKeyOf(const DILabel *RHS) const {
|
H A D | Verifier.cpp | 1258 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 D | AsmWriter.cpp | 2330 static void writeDILabel(raw_ostream &Out, const DILabel *N, in writeDILabel()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | LiveDebugVariables.cpp | 499 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 D | MachineInstr.cpp | 838 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 D | MachineIRBuilder.cpp | 118 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 D | CodeExtractor.cpp | 1507 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 D | MachineInstr.h | 452 const DILabel *getDebugLabel() const;
|
H A D | SelectionDAG.h | 1509 SDDbgLabel *getDbgLabel(DILabel *Label, const DebugLoc &DL, unsigned O);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
H A D | InstrEmitter.cpp | 860 assert(cast<DILabel>(Label)->isValidLocationForIntrinsic(DL) && in EmitDbgLabel()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
H A D | MetadataLoader.cpp | 1967 GET_OR_DISTINCT(DILabel, in parseOneMetadata()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 353 void writeDILabel(const DILabel *N, 1994 const DILabel *N, SmallVectorImpl<uint64_t> &Record, in writeDILabel()
|