Searched refs:tpi (Results 1 - 16 of 16) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp77 TpiStream &tpi) {
83 CVType cvt = tpi.getType(ti);
88 return GetIntegralTypeInfo(mfr.ModifiedType, tpi);
93 return GetIntegralTypeInfo(pr.ReferentType, tpi);
98 return GetIntegralTypeInfo(er.UnderlyingType, tpi);
222 TypeIndex underlying_ti, TpiStream &tpi, const llvm::APSInt &constant,
229 std::tie(size, is_signed) = GetIntegralTypeInfo(underlying_ti, tpi);
76 GetIntegralTypeInfo(TypeIndex ti, TpiStream &tpi) argument
H A DDWARFLocationExpression.h39 llvm::codeview::TypeIndex underlying_ti, llvm::pdb::TpiStream &tpi,
H A DPdbUtil.h133 bool IsForwardRefUdt(const PdbTypeSymId &id, llvm::pdb::TpiStream &tpi);
134 bool IsTagRecord(const PdbTypeSymId &id, llvm::pdb::TpiStream &tpi);
151 PdbTypeSymId GetBestPossibleDecl(PdbTypeSymId id, llvm::pdb::TpiStream &tpi);
153 size_t GetSizeOfType(PdbTypeSymId id, llvm::pdb::TpiStream &tpi);
H A DPdbUtil.cpp394 TpiStream &tpi) {
397 return IsForwardRefUdt(tpi.getType(id.index));
400 bool lldb_private::npdb::IsTagRecord(const PdbTypeSymId &id, TpiStream &tpi) { argument
403 return IsTagRecord(tpi.getType(id.index));
807 TpiStream &tpi) {
811 CVType cvt = tpi.getType(id.index);
822 return llvm::cantFail(tpi.findFullDeclForForwardRef(id.index));
832 llvm::pdb::TpiStream &tpi) {
851 if (IsForwardRefUdt(index, tpi))
852 index = llvm::cantFail(tpi
393 IsForwardRefUdt(const PdbTypeSymId &id, TpiStream &tpi) argument
806 GetBestPossibleDecl(PdbTypeSymId id, TpiStream &tpi) argument
831 GetSizeOfType(PdbTypeSymId id, llvm::pdb::TpiStream &tpi) argument
[all...]
H A DPdbIndex.h126 llvm::pdb::TpiStream &tpi() { return *m_tpi; } function in class:lldb_private::npdb::PdbIndex
127 const llvm::pdb::TpiStream &tpi() const { return *m_tpi; } function in class:lldb_private::npdb::PdbIndex
H A DUdtRecordCompleter.h59 llvm::pdb::TpiStream &tpi);
H A DPdbAstBuilder.cpp152 const CVTagRecord &parent, TpiStream &tpi) {
172 CVType cvt = tpi.getType(Record.Type);
272 LazyRandomTypeCollection &types = m_index.tpi().typeCollection();
333 GetNestedTagDefinition(Record, parent_cvt, index.tpi());
342 CVType field_list = m_index.tpi().getType(tag.asTag().FieldList);
515 std::vector<TypeIndex> types = m_index.tpi().findRecordsByName(scope_name);
556 std::vector<TypeIndex> matches = m_index.tpi().findRecordsByName(qname);
656 lldbassert(IsTagRecord(type_id, m_index.tpi()));
662 CVType cvt = m_index.tpi().getType(tag_ti);
666 PdbTypeSymId best_ti = GetBestPossibleDecl(tag_ti, m_index.tpi());
151 GetNestedTagDefinition(const NestedTypeRecord &Record, const CVTagRecord &parent, TpiStream &tpi) argument
[all...]
H A DSymbolFileNativePDB.cpp451 TpiStream &stream = m_index->tpi();
630 TpiStream &stream = type_id.is_ipi ? m_index->ipi() : m_index->tpi();
689 if (IsForwardRefUdt(type_id, m_index->tpi())) {
691 m_index->tpi().findFullDeclForForwardRef(type_id.index);
823 TpiStream &tpi = m_index->tpi(); local
837 constant.Type, tpi, constant.Value, module);
1261 std::vector<TypeIndex> matches = m_index->tpi().findRecordsByName(name);
1281 LazyRandomTypeCollection &types = m_index->tpi().typeCollection();
1299 if (IsTagRecord(PdbTypeSymId{udt.Type, false}, m_index->tpi())) {
[all...]
H A DUdtRecordCompleter.cpp32 TpiStream &tpi)
34 m_ast_builder(ast_builder), m_tpi(tpi) {
28 UdtRecordCompleter(PdbTypeSymId id, CompilerType &derived_ct, clang::TagDecl &tag_decl, PdbAstBuilder &ast_builder, TpiStream &tpi) argument
/freebsd-11-stable/lib/msun/src/
H A De_j0.c72 tpi = 6.36619772367581382433e-01, /* 0x3FE45F30, 0x6DC9C883 */ variable
195 return(u00 + tpi*__ieee754_log(x));
200 return(u/v + tpi*(__ieee754_j0(x)*__ieee754_log(x)));
H A De_j1.c72 tpi = 6.36619772367581382433e-01, /* 0x3FE45F30, 0x6DC9C883 */ variable
188 return(-tpi/x);
193 return(x*(u/v) + tpi*(__ieee754_j1(x)*__ieee754_log(x)-one/x));
H A De_j0f.c34 tpi = 6.3661974669e-01, /* 0x3f22f983 */ variable
150 return(u00 + tpi*__ieee754_logf(x));
155 return(u/v + tpi*(__ieee754_j0f(x)*__ieee754_logf(x)));
H A De_j1f.c34 tpi = 6.3661974669e-01, /* 0x3f22f983 */ variable
143 return(-tpi/x);
148 return(x*(u/v) + tpi*(__ieee754_j1f(x)*__ieee754_logf(x)-one/x));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp1506 for (unsigned tpi = 0, tpe = TiedPairs.size(); tpi != tpe; ++tpi) {
1507 const MachineOperand &DstMO = MI->getOperand(TiedPairs[tpi].second);
1517 for (unsigned tpi = 0, tpe = TiedPairs.size(); tpi != tpe; ++tpi) {
1518 unsigned SrcIdx = TiedPairs[tpi].first;
1519 unsigned DstIdx = TiedPairs[tpi].second;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp5872 for (unsigned i = 0, e = TL.getNumParams(), tpi = 0; i != e; ++i) {
5874 TL.setParam(tpi++, Param);
/freebsd-11-stable/contrib/gcc/cp/
H A Dcp-tree.h470 struct template_parm_index_s GTY ((tag ("TS_CP_TPI"))) tpi;

Completed in 227 milliseconds