Home
last modified time | relevance | path

Searched full:subsections (Results 1 – 25 of 222) sorted by relevance

123456789

/external/llvm-project/llvm/test/DebugInfo/PDB/Inputs/
Ddebug-subsections.yaml5 Subsections:
14 Subsections:
29 Subsections:
65 # The following subsections don't normally appear in PDB files, but we test
69 Subsections:
/external/llvm-project/lld/test/COFF/
Dpdb-relative-source-lines.test36 RUN: llvm-pdbutil pdb2yaml -modules -module-files -module-syms -subsections=lines,fc %t/out.pdb | F…
38 RUN: llvm-pdbutil pdb2yaml -modules -module-files -module-syms -subsections=lines,fc %t/out.pdb | F…
45 CHECK: Subsections:
56 CHECK: Subsections:
79 POSIX: Subsections:
90 POSIX: Subsections:
Dline-error.yaml33 Subsections:
45 Subsections:
59 Subsections:
Dpdb-source-lines.test24 RUN: llvm-pdbutil pdb2yaml -modules -module-files -subsections=lines,fc %t.pdb | FileCheck %s
41 CHECK-NEXT: Subsections:
101 CHECK-NEXT: Subsections:
/external/llvm-project/lld/MachO/
DInputFiles.cpp15 // Perhaps the notion that is new to those who know ELF/COFF is "subsections".
19 // consist of multiple subsections, and subsections are a unit of merging and
20 // garbage-collecting. Therefore, Mach-O's subsections are more similar to
29 // The notion of subsections also affects how relocations are represented in
31 // relocations if they refer to different subsections, because we obviously need
32 // to fix up addresses if subsections are laid out in an output file differently
159 subsections.reserve(sections.size()); in parseSections()
177 subsections.push_back({{0, isec}}); in parseSections()
218 if (relInfo.r_symbolnum == 0 || relInfo.r_symbolnum > subsections.size()) in parseRelocations()
223 SubsectionMap &referentSubsecMap = subsections[relInfo.r_symbolnum - 1]; in parseRelocations()
[all …]
/external/llvm-project/llvm/test/DebugInfo/PDB/
Dpdbdump-debug-subsections.test1 ; RUN: llvm-pdbutil yaml2pdb -pdb=%t.pdb %p/Inputs/debug-subsections.yaml
7 YAML-NEXT: Subsections:
16 YAML-NEXT: Subsections:
31 YAML-NEXT: Subsections:
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DModuleDebugStream.cpp77 if (auto EC = SubsectionsReader.readArray(Subsections, in reloadSerialize()
122 ModuleDebugStreamRef::subsections() const { in subsections() function in ModuleDebugStreamRef
123 return make_range(Subsections.begin(), Subsections.end()); in subsections()
135 for (const auto &SS : subsections()) { in findChecksumsSubsection()
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DModuleDebugStream.cpp77 if (auto EC = SubsectionsReader.readArray(Subsections, in reloadSerialize()
122 ModuleDebugStreamRef::subsections() const { in subsections() function in ModuleDebugStreamRef
123 return make_range(Subsections.begin(), Subsections.end()); in subsections()
135 for (const auto &SS : subsections()) { in findChecksumsSubsection()
/external/llvm-project/lldb/bindings/interface/
DSBSection.i21 print INDENT + 'Number of subsections: %d' % sec.GetNumSubSections()
28 Number of subsections: 6
122 '''Iterate over all subsections in a lldb.SBSection object.'''
126 '''Return the number of subsections in a lldb.SBSection object.'''
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DModuleDebugStream.h58 iterator_range<DebugSubsectionIterator> subsections() const;
60 return Subsections; in getSubsectionsArray()
86 codeview::DebugSubsectionArray Subsections; variable
/external/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
DModuleDebugStream.h58 iterator_range<DebugSubsectionIterator> subsections() const;
60 return Subsections; in getSubsectionsArray()
86 codeview::DebugSubsectionArray Subsections; variable
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DStringsAndChecksums.h23 // If no subsections are known about initially, we find as much as we can.
29 // If both subsections are given, we don't need to find anything.
86 // If no subsections are known about initially, we find as much as we can.
DDebugSubsectionRecord.h55 /// Use this to copy existing subsections directly from source to destination.
56 /// For example, line table subsections in an object file only need to be
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DStringsAndChecksums.h23 // If no subsections are known about initially, we find as much as we can.
29 // If both subsections are given, we don't need to find anything.
86 // If no subsections are known about initially, we find as much as we can.
DDebugSubsectionRecord.h59 /// Use this to copy existing subsections directly from source to destination.
60 /// For example, line table subsections in an object file only need to be
/external/llvm-project/lld/COFF/
DPDB.cpp177 /// collect them all here and re-write them after all subsections have been
182 /// that need to be re-written. We first process all .debug$S subsections
183 /// to ensure that we can handle subsections written in any order, building
528 // them all. Typically symbol subsections are small enough that this will not in mergeSymbolRecords()
649 DebugSubsectionArray subsections; in handleDebugS() local
651 exitOnErr(reader.readArray(subsections, relocatedDebugContents.size())); in handleDebugS()
653 for (const DebugSubsectionRecord &ss : subsections) { in handleDebugS()
654 // Ignore subsections with the 'ignore' bit. Some versions of the Visual C++ in handleDebugS()
655 // runtime have subsections with this bit set. in handleDebugS()
662 "Encountered multiple string table subsections!"); in handleDebugS()
[all …]
/external/python/cpython3/Lib/test/
Dcfgparser.341 are they subsections = False
42 if you want subsections = use XML
/external/llvm-project/lldb/test/Shell/ObjectFile/ELF/
DPT_LOAD-overlap-PT_TLS.yaml16 # CHECK-NEXT: Showing 1 subsections
27 # CHECK-NEXT: Showing 1 subsections
DPT_TLS-overlap-PT_LOAD.yaml16 # CHECK-NEXT: Showing 1 subsections
27 # CHECK-NEXT: Showing 1 subsections
/external/llvm-project/llvm/tools/llvm-pdbutil/
DInputFile.cpp94 DebugSubsectionArray &Subsections) { in isDebugSSection() argument
99 cantFail(Reader.readArray(Subsections, Reader.bytesRemaining())); in isDebugSSection()
148 Subsections = SS; in SymbolGroup()
160 Subsections = SS; in updateDebugS()
186 Subsections = DebugStream->getSubsectionsArray(); in initializeForPdb()
187 SC.initialize(Subsections); in initializeForPdb()
DInputFile.h105 return Subsections; in getDebugSubsections()
122 codeview::DebugSubsectionArray Subsections; variable
/external/autotest/client/tests/unixbench5/
Dunixbench5.py68 subsections = section.split('\n\n')
70 if len(subsections) < 3:
74 for index, line in enumerate(subsections[1].strip().split('\n')):
88 keyval['score' + suffix] = subsections[2].strip().split()[-1]
/external/llvm-project/lldb/test/Shell/ObjectFile/MachO/
Dsubsections.yaml14 #CHECK-NEXT: There are no subsections
25 #CHECK-NEXT: Showing 3 subsections
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp748 BumpPtrAllocator &Allocator, ArrayRef<YAMLDebugSubsection> Subsections, in toCodeViewSubsectionList() argument
751 if (Subsections.empty()) in toCodeViewSubsectionList()
754 for (const auto &SS : Subsections) { in toCodeViewSubsectionList()
910 DebugSubsectionArray Subsections; in fromDebugS() local
911 Err(Reader.readArray(Subsections, Reader.bytesRemaining())); in fromDebugS()
915 for (const auto &SS : Subsections) { in fromDebugS()
924 // String Table and Checksums subsections don't use the allocator. in initializeStringsAndChecksums()
/external/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp748 BumpPtrAllocator &Allocator, ArrayRef<YAMLDebugSubsection> Subsections, in toCodeViewSubsectionList() argument
751 if (Subsections.empty()) in toCodeViewSubsectionList()
754 for (const auto &SS : Subsections) { in toCodeViewSubsectionList()
910 DebugSubsectionArray Subsections; in fromDebugS() local
911 Err(Reader.readArray(Subsections, Reader.bytesRemaining())); in fromDebugS()
915 for (const auto &SS : Subsections) { in fromDebugS()
924 // String Table and Checksums subsections don't use the allocator. in initializeStringsAndChecksums()

123456789