forked from argonne-lcf/THAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta_parameters.rb
357 lines (325 loc) · 9.2 KB
/
meta_parameters.rb
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
START = "entry"
STOP = "exit"
SUFFIXES = { :start => START, :stop => STOP }
LTTNG_AVAILABLE_PARAMS = 25
LTTNG_USABLE_PARAMS = LTTNG_AVAILABLE_PARAMS - 1
module In
def lttng_in_type
@lttng_in_type
end
end
module Out
def lttng_out_type
@lttng_out_type
end
end
class MetaParameter
attr_reader :name
attr_reader :command
attr_reader :lttng_type
def initialize(command, name)
@command = command
@name = name
end
def lttng_in_type
nil
end
def lttng_out_type
nil
end
def check_for_null(expr, incl = true)
list = expr.split("->")
if list.length == 1
if incl
return [expr]
else
return []
end
else
res = []
pre = ""
list[0..(incl ? -1 : -2)].each { |n|
pre += n
res.push(pre)
pre += "->"
}
return res
end
end
def sanitize_expression(expr, checks = check_for_null(expr, false), default = 0)
if checks.empty?
expr
else
"(#{checks.join(" && ")} ? #{expr} : #{default})"
end
end
end
class StringMetaParameter < MetaParameter
def initialize(command, name, size = nil)
super(command, name)
a = command[name]
raise "Invalid parameter: #{name} for #{command.name}!" unless a
t = a.type
raise "Type is not a pointer: #{t}!" if !t.kind_of?(YAMLCAst::Pointer)
ev = LTTng::TracepointField::new
if size
s = command[size]
raise "Invalid parameter: #{size} for #{command.name}!" unless s
ev.macro = :ctf_sequence_text
if s.type.kind_of?(YAMLCAst::Pointer)
checks = check_for_null("#{size}") + check_for_null("#{name}")
sz = sanitize_expression("*#{size}", checks)
st = "#{s.type.type}"
else
checks = check_for_null("#{name}")
sz = sanitize_expression("#{size}", checks)
st = "#{s.type}"
end
ev.type = "char"
ev.length = sz
ev.length_type = st
else
ev.macro = :ctf_string
end
ev.name = "#{name}_val"
ev.expression = sanitize_expression("#{name}")
@lttng_type = ev
end
end
class InString < StringMetaParameter
prepend In
def initialize(command, name, size = nil)
super
@lttng_in_type = @lttng_type
end
end
class OutString < StringMetaParameter
prepend Out
def initialize(command, name, size = nil)
super
@lttng_out_type = @lttng_type
end
end
class ReturnString < MetaParameter
prepend Out
def initialize(command)
super(command, :result)
raise "Command does not return!" unless command.has_return_type?
raise "Return type is not a pointer: #{command.type}!" unless command.type.kind_of?(YAMLCAst::Pointer)
ev = LTTng::TracepointField::new
ev.macro = :ctf_string
ev.name = "#{RESULT_NAME}_val"
ev.expression = "#{RESULT_NAME}"
@lttng_out_type = ev
end
end
class OutPtrString < MetaParameter
prepend Out
def initialize(command, name)
super
a = command[name]
raise "Invalid parameter: #{name} for #{command.name}!" unless a
t = a.type
raise "Type is not a pointer: #{t}!" if !t.kind_of?(YAMLCAst::Pointer)
ev = LTTng::TracepointField::new
ev.macro = :ctf_string
ev.name = "#{name}_val_val"
ev.expression = sanitize_expression("*#{name}")
@lttng_out_type = ev
end
end
class ScalarMetaParameter < MetaParameter
attr_reader :type
def initialize(command, name, type = nil)
super(command, name)
@type = type
a = command[name]
raise "Invalid parameter: #{name} for #{command.name}!" unless a
t = a.type
raise "Type is not a pointer: #{t}!" if !t.kind_of?(YAMLCAst::Pointer)
if type
st = eval(type)
else
st = t.type
end
lttngt = st.lttng_type
lttngt.name = name + "_val"
if lttngt.macro == :ctf_array_text
lttngt.macro = :ctf_sequence_text
lttngt.expression = sanitize_expression("#{name}")
checks = check_for_null("#{name}")
lttngt.length = sanitize_expression("#{lttngt.length}", checks)
lttngt.length_type = "size_t"
elsif type
checks = check_for_null("#{name}")
lttngt.expression = sanitize_expression("*(#{YAMLCAst::Pointer::new(type: st)})#{name}", checks)
else
checks = check_for_null("#{name}")
lttngt.expression = sanitize_expression("*#{name}", checks)
end
@lttng_type = lttngt
end
end
class InOutScalar < ScalarMetaParameter
prepend In
prepend Out
def initialize(command, name, type = nil)
super
@lttng_out_type = @lttng_in_type = @lttng_type
end
end
class OutScalar < ScalarMetaParameter
prepend Out
def initialize(command, name, type = nil)
super
@lttng_out_type = @lttng_type
end
end
class InScalar < ScalarMetaParameter
prepend In
def initialize(command, name, type = nil)
super
@lttng_in_type = @lttng_type
end
end
class ArrayMetaParameter < MetaParameter
attr_reader :size
def initialize(command, name, size)
@size = size
super(command, name)
a = command[name]
raise "Invalid parameter: #{name} for #{command.name}!" unless a
t = a.type
raise "Type is not a pointer: #{t}!" if !t.kind_of?(YAMLCAst::Pointer)
s = command[size]
raise "Invalid parameter: #{size} for #{command.name}!" unless s
if s.type.kind_of?(YAMLCAst::Pointer)
checks = check_for_null("#{size}") + check_for_null("#{name}")
size = "*#{size}"
size = "(#{size} < 0 ? 0 : (size_t)#{size})" if INT_SIGN_MAP["#{s.type.type}"]
sz = sanitize_expression("#{size}", checks)
st = INT_SIGN_MAP["#{s.type.type}"] ? "size_t" : "#{s.type}"
else
checks = check_for_null("#{name}")
size = "(#{size} < 0 ? 0 : (size_t)#{size})" if INT_SIGN_MAP["#{s.type}"]
sz = sanitize_expression("#{size}", checks)
st = INT_SIGN_MAP["#{s.type}"] ? "size_t" : "#{s.type}"
end
if t.type.kind_of?(YAMLCAst::Void)
tt = YAMLCAst::CustomType::new(name: "uint8_t")
else
tt = t.type
end
y = YAMLCAst::Array::new(type: tt)
lttngt = y.lttng_type(length: sz, length_type: st)
lttngt.name = name + "_vals"
lttngt.expression = sanitize_expression("#{name}")
@lttng_type = lttngt
end
end
class OutArray < ArrayMetaParameter
prepend Out
def initialize(command, name, size)
super
@lttng_out_type = @lttng_type
end
end
class InArray < ArrayMetaParameter
prepend In
def initialize(command, name, size)
super
@lttng_in_type = @lttng_type
end
end
class FixedArrayMetaParameter < MetaParameter
attr_reader :size
def initialize(command, name, size)
@size = size
super(command, name)
a = command[name]
raise "Invalid parameter: #{name} for #{command.name}!" unless a
t = a.type
raise "Type is not a pointer: #{t}!" if !t.kind_of?(YAMLCAst::Pointer)
checks = check_for_null("#{name}")
if t.type.kind_of?(YAMLCAst::Void)
tt = YAMLCAst::CustomType::new(name: "uint8_t")
else
tt = t.type
end
y = YAMLCAst::Array::new(type: tt)
lttngt = y.lttng_type(length: size, length_type: nil)
lttngt.name = name + "_vals"
lttngt.expression = sanitize_expression("#{name}")
@lttng_type = lttngt
end
end
class InFixedArray < FixedArrayMetaParameter
prepend In
def initialize(command, name, size)
super
@lttng_in_type = @lttng_type
end
end
class OutFixedArray < FixedArrayMetaParameter
prepend Out
def initialize(command, name, size)
super
@lttng_out_type = @lttng_type
end
end
class ArrayByRefMetaParameter < MetaParameter
attr_reader :size
def initialize(command, name, size)
@size = size
super(command, name)
a = command[name]
raise "Invalid parameter: #{name} for #{command.name}!" unless a
t = a.type
raise "Type is not a pointer: #{t}!" unless t.kind_of?(YAMLCAst::Pointer)
raise "Type is not a pointer to an array: #{t}!" if !t.type.kind_of?(YAMLCAst::Pointer)
s = command[size]
raise "Invalid parameter: #{size} for #{command.name}!" unless s
if s.type.kind_of?(YAMLCAst::Pointer)
checks = check_for_null("#{size}") + check_for_null("#{name}") + check_for_null("*#{name}")
sz = sanitize_expression("*#{size}", checks)
st = "#{s.type.type}"
else
checks = check_for_null("#{name}") + check_for_null("*#{name}")
sz = sanitize_expression("#{size}", checks)
st = "#{s.type}"
end
if t.type.type.kind_of?(YAMLCAst::Void)
tt = YAMLCAst::CustomType::new(name: "uint8_t")
else
tt = t.type.type
end
y = YAMLCAst::Array::new(type: tt)
lttngt = y.lttng_type(length: sz, length_type: st)
lttngt.name = name + "_val_vals"
lttngt.expression = sanitize_expression("*#{name}")
@lttng_type = lttngt
end
end
class OutArrayByRef < ArrayByRefMetaParameter
prepend Out
def initialize(command, name, size)
super
@lttng_out_type = @lttng_type
end
end
class OutLTTng < MetaParameter
prepend Out
def initialize(command, name, *args)
raise "Invalid parameter: #{name} for #{command.name}!" unless command[name]
super(command, name)
@lttng_out_type = LTTng::TracepointField::new(*args)
end
end
class InLTTng < MetaParameter
prepend In
def initialize(command, name, *args)
raise "Invalid parameter: #{name} for #{command.name}!" unless command[name]
super(command, name)
@lttng_in_type = LTTng::TracepointField::new(*args)
end
end