OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Dbi
(Results
1 - 14
of
14
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
StreamUtil.cpp
70
auto
Dbi
= File.getPDBDbiStream();
79
if (
Dbi
) {
80
const DbiModuleList &Modules =
Dbi
->modules();
105
Streams[StreamIdx] = stream(StreamPurpose::
DBI
, "
DBI
Stream", StreamIdx);
110
else if (
Dbi
&& StreamIdx ==
Dbi
->getGlobalSymbolStreamIndex())
113
else if (
Dbi
&& StreamIdx ==
Dbi
->getPublicSymbolStreamIndex())
116
else if (
Dbi
&& StreamIdx == Dbi->getSymRecordStreamIndex()
[
all
...]
ExplainOutputStyle.cpp
71
DbiStream
Dbi
(std::move(Stream));
72
if (auto EC =
Dbi
.reload(nullptr))
74
explainStreamOffset(
Dbi
, FileOffset);
255
case StreamPurpose::
DBI
: {
256
DbiStream &
Dbi
= cantFail(File.pdb().getPDBDbiStream());
257
explainStreamOffset(
Dbi
, StreamOff);
296
static void explainDbiHeaderOffset(LinePrinter &P, DbiStream &
Dbi
,
298
const DbiStreamHeader *Header =
Dbi
.getHeader();
302
printStructField(P, "the
DBI
Stream Version Signature",
305
printStructField(P, "the
DBI
Stream Version Header"
[
all
...]
InputFile.cpp
41
auto &
Dbi
= Err(File.getPDBDbiStream());
42
const auto &Modules =
Dbi
.modules();
502
auto &
Dbi
= cantFail(Value.File->pdb().getPDBDbiStream());
503
uint32_t Count =
Dbi
.modules().getModuleCount();
DumpOutputStyle.cpp
263
auto &
DBI
= Err(getPdb().getPDBDbiStream());
264
P.formatLine("Is incrementally linked: {0}",
DBI
.isIncrementallyLinked());
265
P.formatLine("Has conflicting types: {0}",
DBI
.hasCTypes());
266
P.formatLine("Is stripped: {0}",
DBI
.isStripped());
416
auto &
Dbi
= Err(File.getPDBDbiStream());
417
const auto &Modules =
Dbi
.modules();
504
"Section headers require a
DBI
Stream, which could not be loaded",
507
auto &
Dbi
= cantFail(File.getPDBDbiStream());
508
uint32_t SI =
Dbi
.getDebugStreamIndex(Type);
588
printStreamNotPresent("
DBI
");
[
all
...]
llvm-pdbutil.cpp
368
cl::OptionCategory DbiBytes("
Dbi
Stream Options");
660
cl::opt<bool> DbiStream("
dbi
-stream",
661
cl::desc("Dump the
DBI
Stream Headers (Stream 2)"),
719
clEnumValN(InputFileType::DBIStream, "
dbi
-stream",
720
"Treat input as raw contents of
DBI
stream"),
802
const auto &
Dbi
= YamlObj.DbiStream.getValueOr(DefaultDbiStream);
804
DbiBuilder.setAge(
Dbi
.Age);
805
DbiBuilder.setBuildNumber(
Dbi
.BuildNumber);
806
DbiBuilder.setFlags(
Dbi
.Flags);
807
DbiBuilder.setMachineType(
Dbi
.MachineType)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeExeSymbol.cpp
34
Dbi
(getDbiStreamPtr(Session)) {}
88
auto
Dbi
= Session.getPDBFile().getPDBDbiStream();
89
if (
Dbi
)
90
return
Dbi
->hasCTypes();
91
consumeError(
Dbi
.takeError());
96
auto
Dbi
= Session.getPDBFile().getPDBDbiStream();
97
if (
Dbi
)
98
return !
Dbi
->isStripped();
99
consumeError(
Dbi
.takeError());
PDBFileBuilder.cpp
56
if (!
Dbi
)
57
Dbi
= std::make_unique<DbiStreamBuilder>(*Msf);
58
return *
Dbi
;
142
if (
Dbi
) {
143
Dbi
->setPublicsStreamIndex(Gsi->getPublicsStreamIndex());
144
Dbi
->setGlobalsStreamIndex(Gsi->getGlobalsStreamIndex());
145
Dbi
->setSymbolRecordStreamIndex(Gsi->getRecordStreamIndex());
152
if (
Dbi
) {
153
if (auto EC =
Dbi
->finalizeMsfLayout())
300
if (
Dbi
) {
[
all
...]
NativeSession.cpp
223
auto
Dbi
= Pdb->getPDBDbiStream();
224
if (!
Dbi
)
231
for (; Section <
Dbi
->getSectionHeaders().size(); ++Section) {
232
auto &Sec =
Dbi
->getSectionHeaders()[Section];
378
auto
Dbi
= getDbiStreamPtr(*Pdb);
379
if (!
Dbi
)
382
uint32_t MaxSection =
Dbi
->getSectionHeaders().size();
385
auto &Sec =
Dbi
->getSectionHeaders()[Section - 1];
414
auto
Dbi
= Pdb->getPDBDbiStream();
415
if (!
Dbi
)
[
all
...]
SymbolCache.cpp
73
SymbolCache::SymbolCache(NativeSession &Session, DbiStream *
Dbi
)
74
: Session(Session),
Dbi
(
Dbi
) {
79
if (
Dbi
)
80
Compilands.resize(
Dbi
->modules().getModuleCount());
263
if (!
Dbi
)
266
return
Dbi
->modules().getModuleCount();
340
if (!
Dbi
)
593
if (!
Dbi
)
600
const DbiModuleList &Modules =
Dbi
->modules()
[
all
...]
PDBFile.cpp
290
if (!
Dbi
) {
297
Dbi
= std::move(TempDbi);
299
return *
Dbi
;
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeExeSymbol.h
22
DbiStream *
Dbi
= nullptr;
PDBFileBuilder.h
90
std::unique_ptr<DbiStreamBuilder>
Dbi
;
SymbolCache.h
33
DbiStream *
Dbi
= nullptr;
118
SymbolCache(NativeSession &Session, DbiStream *
Dbi
);
PDBFile.h
134
std::unique_ptr<DbiStream>
Dbi
;
Completed in 31 milliseconds
Indexes created Sat Sep 12 00:25:55 UTC 2026