Home
last modified time | relevance | path

Searched refs:record_decl (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2448 if (record_decl) { in DumpDeclHiearchy()
3008 if (record_decl) { in IsHomogeneousAggregate()
3476 if (record_decl) { in IsPolymorphicClass()
3650 if (auto *record_decl = in CanPassInRegisters() local
5283 assert(record_decl); in GetNumChildren()
5524 if (record_decl) { in GetNumFields()
6553 for (field = record_decl->field_begin(), field_end = record_decl->field_end(); in GetIndexForRecordChild()
7285 if (record_decl) { in AddFieldToRecordType()
7365 if (!record_decl) in BuildIndirectFields()
7470 if (!record_decl) in SetIsPacked()
[all …]
H A DTypeSystemClang.h274 if (const RecordDeclType *record_decl = variable
278 clang::QualType(record_decl->getTypeForDecl(), 0).getAsOpaquePtr());
309 uint32_t GetIndexForRecordChild(const clang::RecordDecl *record_decl,
313 uint32_t GetIndexForRecordBase(const clang::RecordDecl *record_decl,
449 bool RecordHasFields(const clang::RecordDecl *record_decl);
530 const clang::RecordDecl *record_decl, uint64_t &size, uint64_t &alignment,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp334 if (auto *record_decl = llvm::dyn_cast<clang::CXXRecordDecl>(&m_tag_decl)) { in complete() local
335 m_ast_builder.GetClangASTImporter().SetRecordLayout(record_decl, m_layout); in complete()
383 clang::RecordDecl *record_decl = clang.GetAsRecordDecl(record_ct); in AddMember() local
384 m_ast_builder.GetClangASTImporter().SetRecordLayout(record_decl, layout); in AddMember()
391 m_decl_to_status.insert({record_decl, status}); in AddMember()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp426 auto record_decl = in CreateLLDBTypeFromPDBType() local
428 assert(record_decl); in CreateLLDBTypeFromPDBType()
429 m_uid_to_decl[type.getSymIndexId()] = record_decl; in CreateLLDBTypeFromPDBType()
433 record_decl->addAttr(inheritance_attr); in CreateLLDBTypeFromPDBType()
450 m_forward_decl_to_uid[record_decl] = type.getSymIndexId(); in CreateLLDBTypeFromPDBType()
800 clang::CXXRecordDecl *record_decl = in CompleteTypeFromPDB() local
802 auto uid_it = m_forward_decl_to_uid.find(record_decl); in CompleteTypeFromPDB()
1230 clang::CXXRecordDecl *record_decl = in CompleteTypeFromUDT() local
1232 if (!record_decl) in CompleteTypeFromUDT()
1235 GetClangASTImporter().SetRecordLayout(record_decl, layout_info); in CompleteTypeFromUDT()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1893 clang::RecordDecl *record_decl = in ParseStructureLikeDIE() local
1895 if (record_decl) { in ParseStructureLikeDIE()
1899 GetClangASTImporter().SetRecordLayout(record_decl, layout); in ParseStructureLikeDIE()
1941 clang::CXXRecordDecl *record_decl = in ParseStructureLikeDIE() local
1943 if (record_decl && record_decl->getDefinition()) { in ParseStructureLikeDIE()
1944 record_decl->setHasTrivialSpecialMemberForCall(); in ParseStructureLikeDIE()
1949 clang::CXXRecordDecl *record_decl = in ParseStructureLikeDIE() local
1951 if (record_decl) in ParseStructureLikeDIE()
1952 record_decl->setArgPassingRestrictions( in ParseStructureLikeDIE()
2243 clang::CXXRecordDecl *record_decl = in CompleteRecordType() local
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp521 const clang::RecordDecl *record_decl, uint64_t &bit_size, in LayoutRecordType() argument
529 m_record_decl_to_layout_map.find(record_decl); in LayoutRecordType()
647 if (RecordDecl *record_decl = dyn_cast<RecordDecl>(origin_tag_decl)) in CompleteAndFetchChildren() local
648 record_decl->setHasLoadedFieldsFromExternalStorage(true); in CompleteAndFetchChildren()
H A DClangASTImporter.h122 const clang::RecordDecl *record_decl, uint64_t &bit_size,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp815 clang::RecordDecl *record_decl = TypeSystemClang::GetAsRecordDecl(m_type); in GetStructValueObject() local
817 if (record_decl) { in GetStructValueObject()
818 auto attrs = record_decl->attrs(); in GetStructValueObject()