Home
last modified time | relevance | path

Searched refs:Pdb (Results 1 – 25 of 59) sorted by relevance

123

/external/llvm/lib/DebugInfo/PDB/Raw/
DMappedBlockStream.cpp39 const IPDBFile &Pdb) in MappedBlockStream() argument
40 : Pdb(Pdb), Data(std::move(Data)) {} in MappedBlockStream()
127 uint32_t First = Offset / Pdb.getBlockSize(); in readLongestContiguousChunk()
131 while (Last < Pdb.getBlockCount() - 1) { in readLongestContiguousChunk()
137 uint32_t OffsetInFirstBlock = Offset % Pdb.getBlockSize(); in readLongestContiguousChunk()
138 uint32_t BytesFromFirstBlock = Pdb.getBlockSize() - OffsetInFirstBlock; in readLongestContiguousChunk()
141 BytesFromFirstBlock + (BlockSpan - 1) * Pdb.getBlockSize(); in readLongestContiguousChunk()
142 auto Result = Pdb.getBlockData(BlockList[First], Pdb.getBlockSize()); in readLongestContiguousChunk()
161 uint32_t BlockNum = Offset / Pdb.getBlockSize(); in tryReadContiguously()
162 uint32_t OffsetInBlock = Offset % Pdb.getBlockSize(); in tryReadContiguously()
[all …]
DDbiStream.cpp83 : Pdb(File), Stream(std::move(Stream)), Header(nullptr) { in DbiStream()
110 auto IS = Pdb.getPDBInfoStream(); in reload()
286 if (StreamNum >= Pdb.getNumStreams()) in initializeSectionHeadersData()
289 auto SHS = MappedBlockStream::createIndexedStream(StreamNum, Pdb); in initializeSectionHeadersData()
316 if (StreamNum >= Pdb.getNumStreams()) in initializeFpoRecords()
319 auto FS = MappedBlockStream::createIndexedStream(StreamNum, Pdb); in initializeFpoRecords()
DPublicsStream.cpp76 : Pdb(File), Stream(std::move(Stream)) {} in PublicsStream()
163 auto SymbolS = Pdb.getPDBSymbolStream(); in getSymbols()
DTpiStream.cpp63 : Pdb(File), Stream(std::move(Stream)) {} in TpiStream()
188 if (Header->HashStreamIndex >= Pdb.getNumStreams()) in reload()
193 MappedBlockStream::createIndexedStream(Header->HashStreamIndex, Pdb); in reload()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DDbiStream.cpp52 Error DbiStream::reload(PDBFile *Pdb) { in reload() argument
125 if (auto EC = initializeSectionHeadersData(Pdb)) in reload()
129 if (auto EC = initializeOldFpoRecords(Pdb)) in reload()
131 if (auto EC = initializeNewFpoRecords(Pdb)) in reload()
258 Error DbiStream::initializeSectionHeadersData(PDBFile *Pdb) { in initializeSectionHeadersData() argument
260 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::SectionHdr); in initializeSectionHeadersData()
284 Error DbiStream::initializeOldFpoRecords(PDBFile *Pdb) { in initializeOldFpoRecords() argument
286 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::FPO); in initializeOldFpoRecords()
308 Error DbiStream::initializeNewFpoRecords(PDBFile *Pdb) { in initializeNewFpoRecords() argument
310 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::NewFPO); in initializeNewFpoRecords()
[all …]
DNativeSession.cpp54 : Pdb(std::move(PdbFile)), Allocator(std::move(Allocator)), in NativeSession()
55 Cache(*this, getDbiStreamPtr(*Pdb)) {} in NativeSession()
195 auto ISS = Pdb->getInjectedSourceStream(); in getInjectedSources()
200 auto Strings = Pdb->getStringTable(); in getInjectedSources()
205 return std::make_unique<NativeEnumInjectedSources>(*Pdb, *ISS, *Strings); in getInjectedSources()
DDbiModuleDescriptorBuilder.cpp80 assert(BulkSymbols.size() % alignOf(CodeViewContainer::Pdb) == 0 && in addSymbolsInBulk()
162 assert(SymbolWriter.getOffset() % alignOf(CodeViewContainer::Pdb) == 0 && in commit()
184 std::move(Subsection), CodeViewContainer::Pdb)); in addDebugSubsection()
190 SubsectionContents, CodeViewContainer::Pdb)); in addDebugSubsection()
DTpiStream.cpp37 : Pdb(File), Stream(std::move(Stream)) {} in TpiStream()
81 auto HS = Pdb.safelyCreateIndexedStream(Header->HashStreamIndex); in reload()
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DDbiStream.cpp52 Error DbiStream::reload(PDBFile *Pdb) { in reload() argument
125 if (auto EC = initializeSectionHeadersData(Pdb)) in reload()
129 if (auto EC = initializeOldFpoRecords(Pdb)) in reload()
131 if (auto EC = initializeNewFpoRecords(Pdb)) in reload()
258 Error DbiStream::initializeSectionHeadersData(PDBFile *Pdb) { in initializeSectionHeadersData() argument
260 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::SectionHdr); in initializeSectionHeadersData()
284 Error DbiStream::initializeOldFpoRecords(PDBFile *Pdb) { in initializeOldFpoRecords() argument
286 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::FPO); in initializeOldFpoRecords()
308 Error DbiStream::initializeNewFpoRecords(PDBFile *Pdb) { in initializeNewFpoRecords() argument
310 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::NewFPO); in initializeNewFpoRecords()
[all …]
DNativeSession.cpp59 : Pdb(std::move(PdbFile)), Allocator(std::move(Allocator)), in NativeSession()
60 Cache(*this, getDbiStreamPtr(*Pdb)), AddrToModuleIndex(IMapAllocator) {} in NativeSession()
223 auto Dbi = Pdb->getPDBDbiStream(); in addressForRVA()
339 auto ISS = Pdb->getInjectedSourceStream(); in getInjectedSources()
344 auto Strings = Pdb->getStringTable(); in getInjectedSources()
349 return std::make_unique<NativeEnumInjectedSources>(*Pdb, *ISS, *Strings); in getInjectedSources()
378 auto Dbi = getDbiStreamPtr(*Pdb); in getRVAFromSectOffset()
414 auto Dbi = Pdb->getPDBDbiStream(); in parseSectionContribs()
446 auto *Dbi = getDbiStreamPtr(*Pdb); in getModuleDebugStream()
456 Pdb->createIndexedStream(ModiStream); in getModuleDebugStream()
DDbiModuleDescriptorBuilder.cpp80 assert(BulkSymbols.size() % alignOf(CodeViewContainer::Pdb) == 0 && in addSymbolsInBulk()
161 assert(SymbolWriter.getOffset() % alignOf(CodeViewContainer::Pdb) == 0 && in commit()
165 if (auto EC = Builder.commit(SymbolWriter, CodeViewContainer::Pdb)) in commit()
DTpiStream.cpp37 : Pdb(File), Stream(std::move(Stream)) {} in TpiStream()
81 auto HS = Pdb.safelyCreateIndexedStream(Header->HashStreamIndex); in reload()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiStream.h43 Error reload(PDBFile *Pdb);
95 Error initializeSectionHeadersData(PDBFile *Pdb);
97 Error initializeOldFpoRecords(PDBFile *Pdb);
98 Error initializeNewFpoRecords(PDBFile *Pdb);
101 createIndexedStreamForHeaderType(PDBFile *Pdb, DbgHeaderType Type) const;
DNativeSession.h97 PDBFile &getPDBFile() { return *Pdb; } in getPDBFile()
98 const PDBFile &getPDBFile() const { return *Pdb; } in getPDBFile()
107 std::unique_ptr<PDBFile> Pdb; variable
/external/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiStream.h43 Error reload(PDBFile *Pdb);
95 Error initializeSectionHeadersData(PDBFile *Pdb);
97 Error initializeOldFpoRecords(PDBFile *Pdb);
98 Error initializeNewFpoRecords(PDBFile *Pdb);
101 createIndexedStreamForHeaderType(PDBFile *Pdb, DbgHeaderType Type) const;
DNativeSession.h105 PDBFile &getPDBFile() { return *Pdb; } in getPDBFile()
106 const PDBFile &getPDBFile() const { return *Pdb; } in getPDBFile()
122 std::unique_ptr<PDBFile> Pdb; variable
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
DRawSession.h66 PDBFile &getPDBFile() { return *Pdb; } in getPDBFile()
67 const PDBFile &getPDBFile() const { return *Pdb; } in getPDBFile()
70 std::unique_ptr<PDBFile> Pdb;
DTpiStream.h57 const PDBFile &Pdb; variable
/external/python/cpython3/Doc/library/
Dpdb.rst22 single: Pdb (class in pdb)
26 The debugger is extensible -- it is actually defined as the class :class:`Pdb`.
30 The debugger's prompt is ``(Pdb)``. Typical usage to run a program under control
37 (Pdb) continue
39 (Pdb) continue
42 (Pdb)
98 (Pdb)
157 :class:`Pdb` class and calling the method of the same name. If you want to
160 .. class:: Pdb(completekey='tab', stdin=None, stdout=None, skip=None, \
163 :class:`Pdb` is the debugger class.
[all …]
/external/python/cpython2/Doc/library/
Dpdb.rst22 single: Pdb (class in pdb)
26 The debugger is extensible --- it is actually defined as the class :class:`Pdb`.
30 The debugger's prompt is ``(Pdb)``. Typical usage to run a program under control
37 (Pdb) continue
39 (Pdb) continue
42 (Pdb)
82 (Pdb)
136 :class:`Pdb` class and calling the method of the same name. If you want to
139 .. class:: Pdb(completekey='tab', stdin=None, stdout=None, skip=None)
141 :class:`Pdb` is the debugger class.
[all …]
/external/python/cpython3/Lib/
Dpdb.py138 class Pdb(bdb.Bdb, cmd.Cmd): class
344 if Pdb._previous_sigint_handler:
346 signal.signal(signal.SIGINT, Pdb._previous_sigint_handler)
350 Pdb._previous_sigint_handler = None
1050 Pdb._previous_sigint_handler = \
1100 p = Pdb(self.completekey, self.stdin, self.stdout)
1588 __doc__ += getattr(Pdb, 'do_' + _command).__doc__.strip() + '\n\n'
1589 __doc__ += Pdb.help_exec.__doc__
1597 Pdb().run(statement, globals, locals)
1600 return Pdb().runeval(expression, globals, locals)
[all …]
/external/llvm-project/lld/COFF/
DPDB.cpp366 size_t size = alignTo(sym.length(), alignOf(CodeViewContainer::Pdb)); in copyAndAlignSymbol()
513 alignTo(sym.length(), alignOf(CodeViewContainer::Pdb)); in mergeSymbolRecords()
533 bAlloc.Allocate(totalRealignedSize, alignOf(CodeViewContainer::Pdb)); in mergeSymbolRecords()
1210 ons, bAlloc, CodeViewContainer::Pdb)); in addCommonLinkerModuleSymbols()
1212 cs, bAlloc, CodeViewContainer::Pdb)); in addCommonLinkerModuleSymbols()
1214 ebs, bAlloc, CodeViewContainer::Pdb)); in addCommonLinkerModuleSymbols()
1240 cgs, bAlloc, CodeViewContainer::Pdb)); in addLinkerModuleCoffGroup()
1253 sym, bAlloc, CodeViewContainer::Pdb)); in addLinkerModuleSectionSymbol()
1329 ons, bAlloc, CodeViewContainer::Pdb)); in addImportFilesToPDB()
1331 cs, bAlloc, CodeViewContainer::Pdb)); in addImportFilesToPDB()
[all …]
/external/llvm/test/DebugInfo/PDB/
Dpdbdump-headers.test253 ; EMPTY-NEXT: Pdb File Name Idx: 0
387 ; EMPTY-NEXT: Pdb File Name Idx: 1
1155 ; ALL: Pdb File Name Idx: 0
1230 ; ALL: Pdb File Name Idx: 1
1799 ; BIG-NEXT: Pdb File Name Idx: 0
1815 ; BIG-NEXT: Pdb File Name Idx: 0
1844 ; BIG-NEXT: Pdb File Name Idx: 0
1878 ; BIG-NEXT: Pdb File Name Idx: 0
1894 ; BIG-NEXT: Pdb File Name Idx: 0
1923 ; BIG-NEXT: Pdb File Name Idx: 0
[all …]
/external/python/cpython2/Lib/
Dpdb.py59 class Pdb(bdb.Bdb, cmd.Cmd): class
716 p = Pdb(self.completekey, self.stdin, self.stdout)
1238 Pdb().run(statement, globals, locals)
1241 return Pdb().runeval(expression, globals, locals)
1248 return Pdb().runcall(*args, **kwds)
1251 Pdb().set_trace(sys._getframe().f_back)
1265 p = Pdb()
1311 pdb = Pdb()
Dpdb.doc1 The Python Debugger Pdb
9 The debugger's prompt is '(Pdb) '. This will stop in the first
167 (Pdb) global list_options; list_options = ['-l']
168 (Pdb)

123