Searched refs:SCS (Results 1 - 11 of 11) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64RegisterInfo.cpp216 bool SCS = MF.getFunction().hasFnAttribute(Attribute::ShadowCallStack);
219 return SCS ? CSR_AArch64_NoRegs_SCS_RegMask : CSR_AArch64_NoRegs_RegMask;
221 return SCS ? CSR_AArch64_AllRegs_SCS_RegMask : CSR_AArch64_AllRegs_RegMask;
225 if (SCS)
231 return SCS ? CSR_AArch64_AAVPCS_SCS_RegMask : CSR_AArch64_AAVPCS_RegMask;
233 return SCS ? CSR_AArch64_SVE_AAPCS_SCS_RegMask
240 return SCS ? CSR_AArch64_AAPCS_SwiftError_SCS_RegMask
243 if (SCS)
248 return SCS ? CSR_AArch64_RT_MostRegs_SCS_RegMask
251 return SCS
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOverload.cpp85 StandardConversionSequence &SCS,
92 StandardConversionSequence &SCS,
1675 StandardConversionSequence &SCS,
1682 /// types, use TryImplicitConversion. If a conversion exists, SCS will
1685 /// routine will return false and the value of SCS is unspecified.
1688 StandardConversionSequence &SCS,
1694 SCS.setAsIdentityConversion();
1695 SCS.IncompatibleObjC = false;
1696 SCS.setFromType(FromType);
1697 SCS
[all...]
H A DDeclSpec.cpp482 const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) {
616 bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc,
660 assert(!isInvalid && "auto SCS -> TST recovery failed");
671 return BadSpecifier(SC, (SCS)StorageClassSpec, PrevSpec, DiagID);
675 assert((unsigned)SC == StorageClassSpec && "SCS constants overflow bitfield");
1378 if (DeclSpec::SCS SC = getStorageClassSpec()) {
H A DSemaExprCXX.cpp4118 /// conversion sequence SCS. Returns the converted
4123 const StandardConversionSequence& SCS,
4134 if (SCS.CopyConstructor) {
4137 if (SCS.Second == ICK_Derived_To_Base) {
4140 cast<CXXConstructorDecl>(SCS.CopyConstructor), ToType, From,
4145 SCS.FoundCopyConstructor, SCS.CopyConstructor,
4152 SCS.FoundCopyConstructor, SCS.CopyConstructor,
4183 switch (SCS
[all...]
H A DSemaDeclObjC.cpp5174 } else if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
5176 << DeclSpec::getSpecifierName(SCS);
H A DSemaDecl.cpp4784 if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
4785 if (SCS == DeclSpec::SCS_mutable)
4789 else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef)
4791 << DeclSpec::getSpecifierName(SCS);
4931 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to
4936 DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec();
5202 DeclSpec::SCS SCSpec = DS.getStorageClassSpec();
6870 DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec();
13657 // Verify C99 6.7.5.3p2: The only SCS allowe
[all...]
H A DSemaInit.cpp9788 const StandardConversionSequence *SCS = nullptr;
9791 SCS = &ICS.Standard;
9794 SCS = &ICS.UserDefined.After;
9805 switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue,
H A DSemaExpr.cpp11497 StandardConversionSequence SCS; local
11498 SCS.setAsIdentityConversion();
11499 SCS.setToType(0, FromType);
11500 SCS.setToType(1, ToType);
11502 SCS.Second = castKindToImplicitConversionKind(ICE->getCastKind());
11506 switch (SCS.getNarrowingKind(S.Context, E, PreNarrowingValue,
H A DSemaDeclCXX.cpp757 if (auto SCS = DS.getStorageClassSpec()) {
758 if (SCS == DeclSpec::SCS_static) {
759 CPlusPlus20Specifiers.push_back(DeclSpec::getSpecifierName(SCS));
762 BadSpecifiers.push_back(DeclSpec::getSpecifierName(SCS));
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DDeclSpec.h233 enum SCS { enum in class:clang::DeclSpec
327 /*SCS*/unsigned StorageClassSpec : 3;
440 SCS getStorageClassSpec() const { return (SCS)StorageClassSpec; }
540 static const char *getSpecifierName(DeclSpec::SCS S);
651 bool SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc,
H A DSema.h11534 const StandardConversionSequence& SCS,

Completed in 719 milliseconds