-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathantic.c
1253 lines (1203 loc) · 29.1 KB
/
antic.c
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
/*-< ANTIC.C >------------------------------------------------------*--------*/
/* Jlint Version 1.11.1 (c) 1998 GARRET * ? */
/* (Java Lint) * /\| */
/* * / \ */
/* Created: 28-Apr-1998 K.A. Knizhnik * / [] \ */
/* Last update: 24-Feb-2000 E.G. Parmelan * GARRET */
/*------------------------------------------------------------------*--------*/
/* AntiC - C/C++/Java syntax verifier * */
/*------------------------------------------------------------------*--------*/
/* Edouard G. Parmelan e-mail address: [email protected] */
/*------------------------------------------------------------------*--------*/
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#ifdef _WIN32
#include <windows.h>
#else
#include <dirent.h>
#endif
#ifndef MAX_PATH
#define MAX_PATH 1024
#endif
#define VERSION "1.11.1"
char* file_name;
FILE* f;
int line;
int coln;
int force_java;
int token_line;
int token_coln;
int java;
int fall_thru_cmt;
int notreached_cmt;
int tab_size = 8;
int relax_else = 0;
/* Use only lowercase letters without spaces */
const char *fall_thru_cmt_text[] = {
"fallthr",
"nobreak"
};
/* Use only lowercase letters without spaces */
const char *notreached_cmt_text[] = {
"notreach",
"unreach",
};
#define items(a) (sizeof(a)/sizeof(*(a)))
#define nobreak
enum {
TKN_FOR = 257,
TKN_IF,
TKN_DO,
TKN_WHILE,
TKN_ELSE,
TKN_BREAK,
TKN_CASE,
TKN_CATCH,
TKN_FINALLY,
TKN_TRY,
TKN_SWITCH,
TKN_STR,
TKN_IDENT,
TKN_CTX,
TKN_ACCESS,
TKN_AND_OP,
TKN_OR_OP,
TKN_BIN_OP,
TKN_BIT_OP,
TKN_SET_OP,
TKN_CMP_OP,
TKN_EQU_OP,
TKN_INC_OP,
TKN_SHIFT_OP,
TKN_INCLUDE
};
typedef enum {
ctx_statement,
ctx_typedef,
ctx_body,
ctx_switch
} statement_ctx;
// functions
int get(void);
void unget(int ch);
void message_at(int myline, int mycoln, char* msg);
void message(char* msg);
int check_special_character(void);
int scan(void);
int scan_0(int cpp);
int parse_expression(void);
int parse_term(void);
int parse_switch_expression(void);
void parse_conditional_expression(int term_ch);
int parse_statement(int lex, int* stmt_line, int* stmt_coln,
int* pass_through, int* entry_point, statement_ctx ctx);
void parse_file(void);
int has_suffix(char* str, char* suffix);
void load_file(char* name, int recursive);
void usage(void);
int get(void)
{
int ch = getc(f);
if (ch == '\n') {
line += 1;
coln = 0;
} else if (ch == '\t') {
coln += tab_size;
coln -= coln % tab_size;
} else {
coln += 1;
}
return ch;
}
void unget(int ch)
{
ungetc(ch, f);
if (ch == '\n') {
line -= 1;
} else if (ch == '\t') {
coln -= tab_size;
} else {
coln -= 1;
}
}
int n_messages;
void message_at(int myline, int mycoln, char* msg)
{
printf("%s:%d:%d: %s\n", file_name, myline, mycoln, msg);
n_messages += 1;
}
void message(char* msg)
{
message_at(token_line, token_coln, msg);
}
int check_special_character(void)
{
int ch = get();
switch (ch) {
case '\n':
if (java) {
message("Newline within string\n");
}
break;
case 'n':
case 't':
case 'b':
case 'r':
case 'f':
case '\\':
case '"':
case '\'':
break;
case '0': case '1': case '2': case '3':
case '4': case '5': case '6': case '7':
ch = get();
if (ch >= '0' && ch <= '9') {
if (ch > '7') {
message("Octal digit expected");
}
ch = get();
if (ch >= '0' && ch <= '9') {
if (ch > '7') {
message("Octal digit expected");
}
ch = get();
if (ch >= '0' && ch <= '9') {
message("May be more than three octal digits are specified");
}
}
}
return ch;
case 'x':
if (java) {
message("Hexadecimal constant\n");
}
ch = get();
if (!isxdigit(ch)) {
message("Hexadecimal digit expected\n");
}
else while (isxdigit(ch)) {
ch = get();
}
return ch;
case 'u':
if (java) {
do {
ch = get();
} while (ch == 'u');
if (!isxdigit(ch)) {
message("Invalid character constant");
}
ch = get();
if (!isxdigit(ch)) {
message("Invalid character constant");
}
ch = get();
if (!isxdigit(ch)) {
message("Invalid character constant");
}
ch = get();
if (!isxdigit(ch)) {
message("Invalid character constant");
}
ch = get();
if (isxdigit(ch)) {
message("May be more than four hex digits "
"are specified for character constant");
}
return ch;
}
nobreak;
default:
message("May be incorrect escape sequence");
}
return get();
}
static void check_fall_thru(int ch)
{
static unsigned index[items(fall_thru_cmt_text)];
unsigned i;
if (ch == ' ' || ch == '-') {
return;
}
if (ch == 0) {
fall_thru_cmt = 0;
for (i = 0; i < items(fall_thru_cmt_text); i++)
index[i] = 0;
}
else if (!fall_thru_cmt) {
for (i = 0; i < items(index); i++) {
if (tolower(ch) == fall_thru_cmt_text[i][index[i]]) {
if (fall_thru_cmt_text[i][++(index[i])] == '\0') {
fall_thru_cmt = 1;
return;
}
}
else {
index[i] = 0;
}
}
}
}
static void check_notreached(int ch)
{
static unsigned index[items(notreached_cmt_text)];
unsigned i;
if (ch == ' ' || ch == '-') {
return;
}
if (ch == 0) {
notreached_cmt = 0;
for (i = 0; i < items(notreached_cmt_text); i++)
index[i] = 0;
}
else if (!notreached_cmt) {
for (i = 0; i < items(index); i++) {
if (tolower(ch) == notreached_cmt_text[i][index[i]]) {
if (notreached_cmt_text[i][++(index[i])] == '\0') {
notreached_cmt = 1;
return;
}
}
else {
index[i] = 0;
}
}
}
}
int scan_0(int cpp)
{
int ch;
unsigned i;
char buf[256];
skip_spaces:
do {
ch = get();
if ((ch == EOF) || (ch == '\n') || (ch == '#'))
return ch;
} while (isspace(ch));
token_coln = coln;
token_line = line;
switch (ch) {
case '/':
ch = get();
if (ch == '=') {
return TKN_SET_OP;
} else if (ch == '*') {
int nested = 0;
ch = get();
while (1) {
if (ch == EOF) {
message("Unclosed comments");
return EOF;
} else if (ch == '/') {
ch = get();
if (ch == '*') {
if (!nested)
message("Nested comments");
nested = 1;
}
} else if (ch == '*') {
ch = get();
if (ch == '/') {
goto skip_spaces;
}
} else {
check_fall_thru(ch);
check_notreached(ch);
ch = get();
}
}
} else if (ch == '/') {
while ((ch = get()) != '\n' && ch != EOF) {
check_fall_thru(ch);
check_notreached(ch);
}
return ch;
}
unget(ch);
return TKN_BIN_OP;
case '"':
ch = get();
while (ch != '"') {
switch (ch) {
case '\n':
message("Newline within string constant");
ch = get();
continue;
case EOF:
return EOF;
case '\\':
if (cpp == 2) {
ch = get();
}
else {
ch = check_special_character();
}
continue;
case '?':
if (!java) {
ch = get();
if (ch == '?') {
ch = get();
if (ch == '=' || ch == '/' || ch == '\'' ||
ch == '(' || ch == ')' || ch == '!' ||
ch == '<' || ch == '>')
{
message("Trigraph sequence inside string");
}
}
continue;
}
nobreak;
default:
ch = get();
}
}
return TKN_STR;
case '\'':
ch = get();
if (ch == '\\') {
ch = check_special_character();
} else {
ch = get();
}
if (ch != '\'') {
message("Multibyte character constants are not portable");
do {
ch = get();
if (ch == '\\')
get();
} while ((ch != '\'') && (ch != EOF));
}
return TKN_STR;
case ':':
if (!java) {
ch = get();
if (ch == ':') {
return TKN_CTX;
} else {
unget(ch);
return ':';
}
}
break;
case '+':
ch = get();
if (ch == '=') {
return TKN_SET_OP;
} else if (ch == '+') return TKN_INC_OP;
unget(ch);
return '+';
case '-':
ch = get();
if (ch == '=') {
return TKN_SET_OP;
} else if (!java && ch == '>') {
return TKN_ACCESS;
} else if (ch == '-') return TKN_INC_OP;
unget(ch);
return '-';
case '*':
ch = get();
if (ch == '=') {
return TKN_SET_OP;
}
unget(ch);
return '*';
case '%':
ch = get();
if (ch == '=') {
return TKN_SET_OP;
}
unget(ch);
return TKN_BIN_OP;
case '&':
ch = get();
if (ch == '=') {
return TKN_SET_OP;
} else if (ch == '&') {
return TKN_AND_OP;
}
unget(ch);
return '&';
case '|':
ch = get();
if (ch == '=') {
return TKN_SET_OP;
} else if (ch == '|') {
return TKN_OR_OP;
}
unget(ch);
return TKN_BIT_OP;
case '^':
ch = get();
if (ch == '=') {
return TKN_SET_OP;
}
unget(ch);
return TKN_BIT_OP;
case '>':
ch = get();
if (ch == '>') {
ch = get();
if (java && ch == '>') {
ch = get();
if (ch == '=') return TKN_SET_OP;
} else if (ch == '=') return TKN_SET_OP;
unget(ch);
return TKN_SHIFT_OP;
} else if (ch != '=') unget(ch);
return TKN_CMP_OP;
case '<':
ch = get();
if (ch == '<') {
ch = get();
if (ch == '=') return TKN_SET_OP;
unget(ch);
return TKN_SHIFT_OP;
} else if (ch != '=') unget(ch);
return TKN_CMP_OP;
case '=':
ch = get();
if (ch == '=') return TKN_EQU_OP;
unget(ch);
return '=';
case '!':
ch = get();
if (ch == '=') return TKN_CMP_OP;
unget(ch);
return '!';
default:
if (isalnum(ch) || ch == '_' || ch == '$') {
i = 0;
do {
if (i < sizeof(buf)) {
buf[i++] = ch;
}
ch = get();
} while (isalnum(ch) || ch == '_' || ch == '$');
unget(ch);
if (i < sizeof(buf)) {
buf[i] = '\0';
if (strcmp(buf, "if") == 0) return TKN_IF;
if (strcmp(buf, "for") == 0) return TKN_FOR;
if (strcmp(buf, "while") == 0) return TKN_WHILE;
if (strcmp(buf, "do") == 0) return TKN_DO;
if (strcmp(buf, "else") == 0) return TKN_ELSE;
if (strcmp(buf, "default") == 0) return TKN_CASE;
if (strcmp(buf, "case") == 0) return TKN_CASE;
if (strcmp(buf, "break") == 0) return TKN_BREAK;
if (strcmp(buf, "goto") == 0) return TKN_BREAK;
if (strcmp(buf, "throw") == 0) return TKN_BREAK;
if (strcmp(buf, "return") == 0) return TKN_BREAK;
if (strcmp(buf, "continue") == 0) return TKN_BREAK;
if (strcmp(buf, "catch") == 0) return TKN_CATCH;
if (strcmp(buf, "try") == 0) return TKN_TRY;
if (strcmp(buf, "finally") == 0) return TKN_FINALLY;
if (strcmp(buf, "switch") == 0) return TKN_SWITCH;
if (!java && strcmp(buf, "nobreak") == 0) return TKN_BREAK;
if ((cpp == 1) && strcmp(buf, "include") == 0) return TKN_INCLUDE;
}
if (isdigit((unsigned char)buf[0]) && buf[i-1] == 'l') {
message("May be 'l' is used instead of '1' at the end of "
"integer constant");
}
return TKN_IDENT;
}
}
return ch;
}
int scan()
{
int ch;
check_fall_thru(0);
check_notreached(0);
while (1) {
ch = scan_0(0);
if (ch == '#') {
int cpp = 1;
do {
ch = scan_0(cpp);
if (cpp == 1 && ch == TKN_INCLUDE)
cpp = 2;
if (ch == '\\')
scan_0(cpp);
} while ((ch != '\n') && (ch != EOF));
}
else if (ch == '\\') {
message("Unexpected character '\\'");
}
else if (ch != '\n')
return ch;
}
}
int parse_binary_operation(int* n_bin_ops);
int parse_expression(void)
{
int lex, prev_op = 0;
while (1) {
int n_bin_ops;
lex = parse_binary_operation(&n_bin_ops);
if (lex == '&') lex = TKN_BIT_OP;
if (lex == TKN_CMP_OP || lex == TKN_BIT_OP || lex == TKN_AND_OP
|| lex == TKN_OR_OP || lex == TKN_SET_OP || lex == '='
|| lex == TKN_EQU_OP || lex == ',' || lex == '?' || lex == ':')
{
if (!java && lex == TKN_CMP_OP && prev_op == TKN_CMP_OP) {
prev_op = 0; /* may be template */
continue;
}
if (((lex == TKN_CMP_OP || lex == TKN_EQU_OP) && prev_op == TKN_BIT_OP)
|| (lex == TKN_BIT_OP
&& (n_bin_ops != 0 || prev_op == TKN_AND_OP
|| prev_op == TKN_OR_OP || prev_op == TKN_CMP_OP || prev_op == TKN_EQU_OP))
|| ((lex == TKN_AND_OP || lex == TKN_OR_OP)
&& (prev_op == TKN_BIT_OP || prev_op == '=' ||
prev_op == TKN_SET_OP))
|| ((lex == '=' || lex == TKN_SET_OP)
&& (prev_op == TKN_AND_OP || prev_op == TKN_OR_OP)))
{
message("May be wrong assumption about operators priorities");
}
else if (lex == TKN_AND_OP && prev_op == TKN_OR_OP) {
message("May be wrong assumption about logical "
"operators precedence");
}
prev_op = lex;
} else return lex;
}
}
void parse_block(int* pass_through, statement_ctx ctx);
int parse_term(void)
{
int lex;
while ((lex = scan()) == '&' || lex == '+' || lex == '-' || lex == '*'
|| lex == '!' || lex == TKN_INC_OP || lex == TKN_CTX || lex == '~');
while (lex == '.' || lex == TKN_INC_OP || lex == TKN_IDENT
|| lex == TKN_ACCESS || lex == '(' || lex == '[' || lex == TKN_STR
|| lex == TKN_CTX)
{
if (lex == '(') {
int lpr_line = token_line;
int lpr_coln = token_coln;
lex = parse_expression();
if (lex != ')') {
message_at(lpr_line, lpr_coln, "Unbalanced '('");
return lex;
}
} else if (lex == '[') {
int lbr_line = token_line;
int lbr_coln = token_coln;
lex = parse_expression();
if (lex != ']') {
message_at(lbr_line, lbr_coln, "Unbalanced '['");
return lex;
}
}
lex = scan();
}
return lex;
}
int parse_switch_expression(void)
{
int lex = scan();
int lpr_line = token_line;
int lpr_coln = token_coln;
if (lex != '(') {
message_at(lpr_line, lpr_coln, "'(' expected");
return lex;
}
lex = parse_expression();
if (lex != ')') {
message_at(lpr_line, lpr_coln, "Unbalanced '('");
}
return scan();
}
int parse_binary_operation(int* n_bin_ops)
{
int lex;
int prev_op = 0;
*n_bin_ops = 0;
while (1) {
lex = parse_term();
if (lex == '*' || lex == '-' || lex == '+') lex = TKN_BIN_OP;
if (lex == TKN_SHIFT_OP) {
if (prev_op == TKN_BIN_OP) {
message("May be wrong assumption about shift operator priority");
}
} else if (lex == TKN_BIN_OP) {
if (prev_op == TKN_SHIFT_OP) {
message("May be wrong assumption about shift operator priority");
}
} else if (java && lex == '{') { /* anonymous class */
int pass_through = 1;
parse_block(&pass_through, ctx_typedef);
} else {
return lex;
}
prev_op = lex;
*n_bin_ops += 1;
}
}
void parse_conditional_expression(int term_ch)
{
int bit_op_line = 0;
int bit_op_coln = 0;
int n_bin_ops;
int lex;
int expr_line = 0;
int expr_coln = 0;
int prev_op = 0;
if (term_ch == ')') {
if (scan() != '(') {
message("'(' expected");
return;
}
expr_line = token_line;
expr_coln = token_coln;
}
while ((lex = parse_binary_operation(&n_bin_ops)) != term_ch) {
if (lex == '&') lex = TKN_BIT_OP;
if (lex == EOF) {
message_at(expr_line, expr_coln, term_ch == ')'
? "Unbalanced parentheses"
: "No ')' after FOR condition");
return;
}
if (lex == '=') {
message("May be '=' used instead of '=='");
} else if (lex == TKN_SET_OP) {
message("May be skipped parentheses around assign operator");
} else if (lex == TKN_BIT_OP) {
if (n_bin_ops != 0 || prev_op == TKN_AND_OP
|| prev_op == TKN_OR_OP || prev_op == TKN_EQU_OP || prev_op == TKN_CMP_OP)
{
message("May be wrong assumption about bit operation priority");
}
bit_op_line = token_line;
bit_op_coln = token_coln;
prev_op = TKN_BIT_OP;
continue;
} else if (lex == TKN_AND_OP && prev_op == TKN_OR_OP) {
message("May be wrong assumption about logical operators precedence");
} else if (lex != '?' && lex != ':' && lex != ',' && lex != TKN_CMP_OP
&& lex != TKN_EQU_OP && lex != TKN_AND_OP && lex != TKN_OR_OP)
{
message("Syntax error");
}
if (prev_op == TKN_BIT_OP) {
message_at(bit_op_line, bit_op_coln,
"May be wrong assumption about operators priorities");
}
prev_op = lex;
}
}
int parse_statement(int lex, int* stmt_line, int* stmt_coln,
int* pass_through, int* entry_point, statement_ctx ctx)
{
int next_stmt_line, next_stmt_coln;
int if_coln;
int stmt;
int if_pass_through, else_pass_through;
int statement_with_label = 0;
int n_labels_before;
int entries;
static int n_labels;
int miss_equal;
classify_statement:
miss_equal = 0;
switch (lex) {
case '{':
parse_block(pass_through, ctx);
nobreak;
case ';':
lex = scan();
*stmt_line = token_line;
*stmt_coln = token_coln;
return lex;
case TKN_FOR:
if ((lex = scan()) != '(') {
message("No '(' after FOR");
return lex;
}
lex = parse_expression();
if (lex != ';') {
message("No ';' after FOR initialization part");
return lex;
}
parse_conditional_expression(';');
lex = parse_expression();
if (lex != ')') {
message("No ')' after FOR increment part");
return lex;
}
goto loop_body;
case TKN_WHILE:
parse_conditional_expression(')');
loop_body:
stmt = scan();
next_stmt_line = token_line;
next_stmt_coln = token_coln;
if_pass_through = 0;
n_labels_before = n_labels;
if (stmt != '{' && next_stmt_coln <= *stmt_coln) {
message_at(next_stmt_line, next_stmt_coln,
"May be wrong assumption about loop body (semicolon missed)");
}
lex = parse_statement(stmt, &next_stmt_line, &next_stmt_coln,
&if_pass_through, &entries, ctx_statement);
if (if_pass_through) {
*pass_through = 1;
}
if (!java && n_labels != n_labels_before) {
*entry_point = 1;
}
if (stmt != '{' && lex != '}' && next_stmt_coln > *stmt_coln) {
message_at(next_stmt_line, next_stmt_coln,
"May be wrong assumption about loop body");
}
break;
case TKN_SWITCH:
stmt = parse_switch_expression();
next_stmt_line = token_line;
next_stmt_coln = token_coln;
if (stmt != '{') {
message_at(next_stmt_line, next_stmt_coln,
"Suspicios SWITCH without body");
}
if_pass_through = 0;
lex = parse_statement(stmt, &next_stmt_line, &next_stmt_coln,
&if_pass_through, &entries, ctx_switch);
*pass_through = 1;
break;
case TKN_IF:
if_coln = *stmt_coln;
parse_conditional_expression(')');
stmt = scan();
next_stmt_line = token_line;
next_stmt_coln = token_coln;
else_pass_through = if_pass_through = *pass_through;
lex = parse_statement(stmt, &next_stmt_line, &next_stmt_coln,
&if_pass_through, &entries, ctx_statement);
if (if_pass_through) {
*pass_through = 1;
}
if (lex == TKN_ELSE) {
lex = scan();
if (next_stmt_coln < if_coln) {
/* handle IF ... ELSE FOO where FOO is aligned with IF */
if (!relax_else || (token_coln < if_coln)) {
message_at(next_stmt_line, next_stmt_coln,
"May be wrong assumption about ELSE branch "
"association");
}
}
next_stmt_coln = token_coln;
if (lex == TKN_IF && next_stmt_line == token_line) {
if (if_coln < token_coln) {
next_stmt_coln = if_coln;
}
}
next_stmt_line = token_line;
lex = parse_statement(lex, &next_stmt_line, &next_stmt_coln,
&else_pass_through, &entries, ctx_statement);
if (!if_pass_through && !else_pass_through) {
*pass_through = 0;
} else if (else_pass_through) {
*pass_through = 1;
}
}
else if (stmt == ';'
|| (stmt != '{' && lex != '}' && next_stmt_coln > if_coln))
{
message_at(next_stmt_line, next_stmt_coln,
"May be wrong assumption about IF body");
}
break;
case TKN_TRY:
lex = scan();
next_stmt_line = token_line;
next_stmt_coln = token_coln;
if_pass_through = *pass_through;
else_pass_through = 0;
lex = parse_statement(lex, &next_stmt_line, &next_stmt_coln,
&if_pass_through, &entries, ctx_statement);
else_pass_through |= if_pass_through;
while ((lex == TKN_CATCH) || (lex == TKN_FINALLY)) {
/* It is really not condition expression, but list of
* catch paramters, but is possible to use this function to skip
* catch paramter list.
*/
if (lex == TKN_CATCH)
parse_conditional_expression(')');
if_pass_through = *pass_through;
lex = parse_statement(scan(), &next_stmt_line, &next_stmt_coln,
&if_pass_through, &entries, ctx_statement);
else_pass_through |= if_pass_through;
}
*pass_through = else_pass_through;
break;
case TKN_DO:
lex = scan();
next_stmt_line = token_line;
next_stmt_coln = token_coln;
n_labels_before = n_labels;
if_pass_through = 0;
lex = parse_statement(lex, &next_stmt_line, &next_stmt_coln,
&if_pass_through, &entries, ctx_statement);
if (if_pass_through) {
*pass_through = 1;
}
if (!java && n_labels != n_labels_before) {
*entry_point = 1;
}
if (lex != TKN_WHILE) {
message_at(next_stmt_line, next_stmt_coln,
"No WHILE for DO");
}
parse_conditional_expression(')');
lex = scan();
if (lex != ';') {
message_at(token_line, token_coln, "No ';' after DO WHILE");
}
lex = scan();
*stmt_line = token_line;
*stmt_coln = token_coln;
return lex;
case TKN_CASE:
if (ctx != ctx_switch) {
message_at(*stmt_line, *stmt_coln, "Suspicious CASE/DEFAULT");
}
else if (!statement_with_label && !fall_thru_cmt && *pass_through) {
message_at(*stmt_line, *stmt_coln,
"Possible miss of BREAK before CASE/DEFAULT");
}
while ((lex = scan()) != ':') {
if (lex == EOF) {
message_at(*stmt_line, *stmt_coln, "No ':' after CASE");
return EOF;
}
}
statement_with_label = 1;
*entry_point = 1;
*pass_through = 1;
lex = scan();
*stmt_line = token_line;
*stmt_coln = token_coln;
goto classify_statement;
case TKN_BREAK:
*pass_through = 0;
goto parse_statement;
case TKN_CATCH:
case TKN_FINALLY:
message_at(*stmt_line, *stmt_coln, "Suspicious CATCH/FINALLY");
if (lex == TKN_CATCH)
parse_conditional_expression(')');
*pass_through = 1;
lex = scan();
*stmt_line = token_line;
*stmt_coln = token_coln;
goto classify_statement;
case TKN_IDENT:
lex = scan();
if (lex == ':') {
n_labels += 1;
statement_with_label = 1;
*entry_point = 1;
*pass_through = 1;
lex = scan();
*stmt_line = token_line;
*stmt_coln = token_coln;
goto classify_statement;
}
miss_equal = 1;
nobreak;
parse_statement:
default:
/* ctx = ctx_typedef; */
while (lex != ';') {
switch (lex) {
case EOF:
message_at(*stmt_line, *stmt_coln,
"Statement not terminated by ';'");
return EOF;
case '(':
lex = parse_expression();
if (lex != ')') {
message("')' expected");
return lex;
}
ctx = ctx_body;
miss_equal = 0;
break;
case '[':
lex = parse_expression();
if (lex != ']') {
message("']' expected");
return lex;
}
break;
case ')':
message("Unbalanced ')' in statement");
lex = scan();
*stmt_line = token_line;
*stmt_coln = token_coln;
goto classify_statement;
case TKN_EQU_OP:
if (miss_equal && ctx != ctx_typedef)
message("Possible miss of '='");
miss_equal = 0;
break;
case TKN_SET_OP:
case '=':
lex = parse_expression();
miss_equal = 0;
continue;
case '}':
*stmt_line = token_line;
*stmt_coln = token_coln;
return lex;