forked from smtlaissezfaire/bcompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hex4a.he
729 lines (635 loc) · 10.6 KB
/
hex4a.he
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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
#
# HEX4 for Linux-i386-ELF
#
# Copyright (C) 2001, Edmund GRIMLEY EVANS <[email protected]>
#
###
### ELF headers
###
# Elf32_Ehdr
7f 45 4c 46 01 01 01 # e_ident
00 00 00 00 00 00 00 00 00
02 00 # e_type
03 00 # e_machine
01 00 00 00 # e_version
00 88 04 08 #! # e_entry = 0x08048000 + _start
34 00 00 00 # e_phoff = len(ehdr)
00 00 00 00 # e_shoff
00 00 00 00 # e_flags
34 00 # e_ehsize = len(ehdr)
20 00 # e_phentsize = len(phdr)
01 00 # e_phnum
00 00 # e_shentsize
00 00 # e_shnum
00 00 # e_shstrndx
# Elf32_Phdr
01 00 00 00 # p_type
00 00 00 00 # p_offset
00 80 04 08 # p_vaddr = 0x08048000
00 80 04 08 # p_paddr = 0x08048000
00 09 00 00 #! # p_filesz = len(ehdr) + len(phdr) + len(prog)
00 09 00 00 #! # p_memsz = len(ehdr) + len(phdr) + len(prog)
07 00 00 00 # p_flags
00 10 00 00 # p_align
######################################################################
:drop
5b # pop %ebx
58 # pop %eax
ff e3 # jmp *%ebx
:swap
5b # pop %ebx
58 # pop %eax
59 # pop %ecx
50 # push %eax
51 # push %ecx
ff e3 # jmp *%ebx
:dup,
5b # pop %ebx
58 # pop %eax
50 # push %eax
50 # push %eax
ff e3 # jmp *%ebx
:rot,
58 # pop %eax
5b # pop %ebx
59 # pop %ecx
5a # pop %edx
51 # push %ecx
53 # push %ebx
52 # push %edx
50 # push %eax
c3
:pick
8b 44 24 04 # mov 4(%esp),%eax
01 c0 # add %eax,%eax
01 c0 # add %eax,%eax
8d 5c 24 08 # lea 8(%esp),%ebx
01 d8 # add %ebx,%eax
8b 00 # mov (%eax),%eax
89 44 24 04 # mov %eax,4(%esp)
c3 # ret
# Arithmetic
:-,,,
5b # pop %ebx
58 # pop %eax
29 04 24 # sub %eax,(%esp)
ff e3 # jmp *%ebx
:+,,,
5b # pop %ebx
58 # pop %eax
01 04 24 # add %eax,(%esp)
ff e3 # jmp *%ebx
:*,,,
5b # pop %ebx
58 # pop %eax
0f af 04 24 # imul (%esp),%eax
89 04 24 # mov %eax,(%esp)
ff e3 # jmp *%ebx
:<<,,
5b # pop %ebx
59 # pop %ecx
58 # pop %eax
d3 e0 # shl %cl,%eax
50 # push %eax
ff e3 # jmp *%ebx
:>>,,
5b # pop %ebx
59 # pop %ecx
58 # pop %eax
d3 f8 # sar %cl,%eax
50 # push %eax
ff e3 # jmp *%ebx
# Comparisons
:<,,,
5b # pop %ebx
58 # pop %eax
59 # pop %ecx
39 c1 # cmp %eax,%ecx
0f 9c c0 # setl %al
25 ff 00 00 00 # and $0xff,%eax
50 # push %eax
ff e3 # jmp *%ebx
:<=,,
5b # pop %ebx
58 # pop %eax
59 # pop %ecx
39 c1 # cmp %eax,%ecx
0f 9e c0 # setle %al
25 ff 00 00 00 # and $0xff,%eax
50 # push %eax
ff e3 # jmp *%ebx
:==,,
5b # pop %ebx
58 # pop %eax
59 # pop %ecx
39 c1 # cmp %eax,%ecx
0f 94 c0 # sete %al
25 ff 00 00 00 # and $0xff,%eax
50 # push %eax
ff e3 # jmp *%ebx
:!=,,
5b # pop %ebx
58 # pop %eax
59 # pop %ecx
39 c1 # cmp %eax,%ecx
0f 95 c0 # setne %al
25 ff 00 00 00 # and $0xff,%eax
50 # push %eax
ff e3 # jmp *%ebx
# Memory access
:@,,,
5b # pop %ebx
58 # pop %eax
8b 00 # mov (%eax),%eax
50 # push %eax
ff e3 # jmp *%ebx
:=,,,
5b # pop %ebx
58 # pop %eax
59 # pop %ecx
89 08 # mov %ecx,(%eax)
ff e3 # jmp *%ebx
:reab # Convert relative address to absolute
5b # pop %eax
8d 43 fb # lea -5(%ebx),%eax
01 04 24 # add %eax,(%esp)
ff e3 # jmp *%ebx
:arg1
5b # pop %ebx
58 # pop %eax
59 # pop %ecx
51 # push %ecx
50 # push %eax
51 # push %ecx
ff e3 # jmp *%ebx
:0r0, # Jump here to return 0 values from a function with 0 args
c3 # ret
:0r1, # Jump here to return 1 value from a function with 0 args
58 # pop %eax
5b # pop %ebx
50 # push %eax
ff e3 # jmp *%ebx
:1r0, # Jump here to return 0 values from a function with 1 arg
5b # pop %ebx
59 # pop %ecx
ff e3 # jmp *%ebx
:1r1, # Jump here to return 1 value from a function with 1 arg
58 # pop %eax
5b # pop %ebx
59 # pop %ecx
50 # push %eax
ff e3 # jmp *%ebx
######################################################################
###
### System calls
###
:exit
58 # pop %eax
58 # pop %eax
89 c3 # mov %eax,%ebx
31 c0 # xor %eax,%eax
40 # inc %eax
cd 80 # int $0x80
:brk,
5b # pop %ebx
58 # pop %eax
53 # push %ebx
89 c3 # mov %eax,%ebx
b8 2d 00 00 00 # mov $0x45,%eax
cd 80 # int $0x80
5b # pop %ebx
50 # push %eax
53 # push %ebx
c3 # ret
:get1
6a 00 # push $0x0
31 db # xor %ebx,%ebx
89 e1 # mov %esp,%ecx
89 da # mov %ebx,%edx
42 # inc %edx
b8 03 00 00 00 # mov $0x3,%eax
cd 80 # int $0x80
85 c0 # test %eax,%eax
74 02 # je gete
58 # pop %eax
c3 # ret
:gete
31 c0 # xor %eax,%eax
68 00 00 00 00
68 00 00 00 00
e8 .exit
:getc
e8 .get1
50 # push %eax
e8 .swap
c3 # ret
:putc
31 db # xor %ebx,%ebx
43 # inc %ebx
8d 4c 24 04 # lea 0x4(%esp,1),%ecx
89 da # mov %ebx,%edx
b8 04 00 00 00 # mov $0x4,%eax
cd 80 # int $0x80
5b # pop %ebx
58 # pop %eax
ff e3 # jmp *%ebx
:sbrk
e8 .arg1
68 00 00 00 00
e8 .brk,
e8 .dup,
e8 .rot,
e8 .+,,,
e8 .dup,
e8 .brk,
e8 .==,,
58 85 c0 0f 85 .1r1,
e8 .drop
68 ff ff ff ff
e9 .1r1,
######################################################################
###
### Debugging
###
# A stackless implementation of exit(42), for debugging:
# 31 c0 40 b3 2a cd 80
:outw
e8 .arg1
e8 .dup,
e8 .putc
68 08 00 00 00
e8 .>>,,
e8 .dup,
e8 .putc
68 08 00 00 00
e8 .>>,,
e8 .dup,
e8 .putc
68 08 00 00 00
e8 .>>,,
e8 .putc
e9 .1r0,
:outs
68 de ad be ef
e8 .outw
e8 .outw
e8 .outw
e8 .outw
e8 .outw
e8 .outw
ff
######################################################################
###
### The program itself
###
:pos, # pos:
00 00 00 00
:stb0 # symtab:
00 00 00 00
:stbp # symtabp:
00 00 00 00
# filelen:
00 00 00 00
:genb
e8 .arg1
e8 .putc
68 .pos,
e8 .reab
e8 .dup,
e8 .@,,,
68 01 00 00 00
e8 .+,,,
e8 .swap
e8 .=,,,
e9 .1r0,
:genw
e8 .arg1
68 .pos,
e8 .reab
e8 .dup,
e8 .@,,,
68 04 00 00 00
e8 .+,,,
e8 .swap
e8 .=,,,
e8 .dup,
e8 .putc
68 08 00 00 00
e8 .>>,,
e8 .dup,
e8 .putc
68 08 00 00 00
e8 .>>,,
e8 .dup,
e8 .putc
68 08 00 00 00
e8 .>>,,
e8 .putc
e9 .1r0,
:rsy1
e8 .drop
e9 .1r1,
:rsym
e8 .arg1
:rsyl
68 ef be ad de
e8 .*,,,
e8 .getc
e8 .dup,
68 20 00 00 00
e8 .<=,,
58 85 c0 0f 85 .rsy1
e8 .+,,,
e9 .rsyl
:asyo
e8 .drop
68 .stbp
e8 .reab
e8 .dup,
e8 .@,,,
e8 .swap
e8 .dup,
e8 .@,,,
68 08 00 00 00
e8 .+,,,
68 08 00 00 00
e8 .sbrk
e8 .drop
e8 .swap
e8 .=,,,
e8 .dup,
e8 .rot,
e8 .swap
e8 .=,,,
68 04 00 00 00
e8 .+,,,
68 .pos,
e8 .reab
e8 .@,,,
e8 .swap
e8 .=,,,
e9 .1r0,
:asye
68 02 00 00 00
e8 .exit
:asym
e8 .arg1
68 .stb0
e8 .reab
e8 .@,,,
:asyl
e8 .dup,
68 .stbp
e8 .reab
e8 .@,,,
e8 .==,,
58 85 c0 0f 85 .asyo
e8 .dup,
e8 .@,,,
68 02 00 00 00
e8 .pick
e8 .==,,
58 85 c0 0f 85 .asye
68 08 00 00 00
e8 .+,,,
e9 .asyl
:wsyo
68 .pos,
e8 .reab
e8 .dup,
e8 .@,,,
68 04 00 00 00
e8 .+,,,
e8 .swap
e8 .=,,,
e8 .swap
e8 .drop
68 04 00 00 00
e8 .+,,,
e8 .@,,,
68 .pos,
e8 .reab
e8 .@,,,
e8 .-,,,
e8 .dup,
e8 .putc
68 08 00 00 00
e8 .>>,,
e8 .dup,
e8 .putc
68 08 00 00 00
e8 .>>,,
e8 .dup,
e8 .putc
68 08 00 00 00
e8 .>>,,
e8 .putc
e9 .1r0,
:wsye
68 03 00 00 00
e8 .exit
:wsym
e8 .arg1
68 .stb0
e8 .reab
e8 .@,,,
:wsyl
e8 .dup,
68 .stbp
e8 .reab
e8 .@,,,
e8 .==,,
58 85 c0 0f 85 .wsye
e8 .dup,
e8 .@,,,
68 02 00 00 00
e8 .pick
e8 .==,,
58 85 c0 0f 85 .wsyo
68 08 00 00 00
e8 .+,,,
e9 .wsyl
:hex1
68 30 00 00 00
e8 .-,,,
e9 .1r1,
:hex2
68 57 00 00 00
e8 .-,,,
e9 .1r1,
:err1
68 11 00 00 00
e8 .exit
:conh
e8 .arg1
e8 .dup,
68 30 00 00 00
e8 .<,,,
58 85 c0 0f 85 .err1
e8 .dup,
68 3a 00 00 00
e8 .<,,,
58 85 c0 0f 85 .hex1
e8 .dup,
68 61 00 00 00
e8 .<,,,
58 85 c0 0f 85 .err1
e8 .dup,
68 67 00 00 00
e8 .<,,,
58 85 c0 0f 85 .hex2
e9 .err1
:tokh
e8 .drop
e8 .getc
e8 .conh
68 04 00 00 00
e8 .<<,,
e8 .getc
e8 .conh
e8 .+,,,
e8 .genb
e9 .0r0,
:gets
e8 .drop
e9 .0r0,
:comm
e8 .drop
:coml
e8 .getc
68 0a 00 00 00
e8 .!=,,
58 85 c0 0f 85 .coml
e9 .0r0,
:isd0
e8 .drop
68 00 00 00 00
e9 .1r1,
:isd1
68 01 00 00 00
e9 .1r1,
:isdi
e8 .arg1
e8 .dup,
68 30 00 00 00
e8 .<,,,
58 85 c0 0f 85 .isd0
68 3a 00 00 00
e8 .<,,,
58 85 c0 0f 85 .isd1
68 00 00 00 00
e9 .1r1,
:tkne
e8 .drop
68 68 00 00 00
e8 .genb
e8 .genw
e9 .0r0,
:tokn
68 00 00 00 00
e8 .swap
:tknl
e8 .dup,
68 20 00 00 00
e8 .<=,,
58 85 c0 0f 85 .tkne
68 30 00 00 00
e8 .-,,,
e8 .swap
68 0a 00 00 00
e8 .*,,,
e8 .+,,,
e8 .getc
e9 .tknl
:tokd
e8 .drop
e8 .getc
e8 .rsym
e8 .asym
e9 .0r0,
:toku
68 e8 00 00 00
e8 .genb
e8 .rsym
e8 .wsym
e9 .0r0,
:toka
68 68 00 00 00
e8 .genb
e8 .drop
e8 .getc
e8 .rsym
e8 .wsym
e9 .0r0,
:gett
e8 .getc
e8 .dup,
68 20 00 00 00
e8 .<=,,
58 85 c0 0f 85 .gets # white space
e8 .dup,
68 23 00 00 00
e8 .==,,
58 85 c0 0f 85 .comm # '#'
e8 .dup,
e8 .isdi
58 85 c0 0f 85 .tokn # number
e8 .dup,
68 3a 00 00 00
e8 .==,,
58 85 c0 0f 85 .tokd # ':'
e8 .dup,
68 27 00 00 00
e8 .==,,
58 85 c0 0f 85 .tokh # "'"
e8 .dup,
68 26 00 00 00
e8 .==,,
58 85 c0 0f 85 .toka # '&'
e9 .toku
:star
68 00 00 00 00
e8 .sbrk
e8 .dup,
68 .stb0
e8 .reab
e8 .=,,,
68 .stbp
e8 .reab
e8 .=,,,
:loo1
e8 .gett
e9 .loo1
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
e9 .star
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90
90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90