Home
last modified time | relevance | path

Searched refs:DCtx (Results 1 – 21 of 21) sorted by relevance

/external/llvm-project/llvm/tools/obj2yaml/
Ddwarf2yaml.cpp23 void dumpDebugAbbrev(DWARFContext &DCtx, DWARFYAML::Data &Y) { in dumpDebugAbbrev() argument
24 auto AbbrevSetPtr = DCtx.getDebugAbbrev(); in dumpDebugAbbrev()
50 Error dumpDebugAddr(DWARFContext &DCtx, DWARFYAML::Data &Y) { in dumpDebugAddr() argument
52 DWARFDataExtractor AddrData(DCtx.getDWARFObj(), in dumpDebugAddr()
53 DCtx.getDWARFObj().getAddrSection(), in dumpDebugAddr()
54 DCtx.isLittleEndian(), /*AddrSize=*/0); in dumpDebugAddr()
82 Error dumpDebugStrings(DWARFContext &DCtx, DWARFYAML::Data &Y) { in dumpDebugStrings() argument
83 DataExtractor StrData = DCtx.getStringExtractor(); in dumpDebugStrings()
98 Error dumpDebugARanges(DWARFContext &DCtx, DWARFYAML::Data &Y) { in dumpDebugARanges() argument
99 DWARFDataExtractor ArangesData(DCtx.getDWARFObj().getArangesSection(), in dumpDebugARanges()
[all …]
Dobj2yaml.h45 void dumpDebugAbbrev(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y);
46 llvm::Error dumpDebugAddr(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y);
47 llvm::Error dumpDebugARanges(llvm::DWARFContext &DCtx,
49 void dumpDebugPubSections(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y);
50 void dumpDebugInfo(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y);
51 void dumpDebugLines(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y);
52 llvm::Error dumpDebugRanges(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y);
53 llvm::Error dumpDebugStrings(llvm::DWARFContext &DCtx,
Dmacho2yaml.cpp55 std::unique_ptr<DWARFContext> DCtx) in MachODumper() argument
56 : Obj(O), DWARFCtx(std::move(DCtx)) {} in MachODumper()
134 static Error dumpDebugSection(StringRef SecName, DWARFContext &DCtx, in dumpDebugSection() argument
137 dumpDebugAbbrev(DCtx, DWARF); in dumpDebugSection()
141 return dumpDebugARanges(DCtx, DWARF); in dumpDebugSection()
143 dumpDebugInfo(DCtx, DWARF); in dumpDebugSection()
147 dumpDebugLines(DCtx, DWARF); in dumpDebugSection()
152 dumpDebugPubSections(DCtx, DWARF); in dumpDebugSection()
156 return dumpDebugRanges(DCtx, DWARF); in dumpDebugSection()
158 return dumpDebugStrings(DCtx, DWARF); in dumpDebugSection()
[all …]
Delf2yaml.cpp113 ELFDumper(const object::ELFFile<ELFT> &O, std::unique_ptr<DWARFContext> DCtx);
121 std::unique_ptr<DWARFContext> DCtx) in ELFDumper() argument
122 : Obj(O), DWARFCtx(std::move(DCtx)) {} in ELFDumper()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFVerifier.cpp133 if (!DCtx.getDebugAbbrev()->getAbbreviationDeclarationSet(AbbrOffset)) in verifyUnitHeader()
271 const DWARFObject &DObj = DCtx.getDWARFObj(); in handleDebugAbbrev()
274 NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrev()); in handleDebugAbbrev()
276 NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrevDWO()); in handleDebugAbbrev()
283 const DWARFObject &DObj = DCtx.getDWARFObj(); in verifyUnitSection()
284 DWARFDataExtractor DebugInfoData(DObj, S, DCtx.isLittleEndian(), 0); in verifyUnitSection()
302 Header.extract(DCtx, DebugInfoData, &OffsetStart, SectionKind); in verifyUnitSection()
308 DCtx, S, Header, DCtx.getDebugAbbrev(), &DObj.getRangesSection(), in verifyUnitSection()
311 DObj.getLineSection(), DCtx.isLittleEndian(), false, in verifyUnitSection()
322 DCtx, S, Header, DCtx.getDebugAbbrev(), &DObj.getRangesSection(), in verifyUnitSection()
[all …]
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFVerifier.cpp133 if (!DCtx.getDebugAbbrev()->getAbbreviationDeclarationSet(AbbrOffset)) in verifyUnitHeader()
280 const DWARFObject &DObj = DCtx.getDWARFObj(); in handleDebugAbbrev()
283 NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrev()); in handleDebugAbbrev()
285 NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrevDWO()); in handleDebugAbbrev()
292 const DWARFObject &DObj = DCtx.getDWARFObj(); in verifyUnitSection()
293 DWARFDataExtractor DebugInfoData(DObj, S, DCtx.isLittleEndian(), 0); in verifyUnitSection()
311 Header.extract(DCtx, DebugInfoData, &OffsetStart, SectionKind); in verifyUnitSection()
317 DCtx, S, Header, DCtx.getDebugAbbrev(), &DObj.getRangesSection(), in verifyUnitSection()
320 DObj.getLineSection(), DCtx.isLittleEndian(), false, in verifyUnitSection()
331 DCtx, S, Header, DCtx.getDebugAbbrev(), &DObj.getRangesSection(), in verifyUnitSection()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DDirectIvarAssignment.cpp66 LocationOrAnalysisDeclContext DCtx; member in __anonbc0efef60111::DirectIvarAssignment::MethodCrawler
73 Checker(Checker), DCtx(InDCtx) {} in MethodCrawler()
142 AnalysisDeclContext *DCtx = Mgr.getAnalysisDeclContext(M); in checkASTDecl() local
151 DCtx); in checkASTDecl()
203 PathDiagnosticLocation(IvarRef, BR.getSourceManager(), DCtx)); in VisitBinaryOperator()
DLocalizationChecker.cpp943 LocationOrAnalysisDeclContext DCtx; member in __anon1502b12e0411::EmptyLocalizationContextChecker::MethodCrawler
949 : MD(InMD), BR(InBR), Mgr(InMgr), Checker(Checker), DCtx(InDCtx) {} in MethodCrawler()
976 AnalysisDeclContext *DCtx = Mgr.getAnalysisDeclContext(M); in checkASTDecl() local
981 MethodCrawler MC(M->getCanonicalDecl(), BR, this, Mgr, DCtx); in checkASTDecl()
1082 PathDiagnosticLocation(ME, BR.getSourceManager(), DCtx)); in reportEmptyContextError()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DDirectIvarAssignment.cpp65 LocationOrAnalysisDeclContext DCtx; member in __anon9591bdc40111::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()
DLocalizationChecker.cpp1044 LocationOrAnalysisDeclContext DCtx; member in __anon3aa1ce3c0511::EmptyLocalizationContextChecker::MethodCrawler
1050 : MD(InMD), BR(InBR), Mgr(InMgr), Checker(Checker), DCtx(InDCtx) {} in MethodCrawler()
1077 AnalysisDeclContext *DCtx = Mgr.getAnalysisDeclContext(M); in checkASTDecl() local
1085 MethodCrawler MC(M->getCanonicalDecl(), BR, this, Mgr, DCtx); in checkASTDecl()
1192 PathDiagnosticLocation(ME, BR.getSourceManager(), DCtx)); in reportEmptyContextError()
/external/clang/lib/Sema/
DIdentifierResolver.cpp136 DeclContext *DCtx = D->getDeclContext()->getRedeclContext(); in isDeclInScope() local
137 return AllowInlineNamespace ? Ctx->InEnclosingNamespaceSetOf(DCtx) in isDeclInScope()
138 : Ctx->Equals(DCtx); in isDeclInScope()
/external/llvm-project/clang/lib/Sema/
DIdentifierResolver.cpp138 DeclContext *DCtx = D->getDeclContext()->getRedeclContext(); in isDeclInScope() local
139 return AllowInlineNamespace ? Ctx->InEnclosingNamespaceSetOf(DCtx) in isDeclInScope()
140 : Ctx->Equals(DCtx); in isDeclInScope()
/external/zstd/lib/decompress/
Dhuf_decompress.c464 size_t HUF_decompress1X1_DCtx_wksp(HUF_DTable* DCtx, void* dst, size_t dstSize, in HUF_decompress1X1_DCtx_wksp() argument
470 size_t const hSize = HUF_readDTableX1_wksp(DCtx, cSrc, cSrcSize, workSpace, wkspSize); in HUF_decompress1X1_DCtx_wksp()
475 return HUF_decompress1X1_usingDTable_internal(dst, dstSize, ip, cSrcSize, DCtx, /* bmi2 */ 0); in HUF_decompress1X1_DCtx_wksp()
930 size_t HUF_decompress1X2_DCtx_wksp(HUF_DTable* DCtx, void* dst, size_t dstSize, in HUF_decompress1X2_DCtx_wksp() argument
936 size_t const hSize = HUF_readDTableX2_wksp(DCtx, cSrc, cSrcSize, in HUF_decompress1X2_DCtx_wksp()
942 return HUF_decompress1X2_usingDTable_internal(dst, dstSize, ip, cSrcSize, DCtx, /* bmi2 */ 0); in HUF_decompress1X2_DCtx_wksp()
1215 size_t HUF_decompress1X1_DCtx(HUF_DTable* DCtx, void* dst, size_t dstSize, in HUF_decompress1X1_DCtx() argument
1219 return HUF_decompress1X1_DCtx_wksp(DCtx, dst, dstSize, cSrc, cSrcSize, in HUF_decompress1X1_DCtx()
1238 size_t HUF_decompress1X2_DCtx(HUF_DTable* DCtx, void* dst, size_t dstSize, in HUF_decompress1X2_DCtx() argument
1242 return HUF_decompress1X2_DCtx_wksp(DCtx, dst, dstSize, cSrc, cSrcSize, in HUF_decompress1X2_DCtx()
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFVerifier.h92 DWARFContext &DCtx; variable
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFVerifier.h92 DWARFContext &DCtx; variable
/external/clang/lib/AST/
DDeclBase.cpp1378 void DeclContext::buildLookupImpl(DeclContext *DCtx, bool Internal) { in buildLookupImpl() argument
1379 for (Decl *D : DCtx->noload_decls()) { in buildLookupImpl()
1389 if (ND->getDeclContext() == DCtx && !shouldBeHidden(ND) && in buildLookupImpl()
/external/llvm-project/clang/lib/AST/
DDeclBase.cpp1640 void DeclContext::buildLookupImpl(DeclContext *DCtx, bool Internal) { in buildLookupImpl() argument
1641 for (auto *D : DCtx->noload_decls()) { in buildLookupImpl()
1651 if (ND->getDeclContext() == DCtx && !shouldBeHidden(ND) && in buildLookupImpl()
/external/zstd/lib/legacy/
Dzstd_v07.c1905 size_t HUFv07_decompress1X2_DCtx (HUFv07_DTable* DCtx, void* dst, size_t dstSize, const void* cSrc,… in HUFv07_decompress1X2_DCtx() argument
1909 size_t const hSize = HUFv07_readDTableX2 (DCtx, cSrc, cSrcSize); in HUFv07_decompress1X2_DCtx()
1914 return HUFv07_decompress1X2_usingDTable_internal (dst, dstSize, ip, cSrcSize, DCtx); in HUFv07_decompress1X2_DCtx()
2317 size_t HUFv07_decompress1X4_DCtx (HUFv07_DTable* DCtx, void* dst, size_t dstSize, const void* cSrc,… in HUFv07_decompress1X4_DCtx() argument
2321 size_t const hSize = HUFv07_readDTableX4 (DCtx, cSrc, cSrcSize); in HUFv07_decompress1X4_DCtx()
2326 return HUFv07_decompress1X4_usingDTable_internal (dst, dstSize, ip, cSrcSize, DCtx); in HUFv07_decompress1X4_DCtx()
/external/clang/include/clang/AST/
DDeclBase.h1815 void buildLookupImpl(DeclContext *DCtx, bool Internal);
/external/llvm-project/clang/include/clang/AST/
DDeclBase.h2483 void buildLookupImpl(DeclContext *DCtx, bool Internal);
/external/zstd/
DCHANGELOG431 API : ZDICT_getDictID(), ZSTD_sizeof_{CCtx, DCtx, CStream, DStream}(), ZSTD_setDStreamParameter()