/external/llvm-project/llvm/test/DebugInfo/PDB/ |
D | pdbdump-merge-ids-and-types.test | 4 ; RUN: llvm-pdbutil dump -types %t.3.pdb | FileCheck -check-prefix=TPI-TYPES %s 7 TPI-TYPES: Types (TPI Stream) 8 TPI-TYPES-NEXT: ============================================================ 9 TPI-TYPES-NEXT: Showing 9 records 10 TPI-TYPES-NEXT: 0x1000 | LF_POINTER [size = 12] 11 TPI-TYPES-NEXT: referent = 0x0470 (char*), mode = pointer, opts = None, kind = ptr32 12 TPI-TYPES-NEXT: 0x1001 | LF_FIELDLIST [size = 24] 13 TPI-TYPES-NEXT: - LF_MEMBER [name = `FooMember`, Type = 0x0403 (void*), offset = 0, attr… 14 TPI-TYPES-NEXT: 0x1002 | LF_ARGLIST [size = 16] 15 TPI-TYPES-NEXT: 0x0074 (int): `int` [all …]
|
D | pdbdump-mergeids.test | 5 ; RUN: llvm-pdbutil dump -types %t.3.pdb | FileCheck -check-prefix=TPI-EMPTY %s 22 TPI-EMPTY: Types (TPI Stream) 23 TPI-EMPTY-NEXT: ============================================================ 24 TPI-EMPTY-NEXT: Showing 0 records
|
D | tpi-bytes.test | 6 TYPE: Type (TPI) Records 21 INVALID-TYPE: Type (TPI) Records
|
D | pdbdump-readwrite.test | 33 CHECK: Types (TPI Stream)
|
D | pdbdump-mergetypes.test | 7 MERGED: Types (TPI Stream)
|
D | pdbdump-raw-stream.test | 62 DISCONTINUITY-NEXT: Stream 2: TPI Stream (dumping 100 / 5,392 bytes)
|
/external/llvm-project/llvm/docs/PDB/ |
D | TpiStream.rst | 2 The PDB TPI and IPI Streams 13 The PDB TPI Stream (Index 2) and IPI Stream (Index 4) contain information about 31 TPI vs IPI Stream 35 have 2 streams with identical layout, henceforth referred to as the TPI stream 37 format apply equally whether it is for the TPI Stream or the IPI Stream. The 42 | TPI Stream | IPI Stream | 94 object file's ``.debug$T`` section or a PDB file's TPI or IPI stream. The 95 value of the type index for the first type record from the TPI stream is given 96 by the ``TypeIndexBegin`` member of the :ref:`TPI Stream Header <tpi_header>` 205 At offset 0 of the TPI Stream is a header with the following layout: [all …]
|
D | index.rst | 94 | TPI Stream | - Fixed Stream Index 2 | - CodeView Type Records | 95 | | | - Index of TPI Hash Stream | 126 | TPI Hash Stream | - Contained in TPI Stream | - Hash table for looking up TPI records | 140 Information about the TPI stream and the CodeView records contained within. 160 :doc:`TPI/IPI Stream <TpiStream>`.
|
D | PdbStream.rst | 70 :doc:`TPI Stream <TpiStream>` has a fixed index and as such there is no need to 81 Some streams are located by fixed indices (e.g TPI Stream has index 2), but 127 | | TPI Stream, although it's unclear why this | 131 | | - There is no TPI / IPI stream, all type info |
|
/external/clang/test/CodeGenObjC/ |
D | objc2-ivar-assign.m | 10 typedef I* TPI; typedef 22 @property TPI propertyTPI;
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | objc2-ivar-assign.m | 10 typedef I* TPI; typedef 22 @property TPI propertyTPI;
|
/external/llvm-project/llvm/test/tools/llvm-pdbutil/ |
D | stripped.test | 28 ; CHECK-NEXT: Stream 2 ( 56 bytes): [TPI Stream] 44 ; CHECK-NEXT: Stream 10 ( 0 bytes): [TPI Hash] 82 ; CHECK: Types (TPI Stream)
|
D | partial-type-stream.test | 7 NODEPS: Types (TPI Stream) 16 DEPS: Types (TPI Stream)
|
/external/llvm-project/lld/test/COFF/ |
D | precomp-summary-fail.test | 3 smaller than the TPI stream, which would previously trigger a crash with 19 SUMMARY-NEXT: 3 Merged TPI records
|
D | pdb-type-server-simple.test | 31 CHECK-LABEL: Types (TPI Stream) 110 SUMMARY-NEXT: 9 Merged TPI records 117 SUMMARY: Top 10 types responsible for the most TPI input:
|
D | precomp-link-samename.test | 8 CHECK: Types (TPI Stream)
|
D | precomp-link.test | 51 CHECK: Types (TPI Stream) 69 SUMMARY-NEXT: 874 Merged TPI records
|
/external/rust/crates/libm/src/math/ |
D | j0.rs | 59 const TPI: f64 = 6.36619772367581382433e-01; /* 0x3FE45F30, 0x6DC9C883 */ constant 199 return u / v + TPI * (j0(x) * log(x)); in y0() 201 return U00 + TPI * log(x); in y0()
|
D | j1f.rs | 19 const TPI: f32 = 6.3661974669e-01; /* 0x3f22f983 */ constant 132 return -TPI / x; in y1f() 137 return x * (u / v) + TPI * (j1f(x) * logf(x) - 1.0 / x); in y1f()
|
D | j1.rs | 60 const TPI: f64 = 6.36619772367581382433e-01; /* 0x3FE45F30, 0x6DC9C883 */ constant 188 return -TPI / x; in y1() 193 return x * (u / v) + TPI * (j1(x) * log(x) - 1.0 / x); in y1()
|
D | j0f.rs | 19 const TPI: f32 = 6.3661974669e-01; /* 0x3f22f983 */ constant 137 return u / v + TPI * (j0f(x) * logf(x)); in y0f() 139 return U00 + TPI * logf(x); in y0f()
|
/external/llvm-project/llvm/tools/llvm-pdbutil/ |
D | StreamUtil.h | 27 TPI, enumerator
|
D | StreamUtil.cpp | 107 Streams[StreamIdx] = stream(StreamPurpose::TPI, "TPI Stream", StreamIdx); in discoverStreamPurposes()
|
/external/llvm/lib/CodeGen/ |
D | TargetPassConfig.cpp | 567 const PassInfo *TPI = PR->getPassInfo(PrintMachineInstrs.getValue()); in addMachinePasses() local 569 assert (TPI && IPI && "Pass ID not registered!"); in addMachinePasses() 570 const char *TID = (const char *)(TPI->getTypeInfo()); in addMachinePasses()
|
/external/llvm-project/llvm/docs/CommandGuide/ |
D | llvm-pdbutil.rst | 352 Dump CodeView type records from TPI stream 356 Dump additional information from the TPI stream, such as hashes and the type 528 Dump the record from the TPI stream with the given type index.
|