-
Notifications
You must be signed in to change notification settings - Fork 514
/
Function.cs
285 lines (242 loc) · 8.44 KB
/
Function.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
using System.Collections.Generic;
using System.Linq;
using CppSharp.AST.Extensions;
namespace CppSharp.AST
{
public enum CallingConvention
{
Default,
C,
StdCall,
ThisCall,
FastCall,
Unknown
}
public enum ParameterUsage
{
In,
Out,
InOut,
Unknown
}
public enum ParameterKind
{
Regular,
IndirectReturnType,
OperatorParameter,
ImplicitDestructorParameter,
Extension,
PropertyValue
}
public class Parameter : Declaration, ITypedDecl
{
public Parameter()
{
Kind = ParameterKind.Regular;
Usage = ParameterUsage.Unknown;
HasDefaultValue = false;
}
public Parameter(Parameter p)
: base(p)
{
HasDefaultValue = p.HasDefaultValue;
Index = p.Index;
IsIndirect = p.IsIndirect;
Kind = p.Kind;
QualifiedType = p.QualifiedType;
Usage = p.Usage;
OriginalDefaultArgument = p.OriginalDefaultArgument;
DefaultArgument = p.DefaultArgument;
}
public Type Type => QualifiedType.Type;
public QualifiedType QualifiedType { get; set; }
public bool IsIndirect { get; set; }
public uint Index { get; set; }
public ParameterKind Kind { get; set; }
public ParameterUsage Usage { get; set; }
public bool HasDefaultValue { get; set; }
public Stmt DefaultValue
{
get { return defaultValue; }
set
{
if (defaultValue != value)
{
defaultValue = value;
if (OriginalDefaultValue == null)
OriginalDefaultValue = value;
}
}
}
public Stmt OriginalDefaultValue { get; private set; }
public ExpressionObsolete DefaultArgument
{
get
{
return defaultArgument;
}
set
{
defaultArgument = value;
if (OriginalDefaultArgument == null)
OriginalDefaultArgument = value;
}
}
public ExpressionObsolete OriginalDefaultArgument { get; set; }
public bool IsIn => Usage == ParameterUsage.In;
public bool IsOut => Usage == ParameterUsage.Out;
public bool IsInOut => Usage == ParameterUsage.InOut;
public bool IsSynthetized => Kind != ParameterKind.Regular;
public override T Visit<T>(IDeclVisitor<T> visitor)
{
return visitor.VisitParameterDecl(this);
}
/// <summary>
/// HACK: in many cases QualifiedType.Qualifiers.IsConst does not work.
/// It's false in Clang to begin with. I tried fixing it to no avail.
/// I don't have any more time at the moment.
/// </summary>
public bool IsConst => DebugText.StartsWith("const ", System.StringComparison.Ordinal);
ExpressionObsolete defaultArgument;
private Stmt defaultValue;
}
public class ParameterTypeComparer : IEqualityComparer<Parameter>
{
public static readonly ParameterTypeComparer Instance = new ParameterTypeComparer();
private ParameterTypeComparer()
{
}
public bool Equals(Parameter x, Parameter y)
{
return x.QualifiedType.ResolvesTo(y.QualifiedType);
}
public int GetHashCode(Parameter obj)
{
return obj.Type.GetHashCode();
}
}
public enum FunctionSynthKind
{
None,
ComplementOperator,
AbstractImplCall,
DefaultValueOverload,
InterfaceInstance,
InterfaceDispose,
FieldAcessor
}
public enum FriendKind
{
None,
Declared,
Undeclared
}
public class Function : DeclarationContext, ITypedDecl, IMangledDecl
{
public Function()
{
CallingConvention = CallingConvention.Default;
Signature = string.Empty;
}
public Function(Function function)
: base(function)
{
ReturnType = function.ReturnType;
IsReturnIndirect = function.IsReturnIndirect;
HasThisReturn = function.HasThisReturn;
Parameters.AddRange(function.Parameters.Select(p => new Parameter(p)));
foreach (var parameter in Parameters)
parameter.Namespace = this;
InstantiatedFrom = function.InstantiatedFrom;
IsVariadic = function.IsVariadic;
IsInline = function.IsInline;
IsPure = function.IsPure;
IsDeleted = function.IsDeleted;
IsDefaulted = function.IsDefaulted;
IsAmbiguous = function.IsAmbiguous;
IsConstExpr = function.IsConstExpr;
FriendKind = function.FriendKind;
OperatorKind = function.OperatorKind;
CallingConvention = function.CallingConvention;
SynthKind = function.SynthKind;
OriginalFunction = function.OriginalFunction;
Mangled = function.Mangled;
Signature = function.Signature;
Body = function.Body;
FunctionType = function.FunctionType;
if (function.SpecializationInfo != null)
{
SpecializationInfo = new FunctionTemplateSpecialization(function.SpecializationInfo)
{
SpecializedFunction = function
};
}
}
public QualifiedType ReturnType { get; set; }
public bool IsReturnIndirect { get; set; }
public bool HasThisReturn { get; set; }
public List<Parameter> Parameters { get; } = new List<Parameter>();
public bool IsConstExpr { get; set; }
public bool IsVariadic { get; set; }
public bool IsInline { get; set; }
public bool IsPure { get; set; }
public bool IsDeleted { get; set; }
public bool IsDefaulted { get; set; }
public bool IsAmbiguous { get; set; }
public FriendKind FriendKind { get; set; }
public CXXOperatorKind OperatorKind { get; set; }
public bool IsOperator => OperatorKind != CXXOperatorKind.None;
public CallingConvention CallingConvention { get; set; }
public FunctionTemplateSpecialization SpecializationInfo { get; set; }
public Function InstantiatedFrom { get; set; }
public QualifiedType FunctionType { get; set; }
public bool IsThisCall => CallingConvention == CallingConvention.ThisCall;
public bool IsStdCall => CallingConvention == CallingConvention.StdCall;
public bool IsFastCall => CallingConvention == CallingConvention.FastCall;
public bool IsCCall => CallingConvention == CallingConvention.C;
public bool HasIndirectReturnTypeParameter
{
get
{
return Parameters.Any(param =>
param.Kind == ParameterKind.IndirectReturnType);
}
}
public QualifiedType OriginalReturnType
{
get
{
if (!HasIndirectReturnTypeParameter)
return ReturnType;
var hiddenParam = Parameters.Single(param =>
param.Kind == ParameterKind.IndirectReturnType);
return hiddenParam.QualifiedType;
}
set
{
if (HasIndirectReturnTypeParameter)
Parameters.Single(p => p.Kind == ParameterKind.IndirectReturnType).QualifiedType = value;
else
ReturnType = value;
}
}
public FunctionSynthKind SynthKind { get; set; }
public bool IsSynthetized => SynthKind != FunctionSynthKind.None;
public bool IsNonMemberOperator { get; set; }
public Function OriginalFunction { get; set; }
public string Mangled { get; set; }
public string Signature { get; set; }
public string Body { get; set; }
public Stmt BodyStmt { get; set; }
public override T Visit<T>(IDeclVisitor<T> visitor)
{
return visitor.VisitFunctionDecl(this);
}
public Type Type => ReturnType.Type;
public QualifiedType QualifiedType
{
get => ReturnType;
set => ReturnType = value;
}
}
}