File blocks.h changed (mode: 100644) (index 7e06325..fe2c87b) |
... |
... |
void block_push(int lineno, enum block_type type); |
13 |
13 |
bool block_pop(enum block_type type, char *buf, size_t len); |
bool block_pop(enum block_type type, char *buf, size_t len); |
14 |
14 |
void block_missing_error(char *msg, size_t len); |
void block_missing_error(char *msg, size_t len); |
15 |
15 |
|
|
16 |
|
#endif |
|
|
16 |
|
#endif |
|
17 |
|
|
File grammar.y changed (mode: 100644) (index d468d76..3c0c7a1) |
... |
... |
statement: newline { $$.ty = gEmpty; } |
482 |
482 |
} |
} |
483 |
483 |
| SET rid LBRACKET expr RBRACKET EQUALS expr newline{ |
| SET rid LBRACKET expr RBRACKET EQUALS expr newline{ |
484 |
484 |
const struct typeandname *tan = getVariable($2.str); |
const struct typeandname *tan = getVariable($2.str); |
485 |
|
char buf[1024]; |
|
486 |
485 |
$$.ty = gAny; |
$$.ty = gAny; |
487 |
486 |
if (tan->ty != gAny) { |
if (tan->ty != gAny) { |
488 |
487 |
checkarrayindex(tan->name, $4.ty, lineno -1); |
checkarrayindex(tan->name, $4.ty, lineno -1); |
File misc.c changed (mode: 100644) (index 9de9d46..d8c7e95) |
... |
... |
struct hashtable uninitialized_globals; |
48 |
48 |
struct hashtable string_literals; |
struct hashtable string_literals; |
49 |
49 |
|
|
50 |
50 |
size_t stringlit_buffsize = 2048; |
size_t stringlit_buffsize = 2048; |
51 |
|
char stringlit_buffer[2048] = {0}; |
|
|
51 |
|
char stringlit_buff[2048] = {0}; |
52 |
52 |
size_t stringlit_length = 0; |
size_t stringlit_length = 0; |
53 |
53 |
|
|
54 |
54 |
struct tree stringlit_hashes; |
struct tree stringlit_hashes; |
File misc.h changed (mode: 100644) (index d082216..9aec719) |
... |
... |
extern struct hashtable shadowed_variables; |
136 |
136 |
|
|
137 |
137 |
extern struct tree stringlit_hashes; |
extern struct tree stringlit_hashes; |
138 |
138 |
|
|
139 |
|
size_t stringlit_buffsize; |
|
140 |
|
char stringlit_buff[2048]; |
|
141 |
|
size_t stringlit_length; |
|
|
139 |
|
extern size_t stringlit_buffsize; |
|
140 |
|
extern char stringlit_buff[2048]; |
|
141 |
|
extern size_t stringlit_length; |
142 |
142 |
|
|
143 |
143 |
union node checkfunctionheader(const char *fnname, struct paramlist *pl, const struct typenode *retty); |
union node checkfunctionheader(const char *fnname, struct paramlist *pl, const struct typenode *retty); |
144 |
144 |
union node checkfunccall(const char *fnname, struct paramlist *pl); |
union node checkfunccall(const char *fnname, struct paramlist *pl); |
|
... |
... |
union node checkarraydecl(struct typeandname *tan); |
146 |
146 |
union node checkvartypedecl(struct typeandname *tan); |
union node checkvartypedecl(struct typeandname *tan); |
147 |
147 |
void checkwrongshadowing(const struct typeandname *tan, int linemod); |
void checkwrongshadowing(const struct typeandname *tan, int linemod); |
148 |
148 |
void checkmodulo(const struct typenode *a, const struct typenode *b); |
void checkmodulo(const struct typenode *a, const struct typenode *b); |
|
149 |
|
void checkallshadowing(struct typeandname *tan); |
|
150 |
|
void checkarrayindex(const char *name, const struct typenode *ty, int lineno); |
149 |
151 |
|
|
150 |
152 |
void str_append(char *buf, const char *str, size_t buf_size); |
void str_append(char *buf, const char *str, size_t buf_size); |
151 |
153 |
|
|
File token.l changed (mode: 100644) (index 5b80751..3557a23) |
... |
... |
TABS [\x01-\x09\x0B\x0C\x0E-\x1F] |
103 |
103 |
} |
} |
104 |
104 |
<INSTRING>["] { BEGIN(INITIAL); return STRINGLIT; } |
<INSTRING>["] { BEGIN(INITIAL); return STRINGLIT; } |
105 |
105 |
<INSTRING>\\[btrnf"\\] { |
<INSTRING>\\[btrnf"\\] { |
106 |
|
strncat(stringlit_buff, yytext, stringlit_buffsize); |
|
|
106 |
|
str_append(stringlit_buff, yytext, stringlit_buffsize); |
107 |
107 |
} |
} |
108 |
108 |
<INSTRING>\\(.|[\r\n]) { yyerrorline(syntaxerror, lineno, "Invalid escape character sequence"); } |
<INSTRING>\\(.|[\r\n]) { yyerrorline(syntaxerror, lineno, "Invalid escape character sequence"); } |
109 |
109 |
|
|
110 |
110 |
<INSTRING>\r?\n { |
<INSTRING>\r?\n { |
111 |
|
strncat(stringlit_buff, yytext, stringlit_buffsize); |
|
|
111 |
|
str_append(stringlit_buff, yytext, stringlit_buffsize); |
112 |
112 |
lineno++; |
lineno++; |
113 |
113 |
isconstant = 0; |
isconstant = 0; |
114 |
114 |
} |
} |
115 |
115 |
<INSTRING>\r { |
<INSTRING>\r { |
116 |
|
strncat(stringlit_buff, yytext, stringlit_buffsize); |
|
|
116 |
|
str_append(stringlit_buff, yytext, stringlit_buffsize); |
117 |
117 |
lineno++; |
lineno++; |
118 |
118 |
isconstant = 0; |
isconstant = 0; |
119 |
119 |
} |
} |
120 |
|
<INSTRING>. { strncat(stringlit_buff, yytext, stringlit_buffsize); } |
|
|
120 |
|
<INSTRING>. { str_append(stringlit_buff, yytext, stringlit_buffsize); } |
121 |
121 |
|
|
122 |
122 |
|
|
123 |
123 |
{NEWLINE} { |
{NEWLINE} { |