Skip to content

Commit 121bef7

Browse files
committed
[docs,utils] Convert text files from CRLF to LF
Skip *.bat, *.natvis, utils/lit/tests/Inputs/shtest-shell/diff-in.dos
1 parent b9ae06b commit 121bef7

File tree

7 files changed

+1185
-1185
lines changed

7 files changed

+1185
-1185
lines changed

llvm/docs/CommandGuide/llvm-pdbutil.rst

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ Subcommands
2727
a different purpose. A brief summary of each command follows, with more detail
2828
in the sections that follow.
2929

30-
* :ref:`pretty_subcommand` - Dump symbol and type information in a format that
30+
* :ref:`pretty_subcommand` - Dump symbol and type information in a format that
3131
tries to look as much like the original source code as possible.
32-
* :ref:`dump_subcommand` - Dump low level types and structures from the PDB
32+
* :ref:`dump_subcommand` - Dump low level types and structures from the PDB
3333
file, including CodeView records, hash tables, PDB streams, etc.
34-
* :ref:`bytes_subcommand` - Dump data from the PDB file's streams, records,
34+
* :ref:`bytes_subcommand` - Dump data from the PDB file's streams, records,
3535
types, symbols, etc as raw bytes.
36-
* :ref:`yaml2pdb_subcommand` - Given a yaml description of a PDB file, produce
36+
* :ref:`yaml2pdb_subcommand` - Given a yaml description of a PDB file, produce
3737
a valid PDB file that matches that description.
38-
* :ref:`pdb2yaml_subcommand` - For a given PDB file, produce a YAML
39-
description of some or all of the file in a way that the PDB can be
38+
* :ref:`pdb2yaml_subcommand` - For a given PDB file, produce a YAML
39+
description of some or all of the file in a way that the PDB can be
4040
reconstructed.
41-
* :ref:`merge_subcommand` - Given two PDBs, produce a third PDB that is the
41+
* :ref:`merge_subcommand` - Given two PDBs, produce a third PDB that is the
4242
result of merging the two input PDBs.
4343

4444
.. _pretty_subcommand:
@@ -49,18 +49,18 @@ pretty
4949
.. program:: llvm-pdbutil pretty
5050

5151
.. important::
52-
The **pretty** subcommand is built on the Windows DIA SDK, and as such is not
52+
The **pretty** subcommand is built on the Windows DIA SDK, and as such is not
5353
supported on non-Windows platforms.
5454

5555
USAGE: :program:`llvm-pdbutil` pretty [*options*] <input PDB file>
5656

5757
Summary
5858
^^^^^^^^^^^
5959

60-
The *pretty* subcommand displays a very high level representation of your
61-
program's debug info. Since it is built on the Windows DIA SDK which is the
62-
standard API that Windows tools and debuggers query debug information, it
63-
presents a more authoritative view of how a debugger is going to interpret your
60+
The *pretty* subcommand displays a very high level representation of your
61+
program's debug info. Since it is built on the Windows DIA SDK which is the
62+
standard API that Windows tools and debuggers query debug information, it
63+
presents a more authoritative view of how a debugger is going to interpret your
6464
debug information than a mode which displays low-level CodeView records.
6565

6666
Options
@@ -70,55 +70,55 @@ Filtering and Sorting Options
7070
+++++++++++++++++++++++++++++
7171

7272
.. note::
73-
*exclude* filters take priority over *include* filters. So if a filter
73+
*exclude* filters take priority over *include* filters. So if a filter
7474
matches both an include and an exclude rule, then it is excluded.
7575

7676
.. option:: -exclude-compilands=<string>
7777

78-
When dumping compilands, compiland source-file contributions, or per-compiland
79-
symbols, this option instructs **llvm-pdbutil** to omit any compilands that
78+
When dumping compilands, compiland source-file contributions, or per-compiland
79+
symbols, this option instructs **llvm-pdbutil** to omit any compilands that
8080
match the specified regular expression.
8181

8282
.. option:: -exclude-symbols=<string>
8383

84-
When dumping global, public, or per-compiland symbols, this option instructs
85-
**llvm-pdbutil** to omit any symbols that match the specified regular
84+
When dumping global, public, or per-compiland symbols, this option instructs
85+
**llvm-pdbutil** to omit any symbols that match the specified regular
8686
expression.
8787

8888
.. option:: -exclude-types=<string>
8989

90-
When dumping types, this option instructs **llvm-pdbutil** to omit any types
90+
When dumping types, this option instructs **llvm-pdbutil** to omit any types
9191
that match the specified regular expression.
9292

9393
.. option:: -include-compilands=<string>
9494

95-
When dumping compilands, compiland source-file contributions, or per-compiland
96-
symbols, limit the initial search to only those compilands that match the
95+
When dumping compilands, compiland source-file contributions, or per-compiland
96+
symbols, limit the initial search to only those compilands that match the
9797
specified regular expression.
9898

9999
.. option:: -include-symbols=<string>
100100

101-
When dumping global, public, or per-compiland symbols, limit the initial
101+
When dumping global, public, or per-compiland symbols, limit the initial
102102
search to only those symbols that match the specified regular expression.
103103

104104
.. option:: -include-types=<string>
105105

106-
When dumping types, limit the initial search to only those types that match
106+
When dumping types, limit the initial search to only those types that match
107107
the specified regular expression.
108108

109109
.. option:: -min-class-padding=<uint>
110110

111-
Only display types that have at least the specified amount of alignment
111+
Only display types that have at least the specified amount of alignment
112112
padding, accounting for padding in base classes and aggregate field members.
113113

114114
.. option:: -min-class-padding-imm=<uint>
115115

116-
Only display types that have at least the specified amount of alignment
116+
Only display types that have at least the specified amount of alignment
117117
padding, ignoring padding in base classes and aggregate field members.
118118

119119
.. option:: -min-type-size=<uint>
120120

121-
Only display types T where sizeof(T) is greater than or equal to the specified
121+
Only display types T where sizeof(T) is greater than or equal to the specified
122122
amount.
123123

124124
.. option:: -no-compiler-generated
@@ -127,7 +127,7 @@ Filtering and Sorting Options
127127

128128
.. option:: -no-enum-definitions
129129

130-
When dumping an enum, don't show the full enum (e.g. the individual enumerator
130+
When dumping an enum, don't show the full enum (e.g. the individual enumerator
131131
values).
132132

133133
.. option:: -no-system-libs
@@ -233,12 +233,12 @@ Other Options
233233

234234
.. option:: -color-output
235235

236-
Force color output on or off. By default, color if used if outputting to a
236+
Force color output on or off. By default, color if used if outputting to a
237237
terminal.
238238

239239
.. option:: -load-address=<uint>
240240

241-
When displaying relative virtual addresses, assume the process is loaded at the
241+
When displaying relative virtual addresses, assume the process is loaded at the
242242
given address and display what would be the absolute address.
243243

244244
.. _dump_subcommand:
@@ -253,14 +253,14 @@ USAGE: :program:`llvm-pdbutil` dump [*options*] <input PDB file>
253253
Summary
254254
^^^^^^^^^^^
255255

256-
The **dump** subcommand displays low level information about the structure of a
257-
PDB file. It is used heavily by LLVM's testing infrastructure, but can also be
258-
used for PDB forensics. It serves a role similar to that of Microsoft's
259-
`cvdump` tool.
260-
261-
.. note::
262-
The **dump** subcommand exposes internal details of the file format. As
263-
such, the reader should be familiar with :doc:`/PDB/index` before using this
256+
The **dump** subcommand displays low level information about the structure of a
257+
PDB file. It is used heavily by LLVM's testing infrastructure, but can also be
258+
used for PDB forensics. It serves a role similar to that of Microsoft's
259+
`cvdump` tool.
260+
261+
.. note::
262+
The **dump** subcommand exposes internal details of the file format. As
263+
such, the reader should be familiar with :doc:`/PDB/index` before using this
264264
command.
265265

266266
Options
@@ -388,8 +388,8 @@ Type Record Options
388388
When used in conjunction with :option:`-type-index` or :option:`-id-index`,
389389
dumps the entire dependency graph for the specified index instead of just the
390390
single record with the specified index. For example, if type index 0x4000 is
391-
a function whose return type has index 0x3000, and you specify
392-
`-dependents=0x4000`, then this would dump both records (as well as any other
391+
a function whose return type has index 0x3000, and you specify
392+
`-dependents=0x4000`, then this would dump both records (as well as any other
393393
dependents in the tree).
394394

395395
Miscellaneous Options

0 commit comments

Comments
 (0)