summaryrefslogtreecommitdiff
path: root/rsc/source/rscpp/cpp6.c
blob: b94c81fe2395d72c293a583cef9c135fc4de12fe (plain)
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
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include <sal/types.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include "cppdef.h"
#include "cpp.h"

/*ER evaluate macros to pDefOut */

/*
 * skipnl()     skips over input text to the end of the line.
 * skipws()     skips over "whitespace" (spaces or tabs), but
 *              not skip over the end of the line.  It skips over
 *              TOK_SEP, however (though that shouldn't happen).
 * scanid()     reads the next token (C identifier) into token[].
 *              The caller has already read the first character of
 *              the identifier.  Unlike macroid(), the token is
 *              never expanded.
 * macroid()    reads the next token (C identifier) into token[].
 *              If it is a #defined macro, it is expanded, and
 *              macroid() returns TRUE, otherwise, FALSE.
 * catenate()   Does the dirty work of token concatenation, TRUE if it did.
 * scanstring() Reads a string from the input stream, calling
 *              a user-supplied function for each character.
 *              This function may be output() to write the
 *              string to the output file, or save() to save
 *              the string in the work buffer.
 * scannumber() Reads a C numeric constant from the input stream,
 *              calling the user-supplied function for each
 *              character.  (output() or save() as noted above.)
 * save()       Save one character in the work[] buffer.
 * savestring() Saves a string in malloc() memory.
 * getfile()    Initialize a new FILEINFO structure, called when
 *              #include opens a new file, or a macro is to be
 *              expanded.
 * getmem()     Get a specified number of bytes from malloc memory.
 * output()     Write one character to stdout (calling PUTCHAR) --
 *              implemented as a function so its address may be
 *              passed to scanstring() and scannumber().
 * lookid()     Scans the next token (identifier) from the input
 *              stream.  Looks for it in the #defined symbol table.
 *              Returns a pointer to the definition, if found, or NULL
 *              if not present.  The identifier is stored in token[].
 * defnedel()   Define enter/delete subroutine.  Updates the
 *              symbol table.
 * get()        Read the next byte from the current input stream,
 *              handling end of (macro/file) input and embedded
 *              comments appropriately.  Note that the global
 *              instring is -- essentially -- a parameter to get().
 * cget()       Like get(), but skip over TOK_SEP.
 * unget()      Push last gotten character back on the input stream.
 * cerror(), cwarn(), cfatal(), cierror(), ciwarn()
 *              These routines format an print messages to the user.
 *              cerror & cwarn take a format and a single string argument.
 *              cierror & ciwarn take a format and a single int (char) argument.
 *              cfatal takes a format and a single string argument.
 */

/*
 * This table must be rewritten for a non-Ascii machine.
 *
 * Note that several "non-visible" characters have special meaning:
 * Hex 1D DEF_MAGIC -- a flag to prevent #define recursion.
 * Hex 1E TOK_SEP   -- a delimiter for token concatenation
 * Hex 1F COM_SEP   -- a zero-width whitespace for comment concatenation
 */
#if TOK_SEP != 0x1E || COM_SEP != 0x1F || DEF_MAGIC != 0x1D
        << error type table is not correct >>
#endif

#define DOL     LET


char type[256] = {              /* Character type codes    Hex          */
   END,   000,   000,   000,   000,   000,   000,   000, /* 00          */
   000,   SPA,   000,   000,   000,   000,   000,   000, /* 08          */
   000,   000,   000,   000,   000,   000,   000,   000, /* 10          */
   000,   000,   000,   000,   000,   LET,   000,   SPA, /* 18          */
   SPA,OP_NOT,   QUO,   000,   DOL,OP_MOD,OP_AND,   QUO, /* 20  !"#$%&' */
OP_LPA,OP_RPA,OP_MUL,OP_ADD,   000,OP_SUB,   DOT,OP_DIV, /* 28 ()*+,-./ */
   DIG,   DIG,   DIG,   DIG,   DIG,   DIG,   DIG,   DIG, /* 30 01234567 */
   DIG,   DIG,OP_COL,   000, OP_LT, OP_EQ, OP_GT,OP_QUE, /* 38 89:;<=>? */
   000,   LET,   LET,   LET,   LET,   LET,   LET,   LET, /* 40 @ABCDEFG */
   LET,   LET,   LET,   LET,   LET,   LET,   LET,   LET, /* 48 HIJKLMNO */
   LET,   LET,   LET,   LET,   LET,   LET,   LET,   LET, /* 50 PQRSTUVW */
   LET,   LET,   LET,   000,   BSH,   000,OP_XOR,   LET, /* 58 XYZ[\]^_ */
   000,   LET,   LET,   LET,   LET,   LET,   LET,   LET, /* 60 `abcdefg */
   LET,   LET,   LET,   LET,   LET,   LET,   LET,   LET, /* 68 hijklmno */
   LET,   LET,   LET,   LET,   LET,   LET,   LET,   LET, /* 70 pqrstuvw */
   LET,   LET,   LET,   000, OP_OR,   000,OP_NOT,   000, /* 78 xyz{|}~  */
   000,   000,   000,   000,   000,   000,   000,   000, /*   80 .. FF  */
   000,   000,   000,   000,   000,   000,   000,   000, /*   80 .. FF  */
   000,   000,   000,   000,   000,   000,   000,   000, /*   80 .. FF  */
   000,   000,   000,   000,   000,   000,   000,   000, /*   80 .. FF  */
   000,   000,   000,   000,   000,   000,   000,   000, /*   80 .. FF  */
   000,   000,   000,   000,   000,   000,   000,   000, /*   80 .. FF  */
   000,   000,   000,   000,   000,   000,   000,   000, /*   80 .. FF  */
   000,   000,   000,   000,   000,   000,   000,   000, /*   80 .. FF  */
};


/*
 *                      C P P   S y m b o l   T a b l e s
 */

/*
 * SBSIZE defines the number of hash-table slots for the symbol table.
 * It must be a power of 2.
 */
#ifndef SBSIZE
#define SBSIZE  64
#endif
#define SBMASK  (SBSIZE - 1)
#if (SBSIZE ^ SBMASK) != ((SBSIZE * 2) - 1)
        << error, SBSIZE must be a power of 2 >>
#endif


static DEFBUF   *symtab[SBSIZE];        /* Symbol table queue headers   */

void InitCpp6()
{
    int i;
    for( i = 0; i < SBSIZE; i++ )
        symtab[ i ] = NULL;
}



/*
 * Skip to the end of the current input line.
 */
void skipnl()
{
    int c;

    do
    {                            /* Skip to newline      */
        c = get();
    }
    while (c != '\n' && c != EOF_CHAR);
}

/*
 * Skip over whitespace
 */
int skipws()
{
    int            c;

    do {                            /* Skip whitespace      */
        c = get();
    } while (type[c] == SPA);
    return c;
}

/*
 * Get the next token (an id) into the token buffer.
 * Note: this code is duplicated in lookid().
 * Change one, change both.
 */
void scanid(int c)
{
    char* bp;

    if (c == DEF_MAGIC)                     /* Eat the magic token  */
        c = get();                          /* undefiner.           */
    bp = token;
    do
    {
        if (bp < &token[IDMAX])             /* token dim is IDMAX+1 */
            *bp++ = (char)c;
        c = get();
    }
    while (type[c] == LET || type[c] == DIG);
    unget();
    *bp = EOS;
}

/*
 * If c is a letter, scan the id.  if it's #defined, expand it and scan
 * the next character and try again.
 *
 * Else, return the character.  If type[c] is a LET, the token is in token.
 */
int macroid(int c)
{
    DEFBUF* dp;

    if (infile != NULL && infile->fp != NULL)
        recursion = 0;
    while (type[c] == LET && (dp = lookid(c)) != NULL)
    {
        expand(dp);
        c = get();
    }
    return c;
}

/*
 * A token was just read (via macroid).
 * If the next character is TOK_SEP, concatenate the next token
 * return TRUE -- which should recall macroid after refreshing
 * macroid's argument.  If it is not TOK_SEP, unget() the character
 * and return FALSE.
 */
int catenate()
{
    int c;
    char* token1;

    if (get() != TOK_SEP)                   /* Token concatenation  */
    {
        unget();
        return FALSE;
    }
    else
    {
        token1 = savestring(token);         /* Save first token     */
        c = macroid(get());                 /* Scan next token      */
        switch(type[c])                     /* What was it?         */
        {
        case LET:                           /* An identifier, ...   */
            if (strlen(token1) + strlen(token) >= NWORK)
                cfatal("work buffer overflow doing %s #", token1);
            sprintf(work, "%s%s", token1, token);
            break;

        case DIG:                           /* A digit string       */
            strcpy(work, token1);
            workp = work + strlen(work);
            do
            {
                save(c);
            }
            while ((c = get()) != TOK_SEP);
            /*
             * The trailing TOK_SEP is no longer needed.
             */
            save(EOS);
            break;

        default:                            /* An error, ...        */
            if (isprint(c))
                cierror("Strange character '%c' after #", c);
            else
                cierror("Strange character (%d.) after #", c);
            strcpy(work, token1);
            unget();
            break;
        }
        /*
         * work has the concatenated token and token1 has
         * the first token (no longer needed).  Unget the
         * new (concatenated) token after freeing token1.
         * Finally, setup to read the new token.
         */
        free(token1);                       /* Free up memory       */
        ungetstring(work);                  /* Unget the new thing, */
        return TRUE;
    }
}

/*
 * Scan off a string.  Warning if terminated by newline or EOF.
 * outfun() outputs the character -- to a buffer if in a macro.
 * TRUE if ok, FALSE if error.
 */
int scanstring(int delim,
#ifndef _NO_PROTO
           void (*outfun)( int ) /* BP */    /* Output function              */
#else
           void (*outfun)() /* BP */
#endif
    )
{
    int c;

    instring = TRUE;                /* Don't strip comments         */
    (*outfun)(delim);
    while ((c = get()) != delim &&
           c != '\n' &&
           c != EOF_CHAR)
    {
        if (c != DEF_MAGIC)
            (*outfun)(c);
        if (c == '\\')
            (*outfun)(get());
    }
    instring = FALSE;
    if (c == delim)
    {
        (*outfun)(c);
        return TRUE;
    }
    else
    {
        cerror("Unterminated string", NULLST);
        unget();
        return FALSE;
    }
}

/*
 * Process a number.  We know that c is from 0 to 9 or dot.
 * Algorithm from Dave Conroy's Decus C.
 */
void scannumber(int c,
#ifndef _NO_PROTO
                void (*outfun)( int )  /* BP */    /* Output/store func    */
#else
                void (*outfun)() /* BP */
#endif
    )
{
    int radix;                              /* 8, 10, or 16         */
    int expseen;                            /* 'e' seen in floater  */
    int signseen;                           /* '+' or '-' seen      */
    int octal89;                            /* For bad octal test   */
    int dotflag;                            /* TRUE if '.' was seen */

    expseen = FALSE;                        /* No exponent seen yet */
    signseen = TRUE;                        /* No +/- allowed yet   */
    octal89 = FALSE;                        /* No bad octal yet     */
    radix = 10;                             /* Assume decimal       */
    if ((dotflag = (c == '.')) != FALSE)    /* . something?         */
    {
        (*outfun)('.');                     /* Always out the dot   */
        if (type[(c = get())] != DIG)       /* If not a float numb, */
        {
            unget();                        /* Rescan strange char  */
            return;                         /* All done for now     */
        }
    }                                       /* End of float test    */
    else if (c == '0')                      /* Octal or hex?        */
    {
        (*outfun)(c);                       /* Stuff initial zero   */
        radix = 8;                          /* Assume it's octal    */
        c = get();                          /* Look for an 'x'      */
        if (c == 'x' || c == 'X')           /* Did we get one?      */
        {
            radix = 16;                     /* Remember new radix   */
            (*outfun)(c);                   /* Stuff the 'x'        */
            c = get();                      /* Get next character   */
        }
    }
    for (;;)                                /* Process curr. char.  */
    {
        /*
         * Note that this algorithm accepts "012e4" and "03.4"
         * as legitimate floating-point numbers.
         */
        if (radix != 16 && (c == 'e' || c == 'E'))
        {
            if (expseen)                    /* Already saw 'E'?     */
                break;                      /* Exit loop, bad nbr.  */
            expseen = TRUE;                 /* Set exponent seen    */
            signseen = FALSE;               /* We can read '+' now  */
            radix = 10;                     /* Decimal exponent     */
        }
        else if (radix != 16 && c == '.')
        {
            if (dotflag)                    /* Saw dot already?     */
                break;                      /* Exit loop, two dots  */
            dotflag = TRUE;                 /* Remember the dot     */
            radix = 10;                     /* Decimal fraction     */
        }
        else if (c == '+' || c == '-')      /* 1.0e+10              */
        {
            if (signseen)                   /* Sign in wrong place? */
                break;                      /* Exit loop, not nbr.  */
            /* signseen = TRUE; */          /* Remember we saw it   */
        }
        else                                /* Check the digit      */
        {
            switch (c)
            {
            case '8': case '9':             /* Sometimes wrong      */
                octal89 = TRUE;             /* Do check later       */
            case '0': case '1': case '2': case '3':
            case '4': case '5': case '6': case '7':
                break;                      /* Always ok            */

            case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
            case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
                if (radix == 16)            /* Alpha's are ok only  */
                    break;                  /* if reading hex.      */
            default:                        /* At number end        */
                goto done;                  /* Break from for loop  */
            }                               /* End of switch        */
        }                                   /* End general case     */
        (*outfun)(c);                       /* Accept the character */
        signseen = TRUE;                    /* Don't read sign now  */
        c = get();                          /* Read another char    */
    }                                       /* End of scan loop     */
    /*
     * When we break out of the scan loop, c contains the first
     * character (maybe) not in the number.  If the number is an
     * integer, allow a trailing 'L' for long and/or a trailing 'U'
     * for unsigned.  If not those, push the trailing character back
     * on the input stream.  Floating point numbers accept a trailing
     * 'L' for "long double".
     */
  done:
    if (dotflag || expseen)           /* Floating point?      */
    {
        if (c == 'l' || c == 'L')
        {
            (*outfun)(c);
            get();                          /* Ungotten later       */
        }
    }
    else                                    /* Else it's an integer */
    {
        /*
         * We know that dotflag and expseen are both zero, now:
         * dotflag signals "saw 'L'", and
         * expseen signals "saw 'U'".
         */
        for (;;)
        {
            switch (c)
            {
            case 'l':
            case 'L':
                if (dotflag)
                    goto nomore;
                dotflag = TRUE;
                break;

            case 'u':
            case 'U':
                if (expseen)
                    goto nomore;
                expseen = TRUE;
                break;

            default:
                goto nomore;
            }
            (*outfun)(c);                   /* Got 'L' or 'U'.      */
            c = get();                      /* Look at next, too.   */
        }
    }
  nomore:
    unget();                                /* Not part of a number */
    if (octal89 && radix == 8)
        cwarn("Illegal digit in octal number", NULLST);
}

void save(int c)
{
    if (workp >= &work[NWORK])
    {
        work[NWORK-1] = '\0';
        cfatal("Work buffer overflow:  %s", work);
    }
    else
        *workp++ = (char)c;
}

/*
 * Store a string into free memory.
 */
char* savestring(char* text)
{
    char* result;

    size_t size = strlen(text) + 1;
    result = getmem(size);
    strcpy(result, text);
    return result;
}

/*
 * Common FILEINFO buffer initialization for a new file or macro.
 */
FILEINFO* getfile(size_t bufsize, char* name)
{
    FILEINFO* file;
    size_t size;

    size = strlen(name);                    /* File/macro name      */
    file = (FILEINFO*) getmem(sizeof (FILEINFO) + bufsize + size);
    file->parent = infile;                  /* Chain files together */
    file->fp = NULL;                        /* No file yet          */
    file->filename = savestring(name);      /* Save file/macro name */
    file->progname = NULL;                  /* No #line seen yet    */
    file->unrecur = 0;                      /* No macro fixup       */
    file->bptr = file->buffer;              /* Initialize line ptr  */
    file->buffer[0] = EOS;                  /* Force first read     */
    file->line = 0;                         /* (Not used just yet)  */
    if (infile != NULL)                     /* If #include file     */
        infile->line = line;                /* Save current line    */
    infile = file;                          /* New current file     */
    line = 1;                               /* Note first line      */
    return file;                            /* All done.            */
}

/*
 * Get a block of free memory.
 */
char* getmem(size_t size)
{
    char* result;

    if ((result = malloc((unsigned) size)) == NULL)
        cfatal("Out of memory", NULLST);
    return result;
}

/*
 * Look for the next token in the symbol table.  Returns token in "token".
 * If found, returns the table pointer;  Else returns NULL.
 */
DEFBUF* lookid(int c)
{
    int nhash;
    DEFBUF* dp;
    char* np;
    int temp = 0;
    int isrecurse;      /* For #define foo foo  */

    np = token;
    nhash = 0;
    if (0 != (isrecurse = (c == DEF_MAGIC)))/* If recursive macro   */
        c = get();                          /* hack, skip DEF_MAGIC */
    do
    {
        if (np < &token[IDMAX])             /* token dim is IDMAX+1 */
        {
            *np++ = (char)c;                /* Store token byte     */
            nhash += c;                     /* Update hash value    */
        }
        c = get();                          /* And get another byte */
    }
    while (type[c] == LET || type[c] == DIG);
    unget();                                /* Rescan terminator    */
    *np = EOS;                              /* Terminate token      */
    if (isrecurse)                          /* Recursive definition */
        return NULL;                        /* undefined just now   */
    nhash += (np - token);                  /* Fix hash value       */
    dp = symtab[nhash & SBMASK];            /* Starting bucket      */
    while (dp != (DEFBUF*) NULL)           /* Search symbol table  */
    {
        if (dp->hash == nhash &&            /* Fast precheck        */
            (temp = strcmp(dp->name, token)) >= 0)
        {
            break;
        }
        dp = dp->link;                      /* Nope, try next one   */
    }
    return ((temp == 0) ? dp : NULL);
}

/*
 * Enter this name in the lookup table (delete = FALSE)
 * or delete this name (delete = TRUE).
 * Returns a pointer to the define block (delete = FALSE)
 * Returns NULL if the symbol wasn't defined (delete = TRUE).
 */
DEFBUF* defendel(char* name, int delete)
{
    DEFBUF* dp;
    DEFBUF** prevp;
    char* np;
    int nhash;
    int temp;
    int size;

    for (nhash = 0, np = name; *np != EOS;)
        nhash += *np++;
    size = (np - name);
    nhash += size;
    prevp = &symtab[nhash & SBMASK];
    while ((dp = *prevp) != (DEFBUF*) NULL)
    {
        if (dp->hash == nhash &&
            (temp = strcmp(dp->name, name)) >= 0)
        {
            if (temp > 0)
                dp = NULL;                  /* Not found            */
            else
            {
                *prevp = dp->link;          /* Found, unlink and    */
                if (dp->repl != NULL)       /* Free the replacement */
                    free(dp->repl);         /* if any, and then     */
                free((char*) dp);          /* Free the symbol      */
                dp = NULL;
            }
            break;
        }
        prevp = &dp->link;
    }
    if (!delete)
    {
        dp = (DEFBUF*) getmem(sizeof (DEFBUF) + size);
        dp->link = *prevp;
        *prevp = dp;
        dp->hash = nhash;
        dp->repl = NULL;
        dp->nargs = 0;
        strcpy(dp->name, name);
    }
    return dp;
}

#if OSL_DEBUG_LEVEL > 1

void dumpdef(char* why)
{
    DEFBUF* dp;
    DEFBUF** syp;
    FILE* pRememberOut = NULL;

    if ( bDumpDefs )    /*ER */
    {
        pRememberOut = pCppOut;
        pCppOut = pDefOut;
    }
    fprintf( pCppOut, "CPP symbol table dump %s\n", why);
    for (syp = symtab; syp < &symtab[SBSIZE]; syp++)
    {
        if ((dp = *syp) != (DEFBUF*) NULL)
        {
            fprintf( pCppOut, "symtab[%" SAL_PRI_PTRDIFFT "d]\n", (syp - symtab));
            do
            {
                dumpadef((char*) NULL, dp);
            }
            while ((dp = dp->link) != (DEFBUF*) NULL);
        }
    }
    if ( bDumpDefs )
    {
        fprintf( pCppOut, "\n");
        pCppOut = pRememberOut;
    }
}

void dumpadef(char* why, DEFBUF* dp)
{
    char* cp;
    int c;
    FILE* pRememberOut = NULL;

/*ER dump #define's to pDefOut */
    if ( bDumpDefs )
    {
        pRememberOut = pCppOut;
        pCppOut = pDefOut;
    }
    fprintf( pCppOut, " \"%s\" [%d]", dp->name, dp->nargs);
    if (why != NULL)
        fprintf( pCppOut, " (%s)", why);
    if (dp->repl != NULL)
    {
        fprintf( pCppOut, " => ");
        for (cp = dp->repl; (c = *cp++ & 0xFF) != EOS;)
        {
#ifdef SOLAR
            if (c == DEL)
            {
                c = *cp++ & 0xFF;
                if( c == EOS ) break;
                fprintf( pCppOut, "<%%%d>", c - MAC_PARM);
            }
#else
            if (c >= MAC_PARM && c <= (MAC_PARM + PAR_MAC))
                fprintf( pCppOut, "<%%%d>", c - MAC_PARM);
#endif
            else if (isprint(c) || c == '\n' || c == '\t')
                PUTCHAR(c);
            else if (c < ' ')
                fprintf( pCppOut, "<^%c>", c + '@');
            else
                fprintf( pCppOut, "<\\0%o>", c);
        }
/*ER evaluate macros to pDefOut */
#ifdef EVALDEFS
        if ( bDumpDefs && !bIsInEval && dp->nargs <= 0 )
        {
            FILEINFO* infileSave = infile;
            char* tokenSave = savestring( token );
            char* workSave = savestring( work );
            int lineSave = line;
            int wronglineSave = wrongline;
            int recursionSave = recursion;
            FILEINFO* file;
            EVALTYPE valEval;

            bIsInEval = 1;
            infile = NULL;          /* start from scrap */
            line = 0;
            wrongline = 0;
            *token = EOS;
            *work = EOS;
            recursion = 0;
            file = getfile( strlen( dp->repl ), dp->name );
            strcpy( file->buffer, dp->repl );
            fprintf( pCppOut, " ===> ");
            nEvalOff = 0;
            cppmain();              /* get() frees also *file */
            valEval = 0;
            if ( 0 == evaluate( EvalBuf, &valEval ) )
            {
#ifdef EVALFLOATS
                if ( valEval != (EVALTYPE)((long)valEval ) )
                    fprintf( pCppOut, " ==eval=> %f", valEval );
                else
#endif
                    fprintf( pCppOut, " ==eval=> %ld", (long)valEval );
            }
            recursion = recursionSave;
            wrongline = wronglineSave;
            line = lineSave;
            strcpy( work, workSave );
            free( workSave );
            strcpy( token, tokenSave );
            free( tokenSave );
            infile = infileSave;
            bIsInEval = 0;
        }
#endif
    }
    else
    {
        fprintf( pCppOut, ", no replacement.");
    }
    PUTCHAR('\n');
    if ( bDumpDefs )
        pCppOut = pRememberOut;
}
#endif

/*
 *                      G E T
 */

/*
 * Return the next character from a macro or the current file.
 * Handle end of file from #include files.
 */
int get()
{
    int c;
    FILEINFO* file;
    int popped;         /* Recursion fixup      */

    popped = 0;
  get_from_file:
    if ((file = infile) == NULL)
        return EOF_CHAR;
  newline:

    /*
     * Read a character from the current input line or macro.
     * At EOS, either finish the current macro (freeing temp.
     * storage) or read another line from the current input file.
     * At EOF, exit the current file (#include) or, at EOF from
     * the cpp input file, return EOF_CHAR to finish processing.
     */
    if ((c = *file->bptr++ & 0xFF) == EOS)
    {
        /*
         * Nothing in current line or macro.  Get next line (if
         * input from a file), or do end of file/macro processing.
         * In the latter case, jump back to restart from the top.
         */
        if (file->fp == NULL)               /* NULL if macro        */
        {
            popped++;
            recursion -= file->unrecur;
            if (recursion < 0)
                recursion = 0;
            infile = file->parent;          /* Unwind file chain    */
        }
        else                                /* Else get from a file */
        {
            if ((file->bptr = fgets(file->buffer, NBUFF, file->fp)) != NULL)
            {
#if OSL_DEBUG_LEVEL > 1
                if (debug > 1)              /* Dump it to stdout    */
                {
                    fprintf( pCppOut, "\n#line %d (%s), %s",
                             line, file->filename, file->buffer);
                }
#endif
                goto newline;               /* process the line     */
            }
            else
            {
                if( file->fp != stdin )
                    fclose(file->fp);           /* Close finished file  */
                if ((infile = file->parent) != NULL)
                {
                    /*
                     * There is an "ungotten" newline in the current
                     * infile buffer (set there by doinclude() in
                     * cpp1.c).  Thus, we know that the mainline code
                     * is skipping over blank lines and will do a
                     * #line at its convenience.
                     */
                    wrongline = TRUE;       /* Need a #line now     */
                }
            }
        }
        /*
         * Free up space used by the (finished) file or macro and
         * restart input from the parent file/macro, if any.
         */
        free(file->filename);               /* Free name and        */
        if (file->progname != NULL)         /* if a #line was seen, */
            free(file->progname);           /* free it, too.        */
        free((char*) file);                /* Free file space      */
        if (infile == NULL)                 /* If at end of file    */
            return EOF_CHAR;                /* Return end of file   */
        line = infile->line;                /* Reset line number    */
        goto get_from_file;                 /* Get from the top.    */
    }
    /*
     * Common processing for the new character.
     */
    if (c == DEF_MAGIC && file->fp != NULL) /* Don't allow delete   */
        goto newline;                       /* from a file          */
    if (file->parent != NULL)               /* Macro or #include    */
    {
        if (popped != 0)
            file->parent->unrecur += popped;
        else
        {
            recursion -= file->parent->unrecur;
            if (recursion < 0)
                recursion = 0;
            file->parent->unrecur = 0;
        }
    }
#if (HOST == SYS_UNIX)
    if (c == '\r')
        return get();                       /* DOS fuck             */
#endif
    if (c == '\n')                          /* Maintain current     */
        ++line;                             /* line counter         */
    if (instring)                           /* Strings just return  */
        return c;                           /* the character.       */
    else if (c == '/')                      /* Comment?             */
    {
        instring = TRUE;                    /* So get() won't loop  */

        c = get();
        if ((c != '*') && (c != '/'))       /* Next byte '*'?       */
        {
            instring = FALSE;               /* Nope, no comment     */
            unget();                        /* Push the char. back  */
            return '/';                     /* Return the slash     */
        }
        if (keepcomments)                   /* If writing comments  */
        {
            PUTCHAR('/');                   /* Write out the        */
            /*   initializer        */
            if( '*' == c )
                PUTCHAR('*');
            else
                PUTCHAR('/');
        }
        if( '*' == c )
        {
            for (;;)                         /* Eat a comment        */
            {
                c = get();
              test:
                if (keepcomments && c != EOF_CHAR)
                    cput(c);
                switch (c)
                {
                case EOF_CHAR:
                    cerror("EOF in comment", NULLST);
                    return EOF_CHAR;

                case '/':
                    if ((c = get()) != '*')     /* Don't let comments   */
                        goto test;              /* Nest.                */
#ifdef STRICT_COMMENTS
                    cwarn("Nested comments", NULLST);
#endif
                    /* Fall into * stuff    */
                case '*':
                    if ((c = get()) != '/')     /* If comment doesn't   */
                        goto test;              /* end, look at next    */
                    instring = FALSE;           /* End of comment,      */
                    if (keepcomments)           /* Put out the comment  */
                    {
                        cput(c);                /* terminator, too      */
                    }
                    /*
                     * A comment is syntactically "whitespace" --
                     * however, there are certain strange sequences
                     * such as
                     *          #define foo(x)  (something)
                     *                  foo|* comment *|(123)
                     *       these are '/' ^           ^
                     * where just returning space (or COM_SEP) will cause
                     * problems.  This can be "fixed" by overwriting the
                     * '/' in the input line buffer with ' ' (or COM_SEP)
                     * but that may mess up an error message.
                     * So, we peek ahead -- if the next character is
                     * "whitespace" we just get another character, if not,
                     * we modify the buffer.  All in the name of purity.
                     */
                    if (*file->bptr == '\n' || type[*file->bptr & 0xFF] == SPA)
                        goto newline;
                    return (file->bptr[-1] = ' ');

                case '\n':                      /* we'll need a #line   */
                    if (!keepcomments)
                        wrongline = TRUE;       /* later...             */
                default:                        /* Anything else is     */
                    break;                      /* Just a character     */
                }                               /* End switch           */
            }                                   /* End comment loop     */
        }
        else                                    /* c++ comment          */
        {
            for (;;)                            /* Eat a comment        */
            {
                c = get();
                if (keepcomments && c != EOF_CHAR)
                    cput(c);
                if( EOF_CHAR == c )
                    return EOF_CHAR;
                else if( '\n' == c )
                {
                    instring = FALSE;           /* End of comment,      */
                    return c;
                }
            }
        }
    }                                       /* End if in comment    */
    else if (!inmacro && c == '\\')         /* If backslash, peek   */
    {
        if ((c = get()) == '\n')            /* for a <nl>.  If so,  */
        {
            wrongline = TRUE;
            goto newline;
        }
        else                                /* Backslash anything   */
        {
            unget();                        /* Get it later         */
            return '\\';                    /* Return the backslash */
        }
    }
    else if (c == '\f' || c == VT)          /* Form Feed, Vertical  */
    {
        c = ' ';                            /* Tab are whitespace   */
    }
    else if (c == 0xef)                     /* eat up UTF-8 BOM */
    {
        if((c = get()) == 0xbb)
        {
            if((c = get()) == 0xbf)
            {
                c = get();
                return c;
            }
            else
            {
                unget();
                unget();
                return 0xef;
            }
        }
        else
        {
            unget();
            return 0xef;
        }
    }
    return c;                             /* Just return the char */
}

/*
 * Backup the pointer to reread the last character.  Fatal error
 * (code bug) if we backup too far.  unget() may be called,
 * without problems, at end of file.  Only one character may
 * be ungotten.  If you need to unget more, call ungetstring().
 */
void unget()
{
    FILEINFO* file;

    if ((file = infile) == NULL)
        return;                     /* Unget after EOF              */
    if (--file->bptr < file->buffer)
        cfatal("Too much pushback", NULLST);
    if (*file->bptr == '\n')        /* Ungetting a newline?         */
        --line;                     /* Unget the line number, too   */
}

/*
 * Push a string back on the input stream.  This is done by treating
 * the text as if it were a macro.
 */
void ungetstring(char* text)
{
    FILEINFO* file;
    file = getfile(strlen(text) + 1, "");
    strcpy(file->buffer, text);
}

/*
 * Get one character, absorb "funny space" after comments or
 * token concatenation
 */
int cget()
{
    int c;

    do
    {
        c = get();
    }
    while (c == TOK_SEP);
    return c;
}

/*
 * Error messages and other hacks.  The first byte of severity
 * is 'S' for string arguments and 'I' for int arguments.  This
 * is needed for portability with machines that have int's that
 * are shorter than  char *'s.
 */

/*
 * Print filenames, macro names, and line numbers for error messages.
 */
static void domsg(char* severity, char* format, void* arg)
{
    char* tp;
    FILEINFO* file;

    fprintf(stderr, "%sline %d, %s: ", MSG_PREFIX, line, &severity[1]);
    if (*severity == 'S')
        fprintf(stderr, format, (char*)arg);
    else
        fprintf(stderr, format, *((int*)arg) );
    putc('\n', stderr);
    if ((file = infile) == NULL)
        return;                             /* At end of file       */
    if (file->fp != NULL)
    {
        tp = file->buffer;                  /* Print current file   */
        fprintf(stderr, "%s", tp);          /* name, making sure    */
        if (tp[strlen(tp) - 1] != '\n')     /* there's a newline    */
            putc('\n', stderr);
    }
    while ((file = file->parent) != NULL)   /* Print #includes, too */
    {
        if (file->fp == NULL)
            fprintf(stderr, "from macro %s\n", file->filename);
        else
        {
            tp = file->buffer;
            fprintf(stderr, "from file %s, line %d:\n%s",
                    (file->progname != NULL)
                    ? file->progname : file->filename,
                    file->line, tp);
            if (tp[strlen(tp) - 1] != '\n')
                putc('\n', stderr);
        }
    }
}

/*
 * Print a normal error message, string argument.
 */
void cerror(char* format, char* sarg)
{
    domsg("SError", format, sarg);
    errors++;
}

/*
 * Print a normal error message, numeric argument.
 */
void cierror(char* format, int narg)
{
    domsg("IError", format, &narg);
    errors++;
}

/*
 * A real disaster
 */
void cfatal(char* format, char* sarg)
{
    domsg("SFatal error", format, sarg);
    exit(IO_ERROR);
}

/*
 * A non-fatal error, string argument.
 */
void cwarn(char* format, char* sarg)
{
    domsg("SWarning", format, sarg);
}

/*
 * A non-fatal error, numeric argument.
 */
void ciwarn(char* format, int narg)
{
    domsg("IWarning", format, &narg);
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */