Home
last modified time | relevance | path

Searched refs:tpi (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp78 TpiStream &tpi) { in GetIntegralTypeInfo() argument
84 CVType cvt = tpi.getType(ti); in GetIntegralTypeInfo()
89 return GetIntegralTypeInfo(mfr.ModifiedType, tpi); in GetIntegralTypeInfo()
94 return GetIntegralTypeInfo(pr.ReferentType, tpi); in GetIntegralTypeInfo()
99 return GetIntegralTypeInfo(er.UnderlyingType, tpi); in GetIntegralTypeInfo()
228 TypeIndex underlying_ti, TpiStream &tpi, const llvm::APSInt &constant, in MakeConstantLocationExpression() argument
235 std::tie(size, is_signed) = GetIntegralTypeInfo(underlying_ti, tpi); in MakeConstantLocationExpression()
H A DPdbUtil.h132 bool IsForwardRefUdt(const PdbTypeSymId &id, llvm::pdb::TpiStream &tpi);
133 bool IsTagRecord(const PdbTypeSymId &id, llvm::pdb::TpiStream &tpi);
150 PdbTypeSymId GetBestPossibleDecl(PdbTypeSymId id, llvm::pdb::TpiStream &tpi);
152 size_t GetSizeOfType(PdbTypeSymId id, llvm::pdb::TpiStream &tpi);
H A DPdbUtil.cpp541 TpiStream &tpi) { in IsForwardRefUdt() argument
544 return IsForwardRefUdt(tpi.getType(id.index)); in IsForwardRefUdt()
547 bool lldb_private::npdb::IsTagRecord(const PdbTypeSymId &id, TpiStream &tpi) { in IsTagRecord() argument
550 return IsTagRecord(tpi.getType(id.index)); in IsTagRecord()
773 size_t type_size = GetSizeOfType(result.type, index.tpi()); in GetVariableLocationInfo()
1045 TpiStream &tpi) { in GetBestPossibleDecl() argument
1049 CVType cvt = tpi.getType(id.index); in GetBestPossibleDecl()
1060 return llvm::cantFail(tpi.findFullDeclForForwardRef(id.index)); in GetBestPossibleDecl()
1070 llvm::pdb::TpiStream &tpi) { in GetSizeOfType() argument
1089 if (IsForwardRefUdt(index, tpi)) in GetSizeOfType()
[all …]
H A DPdbAstBuilder.cpp57 CVType method_list_type = m_index.tpi().getType(method_list_idx); in visitKnownMember()
340 std::vector<TypeIndex> types = index.tpi().findRecordsByName(scope_name); in CreateDeclInfoForUndecoratedName()
450 lldbassert(IsTagRecord(type_id, index.tpi())); in CompleteTagDecl()
456 CVType cvt = index.tpi().getType(tag_ti); in CompleteTagDecl()
460 PdbTypeSymId best_ti = GetBestPossibleDecl(tag_ti, index.tpi()); in CompleteTagDecl()
461 cvt = index.tpi().getType(best_ti.index); in CompleteTagDecl()
471 CVType field_list_cvt = index.tpi().getType(field_list_ti); in CompleteTagDecl()
761 CVType cvt = index.tpi().getType(type.index); in CreateType()
820 PdbTypeSymId best_type = GetBestPossibleDecl(type, index.tpi()); in GetOrCreateType()
840 if (IsTagRecord(type, index.tpi())) { in GetOrCreateType()
[all …]
H A DPdbIndex.h124 llvm::pdb::TpiStream &tpi() { return *m_tpi; } in tpi() function
125 const llvm::pdb::TpiStream &tpi() const { return *m_tpi; } in tpi() function
H A DSymbolFileNativePDB.cpp235 const CVTagRecord &parent, TpiStream &tpi) { in GetNestedTagDefinition() argument
255 CVType cvt = tpi.getType(Record.Type); in GetNestedTagDefinition()
544 TpiStream &stream = m_index->tpi(); in CreateModifierType()
716 TpiStream &stream = type_id.is_ipi ? m_index->ipi() : m_index->tpi(); in CreateType()
775 if (IsForwardRefUdt(type_id, m_index->tpi())) { in CreateAndCacheType()
777 m_index->tpi().findFullDeclForForwardRef(type_id.index); in CreateAndCacheType()
930 TpiStream &tpi = m_index->tpi(); in CreateConstantSymbol() local
945 constant.Type, tpi, constant.Value, module), in CreateConstantSymbol()
1571 LazyRandomTypeCollection &types = m_index->tpi().typeCollection(); in ParseInlineSite()
1724 m_index->tpi().findRecordsByName(query.GetTypeBasename().GetStringRef()); in FindTypes()
[all …]
H A DUdtRecordCompleter.cpp47 CVType cvt = m_index.tpi().getType(m_id.index); in UdtRecordCompleter()
77 CVType udt_cvt = m_index.tpi().getType(ti); in AddBaseClassForTypeIndex()
248 CVType cvt = m_index.tpi().getType(ti); in visitKnownMember()
264 bitfield_width ? bitfield_width : GetSizeOfType(ti, m_index.tpi()) * 8; in visitKnownMember()
284 CVType method_list_type = m_index.tpi().getType(method_list_idx); in visitKnownMember()
H A DDWARFLocationExpression.h48 llvm::codeview::TypeIndex underlying_ti, llvm::pdb::TpiStream &tpi,
/freebsd/lib/msun/src/
H A De_j1.c68 tpi = 6.36619772367581382433e-01, /* 0x3FE45F30, 0x6DC9C883 */ variable
184 return(-tpi/x); in y1()
189 return(x*(u/v) + tpi*(j1(x)*log(x)-one/x)); in y1()
H A De_j1f.c31 tpi = 6.3661974669e-01, /* 0x3f22f983 */ variable
140 return(-tpi/x); in y1f()
145 return(x*(u/v) + tpi*(j1f(x)*logf(x)-one/x)); in y1f()
H A De_j0f.c31 tpi = 6.3661974669e-01, /* 0x3f22f983 */ variable
147 return(u00 + tpi*logf(x)); in y0f()
152 return(u/v + tpi*(j0f(x)*logf(x))); in y0f()
H A De_j0.c68 tpi = 6.36619772367581382433e-01, /* 0x3FE45F30, 0x6DC9C883 */ variable
191 return(u00 + tpi*log(x)); in y0()
196 return(u/v + tpi*(j0(x)*log(x))); in y0()
/freebsd/contrib/llvm-project/lld/COFF/
H A DCOFFLinkerContext.h70 void addTpiSource(TpiSource *tpi) { tpiSourceList.push_back(tpi); } in addTpiSource() argument
H A DDebugTypes.cpp802 pdb::TpiStream &tpi = check(pdbFile.getPDBTpiStream()); in remapTpiWithGHashes() local
805 mergeUniqueTypeRecords(typeArrayToBytes(tpi.typeArray())); in remapTpiWithGHashes()
823 nbTypeRecordsBytes += tpi.typeArray().getUnderlyingStream().getLength(); in remapTpiWithGHashes()
/freebsd/contrib/sqlite3/autosetup/teaish/
H A Dcore.tcl565 set tpi [proj-coalesce \
568 proj-assert {$tpi ne ""} \
570 teaish__verbose 1 msg-result "Using pkgIndex from $tpi"
577 teaish-dist-add [file tail $tpi]
1838 set tpi [file join $::teaish__Config(extension-dir) pkgIndex.tcl]
1839 if {[file exists $tpi]} {
1841 define TEAISH_PKGINDEX_TCL $tpi
/freebsd/share/misc/
H A Diso639477 tpi tpi Tok Pisin
/freebsd/sys/contrib/device-tree/src/arm/arm/
H A Dvexpress-v2m-rs1.dtsi363 compatible = "sil,sii9022-tpi", "sil,sii9022";
H A Dvexpress-v2m.dtsi283 compatible = "sil,sii9022-tpi", "sil,sii9022";
/freebsd/sys/contrib/device-tree/src/arm64/arm/
H A Dvexpress-v2m-rs1.dtsi363 compatible = "sil,sii9022-tpi", "sil,sii9022";
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrSystem.td542 def TPI : StoreInherentS<"tpi", 0xB236, null_frag, 0>;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp6186 for (unsigned i = 0, e = TL.getNumParams(), tpi = 0; i != e; ++i) { in VisitFunctionTypeLoc() local
6188 TL.setParam(tpi++, Param); in VisitFunctionTypeLoc()