File: generator.cpp

package info (click to toggle)
openmw 0.49.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,992 kB
  • sloc: cpp: 372,479; xml: 2,149; sh: 1,403; python: 797; makefile: 26
file content (742 lines) | stat: -rw-r--r-- 18,330 bytes parent folder | download
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
730
731
732
733
734
735
736
737
738
739
740
741
742
#include "generator.hpp"

#include <algorithm>
#include <cassert>
#include <iterator>
#include <stdexcept>

#include "literals.hpp"

namespace
{
    void opPushInt(Compiler::Generator::CodeContainer& code, int value)
    {
        code.push_back(Compiler::Generator::segment0(0, value));
    }

    void opFetchIntLiteral(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(4));
    }

    void opFetchFloatLiteral(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(5));
    }

    void opIntToFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(3));
    }

    void opFloatToInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(6));
    }

    void opStoreLocalShort(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(0));
    }

    void opStoreLocalLong(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(1));
    }

    void opStoreLocalFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(2));
    }

    void opNegateInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(7));
    }

    void opNegateFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(8));
    }

    void opAddInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(9));
    }

    void opAddFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(10));
    }

    void opSubInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(11));
    }

    void opSubFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(12));
    }

    void opMulInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(13));
    }

    void opMulFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(14));
    }

    void opDivInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(15));
    }

    void opDivFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(16));
    }

    void opIntToFloat1(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(17));
    }

    void opReturn(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(20));
    }

    void opMessageBox(Compiler::Generator::CodeContainer& code, int buttons)
    {
        code.push_back(Compiler::Generator::segment3(0, buttons));
    }

    void opReport(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(58));
    }

    void opFetchLocalShort(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(21));
    }

    void opFetchLocalLong(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(22));
    }

    void opFetchLocalFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(23));
    }

    void opJumpForward(Compiler::Generator::CodeContainer& code, int offset)
    {
        code.push_back(Compiler::Generator::segment0(1, offset));
    }

    void opJumpBackward(Compiler::Generator::CodeContainer& code, int offset)
    {
        code.push_back(Compiler::Generator::segment0(2, offset));
    }

    /*
    Currently unused
    void opSkipOnZero (Compiler::Generator::CodeContainer& code)
    {
        code.push_back (Compiler::Generator::segment5 (24));
    }
    */

    void opSkipOnNonZero(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(25));
    }

    void opEqualInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(26));
    }

    void opNonEqualInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(27));
    }

    void opLessThanInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(28));
    }

    void opLessOrEqualInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(29));
    }

    void opGreaterThanInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(30));
    }

    void opGreaterOrEqualInt(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(31));
    }

    void opEqualFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(32));
    }

    void opNonEqualFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(33));
    }

    void opLessThanFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(34));
    }

    void opLessOrEqualFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(35));
    }

    void opGreaterThanFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(36));
    }

    void opGreaterOrEqualFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(37));
    }

    void opStoreGlobalShort(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(39));
    }

    void opStoreGlobalLong(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(40));
    }

    void opStoreGlobalFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(41));
    }

    void opFetchGlobalShort(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(42));
    }

    void opFetchGlobalLong(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(43));
    }

    void opFetchGlobalFloat(Compiler::Generator::CodeContainer& code)
    {
        code.push_back(Compiler::Generator::segment5(44));
    }

    void opStoreMemberShort(Compiler::Generator::CodeContainer& code, bool global)
    {
        code.push_back(Compiler::Generator::segment5(global ? 65 : 59));
    }

    void opStoreMemberLong(Compiler::Generator::CodeContainer& code, bool global)
    {
        code.push_back(Compiler::Generator::segment5(global ? 66 : 60));
    }

    void opStoreMemberFloat(Compiler::Generator::CodeContainer& code, bool global)
    {
        code.push_back(Compiler::Generator::segment5(global ? 67 : 61));
    }

    void opFetchMemberShort(Compiler::Generator::CodeContainer& code, bool global)
    {
        code.push_back(Compiler::Generator::segment5(global ? 68 : 62));
    }

    void opFetchMemberLong(Compiler::Generator::CodeContainer& code, bool global)
    {
        code.push_back(Compiler::Generator::segment5(global ? 69 : 63));
    }

    void opFetchMemberFloat(Compiler::Generator::CodeContainer& code, bool global)
    {
        code.push_back(Compiler::Generator::segment5(global ? 70 : 64));
    }
}

namespace Compiler::Generator
{
    void pushInt(CodeContainer& code, Literals& literals, int value)
    {
        int index = literals.addInteger(value);
        opPushInt(code, index);
        opFetchIntLiteral(code);
    }

    void pushFloat(CodeContainer& code, Literals& literals, float value)
    {
        int index = literals.addFloat(value);
        opPushInt(code, index);
        opFetchFloatLiteral(code);
    }

    void pushString(CodeContainer& code, Literals& literals, const std::string& value)
    {
        int index = literals.addString(value);
        opPushInt(code, index);
    }

    void assignToLocal(CodeContainer& code, char localType, int localIndex, const CodeContainer& value, char valueType)
    {
        opPushInt(code, localIndex);

        std::copy(value.begin(), value.end(), std::back_inserter(code));

        if (localType != valueType)
        {
            if (localType == 'f' && valueType == 'l')
            {
                opIntToFloat(code);
            }
            else if ((localType == 'l' || localType == 's') && valueType == 'f')
            {
                opFloatToInt(code);
            }
        }

        switch (localType)
        {
            case 'f':

                opStoreLocalFloat(code);
                break;

            case 's':

                opStoreLocalShort(code);
                break;

            case 'l':

                opStoreLocalLong(code);
                break;

            default:

                assert(0);
        }
    }

    void negate(CodeContainer& code, char valueType)
    {
        switch (valueType)
        {
            case 'l':

                opNegateInt(code);
                break;

            case 'f':

                opNegateFloat(code);
                break;

            default:

                assert(0);
        }
    }

    void add(CodeContainer& code, char valueType1, char valueType2)
    {
        if (valueType1 == 'l' && valueType2 == 'l')
        {
            opAddInt(code);
        }
        else
        {
            if (valueType1 == 'l')
                opIntToFloat1(code);

            if (valueType2 == 'l')
                opIntToFloat(code);

            opAddFloat(code);
        }
    }

    void sub(CodeContainer& code, char valueType1, char valueType2)
    {
        if (valueType1 == 'l' && valueType2 == 'l')
        {
            opSubInt(code);
        }
        else
        {
            if (valueType1 == 'l')
                opIntToFloat1(code);

            if (valueType2 == 'l')
                opIntToFloat(code);

            opSubFloat(code);
        }
    }

    void mul(CodeContainer& code, char valueType1, char valueType2)
    {
        if (valueType1 == 'l' && valueType2 == 'l')
        {
            opMulInt(code);
        }
        else
        {
            if (valueType1 == 'l')
                opIntToFloat1(code);

            if (valueType2 == 'l')
                opIntToFloat(code);

            opMulFloat(code);
        }
    }

    void div(CodeContainer& code, char valueType1, char valueType2)
    {
        if (valueType1 == 'l' && valueType2 == 'l')
        {
            opDivInt(code);
        }
        else
        {
            if (valueType1 == 'l')
                opIntToFloat1(code);

            if (valueType2 == 'l')
                opIntToFloat(code);

            opDivFloat(code);
        }
    }

    void convert(CodeContainer& code, char fromType, char toType)
    {
        if (fromType != toType)
        {
            if (fromType == 'f' && toType == 'l')
                opFloatToInt(code);
            else if (fromType == 'l' && toType == 'f')
                opIntToFloat(code);
            else
                throw std::logic_error("illegal type conversion");
        }
    }

    void exit(CodeContainer& code)
    {
        opReturn(code);
    }

    void message(CodeContainer& code, Literals& literals, const std::string& message, int buttons)
    {
        assert(buttons >= 0);

        if (buttons >= 256)
            throw std::runtime_error("A message box can't have more than 255 buttons");

        int index = literals.addString(message);

        opPushInt(code, index);
        opMessageBox(code, buttons);
    }

    void report(CodeContainer& code, Literals& literals, const std::string& message)
    {
        int index = literals.addString(message);

        opPushInt(code, index);
        opReport(code);
    }

    void fetchLocal(CodeContainer& code, char localType, int localIndex)
    {
        opPushInt(code, localIndex);

        switch (localType)
        {
            case 'f':

                opFetchLocalFloat(code);
                break;

            case 's':

                opFetchLocalShort(code);
                break;

            case 'l':

                opFetchLocalLong(code);
                break;

            default:

                assert(0);
        }
    }

    void jump(CodeContainer& code, int offset)
    {
        if (offset > 0)
            opJumpForward(code, offset);
        else if (offset < 0)
            opJumpBackward(code, -offset);
        else
            throw std::logic_error("infinite loop");
    }

    void jumpOnZero(CodeContainer& code, int offset)
    {
        opSkipOnNonZero(code);

        if (offset < 0)
            --offset; // compensate for skip instruction

        jump(code, offset);
    }

    void compare(CodeContainer& code, char op, char valueType1, char valueType2)
    {
        if (valueType1 == 'l' && valueType2 == 'l')
        {
            switch (op)
            {
                case 'e':
                    opEqualInt(code);
                    break;
                case 'n':
                    opNonEqualInt(code);
                    break;
                case 'l':
                    opLessThanInt(code);
                    break;
                case 'L':
                    opLessOrEqualInt(code);
                    break;
                case 'g':
                    opGreaterThanInt(code);
                    break;
                case 'G':
                    opGreaterOrEqualInt(code);
                    break;

                default:

                    assert(0);
            }
        }
        else
        {
            if (valueType1 == 'l')
                opIntToFloat1(code);

            if (valueType2 == 'l')
                opIntToFloat(code);

            switch (op)
            {
                case 'e':
                    opEqualFloat(code);
                    break;
                case 'n':
                    opNonEqualFloat(code);
                    break;
                case 'l':
                    opLessThanFloat(code);
                    break;
                case 'L':
                    opLessOrEqualFloat(code);
                    break;
                case 'g':
                    opGreaterThanFloat(code);
                    break;
                case 'G':
                    opGreaterOrEqualFloat(code);
                    break;

                default:

                    assert(0);
            }
        }
    }

    void assignToGlobal(CodeContainer& code, Literals& literals, char localType, const std::string& name,
        const CodeContainer& value, char valueType)
    {
        int index = literals.addString(name);

        opPushInt(code, index);

        std::copy(value.begin(), value.end(), std::back_inserter(code));

        if (localType != valueType)
        {
            if (localType == 'f' && (valueType == 'l' || valueType == 's'))
            {
                opIntToFloat(code);
            }
            else if ((localType == 'l' || localType == 's') && valueType == 'f')
            {
                opFloatToInt(code);
            }
        }

        switch (localType)
        {
            case 'f':

                opStoreGlobalFloat(code);
                break;

            case 's':

                opStoreGlobalShort(code);
                break;

            case 'l':

                opStoreGlobalLong(code);
                break;

            default:

                assert(0);
        }
    }

    void fetchGlobal(CodeContainer& code, Literals& literals, char localType, const std::string& name)
    {
        int index = literals.addString(name);

        opPushInt(code, index);

        switch (localType)
        {
            case 'f':

                opFetchGlobalFloat(code);
                break;

            case 's':

                opFetchGlobalShort(code);
                break;

            case 'l':

                opFetchGlobalLong(code);
                break;

            default:

                assert(0);
        }
    }

    void assignToMember(CodeContainer& code, Literals& literals, char localType, const std::string& name,
        const std::string& id, const CodeContainer& value, char valueType, bool global)
    {
        int index = literals.addString(name);

        opPushInt(code, index);

        index = literals.addString(id);

        opPushInt(code, index);

        std::copy(value.begin(), value.end(), std::back_inserter(code));

        if (localType != valueType)
        {
            if (localType == 'f' && (valueType == 'l' || valueType == 's'))
            {
                opIntToFloat(code);
            }
            else if ((localType == 'l' || localType == 's') && valueType == 'f')
            {
                opFloatToInt(code);
            }
        }

        switch (localType)
        {
            case 'f':

                opStoreMemberFloat(code, global);
                break;

            case 's':

                opStoreMemberShort(code, global);
                break;

            case 'l':

                opStoreMemberLong(code, global);
                break;

            default:

                assert(0);
        }
    }

    void fetchMember(CodeContainer& code, Literals& literals, char localType, const std::string& name,
        const std::string& id, bool global)
    {
        int index = literals.addString(name);

        opPushInt(code, index);

        index = literals.addString(id);

        opPushInt(code, index);

        switch (localType)
        {
            case 'f':

                opFetchMemberFloat(code, global);
                break;

            case 's':

                opFetchMemberShort(code, global);
                break;

            case 'l':

                opFetchMemberLong(code, global);
                break;

            default:

                assert(0);
        }
    }
}