File: phpdbg_parser.output

package info (click to toggle)
php8.4 8.4.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208,108 kB
  • sloc: ansic: 1,060,628; php: 35,345; sh: 11,866; cpp: 7,201; pascal: 4,913; javascript: 3,091; asm: 2,810; yacc: 2,411; makefile: 689; xml: 446; python: 301; awk: 148
file content (503 lines) | stat: -rw-r--r-- 14,931 bytes parent folder | download | duplicates (2)
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
Terminals unused in grammar

    "string (some input, perhaps)"
    "input"


Grammar

    0 $accept: input "end of command"

    1 input: command
    2      | input "# (pound sign)" command
    3      | ε

    4 command: parameters
    5        | full_expression

    6 parameters: parameter
    7           | parameters parameter
    8           | parameters "request id (-r %d)"

    9 parameter: "identifier (command or function name)" ": (colon)" "digits (numbers)"
   10          | "identifier (command or function name)" ": (colon)" "# (pound sign followed by digits)" "digits (numbers)"
   11          | "protocol (file://)" "identifier (command or function name)" ": (colon)" "digits (numbers)"
   12          | "protocol (file://)" "identifier (command or function name)" ": (colon)" "# (pound sign followed by digits)" "digits (numbers)"
   13          | "identifier (command or function name)" ":: (double colon)" "identifier (command or function name)"
   14          | "identifier (command or function name)" ":: (double colon)" "identifier (command or function name)" "# (pound sign followed by digits)" "digits (numbers)"
   15          | "identifier (command or function name)" "# (pound sign followed by digits)" "digits (numbers)"
   16          | "if (condition)" "input (input string or data)"
   17          | "opcode"
   18          | "address"
   19          | "literal (string)"
   20          | "truthy (true, on, yes or enabled)"
   21          | "falsy (false, off, no or disabled)"
   22          | "digits (numbers)"
   23          | "identifier (command or function name)"

   24 req_id: "request id (-r %d)"
   25       | ε

   26 full_expression: "eval" req_id "input (input string or data)"
   27                | "shell" req_id "input (input string or data)"
   28                | "run" req_id
   29                | "run" req_id "input (input string or data)"


Terminals, with rules where they appear

    "end of command" (0) 0
    error (256)
    "eval" (258) 26
    "run" (259) 28 29
    "shell" (260) 27
    "if (condition)" (261) 16
    "truthy (true, on, yes or enabled)" (262) 20
    "falsy (false, off, no or disabled)" (263) 21
    "string (some input, perhaps)" (264)
    ": (colon)" (265) 9 10 11 12
    ":: (double colon)" (266) 13 14
    "# (pound sign followed by digits)" (267) 10 12 14 15
    "# (pound sign)" (268) 2
    "protocol (file://)" (269) 11 12
    "digits (numbers)" (270) 9 10 11 12 14 15 22
    "literal (string)" (271) 19
    "address" (272) 18
    "opcode" (273) 17
    "identifier (command or function name)" (274) 9 10 11 12 13 14 15 23
    "input (input string or data)" (275) 16 26 27 29
    "input" (276)
    "request id (-r %d)" (277) 8 24


Nonterminals, with rules where they appear

    $accept (23)
        on left: 0
    input (24)
        on left: 1 2 3
        on right: 0 2
    command (25)
        on left: 4 5
        on right: 1 2
    parameters (26)
        on left: 6 7 8
        on right: 4 7 8
    parameter (27)
        on left: 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
        on right: 6 7
    req_id (28)
        on left: 24 25
        on right: 26 27 28 29
    full_expression (29)
        on left: 26 27 28 29
        on right: 5


State 0

    0 $accept: • input "end of command"

    "eval"                                   shift, and go to state 1
    "run"                                    shift, and go to state 2
    "shell"                                  shift, and go to state 3
    "if (condition)"                         shift, and go to state 4
    "truthy (true, on, yes or enabled)"      shift, and go to state 5
    "falsy (false, off, no or disabled)"     shift, and go to state 6
    "protocol (file://)"                     shift, and go to state 7
    "digits (numbers)"                       shift, and go to state 8
    "literal (string)"                       shift, and go to state 9
    "address"                                shift, and go to state 10
    "opcode"                                 shift, and go to state 11
    "identifier (command or function name)"  shift, and go to state 12

    $default  reduce using rule 3 (input)

    input            go to state 13
    command          go to state 14
    parameters       go to state 15
    parameter        go to state 16
    full_expression  go to state 17


State 1

   26 full_expression: "eval" • req_id "input (input string or data)"

    "request id (-r %d)"  shift, and go to state 18

    $default  reduce using rule 25 (req_id)

    req_id  go to state 19


State 2

   28 full_expression: "run" • req_id
   29                | "run" • req_id "input (input string or data)"

    "request id (-r %d)"  shift, and go to state 18

    $default  reduce using rule 25 (req_id)

    req_id  go to state 20


State 3

   27 full_expression: "shell" • req_id "input (input string or data)"

    "request id (-r %d)"  shift, and go to state 18

    $default  reduce using rule 25 (req_id)

    req_id  go to state 21


State 4

   16 parameter: "if (condition)" • "input (input string or data)"

    "input (input string or data)"  shift, and go to state 22


State 5

   20 parameter: "truthy (true, on, yes or enabled)" •

    $default  reduce using rule 20 (parameter)


State 6

   21 parameter: "falsy (false, off, no or disabled)" •

    $default  reduce using rule 21 (parameter)


State 7

   11 parameter: "protocol (file://)" • "identifier (command or function name)" ": (colon)" "digits (numbers)"
   12          | "protocol (file://)" • "identifier (command or function name)" ": (colon)" "# (pound sign followed by digits)" "digits (numbers)"

    "identifier (command or function name)"  shift, and go to state 23


State 8

   22 parameter: "digits (numbers)" •

    $default  reduce using rule 22 (parameter)


State 9

   19 parameter: "literal (string)" •

    $default  reduce using rule 19 (parameter)


State 10

   18 parameter: "address" •

    $default  reduce using rule 18 (parameter)


State 11

   17 parameter: "opcode" •

    $default  reduce using rule 17 (parameter)


State 12

    9 parameter: "identifier (command or function name)" • ": (colon)" "digits (numbers)"
   10          | "identifier (command or function name)" • ": (colon)" "# (pound sign followed by digits)" "digits (numbers)"
   13          | "identifier (command or function name)" • ":: (double colon)" "identifier (command or function name)"
   14          | "identifier (command or function name)" • ":: (double colon)" "identifier (command or function name)" "# (pound sign followed by digits)" "digits (numbers)"
   15          | "identifier (command or function name)" • "# (pound sign followed by digits)" "digits (numbers)"
   23          | "identifier (command or function name)" •

    ": (colon)"                          shift, and go to state 24
    ":: (double colon)"                  shift, and go to state 25
    "# (pound sign followed by digits)"  shift, and go to state 26

    $default  reduce using rule 23 (parameter)


State 13

    0 $accept: input • "end of command"
    2 input: input • "# (pound sign)" command

    "end of command"  shift, and go to state 27
    "# (pound sign)"  shift, and go to state 28


State 14

    1 input: command •

    $default  reduce using rule 1 (input)


State 15

    4 command: parameters •
    7 parameters: parameters • parameter
    8           | parameters • "request id (-r %d)"

    "if (condition)"                         shift, and go to state 4
    "truthy (true, on, yes or enabled)"      shift, and go to state 5
    "falsy (false, off, no or disabled)"     shift, and go to state 6
    "protocol (file://)"                     shift, and go to state 7
    "digits (numbers)"                       shift, and go to state 8
    "literal (string)"                       shift, and go to state 9
    "address"                                shift, and go to state 10
    "opcode"                                 shift, and go to state 11
    "identifier (command or function name)"  shift, and go to state 12
    "request id (-r %d)"                     shift, and go to state 29

    $default  reduce using rule 4 (command)

    parameter  go to state 30


State 16

    6 parameters: parameter •

    $default  reduce using rule 6 (parameters)


State 17

    5 command: full_expression •

    $default  reduce using rule 5 (command)


State 18

   24 req_id: "request id (-r %d)" •

    $default  reduce using rule 24 (req_id)


State 19

   26 full_expression: "eval" req_id • "input (input string or data)"

    "input (input string or data)"  shift, and go to state 31


State 20

   28 full_expression: "run" req_id •
   29                | "run" req_id • "input (input string or data)"

    "input (input string or data)"  shift, and go to state 32

    $default  reduce using rule 28 (full_expression)


State 21

   27 full_expression: "shell" req_id • "input (input string or data)"

    "input (input string or data)"  shift, and go to state 33


State 22

   16 parameter: "if (condition)" "input (input string or data)" •

    $default  reduce using rule 16 (parameter)


State 23

   11 parameter: "protocol (file://)" "identifier (command or function name)" • ": (colon)" "digits (numbers)"
   12          | "protocol (file://)" "identifier (command or function name)" • ": (colon)" "# (pound sign followed by digits)" "digits (numbers)"

    ": (colon)"  shift, and go to state 34


State 24

    9 parameter: "identifier (command or function name)" ": (colon)" • "digits (numbers)"
   10          | "identifier (command or function name)" ": (colon)" • "# (pound sign followed by digits)" "digits (numbers)"

    "# (pound sign followed by digits)"  shift, and go to state 35
    "digits (numbers)"                   shift, and go to state 36


State 25

   13 parameter: "identifier (command or function name)" ":: (double colon)" • "identifier (command or function name)"
   14          | "identifier (command or function name)" ":: (double colon)" • "identifier (command or function name)" "# (pound sign followed by digits)" "digits (numbers)"

    "identifier (command or function name)"  shift, and go to state 37


State 26

   15 parameter: "identifier (command or function name)" "# (pound sign followed by digits)" • "digits (numbers)"

    "digits (numbers)"  shift, and go to state 38


State 27

    0 $accept: input "end of command" •

    $default  accept


State 28

    2 input: input "# (pound sign)" • command

    "eval"                                   shift, and go to state 1
    "run"                                    shift, and go to state 2
    "shell"                                  shift, and go to state 3
    "if (condition)"                         shift, and go to state 4
    "truthy (true, on, yes or enabled)"      shift, and go to state 5
    "falsy (false, off, no or disabled)"     shift, and go to state 6
    "protocol (file://)"                     shift, and go to state 7
    "digits (numbers)"                       shift, and go to state 8
    "literal (string)"                       shift, and go to state 9
    "address"                                shift, and go to state 10
    "opcode"                                 shift, and go to state 11
    "identifier (command or function name)"  shift, and go to state 12

    command          go to state 39
    parameters       go to state 15
    parameter        go to state 16
    full_expression  go to state 17


State 29

    8 parameters: parameters "request id (-r %d)" •

    $default  reduce using rule 8 (parameters)


State 30

    7 parameters: parameters parameter •

    $default  reduce using rule 7 (parameters)


State 31

   26 full_expression: "eval" req_id "input (input string or data)" •

    $default  reduce using rule 26 (full_expression)


State 32

   29 full_expression: "run" req_id "input (input string or data)" •

    $default  reduce using rule 29 (full_expression)


State 33

   27 full_expression: "shell" req_id "input (input string or data)" •

    $default  reduce using rule 27 (full_expression)


State 34

   11 parameter: "protocol (file://)" "identifier (command or function name)" ": (colon)" • "digits (numbers)"
   12          | "protocol (file://)" "identifier (command or function name)" ": (colon)" • "# (pound sign followed by digits)" "digits (numbers)"

    "# (pound sign followed by digits)"  shift, and go to state 40
    "digits (numbers)"                   shift, and go to state 41


State 35

   10 parameter: "identifier (command or function name)" ": (colon)" "# (pound sign followed by digits)" • "digits (numbers)"

    "digits (numbers)"  shift, and go to state 42


State 36

    9 parameter: "identifier (command or function name)" ": (colon)" "digits (numbers)" •

    $default  reduce using rule 9 (parameter)


State 37

   13 parameter: "identifier (command or function name)" ":: (double colon)" "identifier (command or function name)" •
   14          | "identifier (command or function name)" ":: (double colon)" "identifier (command or function name)" • "# (pound sign followed by digits)" "digits (numbers)"

    "# (pound sign followed by digits)"  shift, and go to state 43

    $default  reduce using rule 13 (parameter)


State 38

   15 parameter: "identifier (command or function name)" "# (pound sign followed by digits)" "digits (numbers)" •

    $default  reduce using rule 15 (parameter)


State 39

    2 input: input "# (pound sign)" command •

    $default  reduce using rule 2 (input)


State 40

   12 parameter: "protocol (file://)" "identifier (command or function name)" ": (colon)" "# (pound sign followed by digits)" • "digits (numbers)"

    "digits (numbers)"  shift, and go to state 44


State 41

   11 parameter: "protocol (file://)" "identifier (command or function name)" ": (colon)" "digits (numbers)" •

    $default  reduce using rule 11 (parameter)


State 42

   10 parameter: "identifier (command or function name)" ": (colon)" "# (pound sign followed by digits)" "digits (numbers)" •

    $default  reduce using rule 10 (parameter)


State 43

   14 parameter: "identifier (command or function name)" ":: (double colon)" "identifier (command or function name)" "# (pound sign followed by digits)" • "digits (numbers)"

    "digits (numbers)"  shift, and go to state 45


State 44

   12 parameter: "protocol (file://)" "identifier (command or function name)" ": (colon)" "# (pound sign followed by digits)" "digits (numbers)" •

    $default  reduce using rule 12 (parameter)


State 45

   14 parameter: "identifier (command or function name)" ":: (double colon)" "identifier (command or function name)" "# (pound sign followed by digits)" "digits (numbers)" •

    $default  reduce using rule 14 (parameter)