Home
last modified time | relevance | path

Searched refs:CSM (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclCXX.cpp6960 CXXSpecialMember CSM = getSpecialMember(M); in CheckCompletedCXXClass() local
6962 if (CSM != CXXInvalid) { in CheckCompletedCXXClass()
6963 M->setTrivial(SpecialMemberIsTrivial(M, CSM)); in CheckCompletedCXXClass()
6968 SpecialMemberIsTrivial(M, CSM, TAH_ConsiderTrivialABI)); in CheckCompletedCXXClass()
6975 if ((CSM == CXXCopyConstructor || CSM == CXXMoveConstructor || in CheckCompletedCXXClass()
6976 CSM == CXXDestructor) && M->isUserProvided()) { in CheckCompletedCXXClass()
6985 (CSM == CXXDefaultConstructor || CSM == CXXCopyConstructor || in CheckCompletedCXXClass()
6986 CSM == CXXDestructor)) in CheckCompletedCXXClass()
6998 if (CSM != CXXInvalid && !M->isDeleted() && M->isDefaulted() && in CheckCompletedCXXClass()
7121 Sema &S, CXXRecordDecl *Class, Sema::CXXSpecialMember CSM, in lookupCallFromSpecialMember() argument
[all …]
H A DSemaCUDA.cpp325 CXXSpecialMember CSM, in inferCUDATargetForImplicitSpecialMember() argument
369 LookupSpecialMember(BaseClassDecl, CSM, in inferCUDATargetForImplicitSpecialMember()
389 << (unsigned)CSM << *InferredTarget << BaseMethodTarget; in inferCUDATargetForImplicitSpecialMember()
411 LookupSpecialMember(FieldRecDecl, CSM, in inferCUDATargetForImplicitSpecialMember()
432 << (unsigned)CSM << *InferredTarget << FieldMethodTarget; in inferCUDATargetForImplicitSpecialMember()
H A DSemaOverload.cpp11336 Sema::CXXSpecialMember CSM; in DiagnoseBadTarget() local
11342 CSM = Sema::CXXDefaultConstructor; in DiagnoseBadTarget()
11345 CSM = Sema::CXXCopyConstructor; in DiagnoseBadTarget()
11348 CSM = Sema::CXXMoveConstructor; in DiagnoseBadTarget()
11351 CSM = Sema::CXXCopyAssignment; in DiagnoseBadTarget()
11354 CSM = Sema::CXXMoveAssignment; in DiagnoseBadTarget()
11366 S.inferCUDATargetForImplicitSpecialMember(ParentClass, CSM, Meth, in DiagnoseBadTarget()
H A DSemaDecl.cpp18422 Sema::CXXSpecialMember CSM) { in AreSpecialMemberFunctionsSameKind() argument
18425 if (CSM == Sema::CXXDefaultConstructor) in AreSpecialMemberFunctionsSameKind()
18445 Sema::CXXSpecialMember CSM) { in SetEligibleMethods() argument
18479 CSM)) in SetEligibleMethods()
18503 Record->addedEligibleSpecialMemberFunction(Method, 1 << CSM); in SetEligibleMethods()
/openbsd-src/gnu/llvm/llvm/lib/ProfileData/
H A DRawMemProfReader.cpp499 const CallStackMap CSM = readStackInfo(Next + Header->StackOffset); in readRawProfile() local
501 StackMap = CSM; in readRawProfile()
503 if (mergeStackMap(CSM, StackMap)) in readRawProfile()
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/doc/
H A Dc-pdp11.texi82 Enable (or disable) the use of the @code{CSM} instruction.
197 KD11-Z CPU. Enable extended instruction set, @code{CSM}, @code{MFPS},
207 J11 CPU. Enable extended instruction set, @code{CSM}, @code{MFPS},
/openbsd-src/gnu/usr.bin/binutils/gas/doc/
H A Dc-pdp11.texi82 Enable (or disable) the use of the @code{CSM} instruction.
197 KD11-Z CPU. Enable extended instruction set, @code{CSM}, @code{MFPS},
207 J11 CPU. Enable extended instruction set, @code{CSM}, @code{MFPS},
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenAction.cpp477 SourceManager &CSM) { in ConvertBackendLocation() argument
494 FileID FID = CSM.createFileID(std::move(CBuf)); in ConvertBackendLocation()
499 CSM.getLocForStartOfFile(FID).getLocWithOffset(Offset); in ConvertBackendLocation()
500 return FullSourceLoc(NewLoc, CSM); in ConvertBackendLocation()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h3375 void DiagnoseNontrivial(const CXXRecordDecl *Record, CXXSpecialMember CSM);
3385 bool SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM,
3398 DefaultedFunctionKind(CXXSpecialMember CSM) in DefaultedFunctionKind() argument
3399 : SpecialMember(CSM), Comparison(DefaultedComparisonKind::None) {} in DefaultedFunctionKind()
6381 bool ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
7760 CXXSpecialMember CSM,
13165 CXXSpecialMember CSM,