10
10
#include " gen/attributes.h"
11
11
#include " gen/irstate.h"
12
12
13
- bool AttrBuilder::hasAttributes () const {
13
+ bool AttrBuilder::hasAttributes () const
14
+ {
14
15
#if LDC_LLVM_VER >= 302
15
16
return attrs.hasAttributes ();
16
17
#else
17
18
return attrs.Raw () != 0 ;
18
19
#endif
19
20
}
20
21
21
- bool AttrBuilder::contains (A attribute) const {
22
+ bool AttrBuilder::contains (A attribute) const
23
+ {
22
24
#if LDC_LLVM_VER >= 303
23
25
return attrs.contains (attribute);
24
26
#elif LDC_LLVM_VER == 302
@@ -28,7 +30,8 @@ bool AttrBuilder::contains(A attribute) const {
28
30
#endif
29
31
}
30
32
31
- AttrBuilder& AttrBuilder::clear () {
33
+ AttrBuilder& AttrBuilder::clear ()
34
+ {
32
35
#if LDC_LLVM_VER >= 302
33
36
attrs.clear ();
34
37
#else
@@ -37,7 +40,8 @@ AttrBuilder& AttrBuilder::clear() {
37
40
return *this ;
38
41
}
39
42
40
- AttrBuilder& AttrBuilder::add (A attribute) {
43
+ AttrBuilder& AttrBuilder::add (A attribute)
44
+ {
41
45
#if LDC_LLVM_VER >= 302
42
46
// never set 'None' explicitly
43
47
if (attribute)
@@ -48,7 +52,8 @@ AttrBuilder& AttrBuilder::add(A attribute) {
48
52
return *this ;
49
53
}
50
54
51
- AttrBuilder& AttrBuilder::remove (A attribute) {
55
+ AttrBuilder& AttrBuilder::remove (A attribute)
56
+ {
52
57
#if LDC_LLVM_VER >= 302
53
58
// never remove 'None' explicitly
54
59
if (attribute)
@@ -59,62 +64,99 @@ AttrBuilder& AttrBuilder::remove(A attribute) {
59
64
return *this ;
60
65
}
61
66
62
-
63
- AttrSet& AttrSet::add (unsigned index, AttrBuilder builder) {
64
- if (builder.hasAttributes ())
65
- entries[index ] = builder;
67
+ AttrBuilder& AttrBuilder::merge (const AttrBuilder& other)
68
+ {
69
+ #if LDC_LLVM_VER >= 303
70
+ attrs.merge (other.attrs );
71
+ #elif LDC_LLVM_VER == 302
72
+ AttrBuilder mutableCopy = other;
73
+ attrs.addAttributes (llvm::Attributes::get (gIR ->context (), mutableCopy.attrs ));
74
+ #else
75
+ attrs |= other.attrs ;
76
+ #endif
66
77
return *this ;
67
78
}
68
79
80
+
81
+ AttrSet AttrSet::extractFunctionAndReturnAttributes (const llvm::Function* function)
82
+ {
83
+ AttrSet set;
84
+
69
85
#if LDC_LLVM_VER >= 303
86
+ NativeSet old = function->getAttributes ();
87
+ llvm::AttributeSet existingAttrs[] = { old.getFnAttributes (), old.getRetAttributes () };
88
+ set.entries = llvm::AttributeSet::get (gIR ->context (), existingAttrs);
89
+ #else
90
+ unsigned fnIndex = ~0u ;
91
+ unsigned retIndex = 0 ;
70
92
71
- llvm::AttributeSet AttrSet::toNativeSet () const {
72
- llvm::AttributeSet set;
93
+ #if LDC_LLVM_VER == 302
94
+ #define ADD_ATTRIBS (i, a ) \
95
+ if (a.Raw ()) \
96
+ set.entries [i].attrs .addAttributes (a);
97
+ #else
98
+ #define ADD_ATTRIBS (i, a ) \
99
+ if (a.Raw ()) \
100
+ set.entries [i].attrs = a;
101
+ #endif
73
102
74
- typedef std::map<unsigned , AttrBuilder>::const_iterator I;
75
- for (I it = entries.begin (); it != entries.end (); ++it) {
76
- unsigned index = it->first ;
77
- AttrBuilder builder = it->second ;
78
- if (!builder.hasAttributes ())
79
- continue ;
103
+ ADD_ATTRIBS (fnIndex, function->getAttributes ().getFnAttributes ());
104
+ ADD_ATTRIBS (retIndex, function->getAttributes ().getRetAttributes ());
80
105
81
- llvm::AttributeSet as = llvm::AttributeSet::get (gIR ->context (),
82
- index , builder.attrs );
83
- set = set.addAttributes (gIR ->context (), index , as);
84
- }
106
+ #undef ADD_ATTRIBS
107
+ #endif
85
108
86
109
return set;
87
110
}
88
111
112
+ AttrSet& AttrSet::add (unsigned index, const AttrBuilder& builder)
113
+ {
114
+ if (builder.hasAttributes ())
115
+ {
116
+ #if LDC_LLVM_VER >= 303
117
+ AttrBuilder mutableBuilderCopy = builder;
118
+ llvm::AttributeSet as = llvm::AttributeSet::get (
119
+ gIR ->context (), index , mutableBuilderCopy.attrs );
120
+ entries = entries.addAttributes (gIR ->context (), index , as);
89
121
#else
122
+ entries[index ].merge (builder);
123
+ #endif
124
+ }
125
+ return *this ;
126
+ }
90
127
91
- llvm::AttrListPtr AttrSet::toNativeSet () const {
128
+ AttrSet::NativeSet AttrSet::toNativeSet () const
129
+ {
130
+ #if LDC_LLVM_VER >= 303
131
+ return entries;
132
+ #else
92
133
if (entries.empty ())
93
- return llvm::AttrListPtr ();
134
+ return NativeSet ();
94
135
95
136
std::vector<llvm::AttributeWithIndex> attrsWithIndex;
96
137
attrsWithIndex.reserve (entries.size ());
97
138
98
139
typedef std::map<unsigned , AttrBuilder>::const_iterator I;
99
- for (I it = entries.begin (); it != entries.end (); ++it) {
140
+ for (I it = entries.begin (); it != entries.end (); ++it)
141
+ {
100
142
unsigned index = it->first ;
101
- AttrBuilder builder = it->second ;
143
+ const AttrBuilder& builder = it->second ;
102
144
if (!builder.hasAttributes ())
103
145
continue ;
104
146
105
147
#if LDC_LLVM_VER == 302
148
+ AttrBuilder mutableBuilderCopy = builder;
106
149
attrsWithIndex.push_back (llvm::AttributeWithIndex::get (index ,
107
- llvm::Attributes::get (gIR ->context (), builder .attrs )));
150
+ llvm::Attributes::get (gIR ->context (), mutableBuilderCopy .attrs )));
108
151
#else
109
152
attrsWithIndex.push_back (llvm::AttributeWithIndex::get (index , builder.attrs ));
110
153
#endif
111
154
}
112
155
113
156
#if LDC_LLVM_VER == 302
114
- return llvm::AttrListPtr:: get (gIR ->context (), llvm::ArrayRef<llvm::AttributeWithIndex>( attrsWithIndex) );
157
+ return NativeSet:: get (gIR ->context (), attrsWithIndex);
115
158
#else
116
- return llvm::AttrListPtr ::get (attrsWithIndex.begin (), attrsWithIndex.end ());
159
+ return NativeSet ::get (attrsWithIndex.begin (), attrsWithIndex.end ());
117
160
#endif
118
- }
119
-
120
161
#endif
162
+ }
0 commit comments