Home
last modified time | relevance | path

Searched refs:streams (Results 1 – 25 of 33) sorted by relevance

12

/llvm-project-15.0.7/llvm/unittests/ObjectYAML/
H A DMinidumpYAMLTest.cpp50 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 Dindex.rst27 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 DPdbStream.rst45 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 DMsfFile.rst118 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 DTpiStream.rst16 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 DCodeViewSymbols.rst30 * Type records only appear in the :doc:`TPI & IPI streams <TpiStream>`.
H A DDbiStream.rst13 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 Dobj-globalhash.test28 ; 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 Dpdbdump-readwrite.test14 CHECK-NEXT: Number of streams:
/llvm-project-15.0.7/llvm/unittests/Object/
H A DMinidumpTest.cpp49 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 Dlit.local.cfg1 # stream iterators rely on the streams library, which requires localization
/llvm-project-15.0.7/lld/test/COFF/
H A Dpdb-globals.test11 # 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 Dmerge-ids-and-types-1.yaml10 # 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 Dllvm-pdbutil.rst33 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 Dtools.pm1854 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 Dbuild_defs.bzl47 Don't cross the streams.
/llvm-project-15.0.7/llvm/test/tools/llvm-pdbutil/
H A Dstripped.test8 ; CHECK-NEXT: Number of streams: 12
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DMinidump.h36 ArrayRef<minidump::Directory> streams() const { return Streams; } in streams() function
/llvm-project-15.0.7/mlir/lib/Conversion/GPUCommon/
H A DGPUToLLVMConversion.cpp521 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 DMinidumpYAML.cpp555 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 Dtypes-recursive-struct.ll8 ; streams even if the complete record types differ slightly due to ODR
/llvm-project-15.0.7/libcxx/lib/abi/
H A DCHANGELOG.TXT202 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 DProcessMinidump.cpp890 for (const auto &stream_desc : minidump.GetMinidumpFile().streams()) in DoExecute()
/llvm-project-15.0.7/llvm/docs/
H A DSymbolizerMarkupFormat.rst58 separate per-process log streams and each stream processed by a separate
/llvm-project-15.0.7/libcxx/docs/Status/
H A DCxx17Issues.csv265 "`2676 <https://wg21.link/LWG2676>`__","Provide filesystem::path overloads for File-based streams",…

12