File main.c changed (mode: 100644) (index b8a962b..122e155) |
... |
... |
static void init() |
61 |
61 |
fCurrent = NULL; |
fCurrent = NULL; |
62 |
62 |
fFilter = NULL; |
fFilter = NULL; |
63 |
63 |
fCondition = NULL; |
fCondition = NULL; |
|
64 |
|
|
|
65 |
|
ht_init(&available_flags, 11); |
|
66 |
|
ht_put(&available_flags, "rb", (void*)flag_rb); |
|
67 |
|
ht_put(&available_flags, "shadow", (void*)flag_shadowing); |
|
68 |
|
ht_put(&available_flags, "filter", (void*)flag_filter); |
64 |
69 |
} |
} |
65 |
70 |
|
|
66 |
71 |
static void dofile(FILE *fp, const char *name) |
static void dofile(FILE *fp, const char *name) |
|
... |
... |
printf( |
112 |
117 |
"pjass accepts some options:\n" |
"pjass accepts some options:\n" |
113 |
118 |
"pjass -h Display this help\n" |
"pjass -h Display this help\n" |
114 |
119 |
"pjass -v Display version information and exit\n" |
"pjass -v Display version information and exit\n" |
115 |
|
"pjass -e1 Ignores error level 1\n" |
|
116 |
|
"pjass +e2 Undo Ignore of error level 2\n" |
|
117 |
|
"pjass +s Enable strict downcast evaluation\n" |
|
118 |
|
"pjass -s Disable strict downcast evaluation\n" |
|
119 |
120 |
"pjass +rb Enable returnbug\n" |
"pjass +rb Enable returnbug\n" |
120 |
121 |
"pjass -rb Disable returnbug\n" |
"pjass -rb Disable returnbug\n" |
121 |
122 |
"pjass - Read from standard input (may appear in a list)\n" |
"pjass - Read from standard input (may appear in a list)\n" |
|
... |
... |
printf( |
126 |
127 |
printf("%s version %s\n", argv[0], VERSIONSTR); |
printf("%s version %s\n", argv[0], VERSIONSTR); |
127 |
128 |
exit(0); |
exit(0); |
128 |
129 |
} |
} |
129 |
|
if (strcmp(argv[i], "+s") == 0) { |
|
130 |
|
pjass_flags |= flag_strict; |
|
131 |
|
continue; |
|
132 |
|
} |
|
133 |
|
if (strcmp(argv[i], "-s") == 0) { |
|
134 |
|
pjass_flags &= ~flag_strict; |
|
135 |
|
continue; |
|
136 |
|
} |
|
137 |
|
if (strcmp(argv[i], "+rb") == 0) { |
|
138 |
|
pjass_flags |= flag_rb; |
|
139 |
|
continue; |
|
140 |
|
} |
|
141 |
|
if (strcmp(argv[i], "-rb") == 0) { |
|
142 |
|
pjass_flags &= ~flag_rb; |
|
143 |
|
continue; |
|
144 |
|
} |
|
|
130 |
|
if( isflag(argv[i], &available_flags)){ |
|
131 |
|
pjass_flags = updateflag(pjass_flags, argv[i], &available_flags); |
|
132 |
|
continue; |
|
133 |
|
} |
145 |
134 |
|
|
146 |
135 |
FILE *fp; |
FILE *fp; |
147 |
136 |
fp = fopen(argv[i], "rb"); |
fp = fopen(argv[i], "rb"); |
File misc.c changed (mode: 100644) (index a12bec6..3a98d99) |
... |
... |
struct funcdecl *fCurrent; |
51 |
51 |
struct funcdecl *fFilter, *fCondition; |
struct funcdecl *fFilter, *fCondition; |
52 |
52 |
|
|
53 |
53 |
|
|
|
54 |
|
struct hashtable available_flags; |
|
55 |
|
|
54 |
56 |
void yyerrorline (int errorlevel, int line, const char *s) |
void yyerrorline (int errorlevel, int line, const char *s) |
55 |
57 |
{ |
{ |
56 |
58 |
//if (showerrorlevel[errorlevel]) { |
//if (showerrorlevel[errorlevel]) { |
|
... |
... |
void checkeqtest(const struct typenode *a, const struct typenode *b) |
447 |
449 |
} |
} |
448 |
450 |
} |
} |
449 |
451 |
|
|
|
452 |
|
int isflag(char *txt, struct hashtable *flags){ |
|
453 |
|
txt++; // ignore +/- at the start |
|
454 |
|
void *flag = ht_lookup(flags, txt); |
|
455 |
|
return (int)flag; |
|
456 |
|
} |
450 |
457 |
|
|
451 |
|
int updateannotation(int cur, char *txt){ |
|
452 |
|
char sep[] = " \t\n"; |
|
453 |
|
char *ann; |
|
454 |
|
memset(txt, ' ', strlen("//#")); |
|
455 |
|
for(ann = strtok(txt, sep); ann; ann = strtok(NULL, sep)){ |
|
456 |
|
char *name = ann+1; |
|
457 |
|
char sgn = ann[0]; |
|
458 |
|
int flag = 0; |
|
459 |
|
|
|
460 |
|
if(! strcmp(name, "rb")){ |
|
461 |
|
flag = flag_rb; |
|
462 |
|
} else if(! strcmp(name, "filter") ){ |
|
463 |
|
flag = flag_filter; |
|
464 |
|
} |
|
|
458 |
|
int updateflag(int cur, char *txt, struct hashtable *flags){ |
|
459 |
|
char sgn = txt[0]; |
|
460 |
|
int flag = isflag(txt, flags); |
465 |
461 |
|
|
|
462 |
|
if( flag){ |
466 |
463 |
if(sgn == '+') { |
if(sgn == '+') { |
467 |
464 |
cur |= flag; |
cur |= flag; |
468 |
465 |
} else if(sgn == '-') { |
} else if(sgn == '-') { |
|
... |
... |
int updateannotation(int cur, char *txt){ |
471 |
468 |
} |
} |
472 |
469 |
return cur; |
return cur; |
473 |
470 |
} |
} |
|
471 |
|
|
|
472 |
|
int updateannotation(int cur, char *txt, struct hashtable *flags){ |
|
473 |
|
char sep[] = " \t\n"; |
|
474 |
|
memset(txt, ' ', strlen("//#")); |
|
475 |
|
for(char *ann = strtok(txt, sep); ann; ann = strtok(NULL, sep)){ |
|
476 |
|
cur = updateflag(cur, ann, flags); |
|
477 |
|
} |
|
478 |
|
return cur; |
|
479 |
|
} |
File misc.h changed (mode: 100644) (index de71687..e347434) |
... |
... |
enum errortype { |
35 |
35 |
warning, |
warning, |
36 |
36 |
}; |
}; |
37 |
37 |
|
|
38 |
|
enum flags { |
|
|
38 |
|
enum { |
39 |
39 |
flag_rb = 1 << 0, |
flag_rb = 1 << 0, |
40 |
|
flag_strict = 1 << 1, |
|
41 |
|
flag_filter = 1 << 2, |
|
|
40 |
|
flag_filter = 1 << 1, |
|
41 |
|
flag_shadowing = 1 << 2, |
42 |
42 |
}; |
}; |
43 |
43 |
|
|
44 |
44 |
|
|
|
... |
... |
void checkcomparison(const struct typenode *a, const struct typenode *b); |
65 |
65 |
void checkcomparisonsimple(const struct typenode *a); |
void checkcomparisonsimple(const struct typenode *a); |
66 |
66 |
void checkeqtest(const struct typenode *a, const struct typenode *b); |
void checkeqtest(const struct typenode *a, const struct typenode *b); |
67 |
67 |
|
|
68 |
|
int updateannotation(int cur, char *txt); |
|
|
68 |
|
int isflag(char *txt, struct hashtable *flags); |
|
69 |
|
int updateflag(int cur, char *txt, struct hashtable *flags); |
|
70 |
|
int updateannotation(int cur, char *txt, struct hashtable *flags); |
69 |
71 |
|
|
70 |
72 |
extern int pjass_flags; |
extern int pjass_flags; |
71 |
73 |
|
|
|
... |
... |
extern struct funcdecl *fCurrent; |
91 |
93 |
extern struct funcdecl *fFilter, *fCondition; |
extern struct funcdecl *fFilter, *fCondition; |
92 |
94 |
extern const struct typenode *retval; |
extern const struct typenode *retval; |
93 |
95 |
|
|
|
96 |
|
extern struct hashtable available_flags; |
|
97 |
|
|
94 |
98 |
#endif |
#endif |