blob: 8ccb2ca586eb49703920c084cba1231f283d716d [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- AttributeList.cpp --------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the AttributeList class implementation
11//
12//===----------------------------------------------------------------------===//
13
John McCall19510852010-08-20 18:27:03 +000014#include "clang/Sema/AttributeList.h"
Chris Lattner8f823d22009-04-11 18:48:18 +000015#include "clang/Basic/IdentifierTable.h"
Douglas Gregorfc3bb492009-10-29 05:26:58 +000016#include "llvm/ADT/StringSwitch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017using namespace clang;
18
19AttributeList::AttributeList(IdentifierInfo *aName, SourceLocation aLoc,
Sean Huntbbd37c62009-11-21 08:43:09 +000020 IdentifierInfo *sName, SourceLocation sLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +000021 IdentifierInfo *pName, SourceLocation pLoc,
John McCallb3d87482010-08-24 05:47:05 +000022 Expr **ExprList, unsigned numArgs,
Sean Huntbbd37c62009-11-21 08:43:09 +000023 AttributeList *n, bool declspec, bool cxx0x)
24 : AttrName(aName), AttrLoc(aLoc), ScopeName(sName), ScopeLoc(sLoc),
25 ParmName(pName), ParmLoc(pLoc), NumArgs(numArgs), Next(n),
Abramo Bagnarae215f722010-04-30 13:10:51 +000026 DeclspecAttribute(declspec), CXX0XAttribute(cxx0x), Invalid(false) {
Mike Stump1eb44332009-09-09 15:08:12 +000027
Chris Lattner005b2352009-02-19 06:25:12 +000028 if (numArgs == 0)
29 Args = 0;
30 else {
John McCallb3d87482010-08-24 05:47:05 +000031 Args = new Expr*[numArgs];
Chris Lattner005b2352009-02-19 06:25:12 +000032 memcpy(Args, ExprList, numArgs*sizeof(Args[0]));
33 }
Reid Spencer5f016e22007-07-11 17:01:13 +000034}
Chris Lattner23351912008-02-20 23:14:47 +000035
36AttributeList::~AttributeList() {
37 if (Args) {
Mike Stump1eb44332009-09-09 15:08:12 +000038 // FIXME: before we delete the vector, we need to make sure the Expr's
Chris Lattner8f823d22009-04-11 18:48:18 +000039 // have been deleted. Since ActionBase::ExprTy is "void", we are dependent
Chris Lattner23351912008-02-20 23:14:47 +000040 // on the actions module for actually freeing the memory. The specific
Mike Stump1eb44332009-09-09 15:08:12 +000041 // hooks are ActOnDeclarator, ActOnTypeName, ActOnParamDeclaratorType,
42 // ParseField, ParseTag. Once these routines have freed the expression,
43 // they should zero out the Args slot (to indicate the memory has been
Chris Lattner23351912008-02-20 23:14:47 +000044 // freed). If any element of the vector is non-null, we should assert.
45 delete [] Args;
46 }
47 delete Next;
48}
49
50AttributeList::Kind AttributeList::getKind(const IdentifierInfo *Name) {
Daniel Dunbar01eb9b92009-10-18 21:17:35 +000051 llvm::StringRef AttrName = Name->getName();
Chris Lattner23351912008-02-20 23:14:47 +000052
53 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar4f90d8d2009-10-17 18:12:29 +000054 if (AttrName.startswith("__") && AttrName.endswith("__"))
55 AttrName = AttrName.substr(2, AttrName.size() - 4);
Mike Stump1eb44332009-09-09 15:08:12 +000056
Douglas Gregorfc3bb492009-10-29 05:26:58 +000057 return llvm::StringSwitch<AttributeList::Kind>(AttrName)
58 .Case("weak", AT_weak)
Rafael Espindola11e8ce72010-02-23 22:00:30 +000059 .Case("weakref", AT_weakref)
Douglas Gregorfc3bb492009-10-29 05:26:58 +000060 .Case("pure", AT_pure)
61 .Case("mode", AT_mode)
62 .Case("used", AT_used)
63 .Case("alias", AT_alias)
Sean Huntbbd37c62009-11-21 08:43:09 +000064 .Case("align", AT_aligned)
65 .Case("final", AT_final)
Eli Friedman8f4c59e2009-11-09 18:38:53 +000066 .Case("cdecl", AT_cdecl)
Douglas Gregorfc3bb492009-10-29 05:26:58 +000067 .Case("const", AT_const)
Douglas Gregorfc3bb492009-10-29 05:26:58 +000068 .Case("blocks", AT_blocks)
Sean Hunt7725e672009-11-25 04:20:27 +000069 .Case("format", AT_format)
70 .Case("hiding", AT_hiding)
71 .Case("malloc", AT_malloc)
72 .Case("packed", AT_packed)
73 .Case("unused", AT_unused)
Douglas Gregorfc3bb492009-10-29 05:26:58 +000074 .Case("aligned", AT_aligned)
75 .Case("cleanup", AT_cleanup)
76 .Case("nodebug", AT_nodebug)
77 .Case("nonnull", AT_nonnull)
78 .Case("nothrow", AT_nothrow)
79 .Case("objc_gc", AT_objc_gc)
80 .Case("regparm", AT_regparm)
81 .Case("section", AT_section)
82 .Case("stdcall", AT_stdcall)
83 .Case("annotate", AT_annotate)
Douglas Gregorfc3bb492009-10-29 05:26:58 +000084 .Case("fastcall", AT_fastcall)
Ted Kremenekefbddd22010-02-17 02:37:45 +000085 .Case("ibaction", AT_IBAction)
Douglas Gregorfc3bb492009-10-29 05:26:58 +000086 .Case("iboutlet", AT_IBOutlet)
Ted Kremenek857e9182010-05-19 17:38:06 +000087 .Case("iboutletcollection", AT_IBOutletCollection)
Sean Hunt7725e672009-11-25 04:20:27 +000088 .Case("noreturn", AT_noreturn)
89 .Case("noinline", AT_noinline)
90 .Case("override", AT_override)
Douglas Gregorfc3bb492009-10-29 05:26:58 +000091 .Case("sentinel", AT_sentinel)
92 .Case("NSObject", AT_nsobject)
93 .Case("dllimport", AT_dllimport)
94 .Case("dllexport", AT_dllexport)
95 .Case("may_alias", IgnoredAttribute) // FIXME: TBAA
Sean Hunt7725e672009-11-25 04:20:27 +000096 .Case("base_check", AT_base_check)
Douglas Gregorfc3bb492009-10-29 05:26:58 +000097 .Case("deprecated", AT_deprecated)
98 .Case("visibility", AT_visibility)
99 .Case("destructor", AT_destructor)
100 .Case("format_arg", AT_format_arg)
101 .Case("gnu_inline", AT_gnu_inline)
102 .Case("weak_import", AT_weak_import)
John Thompson35cc9622010-08-09 21:53:52 +0000103 .Case("vecreturn", AT_vecreturn)
Douglas Gregorfc3bb492009-10-29 05:26:58 +0000104 .Case("vector_size", AT_vector_size)
105 .Case("constructor", AT_constructor)
106 .Case("unavailable", AT_unavailable)
107 .Case("overloadable", AT_overloadable)
108 .Case("address_space", AT_address_space)
109 .Case("always_inline", AT_always_inline)
Chris Lattner9f6c7722010-04-12 02:18:49 +0000110 .Case("returns_twice", IgnoredAttribute)
Douglas Gregorfc3bb492009-10-29 05:26:58 +0000111 .Case("vec_type_hint", IgnoredAttribute)
112 .Case("objc_exception", AT_objc_exception)
113 .Case("ext_vector_type", AT_ext_vector_type)
114 .Case("transparent_union", AT_transparent_union)
115 .Case("analyzer_noreturn", AT_analyzer_noreturn)
116 .Case("warn_unused_result", AT_warn_unused_result)
Sean Huntbbd37c62009-11-21 08:43:09 +0000117 .Case("carries_dependency", AT_carries_dependency)
Ted Kremenek31c780d2010-02-18 00:05:45 +0000118 .Case("ns_returns_not_retained", AT_ns_returns_not_retained)
Douglas Gregorfc3bb492009-10-29 05:26:58 +0000119 .Case("ns_returns_retained", AT_ns_returns_retained)
Ted Kremenek31c780d2010-02-18 00:05:45 +0000120 .Case("cf_returns_not_retained", AT_cf_returns_not_retained)
Douglas Gregorfc3bb492009-10-29 05:26:58 +0000121 .Case("cf_returns_retained", AT_cf_returns_retained)
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000122 .Case("ownership_returns", AT_ownership_returns)
123 .Case("ownership_holds", AT_ownership_holds)
124 .Case("ownership_takes", AT_ownership_takes)
Douglas Gregorfc3bb492009-10-29 05:26:58 +0000125 .Case("reqd_work_group_size", AT_reqd_wg_size)
Fariborz Jahanian521f12d2010-06-18 21:44:06 +0000126 .Case("init_priority", AT_init_priority)
Douglas Gregorfc3bb492009-10-29 05:26:58 +0000127 .Case("no_instrument_function", AT_no_instrument_function)
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000128 .Case("thiscall", AT_thiscall)
Dawn Perchik52fc3142010-09-03 01:29:35 +0000129 .Case("pascal", AT_pascal)
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000130 .Case("__cdecl", AT_cdecl)
131 .Case("__stdcall", AT_stdcall)
132 .Case("__fastcall", AT_fastcall)
133 .Case("__thiscall", AT_thiscall)
Dawn Perchik52fc3142010-09-03 01:29:35 +0000134 .Case("__pascal", AT_pascal)
Douglas Gregorfc3bb492009-10-29 05:26:58 +0000135 .Default(UnknownAttribute);
Chris Lattner23351912008-02-20 23:14:47 +0000136}