Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:record

291   // If the record matches the base, this is the complete ctor/dtor
538 static bool hasTrivialCopyOrMoveConstructor(const CXXRecordDecl *Record,
540 return Moving ? Record->hasTrivialMoveConstructor() :
541 Record->hasTrivialCopyConstructor();
581 const CXXRecordDecl *Record = BaseElementTy->getAsCXXRecordDecl();
583 (Record && hasTrivialCopyOrMoveConstructor(Record,
1214 const CXXRecordDecl *record = cast<CXXRecordDecl>(rtype->getDecl());
1215 const CXXDestructorDecl *dtor = record->getDestructor();
1694 // This is a record decl. We know the type and can devirtualize it.
1709 // Check if this is a call expr that returns a record type.