Home
last modified time | relevance | path

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

12

/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()
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()
DPublicsStream.cpp76 : Pdb(File), Stream(std::move(Stream)) {} in PublicsStream()
163 auto SymbolS = Pdb.getPDBSymbolStream(); in getSymbols()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DDbiStream.cpp53 Error DbiStream::reload(PDBFile *Pdb) { in reload() argument
126 if (auto EC = initializeSectionHeadersData(Pdb)) in reload()
130 if (auto EC = initializeFpoRecords(Pdb)) in reload()
249 Error DbiStream::initializeSectionHeadersData(PDBFile *Pdb) { in initializeSectionHeadersData() argument
250 if (!Pdb) in initializeSectionHeadersData()
260 if (StreamNum >= Pdb->getNumStreams()) in initializeSectionHeadersData()
264 Pdb->getMsfLayout(), Pdb->getMsfBuffer(), StreamNum, Pdb->getAllocator()); in initializeSectionHeadersData()
282 Error DbiStream::initializeFpoRecords(PDBFile *Pdb) { in initializeFpoRecords() argument
283 if (!Pdb) in initializeFpoRecords()
295 if (StreamNum >= Pdb->getNumStreams()) in initializeFpoRecords()
[all …]
DTpiStream.cpp35 : Pdb(File), Stream(std::move(Stream)) {} in TpiStream()
79 if (Header->HashStreamIndex >= Pdb.getNumStreams()) in reload()
84 Pdb.getMsfLayout(), Pdb.getMsfBuffer(), Header->HashStreamIndex, in reload()
85 Pdb.getAllocator()); in reload()
DDbiModuleDescriptorBuilder.cpp72 assert(Symbol.length() % alignOf(CodeViewContainer::Pdb) == 0 && in addSymbol()
156 assert(SymbolWriter.getOffset() % alignOf(CodeViewContainer::Pdb) == 0 && in commit()
177 std::move(Subsection), CodeViewContainer::Pdb)); in addDebugSubsection()
183 SubsectionContents, CodeViewContainer::Pdb)); in addDebugSubsection()
DNativeSession.cpp67 : Pdb(std::move(PdbFile)), Allocator(std::move(Allocator)) {} in NativeSession()
113 auto Tpi = Pdb->getPDBTpiStream(); in createTypeEnumerator()
151 auto Tpi = Pdb->getPDBTpiStream(); in findSymbolByTypeIndex()
/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
DPublicsStream.h57 PDBFile &Pdb;
DMappedBlockStream.h57 const IPDBFile &Pdb; variable
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiStream.h43 Error reload(PDBFile *Pdb);
92 Error initializeSectionHeadersData(PDBFile *Pdb);
94 Error initializeFpoRecords(PDBFile *Pdb);
DNativeSession.h107 PDBFile &getPDBFile() { return *Pdb; } in getPDBFile()
108 const PDBFile &getPDBFile() const { return *Pdb; } in getPDBFile()
111 std::unique_ptr<PDBFile> Pdb;
DTpiStream.h66 PDBFile &Pdb;
/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.py136 class Pdb(bdb.Bdb, cmd.Cmd): class
343 if Pdb._previous_sigint_handler:
344 signal.signal(signal.SIGINT, Pdb._previous_sigint_handler)
345 Pdb._previous_sigint_handler = None
1046 Pdb._previous_sigint_handler = \
1096 p = Pdb(self.completekey, self.stdin, self.stdout)
1585 __doc__ += getattr(Pdb, 'do_' + _command).__doc__.strip() + '\n\n'
1586 __doc__ += Pdb.help_exec.__doc__
1594 Pdb().run(statement, globals, locals)
1597 return Pdb().runeval(expression, globals, locals)
[all …]
Ddoctest.py346 class _OutputRedirectingPdb(pdb.Pdb):
356 pdb.Pdb.__init__(self, stdout=out, nosigint=True)
364 pdb.Pdb.set_trace(self, frame)
370 pdb.Pdb.set_continue(self)
378 return pdb.Pdb.trace_dispatch(self, *args)
2625 p = pdb.Pdb(nosigint=True)
2629 pdb.Pdb(nosigint=True).run("exec(%r)" % src, globs, globs)
/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)
/external/tensorflow/tensorflow/contrib/eager/python/examples/workshop/
D3_inspecting.ipynb306 "(Pdb) step\n",
310 "(Pdb) fast_decode.previous_encoding = encoder_output\n",
311 "(Pdb) continue\n",
408 "(Pdb) step\n",
412 …"(Pdb) encoder_output = tf.concat([fast_decode.previous_encoding[:, :3], encoder_output[:, 3:]], a…
413 "(Pdb) continue\n",
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugSubsectionRecord.h88 Stream, Info, codeview::CodeViewContainer::Pdb))
/external/python/cpython3/Lib/test/
Dtest_pdb.py565 getattr(pdb.Pdb(nosigint=True, readrc=False), method)(arg)
1341 resources.enter_context(patch.object(pdb.Pdb, 'set_trace'))

12