Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Ddwarf2yaml.cpp27 void dumpDebugAbbrev(DWARFContext &DCtx, DWARFYAML::Data &Y) { in dumpDebugAbbrev() argument
28 auto AbbrevSetPtr = DCtx.getDebugAbbrev(); in dumpDebugAbbrev()
51 void dumpDebugStrings(DWARFContext &DCtx, DWARFYAML::Data &Y) { in dumpDebugStrings() argument
52 StringRef RemainingTable = DCtx.getDWARFObj().getStringSection(); in dumpDebugStrings()
60 void dumpDebugARanges(DWARFContext &DCtx, DWARFYAML::Data &Y) { in dumpDebugARanges() argument
61 DataExtractor ArangesData(DCtx.getDWARFObj().getARangeSection(), in dumpDebugARanges()
62 DCtx.isLittleEndian(), 0); in dumpDebugARanges()
83 void dumpPubSection(DWARFContext &DCtx, DWARFYAML::PubSection &Y, in dumpPubSection() argument
85 DataExtractor PubSectionData(Section, DCtx.isLittleEndian(), 0); in dumpPubSection()
101 void dumpDebugPubSections(DWARFContext &DCtx, DWARFYAML::Data &Y) { in dumpDebugPubSections() argument
[all …]
Dobj2yaml.h38 std::error_code dwarf2yaml(llvm::DWARFContext &DCtx, llvm::DWARFYAML::Data &Y);
Dmacho2yaml.cpp38 void dumpDebugAbbrev(DWARFContext &DCtx,
40 void dumpDebugStrings(DWARFContext &DCtx,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFVerifier.cpp146 if (!DCtx.getDebugAbbrev()->getAbbreviationDeclarationSet(AbbrOffset)) in verifyUnitHeader()
238 const DWARFObject &DObj = DCtx.getDWARFObj(); in handleDebugAbbrev()
248 NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrev()); in handleDebugAbbrev()
251 NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrevDWO()); in handleDebugAbbrev()
258 const DWARFObject &DObj = DCtx.getDWARFObj(); in handleDebugInfo()
260 DCtx.isLittleEndian(), 0); in handleDebugInfo()
278 Header.extract(DCtx, DebugInfoData, &OffsetStart); in handleDebugInfo()
284 DCtx, DObj.getInfoSection(), Header, DCtx.getDebugAbbrev(), in handleDebugInfo()
287 DObj.getLineSection(), DCtx.isLittleEndian(), false, TUSection)); in handleDebugInfo()
298 DCtx, DObj.getInfoSection(), Header, DCtx.getDebugAbbrev(), in handleDebugInfo()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DDirectIvarAssignment.cpp66 LocationOrAnalysisDeclContext DCtx; member in __anon5ac3b7a10111::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 __anon485d80790411::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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFVerifier.h92 DWARFContext &DCtx; variable
272 : OS(S), DCtx(D), DumpOpts(std::move(DumpOpts)) {} in OS()
/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/u-boot/lib/zstd/
Dhuf_decompress.c202 size_t HUF_decompress1X2_DCtx_wksp(HUF_DTable *DCtx, void *dst, size_t dstSize, const void *cSrc, s… in HUF_decompress1X2_DCtx_wksp() argument
206 size_t const hSize = HUF_readDTableX2_wksp(DCtx, cSrc, cSrcSize, workspace, workspaceSize); in HUF_decompress1X2_DCtx_wksp()
214 return HUF_decompress1X2_usingDTable_internal(dst, dstSize, ip, cSrcSize, DCtx); in HUF_decompress1X2_DCtx_wksp()
662 size_t HUF_decompress1X4_DCtx_wksp(HUF_DTable *DCtx, void *dst, size_t dstSize, const void *cSrc, s… in HUF_decompress1X4_DCtx_wksp() argument
666 size_t const hSize = HUF_readDTableX4_wksp(DCtx, cSrc, cSrcSize, workspace, workspaceSize); in HUF_decompress1X4_DCtx_wksp()
674 return HUF_decompress1X4_usingDTable_internal(dst, dstSize, ip, cSrcSize, DCtx); in HUF_decompress1X4_DCtx_wksp()
/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/clang/include/clang/AST/
DDeclBase.h1815 void buildLookupImpl(DeclContext *DCtx, bool Internal);