Home
last modified time | relevance | path

Searched refs:DBI (Results 1 – 24 of 24) sorted by relevance

/external/llvm-project/llvm/test/tools/llvm-pdbutil/
Dtype-server-no-dbi.test2 RUN: llvm-pdbutil dump -all %p/Inputs/TypeServerTest.pdb | FileCheck %s --check-prefix=NO-DBI
4 RUN: FileCheck --input-file=%t %s --check-prefix=NO-DBI-YAML
6 NO-DBI-NOT: Native PDB Error: The specified stream could not be loaded.
8 NO-DBI: Module Stats
9 NO-DBI-NEXT: ============================================================
10 NO-DBI-NEXT: DBI stream not present
12 NO-DBI: S_UDT Record Stats
13 NO-DBI-NEXT: ============================================================
14 NO-DBI-NEXT: Globals stream not present
16 NO-DBI: Modules
[all …]
Dexplain-dbi-stream.test31 CHECK-NEXT: Address is at offset 0/781 of Stream 3 (DBI Stream).
32 CHECK-NEXT: Within the DBI stream:
33 CHECK-NEXT: address is at offset 0/64 of the DBI Stream Header.
34 CHECK-NEXT: which contains the DBI Stream Version Signature.
39 CHECK-NEXT: Address is at offset 4/781 of Stream 3 (DBI Stream).
40 CHECK-NEXT: Within the DBI stream:
41 CHECK-NEXT: address is at offset 4/64 of the DBI Stream Header.
42 CHECK-NEXT: which contains the DBI Stream Version Header.
47 CHECK-NEXT: Address is at offset 8/781 of Stream 3 (DBI Stream).
48 CHECK-NEXT: Within the DBI stream:
[all …]
Dstripped.test30 ; CHECK-NEXT: Stream 3 (1355 bytes): [DBI Stream]
/external/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyDebugValueManager.cpp28 for (MachineInstr *DBI : reverse(DbgValues)) in move()
29 MBB->splice(Insert, DBI->getParent(), DBI); in move()
33 for (auto *DBI : DbgValues) in updateReg() local
34 DBI->getDebugOperand(0).setReg(Reg); in updateReg()
41 for (MachineInstr *DBI : reverse(DbgValues)) { in clone()
42 MachineInstr *Clone = MF->CloneMachineInstr(DBI); in clone()
49 for (auto *DBI : DbgValues) { in replaceWithLocal() local
50 MachineOperand &Op = DBI->getDebugOperand(0); in replaceWithLocal()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyDebugValueManager.cpp28 for (MachineInstr *DBI : reverse(DbgValues)) in move()
29 MBB->splice(Insert, DBI->getParent(), DBI); in move()
33 for (auto *DBI : DbgValues) in updateReg() local
34 DBI->getOperand(0).setReg(Reg); in updateReg()
41 for (MachineInstr *DBI : reverse(DbgValues)) { in clone()
42 MachineInstr *Clone = MF->CloneMachineInstr(DBI); in clone()
49 for (auto *DBI : DbgValues) { in replaceWithLocal() local
50 MachineOperand &Op = DBI->getOperand(0); in replaceWithLocal()
/external/llvm-project/llvm/docs/PDB/
DModiStream.rst17 and module is contained in the :doc:`DBI Stream <DbiStream>`. The modi stream
52 <dbi_mod_info_substream>` of the :doc:`DBI Stream <DbiStream>`.
57 :doc:`DBI Stream <DbiStream>`. If this value is ``0``, then C11 line
65 :doc:`DBI Stream <DbiStream>`. If this value is ``0``, then C13 line
Dindex.rst97 | DBI Stream | - Fixed Stream Index 3 | - Module/Compiland Information |
117 | Module Info Stream | - Contained in DBI Stream | - CodeView Symbol Records for this module |
120 | Public Stream | - Contained in DBI Stream | - Public (Exported) Symbol Records |
123 | Global Stream | - Contained in DBI Stream | - Single combined master symbol-table |
143 Information about the DBI stream and relevant substreams including the
DDbiStream.rst2 The PDB DBI (Debug Info) Stream
13 The PDB DBI Stream (Index 3) is one of the largest and most important streams
27 At offset 0 of the DBI Stream is a header with the following layout:
130 Immediately after the fixed-size DBI Stream header are ``7`` variable-length
131 `substreams`. The following ``7`` fields of the DBI Stream header specify the
134 DBI Stream should equal ``64`` (the length of the header above) plus the value
DCodeViewSymbols.rst67 :doc:`DBI Stream <DbiStream>` can be consulted to determine what module this address
/external/llvm-project/llvm/tools/llvm-pdbutil/
DStreamUtil.h26 DBI, enumerator
DStreamUtil.cpp105 Streams[StreamIdx] = stream(StreamPurpose::DBI, "DBI Stream", StreamIdx); in discoverStreamPurposes()
DDumpOutputStyle.cpp263 auto &DBI = Err(getPdb().getPDBDbiStream()); in dumpFileSummary() local
264 P.formatLine("Is incrementally linked: {0}", DBI.isIncrementallyLinked()); in dumpFileSummary()
265 P.formatLine("Has conflicting types: {0}", DBI.hasCTypes()); in dumpFileSummary()
266 P.formatLine("Is stripped: {0}", DBI.isStripped()); in dumpFileSummary()
DExplainOutputStyle.cpp255 case StreamPurpose::DBI: { in explainPdbStreamOffset()
/external/llvm-project/llvm/docs/CommandGuide/
Dllvm-pdbutil.rst471 DBI Stream Options
476 Dump the edit and continue map substream of the DBI stream.
480 Dump the file info substream of the DBI stream.
484 Dump the modi substream of the DBI stream.
488 Dump section contributions substream of the DBI stream.
492 Dump the section map from the DBI stream.
496 Dump the type server map from the DBI stream.
/external/llvm/lib/CodeGen/
DMachineSink.cpp839 for (SmallVectorImpl<MachineInstr *>::iterator DBI = DbgValuesToSink.begin(), in SinkInstruction() local
840 DBE = DbgValuesToSink.end(); DBI != DBE; ++DBI) { in SinkInstruction()
841 MachineInstr *DbgMI = *DBI; in SinkInstruction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineSink.cpp859 for (SmallVectorImpl<MachineInstr *>::iterator DBI = DbgValuesToSink.begin(), in performSink() local
861 DBI != DBE; ++DBI) { in performSink()
862 MachineInstr *DbgMI = *DBI; in performSink()
863 MachineInstr *NewDbgMI = DbgMI->getMF()->CloneMachineInstr(*DBI); in performSink()
DMachineInstr.cpp2142 for (auto *DBI : DbgValues) in changeDebugValuesDefReg() local
2143 DBI->getOperand(0).setReg(Reg); in changeDebugValuesDefReg()
/external/llvm-project/llvm/lib/CodeGen/
DMachineSink.cpp987 for (SmallVectorImpl<MachineInstr *>::iterator DBI = DbgValuesToSink.begin(), in performSink() local
989 DBI != DBE; ++DBI) { in performSink()
990 MachineInstr *DbgMI = *DBI; in performSink()
991 MachineInstr *NewDbgMI = DbgMI->getMF()->CloneMachineInstr(*DBI); in performSink()
DMachineInstr.cpp2233 for (auto *DBI : DbgValues) in changeDebugValuesDefReg() local
2234 DBI->getDebugOperandForReg(DefReg)->setReg(Reg); in changeDebugValuesDefReg()
/external/llvm/test/DebugInfo/PDB/
Dpdbdump-headers.test27 ; EMPTY-NEXT: Stream 3: [DBI Stream] (739 bytes)
234 ; EMPTY: DBI Stream {
963 ; ALL: Stream 3: [DBI Stream] (739 bytes)
1136 ; ALL: DBI Stream {
1780 ; BIG-NEXT: DBI Stream {
/external/llvm-project/llvm/test/DebugInfo/PDB/
Dpdbdump-headers.test33 ALL-NEXT: Stream 3 ( 739 bytes): [DBI Stream]
/external/cldr/tools/java/org/unicode/cldr/util/data/external/
D2013-1_UNLOCODE_CodeListPart2.csv1508 ,"GB","DBI","Denbigh","Denbigh","CWD","--3-----","AF","0212",,"5311N 00325W",
20820 ,"NL","DBI","De Bilt","De Bilt",,"--3-----","AF","9602",,,
D2013-1_UNLOCODE_CodeListPart1.csv13160 ,"CN","DBI","Dianbai","Dianbai","44","--3-----","AS","0901",,"2128N 11105E",
15389 ,"CZ","DBI","Dubi","Dubi",,"--3-----","AA","9509",,,
31376 ,"ES","DBI","Zaldibia","Zaldibia","SS","--3-----","RL","1201",,"4302N 00208W",
35267 "X","FR","DBI","Donville-les-Bains","Donville-les-Bains",,"1-------","XX","1301",,"4851N 00134W",""
D2013-1_UNLOCODE_CodeListPart3.csv13968 ,"US","DBI","Dubois","Dubois","IN","--3-----","RQ","9307",,,