-
Notifications
You must be signed in to change notification settings - Fork 6.1k
/
Copy pathcompiler_spec.rxg
433 lines (384 loc) · 12.5 KB
/
compiler_spec.rxg
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
<include href="language_common.rxg" />
<!-- compiler_spec files have extension .cspec -->
<define name="value_type">
<attribute name="value"/>
</define>
<start>
<element name="compiler_spec">
<interleave>
<optional>
<ref name="properties_type"/>
</optional>
<optional>
<element name="data_organization">
<interleave>
<optional>
<element name="absolute_max_alignment"><ref name="value_type"/></element>
</optional>
<optional>
<element name="machine_alignment"><ref name="value_type"/></element>
</optional>
<optional>
<element name="default_alignment"><ref name="value_type"/></element>
</optional>
<optional>
<element name="default_pointer_alignment"><ref name="value_type"/></element>
</optional>
<optional>
<element name="pointer_size"><ref name="value_type"/></element>
</optional>
<optional>
<element name="pointer_shift"><ref name="value_type"/></element>
</optional>
<optional>
<element name="char_type">
<attribute name="signed">
<ref name="boolean_type"/>
</attribute>
</element>
</optional>
<optional>
<element name="char_size"><ref name="value_type"/></element>
</optional>
<optional>
<element name="wchar_size"><ref name="value_type"/></element>
</optional>
<optional>
<element name="short_size"><ref name="value_type"/></element>
</optional>
<optional>
<element name="integer_size"><ref name="value_type"/></element>
</optional>
<optional>
<element name="long_size"><ref name="value_type"/></element>
</optional>
<optional>
<element name="long_long_size"><ref name="value_type"/></element>
</optional>
<optional>
<element name="float_size"><ref name="value_type"/></element>
</optional>
<optional>
<element name="double_size"><ref name="value_type"/></element>
</optional>
<optional>
<element name="long_double_size"><ref name="value_type"/></element>
</optional>
<optional>
<element name="size_alignment_map">
<zeroOrMore>
<element name="entry">
<attribute name="size"/>
<attribute name="alignment"/>
</element>
</zeroOrMore>
</element>
</optional>
<optional>
<element name="bitfield_packing">
<interleave>
<optional>
<!-- boolean value, default: false (MSVC should be true) -->
<element name="use_MS_convention"><ref name="value_type"/></element>
</optional>
<optional>
<!-- boolean value, default: true -->
<element name="type_alignment_enabled"><ref name="value_type"/></element>
</optional>
<optional>
<!-- int value: number of bytes -->
<element name="zero_length_boundary"><ref name="value_type"/></element>
</optional>
</interleave>
</element>
</optional>
</interleave>
</element>
</optional>
<zeroOrMore>
<element name="callfixup">
<attribute name="name"/>
<zeroOrMore>
<element name="target">
<attribute name="name"/>
</element>
</zeroOrMore>
<element name="pcode"><ref name="pcode_type"/></element>
</element>
</zeroOrMore>
<zeroOrMore>
<element name="callotherfixup">
<attribute name="targetop"/>
<element name="pcode"><ref name="pcode_type"/></element>
</element>
</zeroOrMore>
<!-- see language_common.rxg -->
<optional>
<element name="context_data">
<ref name="context_data_type"/>
</element>
</optional>
<optional>
<element name="enum">
<attribute name="size"/>
<optional>
<attribute name="signed">
<ref name="boolean_type"/>
</attribute>
</optional>
</element>
</optional>
<optional>
<element name="global">
<oneOrMore>
<ref name="memory_tags_type"/>
</oneOrMore>
</element>
</optional>
<optional>
<element name="prefersplit">
<attribute name="style"/>
<oneOrMore>
<ref name="varnode_tags_type"/>
</oneOrMore>
</element>
</optional>
<optional>
<element name="aggressivetrim">
<optional>
<attribute name="signext"/>
</optional>
</element>
</optional>
<optional>
<element name="nohighptr">
<oneOrMore>
<ref name="memory_tags_type"/>
</oneOrMore>
</element>
</optional>
<optional>
<element name="readonly">
<oneOrMore>
<ref name="memory_tags_type"/>
</oneOrMore>
</element>
</optional>
<optional>
<element name="stackpointer">
<attribute name="register"/>
<attribute name="space"/>
<optional>
<attribute name="growth">
<choice>
<value>negative</value>
<value>positive</value>
</choice>
</attribute>
</optional>
<optional>
<attribute name="reversejustify">
<ref name="boolean_type"/>
</attribute>
</optional>
</element>
</optional>
<optional>
<element name="returnaddress">
<ref name="varnode_tags_type"/>
</element>
</optional>
<optional>
<element name="funcptr">
<attribute name="align"/>
</element>
</optional>
<zeroOrMore>
<element name="spacebase">
<attribute name="name"/>
<attribute name="register"/>
<attribute name="space"/>
</element>
</zeroOrMore>
<zeroOrMore>
<element name="deadcodedelay">
<attribute name="space"/>
<attribute name="delay"/>
</element>
</zeroOrMore>
<zeroOrMore>
<ref name="segmentop_type"/>
</zeroOrMore>
<element name="default_proto">
<element name="prototype">
<ref name="prototype_type"/>
</element>
</element>
<zeroOrMore>
<element name="prototype">
<ref name="prototype_type"/>
</element>
</zeroOrMore>
<zeroOrMore>
<element name="resolveprototype">
<attribute name="name"/>
<oneOrMore>
<element name="model">
<attribute name="name"/>
</element>
</oneOrMore>
</element>
</zeroOrMore>
<optional>
<element name="eval_current_prototype">
<attribute name="name"/>
</element>
</optional>
<optional>
<element name="eval_called_prototype">
<attribute name="name"/>
</element>
</optional>
</interleave>
</element>
</start>
<define name="pentry_type">
<optional> <attribute name="maxsize"/> </optional>
<optional> <attribute name="minsize"/> </optional>
<optional> <attribute name="align"/> </optional>
<optional> <attribute name="metatype"/> </optional>
<optional>
<attribute name="trial">
<ref name="boolean_type"/>
</attribute>
</optional>
<optional> <attribute name="extension"/> </optional>
<!--
THIS IS THE WEAK ADDR TYPE. Attribute size is not required.
-->
<ref name="addr_tags_type"/>
</define>
<define name="rangelist_type">
<oneOrMore>
<ref name="range_type"/>
</oneOrMore>
</define>
<!--
Specifies generic calling convention for PrototypeModels
unknown: Unspecified convention (default)
stdcall: An MS Windows specific calling convention which
uses the stack to pass all parameters and where
the called-function is responsible for purging the stack.
cdecl: A standard/default calling convention which uses
the stack to pass all parameters and where the
caller is responsible for purging the stack.
fastcall: A standard/default calling convention
in which only registers are used to pass parameters
thiscall: A C++ instance method calling convention
-->
<define name="generic_calling_convention_type">
<choice>
<value type="string">unknown</value>
<value type="string">stdcall</value>
<value type="string">cdecl</value>
<value type="string">fastcall</value>
<value type="string">thiscall</value>
</choice>
</define>
<define name="prototype_type">
<attribute name="extrapop"/>
<attribute name="stackshift"/>
<attribute name="name"/>
<optional>
<attribute name="type">
<ref name="generic_calling_convention_type"/>
</attribute>
</optional>
<optional>
<attribute name="strategy">
<choice>
<value>standard</value>
<value>register</value>
</choice>
</attribute>
</optional>
<optional> <attribute name="hasthis"/> </optional>
<optional> <attribute name="constructor"/> </optional>
<interleave>
<element name="input">
<optional> <attribute name="pointermax"/> </optional>
<optional> <attribute name="thisbeforeretpointer"/> </optional>
<optional> <attribute name="killedbycall"/> </optional>
<zeroOrMore>
<element name="pentry">
<ref name="pentry_type"/>
</element>
</zeroOrMore>
</element>
<element name="output">
<optional> <attribute name="killedbycall"/> </optional>
<zeroOrMore>
<element name="pentry">
<ref name="pentry_type"/>
</element>
</zeroOrMore>
</element>
<!--
returnaddress describes where the return address is stored upon entry to
a function with this prototype.
-->
<optional>
<element name="returnaddress">
<oneOrMore>
<ref name="varnode_tags_type"/>
</oneOrMore>
</element>
</optional>
<optional>
<element name="unaffected">
<interleave>
<oneOrMore>
<ref name="varnode_tags_type"/>
</oneOrMore>
</interleave>
</element>
</optional>
<!--
killedbycall places a "dividing line" in time so
that you can cut off references to a varnode from a previous
variable
-->
<optional>
<element name="killedbycall">
<oneOrMore>
<ref name="varnode_tags_type"/>
</oneOrMore>
</element>
</optional>
<zeroOrMore>
<element name="pcode">
<attribute name="inject"/>
<ref name="pcode_type"/>
</element>
</zeroOrMore>
<!--
likelytrash indicates when calls will put random
data in places that could be construed as global data
-->
<optional>
<element name="likelytrash">
<oneOrMore>
<ref name="varnode_tags_type"/>
</oneOrMore>
</element>
</optional>
<optional>
<element name="localrange">
<ref name="rangelist_type"/>
</element>
</optional>
</interleave>
</define>
</grammar>