blob: dd6e3564a50238796df87a0406e9c321720e6148 [file] [log] [blame]
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +00001//===--- AttrImpl.cpp - Classes for representing attributes -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains out-of-line virtual methods for Attr classes.
11//
12//===----------------------------------------------------------------------===//
13
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000014#include "clang/AST/Attr.h"
15#include "clang/AST/ASTContext.h"
16using namespace clang;
17
Ted Kremenek7f4945a2010-02-11 05:28:37 +000018void Attr::Destroy(ASTContext &C) {
19 if (Next) {
20 Next->Destroy(C);
21 Next = 0;
22 }
23 this->~Attr();
24 C.Deallocate((void*)this);
25}
26
27AttrWithString::AttrWithString(Attr::Kind AK, ASTContext &C, llvm::StringRef s)
28 : Attr(AK) {
29 assert(!s.empty());
30 StrLen = s.size();
31 Str = new (C) char[StrLen];
32 memcpy(const_cast<char*>(Str), s.data(), StrLen);
33}
34
35void AttrWithString::Destroy(ASTContext &C) {
36 C.Deallocate(const_cast<char*>(Str));
37 Attr::Destroy(C);
38}
39
40void AttrWithString::ReplaceString(ASTContext &C, llvm::StringRef newS) {
41 if (newS.size() > StrLen) {
42 C.Deallocate(const_cast<char*>(Str));
Ted Kremenek9c8a6f52010-02-11 22:44:22 +000043 Str = new (C) char[newS.size()];
Ted Kremenek7f4945a2010-02-11 05:28:37 +000044 }
45 StrLen = newS.size();
46 memcpy(const_cast<char*>(Str), newS.data(), StrLen);
47}
48
49void FormatAttr::setType(ASTContext &C, llvm::StringRef type) {
50 ReplaceString(C, type);
51}
52
Ted Kremenek510ee252010-02-11 07:31:47 +000053NonNullAttr::NonNullAttr(ASTContext &C, unsigned* arg_nums, unsigned size)
54 : Attr(NonNull), ArgNums(0), Size(0) {
55 if (size == 0)
56 return;
57 assert(arg_nums);
58 ArgNums = new (C) unsigned[size];
59 Size = size;
60 memcpy(ArgNums, arg_nums, sizeof(*ArgNums)*size);
61}
62
63void NonNullAttr::Destroy(ASTContext &C) {
64 if (ArgNums)
65 C.Deallocate(ArgNums);
66 Attr::Destroy(C);
67}
68
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000069#define DEF_SIMPLE_ATTR_CLONE(ATTR) \
70 Attr *ATTR##Attr::clone(ASTContext &C) const { \
71 return ::new (C) ATTR##Attr; \
72 }
73
74// FIXME: Can we use variadic macro to define DEF_SIMPLE_ATTR_CLONE for
75// "non-simple" classes?
76
77DEF_SIMPLE_ATTR_CLONE(Packed)
78DEF_SIMPLE_ATTR_CLONE(AlwaysInline)
79DEF_SIMPLE_ATTR_CLONE(Malloc)
80DEF_SIMPLE_ATTR_CLONE(NoReturn)
81DEF_SIMPLE_ATTR_CLONE(AnalyzerNoReturn)
82DEF_SIMPLE_ATTR_CLONE(Deprecated)
83DEF_SIMPLE_ATTR_CLONE(Final)
84DEF_SIMPLE_ATTR_CLONE(Unavailable)
85DEF_SIMPLE_ATTR_CLONE(Unused)
86DEF_SIMPLE_ATTR_CLONE(Used)
87DEF_SIMPLE_ATTR_CLONE(Weak)
88DEF_SIMPLE_ATTR_CLONE(WeakImport)
89DEF_SIMPLE_ATTR_CLONE(NoThrow)
90DEF_SIMPLE_ATTR_CLONE(Const)
91DEF_SIMPLE_ATTR_CLONE(Pure)
92DEF_SIMPLE_ATTR_CLONE(FastCall)
93DEF_SIMPLE_ATTR_CLONE(StdCall)
94DEF_SIMPLE_ATTR_CLONE(CDecl)
95DEF_SIMPLE_ATTR_CLONE(TransparentUnion)
96DEF_SIMPLE_ATTR_CLONE(ObjCNSObject)
97DEF_SIMPLE_ATTR_CLONE(ObjCException)
98DEF_SIMPLE_ATTR_CLONE(NoDebug)
99DEF_SIMPLE_ATTR_CLONE(WarnUnusedResult)
100DEF_SIMPLE_ATTR_CLONE(NoInline)
101DEF_SIMPLE_ATTR_CLONE(CFReturnsRetained)
102DEF_SIMPLE_ATTR_CLONE(NSReturnsRetained)
103DEF_SIMPLE_ATTR_CLONE(BaseCheck)
104DEF_SIMPLE_ATTR_CLONE(Hiding)
105DEF_SIMPLE_ATTR_CLONE(Override)
106DEF_SIMPLE_ATTR_CLONE(DLLImport)
107DEF_SIMPLE_ATTR_CLONE(DLLExport)
Charles Davisbbc0aa52010-02-10 23:06:52 +0000108DEF_SIMPLE_ATTR_CLONE(X86ForceAlignArgPointer)
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +0000109
110Attr* PragmaPackAttr::clone(ASTContext &C) const {
111 return ::new (C) PragmaPackAttr(Alignment);
112}
113
114Attr* AlignedAttr::clone(ASTContext &C) const {
115 return ::new (C) AlignedAttr(Alignment);
116}
117
118Attr* AnnotateAttr::clone(ASTContext &C) const {
Ted Kremenek7f4945a2010-02-11 05:28:37 +0000119 return ::new (C) AnnotateAttr(C, getAnnotation());
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +0000120}
121
122Attr *AsmLabelAttr::clone(ASTContext &C) const {
Ted Kremenek7f4945a2010-02-11 05:28:37 +0000123 return ::new (C) AsmLabelAttr(C, getLabel());
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +0000124}
125
126Attr *AliasAttr::clone(ASTContext &C) const {
Ted Kremenek7f4945a2010-02-11 05:28:37 +0000127 return ::new (C) AliasAttr(C, getAliasee());
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +0000128}
129
130Attr *ConstructorAttr::clone(ASTContext &C) const {
131 return ::new (C) ConstructorAttr(priority);
132}
133
134Attr *DestructorAttr::clone(ASTContext &C) const {
135 return ::new (C) DestructorAttr(priority);
136}
137
138Attr *IBOutletAttr::clone(ASTContext &C) const {
139 return ::new (C) IBOutletAttr;
140}
141
Ted Kremenek06be9682010-02-17 02:37:45 +0000142Attr *IBActionAttr::clone(ASTContext &C) const {
143 return ::new (C) IBActionAttr;
144}
145
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +0000146Attr *GNUInlineAttr::clone(ASTContext &C) const {
147 return ::new (C) GNUInlineAttr;
148}
149
150Attr *SectionAttr::clone(ASTContext &C) const {
Ted Kremenek7f4945a2010-02-11 05:28:37 +0000151 return ::new (C) SectionAttr(C, getName());
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +0000152}
153
154Attr *NonNullAttr::clone(ASTContext &C) const {
Ted Kremenek510ee252010-02-11 07:31:47 +0000155 return ::new (C) NonNullAttr(C, ArgNums, Size);
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +0000156}
157
158Attr *FormatAttr::clone(ASTContext &C) const {
Ted Kremenek7f4945a2010-02-11 05:28:37 +0000159 return ::new (C) FormatAttr(C, getType(), formatIdx, firstArg);
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +0000160}
161
162Attr *FormatArgAttr::clone(ASTContext &C) const {
163 return ::new (C) FormatArgAttr(formatIdx);
164}
165
166Attr *SentinelAttr::clone(ASTContext &C) const {
167 return ::new (C) SentinelAttr(sentinel, NullPos);
168}
169
170Attr *VisibilityAttr::clone(ASTContext &C) const {
171 return ::new (C) VisibilityAttr(VisibilityType);
172}
173
174Attr *OverloadableAttr::clone(ASTContext &C) const {
175 return ::new (C) OverloadableAttr;
176}
177
178Attr *BlocksAttr::clone(ASTContext &C) const {
179 return ::new (C) BlocksAttr(BlocksAttrType);
180}
181
182Attr *CleanupAttr::clone(ASTContext &C) const {
183 return ::new (C) CleanupAttr(FD);
184}
185
186Attr *RegparmAttr::clone(ASTContext &C) const {
187 return ::new (C) RegparmAttr(NumParams);
188}
189
190Attr *ReqdWorkGroupSizeAttr::clone(ASTContext &C) const {
191 return ::new (C) ReqdWorkGroupSizeAttr(X, Y, Z);
192}
193
194Attr *MSP430InterruptAttr::clone(ASTContext &C) const {
195 return ::new (C) MSP430InterruptAttr(Number);
196}
197
198