Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:record

292   // If the record matches the base, this is the complete ctor/dtor
531 static bool hasTrivialCopyOrMoveConstructor(const CXXRecordDecl *Record,
533 return Moving ? Record->hasTrivialMoveConstructor() :
534 Record->hasTrivialCopyConstructor();
598 const CXXRecordDecl *Record = BaseElementTy->getAsCXXRecordDecl();
600 (Record && hasTrivialCopyOrMoveConstructor(Record,
1179 const CXXRecordDecl *record = cast<CXXRecordDecl>(rtype->getDecl());
1180 const CXXDestructorDecl *dtor = record->getDestructor();
1654 // This is a record decl. We know the type and can devirtualize it.
1669 // Check if this is a call expr that returns a record type.