diff options
| author | Aaron Ballman <aaron@aaronballman.com> | 2014-03-06 14:02:27 +0000 |
|---|---|---|
| committer | Aaron Ballman <aaron@aaronballman.com> | 2014-03-06 14:02:27 +0000 |
| commit | 8abdd0e09034cfa77307bb422399d8b5c5df000c (patch) | |
| tree | 569ebf75bf29b7d7574be76a972ab0a6904a9aaa /clang/lib | |
| parent | 72a9d25060662bb039db35b3f4ff225517f93c53 (diff) | |
| download | bcm5719-llvm-8abdd0e09034cfa77307bb422399d8b5c5df000c.tar.gz bcm5719-llvm-8abdd0e09034cfa77307bb422399d8b5c5df000c.zip | |
Reformatting the style used within the massive attribute semantic handling switch statement, so now there is only one style used in this block of code, instead of three or more styles.
No functional change intended.
llvm-svn: 203120
Diffstat (limited to 'clang/lib')
| -rw-r--r-- | clang/lib/Sema/SemaDeclAttr.cpp | 360 |
1 files changed, 245 insertions, 115 deletions
diff --git a/clang/lib/Sema/SemaDeclAttr.cpp b/clang/lib/Sema/SemaDeclAttr.cpp index 5351d0fa2e9..237c99e48a2 100644 --- a/clang/lib/Sema/SemaDeclAttr.cpp +++ b/clang/lib/Sema/SemaDeclAttr.cpp @@ -4038,173 +4038,266 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, // though they were unknown attributes. if (Attr.getKind() == AttributeList::UnknownAttribute || !Attr.existsInTarget(S.Context.getTargetInfo().getTriple())) { - S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ? - diag::warn_unhandled_ms_attribute_ignored : - diag::warn_unknown_attribute_ignored) << Attr.getName(); + S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() + ? diag::warn_unhandled_ms_attribute_ignored + : diag::warn_unknown_attribute_ignored) + << Attr.getName(); return; } - + if (handleCommonAttributeFeatures(S, scope, D, Attr)) return; switch (Attr.getKind()) { default: - // Type attributes are handled elsewhere; silently move on. + // Type attributes are handled elsewhere; silently move on. assert(Attr.isTypeAttr() && "Non-type attribute not handled"); - break; + break; case AttributeList::AT_Interrupt: - handleInterruptAttr(S, D, Attr); break; + handleInterruptAttr(S, D, Attr); + break; case AttributeList::AT_X86ForceAlignArgPointer: - handleX86ForceAlignArgPointerAttr(S, D, Attr); break; + handleX86ForceAlignArgPointerAttr(S, D, Attr); + break; case AttributeList::AT_DLLExport: - handleDLLExportAttr(S, D, Attr); break; + handleDLLExportAttr(S, D, Attr); + break; case AttributeList::AT_DLLImport: - handleDLLImportAttr(S, D, Attr); break; + handleDLLImportAttr(S, D, Attr); + break; case AttributeList::AT_Mips16: - handleSimpleAttribute<Mips16Attr>(S, D, Attr); break; + handleSimpleAttribute<Mips16Attr>(S, D, Attr); + break; case AttributeList::AT_NoMips16: - handleSimpleAttribute<NoMips16Attr>(S, D, Attr); break; + handleSimpleAttribute<NoMips16Attr>(S, D, Attr); + break; case AttributeList::AT_IBAction: - handleSimpleAttribute<IBActionAttr>(S, D, Attr); break; - case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break; + handleSimpleAttribute<IBActionAttr>(S, D, Attr); + break; + case AttributeList::AT_IBOutlet: + handleIBOutlet(S, D, Attr); + break; case AttributeList::AT_IBOutletCollection: - handleIBOutletCollection(S, D, Attr); break; - case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break; - case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break; + handleIBOutletCollection(S, D, Attr); + break; + case AttributeList::AT_Alias: + handleAliasAttr(S, D, Attr); + break; + case AttributeList::AT_Aligned: + handleAlignedAttr(S, D, Attr); + break; case AttributeList::AT_AlwaysInline: - handleSimpleAttribute<AlwaysInlineAttr>(S, D, Attr); break; + handleSimpleAttribute<AlwaysInlineAttr>(S, D, Attr); + break; case AttributeList::AT_AnalyzerNoReturn: - handleAnalyzerNoReturnAttr (S, D, Attr); break; - case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break; - case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break; - case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break; + handleAnalyzerNoReturnAttr(S, D, Attr); + break; + case AttributeList::AT_TLSModel: + handleTLSModelAttr(S, D, Attr); + break; + case AttributeList::AT_Annotate: + handleAnnotateAttr(S, D, Attr); + break; + case AttributeList::AT_Availability: + handleAvailabilityAttr(S, D, Attr); + break; case AttributeList::AT_CarriesDependency: handleDependencyAttr(S, scope, D, Attr); break; - case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break; + case AttributeList::AT_Common: + handleCommonAttr(S, D, Attr); + break; case AttributeList::AT_CUDAConstant: - handleSimpleAttribute<CUDAConstantAttr>(S, D, Attr); break; - case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break; + handleSimpleAttribute<CUDAConstantAttr>(S, D, Attr); + break; + case AttributeList::AT_Constructor: + handleConstructorAttr(S, D, Attr); + break; case AttributeList::AT_CXX11NoReturn: - handleSimpleAttribute<CXX11NoReturnAttr>(S, D, Attr); break; + handleSimpleAttribute<CXX11NoReturnAttr>(S, D, Attr); + break; case AttributeList::AT_Deprecated: handleAttrWithMessage<DeprecatedAttr>(S, D, Attr); break; - case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break; - case AttributeList::AT_EnableIf: handleEnableIfAttr (S, D, Attr); break; + case AttributeList::AT_Destructor: + handleDestructorAttr(S, D, Attr); + break; + case AttributeList::AT_EnableIf: + handleEnableIfAttr(S, D, Attr); + break; case AttributeList::AT_ExtVectorType: handleExtVectorTypeAttr(S, scope, D, Attr); break; case AttributeList::AT_MinSize: handleSimpleAttribute<MinSizeAttr>(S, D, Attr); break; - case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break; - case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break; - case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break; + case AttributeList::AT_Format: + handleFormatAttr(S, D, Attr); + break; + case AttributeList::AT_FormatArg: + handleFormatArgAttr(S, D, Attr); + break; + case AttributeList::AT_CUDAGlobal: + handleGlobalAttr(S, D, Attr); + break; case AttributeList::AT_CUDADevice: - handleSimpleAttribute<CUDADeviceAttr>(S, D, Attr); break; + handleSimpleAttribute<CUDADeviceAttr>(S, D, Attr); + break; case AttributeList::AT_CUDAHost: - handleSimpleAttribute<CUDAHostAttr>(S, D, Attr); break; - case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break; + handleSimpleAttribute<CUDAHostAttr>(S, D, Attr); + break; + case AttributeList::AT_GNUInline: + handleGNUInlineAttr(S, D, Attr); + break; case AttributeList::AT_CUDALaunchBounds: handleLaunchBoundsAttr(S, D, Attr); break; - case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break; + case AttributeList::AT_Malloc: + handleMallocAttr(S, D, Attr); + break; case AttributeList::AT_MayAlias: - handleSimpleAttribute<MayAliasAttr>(S, D, Attr); break; - case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break; + handleSimpleAttribute<MayAliasAttr>(S, D, Attr); + break; + case AttributeList::AT_Mode: + handleModeAttr(S, D, Attr); + break; case AttributeList::AT_NoCommon: - handleSimpleAttribute<NoCommonAttr>(S, D, Attr); break; + handleSimpleAttribute<NoCommonAttr>(S, D, Attr); + break; case AttributeList::AT_NonNull: - if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(D)) - handleNonNullAttrParameter(S, PVD, Attr); - else - handleNonNullAttr(S, D, Attr); - break; + if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(D)) + handleNonNullAttrParameter(S, PVD, Attr); + else + handleNonNullAttr(S, D, Attr); + break; case AttributeList::AT_ReturnsNonNull: - handleReturnsNonNullAttr(S, D, Attr); break; + handleReturnsNonNullAttr(S, D, Attr); + break; case AttributeList::AT_Overloadable: - handleSimpleAttribute<OverloadableAttr>(S, D, Attr); break; - case AttributeList::AT_Ownership: handleOwnershipAttr (S, D, Attr); break; - case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break; - case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break; + handleSimpleAttribute<OverloadableAttr>(S, D, Attr); + break; + case AttributeList::AT_Ownership: + handleOwnershipAttr(S, D, Attr); + break; + case AttributeList::AT_Cold: + handleColdAttr(S, D, Attr); + break; + case AttributeList::AT_Hot: + handleHotAttr(S, D, Attr); + break; case AttributeList::AT_Naked: - handleSimpleAttribute<NakedAttr>(S, D, Attr); break; - case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break; + handleSimpleAttribute<NakedAttr>(S, D, Attr); + break; + case AttributeList::AT_NoReturn: + handleNoReturnAttr(S, D, Attr); + break; case AttributeList::AT_NoThrow: - handleSimpleAttribute<NoThrowAttr>(S, D, Attr); break; + handleSimpleAttribute<NoThrowAttr>(S, D, Attr); + break; case AttributeList::AT_CUDAShared: - handleSimpleAttribute<CUDASharedAttr>(S, D, Attr); break; - case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break; + handleSimpleAttribute<CUDASharedAttr>(S, D, Attr); + break; + case AttributeList::AT_VecReturn: + handleVecReturnAttr(S, D, Attr); + break; case AttributeList::AT_ObjCOwnership: - handleObjCOwnershipAttr(S, D, Attr); break; + handleObjCOwnershipAttr(S, D, Attr); + break; case AttributeList::AT_ObjCPreciseLifetime: - handleObjCPreciseLifetimeAttr(S, D, Attr); break; + handleObjCPreciseLifetimeAttr(S, D, Attr); + break; case AttributeList::AT_ObjCReturnsInnerPointer: - handleObjCReturnsInnerPointerAttr(S, D, Attr); break; + handleObjCReturnsInnerPointerAttr(S, D, Attr); + break; case AttributeList::AT_ObjCRequiresSuper: - handleObjCRequiresSuperAttr(S, D, Attr); break; - + handleObjCRequiresSuperAttr(S, D, Attr); + break; + case AttributeList::AT_ObjCBridge: - handleObjCBridgeAttr(S, scope, D, Attr); break; - + handleObjCBridgeAttr(S, scope, D, Attr); + break; + case AttributeList::AT_ObjCBridgeMutable: - handleObjCBridgeMutableAttr(S, scope, D, Attr); break; - + handleObjCBridgeMutableAttr(S, scope, D, Attr); + break; + case AttributeList::AT_ObjCBridgeRelated: - handleObjCBridgeRelatedAttr(S, scope, D, Attr); break; + handleObjCBridgeRelatedAttr(S, scope, D, Attr); + break; case AttributeList::AT_ObjCDesignatedInitializer: - handleObjCDesignatedInitializer(S, D, Attr); break; + handleObjCDesignatedInitializer(S, D, Attr); + break; case AttributeList::AT_CFAuditedTransfer: - handleCFAuditedTransferAttr(S, D, Attr); break; + handleCFAuditedTransferAttr(S, D, Attr); + break; case AttributeList::AT_CFUnknownTransfer: - handleCFUnknownTransferAttr(S, D, Attr); break; + handleCFUnknownTransferAttr(S, D, Attr); + break; case AttributeList::AT_CFConsumed: - case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break; + case AttributeList::AT_NSConsumed: + handleNSConsumedAttr(S, D, Attr); + break; case AttributeList::AT_NSConsumesSelf: - handleSimpleAttribute<NSConsumesSelfAttr>(S, D, Attr); break; + handleSimpleAttribute<NSConsumesSelfAttr>(S, D, Attr); + break; case AttributeList::AT_NSReturnsAutoreleased: case AttributeList::AT_NSReturnsNotRetained: case AttributeList::AT_CFReturnsNotRetained: case AttributeList::AT_NSReturnsRetained: case AttributeList::AT_CFReturnsRetained: - handleNSReturnsRetainedAttr(S, D, Attr); break; + handleNSReturnsRetainedAttr(S, D, Attr); + break; case AttributeList::AT_WorkGroupSizeHint: - handleWorkGroupSize<WorkGroupSizeHintAttr>(S, D, Attr); break; + handleWorkGroupSize<WorkGroupSizeHintAttr>(S, D, Attr); + break; case AttributeList::AT_ReqdWorkGroupSize: - handleWorkGroupSize<ReqdWorkGroupSizeAttr>(S, D, Attr); break; + handleWorkGroupSize<ReqdWorkGroupSizeAttr>(S, D, Attr); + break; case AttributeList::AT_VecTypeHint: - handleVecTypeHint(S, D, Attr); break; + handleVecTypeHint(S, D, Attr); + break; - case AttributeList::AT_InitPriority: - handleInitPriorityAttr(S, D, Attr); break; - - case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break; - case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break; + case AttributeList::AT_InitPriority: + handleInitPriorityAttr(S, D, Attr); + break; + + case AttributeList::AT_Packed: + handlePackedAttr(S, D, Attr); + break; + case AttributeList::AT_Section: + handleSectionAttr(S, D, Attr); + break; case AttributeList::AT_Unavailable: handleAttrWithMessage<UnavailableAttr>(S, D, Attr); break; - case AttributeList::AT_ArcWeakrefUnavailable: - handleSimpleAttribute<ArcWeakrefUnavailableAttr>(S, D, Attr); break; + case AttributeList::AT_ArcWeakrefUnavailable: + handleSimpleAttribute<ArcWeakrefUnavailableAttr>(S, D, Attr); + break; case AttributeList::AT_ObjCRootClass: - handleSimpleAttribute<ObjCRootClassAttr>(S, D, Attr); break; + handleSimpleAttribute<ObjCRootClassAttr>(S, D, Attr); + break; case AttributeList::AT_ObjCExplicitProtocolImpl: handleObjCSuppresProtocolAttr(S, D, Attr); break; case AttributeList::AT_ObjCRequiresPropertyDefs: - handleSimpleAttribute<ObjCRequiresPropertyDefsAttr>(S, D, Attr); break; + handleSimpleAttribute<ObjCRequiresPropertyDefsAttr>(S, D, Attr); + break; case AttributeList::AT_Unused: - handleSimpleAttribute<UnusedAttr>(S, D, Attr); break; + handleSimpleAttribute<UnusedAttr>(S, D, Attr); + break; case AttributeList::AT_ReturnsTwice: - handleSimpleAttribute<ReturnsTwiceAttr>(S, D, Attr); break; - case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break; + handleSimpleAttribute<ReturnsTwiceAttr>(S, D, Attr); + break; + case AttributeList::AT_Used: + handleUsedAttr(S, D, Attr); + break; case AttributeList::AT_Visibility: handleVisibilityAttr(S, D, Attr, false); break; @@ -4212,36 +4305,59 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, handleVisibilityAttr(S, D, Attr, true); break; case AttributeList::AT_WarnUnused: - handleSimpleAttribute<WarnUnusedAttr>(S, D, Attr); break; - case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr); + handleSimpleAttribute<WarnUnusedAttr>(S, D, Attr); + break; + case AttributeList::AT_WarnUnusedResult: + handleWarnUnusedResult(S, D, Attr); break; case AttributeList::AT_Weak: - handleSimpleAttribute<WeakAttr>(S, D, Attr); break; - case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break; - case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break; + handleSimpleAttribute<WeakAttr>(S, D, Attr); + break; + case AttributeList::AT_WeakRef: + handleWeakRefAttr(S, D, Attr); + break; + case AttributeList::AT_WeakImport: + handleWeakImportAttr(S, D, Attr); + break; case AttributeList::AT_TransparentUnion: handleTransparentUnionAttr(S, D, Attr); break; case AttributeList::AT_ObjCException: - handleSimpleAttribute<ObjCExceptionAttr>(S, D, Attr); break; + handleSimpleAttribute<ObjCExceptionAttr>(S, D, Attr); + break; case AttributeList::AT_ObjCMethodFamily: handleObjCMethodFamilyAttr(S, D, Attr); break; - case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break; - case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break; - case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break; + case AttributeList::AT_ObjCNSObject: + handleObjCNSObject(S, D, Attr); + break; + case AttributeList::AT_Blocks: + handleBlocksAttr(S, D, Attr); + break; + case AttributeList::AT_Sentinel: + handleSentinelAttr(S, D, Attr); + break; case AttributeList::AT_Const: - handleSimpleAttribute<ConstAttr>(S, D, Attr); break; + handleSimpleAttribute<ConstAttr>(S, D, Attr); + break; case AttributeList::AT_Pure: - handleSimpleAttribute<PureAttr>(S, D, Attr); break; - case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break; - case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break; + handleSimpleAttribute<PureAttr>(S, D, Attr); + break; + case AttributeList::AT_Cleanup: + handleCleanupAttr(S, D, Attr); + break; + case AttributeList::AT_NoDebug: + handleNoDebugAttr(S, D, Attr); + break; case AttributeList::AT_NoDuplicate: - handleSimpleAttribute<NoDuplicateAttr>(S, D, Attr); break; + handleSimpleAttribute<NoDuplicateAttr>(S, D, Attr); + break; case AttributeList::AT_NoInline: - handleSimpleAttribute<NoInlineAttr>(S, D, Attr); break; - case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg. - handleSimpleAttribute<NoInstrumentFunctionAttr>(S, D, Attr); break; + handleSimpleAttribute<NoInlineAttr>(S, D, Attr); + break; + case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg. + handleSimpleAttribute<NoInstrumentFunctionAttr>(S, D, Attr); + break; case AttributeList::AT_StdCall: case AttributeList::AT_CDecl: case AttributeList::AT_FastCall: @@ -4255,9 +4371,11 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, handleCallConvAttr(S, D, Attr); break; case AttributeList::AT_OpenCLKernel: - handleSimpleAttribute<OpenCLKernelAttr>(S, D, Attr); break; + handleSimpleAttribute<OpenCLKernelAttr>(S, D, Attr); + break; case AttributeList::AT_OpenCLImageAccess: - handleSimpleAttribute<OpenCLImageAccessAttr>(S, D, Attr); break; + handleSimpleAttribute<OpenCLImageAccessAttr>(S, D, Attr); + break; // Microsoft attributes: case AttributeList::AT_MsStruct: @@ -4267,9 +4385,11 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, handleUuidAttr(S, D, Attr); break; case AttributeList::AT_MSInheritance: - handleMSInheritanceAttr(S, D, Attr); break; + handleMSInheritanceAttr(S, D, Attr); + break; case AttributeList::AT_SelectAny: - handleSimpleAttribute<SelectAnyAttr>(S, D, Attr); break; + handleSimpleAttribute<SelectAnyAttr>(S, D, Attr); + break; // Thread safety attributes: case AttributeList::AT_AssertExclusiveLock: @@ -4279,12 +4399,14 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, handleAssertSharedLockAttr(S, D, Attr); break; case AttributeList::AT_GuardedVar: - handleSimpleAttribute<GuardedVarAttr>(S, D, Attr); break; + handleSimpleAttribute<GuardedVarAttr>(S, D, Attr); + break; case AttributeList::AT_PtGuardedVar: handlePtGuardedVarAttr(S, D, Attr); break; case AttributeList::AT_ScopedLockable: - handleSimpleAttribute<ScopedLockableAttr>(S, D, Attr); break; + handleSimpleAttribute<ScopedLockableAttr>(S, D, Attr); + break; case AttributeList::AT_NoSanitizeAddress: handleSimpleAttribute<NoSanitizeAddressAttr>(S, D, Attr); break; @@ -4334,27 +4456,35 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, // Capability analysis attributes. case AttributeList::AT_Capability: case AttributeList::AT_Lockable: - handleCapabilityAttr(S, D, Attr); break; + handleCapabilityAttr(S, D, Attr); + break; case AttributeList::AT_RequiresCapability: - handleRequiresCapabilityAttr(S, D, Attr); break; + handleRequiresCapabilityAttr(S, D, Attr); + break; case AttributeList::AT_AssertCapability: - handleAssertCapabilityAttr(S, D, Attr); break; + handleAssertCapabilityAttr(S, D, Attr); + break; case AttributeList::AT_AcquireCapability: - handleAcquireCapabilityAttr(S, D, Attr); break; + handleAcquireCapabilityAttr(S, D, Attr); + break; case AttributeList::AT_ReleaseCapability: - handleReleaseCapabilityAttr(S, D, Attr); break; + handleReleaseCapabilityAttr(S, D, Attr); + break; case AttributeList::AT_TryAcquireCapability: - handleTryAcquireCapabilityAttr(S, D, Attr); break; + handleTryAcquireCapabilityAttr(S, D, Attr); + break; // Consumed analysis attributes. case AttributeList::AT_Consumable: handleConsumableAttr(S, D, Attr); break; case AttributeList::AT_ConsumableAutoCast: - handleSimpleAttribute<ConsumableAutoCastAttr>(S, D, Attr); break; + handleSimpleAttribute<ConsumableAutoCastAttr>(S, D, Attr); + break; case AttributeList::AT_ConsumableSetOnRead: - handleSimpleAttribute<ConsumableSetOnReadAttr>(S, D, Attr); break; + handleSimpleAttribute<ConsumableSetOnReadAttr>(S, D, Attr); + break; case AttributeList::AT_CallableWhen: handleCallableWhenAttr(S, D, Attr); break; |

