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
|
#
# @LANG: asm
# @FILTER: sort
#
%%{
machine AtoI;
action begin {
# neg = 0;
# val = 0;
movl $0, neg(%rip)
movq $0, val(%rip)
}
action see_neg {
# neg = 1;
movl $1, neg(%rip)
}
action add_digit {
# val = val * 10 + (fc - 48);
movq val(%rip), %rax
imul $10, %rax
movsbq (%r12), %rcx
subq $48, %rcx
add %rcx, %rax
movq %rax, val(%rip)
}
action finish {
#if (neg)
#{
# val = - 1 * val;
#}
movl neg(%rip), %eax
cmpl $0, %eax
je .finish_L
movq val(%rip), %rax
negq %rax
movq %rax, val(%rip)
.finish_L:
}
action print1 {
#printf ("%ld", val);
#fputs ("\n", stdout);
movl $.L_fmt_i_nl, %edi
movq val(%rip), %rsi
movl $0, %eax
call printf
}
action print2 {
movl $.L_saw, %edi
call puts
}
atoi =
(('-' @ see_neg | '+') ?
(digit @ add_digit) +) > begin %finish;
# Using the expectation of the second newline to trigger backtracking.
main1 = atoi '\n' @print1 '\n';
main2 = [0-9]* '00000000' [0-9]* '\n' @print2 'X';
main |= (5, 0) main1 | main2;
}%%
.file "tmp.c"
.comm neg,4,4
.comm val,8,8
.comm cs,4,4
.section .rodata
%% write data;
.L_fmt_i_nl:
.string "%ld\n"
.L_marker:
.string "marker\n"
.L_saw:
.string "saw 80808080"
.text
.globl init
.type init, @function
init:
.LFB0:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
movq $0, val(%rip)
movl $0, neg(%rip)
%% write init;
movq %r11, cs(%rip)
popq %rbp
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE0:
.size init, .-init
.section .rodata
.LC0:
.string "%i"
.text
.globl exec
.type exec, @function
exec:
.LFB1:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $96, %rsp
pushq %r12
pushq %r13
movq nfa_bp@GOTPCREL(%rip), %rax
movq %rax, -80(%rbp)
movq $0, -88(%rbp)
movq cs(%rip), %r11
movq %rdi, %r12
movq %rsi, %r13
%% write exec;
movq %r11, cs(%rip)
popq %r13
popq %r12
.LRET:
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE1:
.size exec, .-exec
.section .rodata
.LC1:
.string "-> ACCEPT"
.LC2:
.string "-> FAIL"
.text
.globl finish
.type finish, @function
finish:
.LFB2:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
movq cs@GOTPCREL (%rip), %rdx
movl (%rdx), %edx
movl $4, %eax
cmpl %eax, %edx
jl .L36
movl $.LC1, %edi
# call puts
jmp .L35
.L36:
movl $.LC2, %edi
call puts
.L35:
popq %rbp
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE2:
.size finish, .-finish
.globl inp
.section .rodata
.LC3:
.string "1\n\n"
.LC4:
.string "12\n\n"
.LC45:
.string "1002000000002\nX",
.LC5:
.string "222222\n\n"
.LC6:
.string "+2123\n\n"
.LC7:
.string "-99\n\n"
.LC8:
.string "-12321\n\n"
.LC9:
.string "213 3213\n\n"
.LC10:
.string "--123\n\n"
.LC11:
.string " -3000\n\n"
.data
.align 32
.type inp, @object
.size inp, 72
inp:
.quad .LC3
.quad .LC4
.quad .LC45
.quad .LC5
.quad .LC6
.quad .LC7
.quad .LC8
.quad .LC9
.quad .LC10
.quad .LC11
.globl inplen
.align 4
.type inplen, @object
.size inplen, 4
inplen:
.long 10
.text
.globl main
.type main, @function
main:
.LFB3:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movl $0, -4(%rbp)
jmp .L39
.L40:
movl $0, %eax
call init
movl -4(%rbp), %eax
cltq
movq inp(,%rax,8), %rax
movq %rax, %rdi
call strlen
movl %eax, %edx
movl -4(%rbp), %eax
cltq
movq inp(,%rax,8), %rax
movslq %edx, %rsi
addq %rax, %rsi
movq %rax, %rdi
call exec
movl $0, %eax
call finish
addl $1, -4(%rbp)
.L39:
movl inplen(%rip), %eax
cmpl %eax, -4(%rbp)
jl .L40
movl $0, %eax
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3:
.size main, .-main
.bss
.align 16
.type nfa_len, @object
.size nfa_len, 8
nfa_len:
.zero 8
.comm nfa_bp,16384,32
.ident "GCC: (Ubuntu 4.8.2-19ubuntu1) 4.8.2"
.section .note.GNU-stack,"",@progbits
##### OUTPUT #####
1
1002000000002
12
-12321
2123
222222
-99
-> FAIL
-> FAIL
-> FAIL
saw 80808080
|