/openbsd/gnu/llvm/llvm/tools/obj2yaml/ |
H A D | dwarf2yaml.cpp | 25 void dumpDebugAbbrev(DWARFContext &DCtx, DWARFYAML::Data &Y) { in dumpDebugAbbrev() argument 26 auto AbbrevSetPtr = DCtx.getDebugAbbrev(); in dumpDebugAbbrev() 52 Error dumpDebugAddr(DWARFContext &DCtx, DWARFYAML::Data &Y) { in dumpDebugAddr() argument 54 DWARFDataExtractor AddrData(DCtx.getDWARFObj(), in dumpDebugAddr() 85 DataExtractor StrData = DCtx.getStringExtractor(); in dumpDebugStrings() 102 DCtx.isLittleEndian(), 0); in dumpDebugARanges() 139 for (const auto &CU : DCtx.compile_units()) { in dumpDebugRanges() 149 DCtx.isLittleEndian(), AddrSize); in dumpDebugRanges() 199 const DWARFObject &D = DCtx.getDWARFObj(); in dumpDebugPubSections() 214 for (const auto &CU : DCtx.compile_units()) { in dumpDebugInfo() [all …]
|
H A D | obj2yaml.h | 49 void dumpDebugAbbrev(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y); 50 llvm::Error dumpDebugAddr(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y); 51 llvm::Error dumpDebugARanges(llvm::DWARFContext &DCtx, 53 void dumpDebugPubSections(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y); 54 void dumpDebugInfo(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y); 55 void dumpDebugLines(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y); 56 llvm::Error dumpDebugRanges(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y); 57 llvm::Error dumpDebugStrings(llvm::DWARFContext &DCtx,
|
H A D | macho2yaml.cpp | 62 : Obj(O), DWARFCtx(std::move(DCtx)), RawSegment(RawSegments) {} in MachODumper() 140 static Error dumpDebugSection(StringRef SecName, DWARFContext &DCtx, in dumpDebugSection() argument 143 dumpDebugAbbrev(DCtx, DWARF); in dumpDebugSection() 147 return dumpDebugARanges(DCtx, DWARF); in dumpDebugSection() 149 dumpDebugInfo(DCtx, DWARF); in dumpDebugSection() 153 dumpDebugLines(DCtx, DWARF); in dumpDebugSection() 158 dumpDebugPubSections(DCtx, DWARF); in dumpDebugSection() 162 return dumpDebugRanges(DCtx, DWARF); in dumpDebugSection() 164 return dumpDebugStrings(DCtx, DWARF); in dumpDebugSection() 664 std::unique_ptr<DWARFContext> DCtx = DWARFContext::create(Obj); in macho2yaml() local [all …]
|
H A D | elf2yaml.cpp | 108 ELFDumper(const object::ELFFile<ELFT> &O, std::unique_ptr<DWARFContext> DCtx); 116 std::unique_ptr<DWARFContext> DCtx) in ELFDumper() argument 117 : Obj(O), DWARFCtx(std::move(DCtx)) {} in ELFDumper()
|
/openbsd/gnu/llvm/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFVerifier.cpp | 325 const DWARFObject &DObj = DCtx.getDWARFObj(); in handleDebugAbbrev() 365 const DWARFObject &DObj = DCtx.getDWARFObj(); in verifyUnitSection() 452 const DWARFObject &DObj = DCtx.getDWARFObj(); in handleDebugInfo() 578 const DWARFObject &DObj = DCtx.getDWARFObj(); in verifyDebugInfoAttribute() 819 for (const auto &CU : DCtx.compile_units()) { in verifyDebugLineStmtOffsets() 861 for (const auto &CU : DCtx.compile_units()) { in verifyDebugLineRows() 1040 auto Die = DCtx.getDIEForOffset(Offset); in verifyAppleAccelTable() 1080 CUMap.reserve(DCtx.getNumCompileUnits()); in verifyDebugNamesCULists() 1081 for (const auto &CU : DCtx.compile_units()) in verifyDebugNamesCULists() 1539 if (isVariableIndexable(Die, DCtx)) in verifyNameIndexCompleteness() [all …]
|
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
H A D | DirectIvarAssignment.cpp | 65 LocationOrAnalysisDeclContext DCtx; member in __anonb344fd010111::DirectIvarAssignment::MethodCrawler 72 Checker(Checker), DCtx(InDCtx) {} in MethodCrawler() 141 AnalysisDeclContext *DCtx = Mgr.getAnalysisDeclContext(M); in checkASTDecl() local 152 DCtx); in checkASTDecl() 204 PathDiagnosticLocation(IvarRef, BR.getSourceManager(), DCtx)); in VisitBinaryOperator()
|
H A D | LocalizationChecker.cpp | 1045 LocationOrAnalysisDeclContext DCtx; member in __anon891b99d90511::EmptyLocalizationContextChecker::MethodCrawler 1051 : MD(InMD), BR(InBR), Mgr(InMgr), Checker(Checker), DCtx(InDCtx) {} in MethodCrawler() 1078 AnalysisDeclContext *DCtx = Mgr.getAnalysisDeclContext(M); in checkASTDecl() local 1086 MethodCrawler MC(M->getCanonicalDecl(), BR, this, Mgr, DCtx); in checkASTDecl() 1193 PathDiagnosticLocation(ME, BR.getSourceManager(), DCtx)); in reportEmptyContextError()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | IdentifierResolver.cpp | 144 DeclContext *DCtx = D->getDeclContext()->getRedeclContext(); in isDeclInScope() local 145 return AllowInlineNamespace ? Ctx->InEnclosingNamespaceSetOf(DCtx) in isDeclInScope() 146 : Ctx->Equals(DCtx); in isDeclInScope()
|
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFVerifier.h | 81 DWARFContext &DCtx; variable
|
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | DeclBase.cpp | 1666 void DeclContext::buildLookupImpl(DeclContext *DCtx, bool Internal) { in buildLookupImpl() argument 1667 for (auto *D : DCtx->noload_decls()) { in buildLookupImpl() 1677 if (ND->getDeclContext() == DCtx && !shouldBeHidden(ND) && in buildLookupImpl()
|
/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | DeclBase.h | 2603 void buildLookupImpl(DeclContext *DCtx, bool Internal);
|