| /llvm-project-15.0.7/llvm/unittests/ObjectYAML/ |
| H A D | MinidumpYAMLTest.cpp | 50 ASSERT_EQ(3u, File.streams().size()); in TEST() 52 EXPECT_EQ(StreamType::SystemInfo, File.streams()[0].Type); in TEST() 60 EXPECT_EQ(StreamType::LinuxMaps, File.streams()[1].Type); in TEST() 67 EXPECT_EQ(StreamType::LinuxAuxv, File.streams()[2].Type); in TEST() 104 ASSERT_EQ(1u, File.streams().size()); in TEST() 131 ASSERT_EQ(1u, File.streams().size()); in TEST() 163 ASSERT_EQ(1u, File.streams().size()); in TEST() 206 ASSERT_EQ(1u, File.streams().size()); in TEST() 262 ASSERT_EQ(1u, File.streams().size()); in TEST() 313 ASSERT_EQ(1u, File.streams().size()); in TEST()
|
| /llvm-project-15.0.7/llvm/docs/PDB/ |
| H A D | index.rst | 27 of the file, the various streams contained within, the format of individual 64 within a file". It contains multiple streams (aka files) which can represent 65 arbitrary data, and these streams are divided into blocks which may not 68 the streams (files) are laid out within the MSF. 77 The PDB format contains a number of streams which describe various information 79 of a program, as well as some additional streams containing hash tables that are 82 as the specific toolchain used, and more. A summary of streams contained in a 92 | | | - Map of named streams to stream indices | 165 the structure of the overall file, and PDB defines the set of streams that 166 appear within the MSF file and the format of those streams, CodeView defines [all …]
|
| H A D | PdbStream.rst | 45 the other streams, will change if the value is something other than ``VC70``. 69 file. Note that not all streams are named (for example, the 72 of named streams and these are enumerated in the table of streams in :doc:`index`. 75 discover the stream's MSF stream index. Several important streams (such as the 81 Some streams are located by fixed indices (e.g TPI Stream has index 2), but 82 other streams are located by fixed names (e.g. the string table is called
|
| H A D | MsfFile.rst | 118 The Stream Directory is the root of all access to the other streams in an MSF 134 streams of lengths {1000 bytes, 8000 bytes, 16000 bytes, 9000 bytes}. 165 Note also that the streams are discontiguous, and that part of stream 3 is in the
|
| H A D | TpiStream.rst | 16 referenced from various streams and records throughout the PDB by their 35 have 2 streams with identical layout, henceforth referred to as the TPI stream 278 in the aforementioned hash streams.
|
| H A D | CodeViewSymbols.rst | 30 * Type records only appear in the :doc:`TPI & IPI streams <TpiStream>`.
|
| H A D | DbiStream.rst | 13 The PDB DBI Stream (Index 3) is one of the largest and most important streams 17 to build the program, as well as references to other streams that contain more
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/PDB/ |
| H A D | obj-globalhash.test | 28 ; same TypeIndex in both streams. Same global hash, since they represent the 36 ; both occur at different TypeIndices in their respective input streams. Same 38 ; both streams.
|
| H A D | pdbdump-readwrite.test | 14 CHECK-NEXT: Number of streams:
|
| /llvm-project-15.0.7/llvm/unittests/Object/ |
| H A D | MinidumpTest.cpp | 49 ASSERT_EQ(1u, File.streams().size()); in TEST() 50 const Directory &Stream0 = File.streams()[0]; in TEST() 200 ASSERT_EQ(2u, File.streams().size()); in TEST() 201 EXPECT_EQ(StreamType::Unused, File.streams()[0].Type); in TEST() 202 EXPECT_EQ(StreamType::Unused, File.streams()[1].Type); in TEST()
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ |
| H A D | lit.local.cfg | 1 # stream iterators rely on the streams library, which requires localization
|
| /llvm-project-15.0.7/lld/test/COFF/ |
| H A D | pdb-globals.test | 11 # symbol streams. Specifically: 17 # * S_LDATA32 is copied byte for byte into both streams.
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/PDB/Inputs/ |
| H A D | merge-ids-and-types-1.yaml | 10 # streams (while still maintaining the topological sorting required by CodeView 11 # type streams), to make sure the merging algorithm is sufficiently exercised.
|
| /llvm-project-15.0.7/llvm/docs/CommandGuide/ |
| H A D | llvm-pdbutil.rst | 33 file, including CodeView records, hash tables, PDB streams, etc. 34 * :ref:`bytes_subcommand` - Dump data from the PDB file's streams, records, 272 .. option:: -streams 274 dump a summary of all of the streams in the PDB file. 278 In conjunction with :option:`-streams`, add information to the output about 460 Dump binary data from the specified streams. Format is SN[:Start][@Size].
|
| /llvm-project-15.0.7/openmp/runtime/tools/lib/ |
| H A D | tools.pm | 1854 my $streams = { 1865 $streams->{ $stream }->{ redir } = $opts{ "-$stream" }; 1867 if ( $opts{ -append } and ( $streams->{ $stream }->{ mode } ) eq ">" ) { 1868 $streams->{ $stream }->{ mode } = ">>";
|
| /llvm-project-15.0.7/utils/bazel/llvm-project-overlay/mlir/ |
| H A D | build_defs.bzl | 47 Don't cross the streams.
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-pdbutil/ |
| H A D | stripped.test | 8 ; CHECK-NEXT: Number of streams: 12
|
| /llvm-project-15.0.7/llvm/include/llvm/Object/ |
| H A D | Minidump.h | 36 ArrayRef<minidump::Directory> streams() const { return Streams; } in streams() function
|
| /llvm-project-15.0.7/mlir/lib/Conversion/GPUCommon/ |
| H A D | GPUToLLVMConversion.cpp | 521 llvm::SmallDenseSet<Value> streams; in matchAndRewrite() local 530 streams.insert(stream); in matchAndRewrite() 532 for (auto stream : streams) in matchAndRewrite()
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | MinidumpYAML.cpp | 555 Streams.reserve(File.streams().size()); in create() 556 for (const Directory &StreamDesc : File.streams()) { in create()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/COFF/ |
| H A D | types-recursive-struct.ll | 8 ; streams even if the complete record types differ slightly due to ODR
|
| /llvm-project-15.0.7/libcxx/lib/abi/ |
| H A D | CHANGELOG.TXT | 202 the library. This was done after noticing that many programs that used streams 618 only required to initialize the streams, and nobody should depend on it
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/minidump/ |
| H A D | ProcessMinidump.cpp | 890 for (const auto &stream_desc : minidump.GetMinidumpFile().streams()) in DoExecute()
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | SymbolizerMarkupFormat.rst | 58 separate per-process log streams and each stream processed by a separate
|
| /llvm-project-15.0.7/libcxx/docs/Status/ |
| H A D | Cxx17Issues.csv | 265 "`2676 <https://wg21.link/LWG2676>`__","Provide filesystem::path overloads for File-based streams",…
|