summarylogtreecommitdiffstats
path: root/0025-Parse-typeof-keyword.patch
blob: 9b5c341c95ab7f94e69aeaf6c708a0a7b7445af6 (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
From 40cea5e11ba6c7f36903b96c934eaa461064f790 Mon Sep 17 00:00:00 2001
From: Sergei Litvin <litvindev@gmail.com>
Date: Fri, 23 Jun 2017 22:47:27 +0300
Subject: [PATCH 25/33] Parse typeof keyword

squash! Parse typeof keyword
---
 src/cgram.y    | 38 +++++++++++++++++++++++++++-----------
 src/globals.c  |  4 +++-
 src/javagram.y |  2 +-
 src/options.c  |  6 ++----
 src/yaccgram.y | 35 ++++++++++++++++++++++++++++++-----
 5 files changed, 63 insertions(+), 22 deletions(-)

diff --git a/src/cgram.y b/src/cgram.y
index a0559f7..1ef4600 100644
--- a/src/cgram.y
+++ b/src/cgram.y
@@ -35,7 +35,6 @@
 #include "head.h"
 #include "proto.h"      /*SBD*/
 
-
 #define YYDEBUG 0
 #define yyerror styyerror
 #define yyErrorRecovery styyErrorRecovery
@@ -106,7 +105,7 @@
 
 /* c-special */
 %token TYPEDEF EXTERN AUTO REGISTER SIGNED UNSIGNED STRUCT UNION ENUM
-%token SIZEOF RESTRICT _ATOMIC _BOOL _THREADLOCAL _NORETURN
+%token SIZEOF TYPEOF RESTRICT _ATOMIC _BOOL _THREADLOCAL _NORETURN
 /* hmm */
 %token ANONYME_MOD
 
@@ -190,7 +189,6 @@
 /* commons */
 %token IDENTIFIER CONSTANT LONG_CONSTANT
 %token FLOAT_CONSTANT DOUBLE_CONSTANT
-
 %token STRING_LITERAL 
 %token LINE_TOK
 %token IDENT_TO_COMPLETE		/* identifier under cursor */
@@ -207,8 +205,6 @@
 
 %token LAST_TOKEN
 
-
-
 /* *************************************************************** */
 
 %union {
@@ -280,7 +276,7 @@
 %type <bbsymbolPositionLstPair> parameter_identifier_list identifier_list
 %type <bbpositionLst> argument_expr_list argument_expr_list_opt
 
-%type <bbtypeModif> type_specifier2 
+%type <bbtypeModif> type_specifier2 typeof_specifier
 %type <bbtypeModif> struct_or_union_specifier struct_or_union_define_specifier
 %type <bbtypeModif> enum_specifier enum_define_specifier
 %type <bbtypeModif> type_name abstract_declarator abstract_declarator2
@@ -751,6 +747,9 @@ declaration_specifiers0
 	| type_specifier2										{
 		$$.d  = typeSpecifier2($1.d);
 	}
+	| typeof_specifier										{
+		$$.d = typeSpecifier2($1.d);
+	}
 	| declaration_modality_specifiers  user_defined_type	{ 
 		assert($2.d);
 		assert($2.d->sd);
@@ -765,9 +764,9 @@ declaration_specifiers0
 		$$.d = $1.d;
 		declTypeSpecifier2($1.d,$2.d);
 	}
-	| declaration_specifiers0 type_modality_specifier		{
+	| declaration_modality_specifiers typeof_specifier		{
 		$$.d = $1.d;
-		declTypeSpecifier1($1.d,$2.d);
+		declTypeSpecifier2($1.d,$2.d);
 	}
 	| declaration_specifiers0 type_specifier1				{
 		$$.d = $1.d;
@@ -781,6 +780,10 @@ declaration_specifiers0
 		$$.d = $1.d;
 		$$.d->b.storage = $2.d; 
 	}
+	| declaration_specifiers0 type_modality_specifier		{
+		$$.d = $1.d;
+		declTypeSpecifier1($1.d,$2.d);
+	}
 	| declaration_specifiers0 function_specifier			{
 		$$.d = $1.d;
 	}
@@ -899,6 +902,15 @@ type_specifier2
 	| enum_specifier				/* { $$.d = $1.d; } */
 	;
 
+typeof_specifier
+	: TYPEOF '(' type_name ')'								{
+		$$.d  = $3.d;
+	}
+	| TYPEOF '(' expr ')'									{
+		$$.d = $3.d.t;
+	}
+	;
+
 function_specifier
 	: INLINE
 	| _NORETURN
@@ -1174,6 +1186,9 @@ type_specifier_list0
 	| type_specifier2										{
 		$$.d  = typeSpecifier2($1.d);
 	}
+	| typeof_specifier										{
+		$$.d  = typeSpecifier2($1.d);
+	}
 	| type_mod_specifier_list user_defined_type				{ 
 		assert($2.d);
 		assert($2.d->sd);
@@ -1189,6 +1204,10 @@ type_specifier_list0
 		$$.d = $1.d;
 		declTypeSpecifier2($1.d,$2.d);
 	}
+	| type_mod_specifier_list typeof_specifier		{
+		$$.d = $1.d;
+		declTypeSpecifier2($1.d,$2.d);
+	}
 	| type_specifier_list0 type_modality_specifier		{
 		$$.d = $1.d;
 		declTypeSpecifier1($1.d,$2.d);
@@ -1919,6 +1938,3 @@ void makeCCompletions(char *s, int len, S_position *pos) {
 
 	LICENSE_CHECK();
 }
-
-
-
diff --git a/src/globals.c b/src/globals.c
index ade4b4b..66ba837 100644
--- a/src/globals.c
+++ b/src/globals.c
@@ -535,6 +535,7 @@ S_tokenNameIni s_tokenNameIniTab[] = {
 	{"register",	REGISTER		,LAN_C | LAN_YACC | LAN_CCC},
 	{"signed",		SIGNED			,LAN_C | LAN_YACC | LAN_CCC},
 	{"sizeof",		SIZEOF			,LAN_C | LAN_YACC | LAN_CCC},
+	{"typeof",		TYPEOF			,LAN_C | LAN_YACC | LAN_CCC},
 	{"struct",		STRUCT			,LAN_C | LAN_YACC | LAN_CCC},
 	{"typedef",		TYPEDEF			,LAN_C | LAN_YACC | LAN_CCC},
 	{"union", 		UNION			,LAN_C | LAN_YACC | LAN_CCC},
@@ -723,7 +724,8 @@ S_tokenNameIni s_tokenNameIniTab2[] = {
 	{"__threadd",		_THREADLOCAL	,LAN_C | LAN_YACC | LAN_CCC},
 	{"__restrict",		RESTRICT		,LAN_C | LAN_YACC | LAN_CCC},
 	{"__restrict__",	RESTRICT		,LAN_C | LAN_YACC | LAN_CCC},
-	{"__extension__",	ANONYME_MOD		,LAN_C | LAN_YACC | LAN_CCC},
+	{"__typeof",		TYPEOF			,LAN_C | LAN_YACC | LAN_CCC},
+	{"__typeof__",		TYPEOF			,LAN_C | LAN_YACC | LAN_CCC},
 	{"__near",			ANONYME_MOD		,LAN_C | LAN_YACC | LAN_CCC},
 	{"__far",			ANONYME_MOD		,LAN_C | LAN_YACC | LAN_CCC},
 	{"__pascal",		ANONYME_MOD		,LAN_C | LAN_YACC | LAN_CCC},
diff --git a/src/javagram.y b/src/javagram.y
index 4dcf023..0f8ba9d 100644
--- a/src/javagram.y
+++ b/src/javagram.y
@@ -156,7 +156,7 @@
 
 /* c-special */
 %token TYPEDEF EXTERN AUTO REGISTER SIGNED UNSIGNED STRUCT UNION ENUM
-%token SIZEOF RESTRICT _ATOMIC _BOOL _THREADLOCAL _NORETURN
+%token SIZEOF TYPEOF RESTRICT _ATOMIC _BOOL _THREADLOCAL _NORETURN
 /* hmm */
 %token ANONYME_MOD
 
diff --git a/src/options.c b/src/options.c
index 2c40574..b02f578 100644
--- a/src/options.c
+++ b/src/options.c
@@ -40,9 +40,8 @@ static char *s_standardCOptions[] = {
 #endif													/*SBD*/
 #ifdef __mygnulinux__	/*SBD*/
 	"-D__attribute__(xxx) ",
+	"-D__extension__ ",
 	"-D__alignof__(xxx) 8",
-	"-Dtypeof(xxx) int",
-	"-D__typeof__(xxx) int",
 	"-D__gnuc_va_list void",
 	"-D__builtin_va_list void",
 	"-D__builtin_va_start(v, l) ",
@@ -138,9 +137,8 @@ static char *s_standardCccOptions[] = {
 	"-I", "/usr/include/",
 #ifdef __mygnulinux__	/*SBD*/
 	"-D__attribute__(xxx) ",
+	"-D__extension__ ",
 	"-D__alignof__(xxx) 8",
-	"-Dtypeof(xxx) int",
-	"-D__typeof__(xxx) int",
 	"-D__gnuc_va_list void",
 	"-D__builtin_va_list void",
 	"-D__builtin_va_start(v, l) ",
diff --git a/src/yaccgram.y b/src/yaccgram.y
index 8773040..35a51f9 100644
--- a/src/yaccgram.y
+++ b/src/yaccgram.y
@@ -37,6 +37,7 @@
 	assert(s_opt.taskRegime);\
 	if (s_opt.taskRegime == RegimeEditServer) {\
 		s_structRecordCompletionType = xxx;\
+		assert(s_structRecordCompletionType);\
 	}\
 }
 #define SetStrCompl2(xxx) {\
@@ -44,6 +45,7 @@
 	if (s_opt.taskRegime == RegimeEditServer) {\
 		if (xxx->m==TypePointer || xxx->m==TypeArray) {\
 			s_structRecordCompletionType = xxx->next;\
+			assert(s_structRecordCompletionType);\
 		} else s_structRecordCompletionType = &s_errorModifier;\
 	}\
 }
@@ -109,7 +111,7 @@ static void addYaccSymbolReference C_ARG((S_idIdent *name, int usage));
 
 /* c-special */
 %token TYPEDEF EXTERN AUTO REGISTER SIGNED UNSIGNED STRUCT UNION ENUM
-%token SIZEOF RESTRICT _ATOMIC _BOOL _THREADLOCAL _NORETURN
+%token SIZEOF TYPEOF RESTRICT _ATOMIC _BOOL _THREADLOCAL _NORETURN
 /* hmm */
 %token ANONYME_MOD
 
@@ -281,7 +283,7 @@ static void addYaccSymbolReference C_ARG((S_idIdent *name, int usage));
 %type <bbsymbolPositionLstPair> parameter_identifier_list identifier_list
 %type <bbpositionLst> argument_expr_list argument_expr_list_opt
 
-%type <bbtypeModif> type_specifier2 
+%type <bbtypeModif> type_specifier2 typeof_specifier
 %type <bbtypeModif> struct_or_union_specifier struct_or_union_define_specifier
 %type <bbtypeModif> enum_specifier enum_define_specifier
 %type <bbtypeModif> type_name abstract_declarator abstract_declarator2
@@ -476,7 +478,7 @@ any_token_not_perc_par:
 	| DOUBLE | ELSE | FLOAT | FOR | GOTO | IF | INT | LONG | RETURN | SHORT
 	| SWITCH | VOID | VOLATILE | WHILE
 	| TYPEDEF | EXTERN | AUTO | REGISTER | SIGNED | UNSIGNED | STRUCT | UNION 
-	| ENUM | SIZEOF | RESTRICT | _ATOMIC | _BOOL | _THREADLOCAL | _NORETURN
+	| ENUM | SIZEOF | TYPEOF | RESTRICT | _ATOMIC | _BOOL | _THREADLOCAL | _NORETURN
 	| ANONYME_MOD | TOKEN
 	| ABSTRACT | BOOLEAN | BYTE | CATCH | CLASS | EXTENDS | FINAL | FINALLY 
 	| IMPLEMENTS | IMPORT | INSTANCEOF | INTERFACE | NATIVE | NEW
@@ -955,6 +957,9 @@ declaration_specifiers0
 	| type_specifier2										{
 		$$.d  = typeSpecifier2($1.d);
 	}
+	| typeof_specifier										{
+		$$.d = typeSpecifier2($1.d);
+	}
 	| declaration_modality_specifiers  user_defined_type	{ 
 		assert($2.d);
 		assert($2.d->sd);
@@ -969,9 +974,9 @@ declaration_specifiers0
 		$$.d = $1.d;
 		declTypeSpecifier2($1.d,$2.d);
 	}
-	| declaration_specifiers0 type_modality_specifier		{
+	| declaration_modality_specifiers typeof_specifier		{
 		$$.d = $1.d;
-		declTypeSpecifier1($1.d,$2.d);
+		declTypeSpecifier2($1.d,$2.d);
 	}
 	| declaration_specifiers0 type_specifier1				{
 		$$.d = $1.d;
@@ -985,6 +990,10 @@ declaration_specifiers0
 		$$.d = $1.d;
 		$$.d->b.storage = $2.d; 
 	}
+	| declaration_specifiers0 type_modality_specifier		{
+		$$.d = $1.d;
+		declTypeSpecifier1($1.d,$2.d);
+	}
 	| declaration_specifiers0 function_specifier			{
 		$$.d = $1.d;
 	}
@@ -1103,6 +1112,15 @@ type_specifier2
 	| enum_specifier				/* { $$.d = $1.d; } */
 	;
 
+typeof_specifier
+	: TYPEOF '(' type_name ')'								{
+		$$.d  = $3.d;
+	}
+	| TYPEOF '(' expr ')'									{
+		$$.d = $3.d.t;
+	}
+	;
+
 function_specifier
 	: INLINE
 	| _NORETURN
@@ -1378,6 +1396,9 @@ type_specifier_list0
 	| type_specifier2										{
 		$$.d  = typeSpecifier2($1.d);
 	}
+	| typeof_specifier										{
+		$$.d  = typeSpecifier2($1.d);
+	}
 	| type_mod_specifier_list user_defined_type				{ 
 		assert($2.d);
 		assert($2.d->sd);
@@ -1393,6 +1414,10 @@ type_specifier_list0
 		$$.d = $1.d;
 		declTypeSpecifier2($1.d,$2.d);
 	}
+	| type_mod_specifier_list typeof_specifier		{
+		$$.d = $1.d;
+		declTypeSpecifier2($1.d,$2.d);
+	}
 	| type_specifier_list0 type_modality_specifier		{
 		$$.d = $1.d;
 		declTypeSpecifier1($1.d,$2.d);
-- 
2.18.0