Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d56a72cc2a1dcfa0492f42f6a44c54e4190903b1 (plain) (blame)
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
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
/*******************************************************************************
 *  Copyright (c) 2006, 2015 IBM Corporation and others.
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  which accompanies this distribution, and is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 * 
 *  Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.core.dom.lrparser.c99.action.deprecated;

import static org.eclipse.cdt.core.parser.util.CollectionUtils.reverseIterable;
import static org.eclipse.cdt.internal.core.dom.lrparser.symboltable.CNamespace.GOTO_LABEL;
import static org.eclipse.cdt.internal.core.dom.lrparser.symboltable.CNamespace.IDENTIFIER;
import static org.eclipse.cdt.internal.core.dom.lrparser.symboltable.CNamespace.STRUCT_TAG;

import java.util.LinkedList;
import java.util.List;

import lpg.lpgjavaruntime.IToken;

import org.eclipse.cdt.core.dom.ast.EScopeKind;
import org.eclipse.cdt.core.dom.ast.IASTBinaryExpression;
import org.eclipse.cdt.core.dom.ast.IASTElaboratedTypeSpecifier;
import org.eclipse.cdt.core.dom.ast.IASTLiteralExpression;
import org.eclipse.cdt.core.dom.ast.IArrayType;
import org.eclipse.cdt.core.dom.ast.IBasicType;
import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.core.dom.ast.ICompositeType;
import org.eclipse.cdt.core.dom.ast.IField;
import org.eclipse.cdt.core.dom.ast.IFunctionType;
import org.eclipse.cdt.core.dom.ast.IParameter;
import org.eclipse.cdt.core.dom.ast.IPointerType;
import org.eclipse.cdt.core.dom.ast.IType;
import org.eclipse.cdt.core.dom.ast.ITypedef;
import org.eclipse.cdt.core.dom.lrparser.action.ITokenStream;
import org.eclipse.cdt.core.dom.lrparser.action.ScopedStack;
import org.eclipse.cdt.core.parser.util.DebugUtil;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.C99Parsersym;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99ArrayType;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99BasicType;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99Enumeration;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99Enumerator;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99Field;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99Function;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99FunctionScope;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99FunctionType;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99Label;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99Parameter;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99PointerType;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99ProblemBinding;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99Scope;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99Structure;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99Typedef;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.C99Variable;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.IC99Binding;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.IC99Scope;
import org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings.ITypeable;
import org.eclipse.cdt.internal.core.dom.lrparser.symboltable.C99SymbolTable;
import org.eclipse.cdt.internal.core.dom.parser.ITypeContainer;
/**
 * This class was an attempt at doing full binding resolution during the parse
 * as opposed to doing it after the parse as is normally done with the DOM parser.
 * 
 * 
 * TODO: token mapping so that this will work with UPC
 * TODO: what about function definitions, don't they count as declarations?
 * 
 * Try to resolve bindings without using the ASTStack, that way I can resolve bindings
 * without generating an AST. In the future I can remove this as a subclass of C99ParserAction.
 * 
 * TODO: if I'm calculating scopes then those scopes need to be linked to AST nodes
 * 
 * TODO: some language constructs are not handled yet: typeIds (casts), field designators
 * 
 * @author Mike Kucera
 * 
 * @deprecated Binding resolution is too hard, replacing with simpler C99TypedefTrackerParserAction
 */
@SuppressWarnings("restriction")
@Deprecated public class C99ResolveParserAction {

	private static final boolean DEBUG = true;
	private static final String NO_IDENT = ""; //$NON-NLS-1$
	
	  
	// provides limited access to the token stream
	private final ITokenStream parser;
	
	// The symbolTable currently in use 
	private C99SymbolTable symbolTable = C99SymbolTable.EMPTY_TABLE;
	
	// A stack that keeps track of scopes in the symbol table, used to "close" scopes and to undo the opening of scopes
	private final LinkedList<C99SymbolTable> symbolTableScopeStack = new LinkedList<C99SymbolTable>();
	
	// A stack that keeps track of scopes that are set on bindings
	private final LinkedList<IC99Scope> bindingScopeStack = new LinkedList<IC99Scope>();
	
	// keeps track of nested declarations
	private final LinkedList<DeclaratorFrame> declarationStack = new LinkedList<DeclaratorFrame>();
	
	// keeps track of expression types
	private final ScopedStack<IType> exprTypeStack = new ScopedStack<IType>();

	
	
	
	
	private TypeQualifiers typeQualifiers; // TODO: can this go in the declaration stack?

	private static class TypeQualifiers {
		boolean isConst, isRestrict, isVolatile;
	}
	
	
	// "For every action there is an equal and opposite reaction." - Newton's third law
	private final LinkedList<IUndoAction> undoStack = new LinkedList<IUndoAction>();
	
	
	private interface IUndoAction {
		void undo();
	}
	
	public void undo() {
		undoStack.removeLast().undo();
	}
	
	public void undo(int steps) {
		for(int i = 0; i < steps; i++) {
			undo();
		}
	}

	public IC99Scope getCurrentScope() {
		return bindingScopeStack.getLast();
	}
	
	
	public C99ResolveParserAction(ITokenStream parser) {
		this.parser = parser;
		bindingScopeStack.add(new C99Scope(EScopeKind.eGlobal)); // the global scope
		System.out.println();
	}
	

	private static IType rawType(IType type) {
		while(type instanceof ITypedef) {
			type = ((C99Typedef)type).getType();
		}
		return type;
	}

	/**
	 * Lexer feedback hack, used by the parser to identify typedefname tokens.
	 */
	public boolean isTypedef(String ident) {		
		boolean result = symbolTable.lookup(IDENTIFIER, ident) instanceof ITypedef;
		return result;
	}
	
	
	/**
	 * Methods used by tests, package local access.
	 */
	C99SymbolTable getSymbolTable() {
		return symbolTable;
	}
	
	int undoStackSize() {
		return undoStack.size();
	}
	
	LinkedList<DeclaratorFrame> getDeclarationStack() {
		return declarationStack;
	}
	
	
	/**
	 * Called from the grammar file in places where a scope is created.
	 * 
	 * Scopes are created by compound statements, however special care
	 * must also be taken with for loops because they may contain
	 * declarations.
	 * 
	 * TODO: scope object now need to be handled explicitly
	 */
	public void openSymbolScope() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		symbolTableScopeStack.add(symbolTable);
		bindingScopeStack.add(new C99Scope(EScopeKind.eLocal));
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				
				bindingScopeStack.removeLast();
				symbolTable = symbolTableScopeStack.removeLast();
			}
		});
	}
	

	public IC99Scope closeSymbolScope() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final C99SymbolTable undoTable = symbolTable;
		symbolTable = symbolTableScopeStack.removeLast(); // close the scope

		final IC99Scope undoScope = bindingScopeStack.removeLast();
		if(!bindingScopeStack.isEmpty())
			undoScope.setParent(bindingScopeStack.getLast());
		
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				undoScope.setParent(null);
				bindingScopeStack.add(undoScope);
				
				symbolTableScopeStack.add(symbolTable);
				symbolTable = undoTable;
			}
		});
		
		return undoScope;
	}
	
	
	// TODO, this needs an undo action
	public void openPointerScope() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.getLast();
		frame.openPointerModifierScope();
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				frame.closePointerModifierScope();
			}
		});
	}
	
	
	/**
	 * Called from the grammar before a declaration is about to be reduced.
	 */
	public void openDeclarationScope() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		declarationStack.add(new DeclaratorFrame());
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				declarationStack.removeLast();
			}
		});
	}
	
	
	public void closeDeclarationScope() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame undoFrame = declarationStack.removeLast();
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				declarationStack.add(undoFrame);
			}
		});
	}
	
	
	public void consumeFunctionDefinition() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
//		final IC99Scope undoScope = bindingScope;
//		
//		C99FunctionScope functionScope = new C99FunctionScope();
//		functionScope.setBodyScope(undoScope);
//		undoScope.setParent(functionScope);
//		bindingScope = bindingScopeStack.removeLast();
//		functionScope.setParent(bindingScope);
		
		
		final IC99Scope undoScope = bindingScopeStack.removeLast();
		
		C99FunctionScope functionScope = new C99FunctionScope();
		functionScope.setBodyScope(undoScope);
		undoScope.setParent(functionScope);
		functionScope.setParent(bindingScopeStack.getLast());
		
		
		final DeclaratorFrame frame = declarationStack.removeLast();
		
		// the function binding needs to be available outside of the function's scope
		String functionName = frame.getDeclaratorName().toString();
		C99Function functionBinding = (C99Function) symbolTable.lookup(IDENTIFIER, functionName);
		functionBinding.setFunctionScope(functionScope);
		
		final C99SymbolTable undoTable = symbolTable;
		final C99SymbolTable outerTable = symbolTableScopeStack.removeLast();
		symbolTable = outerTable.insert(IDENTIFIER, functionName, functionBinding);
		
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				symbolTableScopeStack.add(outerTable);
				symbolTable = undoTable;
				declarationStack.add(frame);
				bindingScopeStack.add(undoScope);
			}
		});
	}


	public void consumeAbstractDeclaratorFunctionDeclarator() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.getLast();
		frame.setFunctionDeclarator(true);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				frame.setFunctionDeclarator(false);
			}
		});
	}


	public void consumeDirectDeclaratorFunctionDeclarator() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.getLast();
		frame.setFunctionDeclarator(true);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				frame.setFunctionDeclarator(false);
			}
		});
	}


	public void consumeDeclSpecToken() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		IToken token = parser.getRightIToken();
		final int kind = token.getKind();
		
		// creates a DeclSpec if there isn't one already
		DeclaratorFrame frame = declarationStack.getLast();
		final DeclSpec declSpec = frame.getDeclSpec();
		declSpec.add(kind);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				declSpec.remove(kind);
			}
		});
	}

	
	/**
	 * A labeled statement is creates an implicit declaration of the label identifier.
	 * 
	 * TODO: a label has function scope, meaning the same label cannot be declared twice
	 * in a function regardless of block scope.
	 * TODO: labels can be implicitly declared, that is a goto can exist above the label
	 */
	public IBinding consumeStatementLabeled() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		IToken token = parser.getLeftIToken();
		String ident = token.toString();
		
		IC99Binding labelBinding = new C99Label(ident);
		// TODO: strictly speaking the same label cannot be declared twice,
		// but we aren't checking that here
		final C99SymbolTable oldTable = symbolTable;
		symbolTable = symbolTable.insert(GOTO_LABEL, ident, labelBinding);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				symbolTable = oldTable;
			}
		});
		
		return labelBinding;
	}
	
	
	public IBinding consumeStatementGoto() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		List<IToken> ruleTokens = parser.getRuleTokens();
		assert ruleTokens.size() == 3 : "a goto statement must always consist of 3 tokens"; //$NON-NLS-1$
		String ident = ruleTokens.get(1).toString();
		
		final C99SymbolTable oldTable = symbolTable;
		
		IC99Binding labelBinding = symbolTable.lookup(GOTO_LABEL, ident);
		if(labelBinding == null) {
			labelBinding = new C99Label(ident);
			symbolTable = symbolTable.insert(GOTO_LABEL, ident, labelBinding);
		}

		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				symbolTable = oldTable;
			}
		});
		
		
		return labelBinding;
	}
	
	
	public IBinding consumeDeclarationSpecifiersTypedefName() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		// find the typedef token
		String typedefName = null;
		for(IToken token : parser.getRuleTokens()) {
			// the token kind will still be TK_identifier, but there can only be one
			if(token.getKind() == C99Parsersym.TK_identifier) {
				typedefName = token.toString();
				break;
			}
		}
		assert typedefName != null : "a typedef token must have been parsed for this action to fire"; //$NON-NLS-1$
		
		// we know that the binding is a typedef because the lexer feedback hack worked and got us here
		ITypedef binding = (ITypedef) symbolTable.lookup(IDENTIFIER, typedefName);
		// TODO: do I need to clone the typedef in case it is further modified like with const?
		DeclaratorFrame frame = declarationStack.getLast();
		final DeclSpec declSpec = frame.getDeclSpec();
		declSpec.setType(binding);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				declSpec.setType(null);
			}
		});
		
		return binding;
	}
	

	
	public void consumeDirectDeclaratorIdentifier() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.getLast();
		DebugUtil.printMethodTrace();
		frame.setDeclaratorName(parser.getRightIToken());
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				DebugUtil.printMethodTrace();
				frame.setDeclaratorName(null);
			}
		});
	}
	
	
	
	// TODO need to be careful, this is called in a lot of places in the grammar
	public void consumeDeclaratorWithPointer() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.getLast();
		final LinkedList<C99PointerType> scope = frame.closePointerModifierScope();
		final int scopeSize = scope.size();
		
		for(C99PointerType pt : reverseIterable(scope)) {
			frame.addTypeModifier(pt);
		}
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				for(int i = 0; i < scopeSize; i++) {
					frame.removeLastTypeModifier();
				}
				frame.openPointerModifierScope(scope);
			}
		});
	}
	
	
	
	public void consumeDirectDeclaratorBracketed() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		// Used to tell the difference between function prototype declarations and function pointer declarations
		final DeclaratorFrame frame = declarationStack.getLast();
		frame.setDeclaratorBracketed(true);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				frame.setDeclaratorBracketed(false);
			}
		});
	}
	
	
	public IBinding consumeDeclaratorComplete() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.getLast();
		
		IToken token       = frame.getDeclaratorName();
		IType type         = frame.getDeclaratorType();
		DeclSpec declSpec  = frame.getDeclSpec();
		boolean isFunction = frame.isFunctionDeclarator();
		List<IBinding> nestedDeclarators = frame.getNestedDeclarations();
		
		if(isFunction)
			type = createFunctionType(type, nestedDeclarators);
		
		String ident = (token == null) ? null : token.toString();
		
		// compute the binding
		IC99Binding binding;
		if(declSpec.isTypedef())
			binding = createTypedefBinding(ident, type);
		else if(isFunction && !frame.isDeclaratorBracketed())
			binding = createFunctionBinding(ident, (IFunctionType)type, declSpec, nestedDeclarators);
		else
			binding = createVariableBinding(ident, type, declSpec);
		
		binding.setScope(bindingScopeStack.getLast());
		
		// insert into symbol table
		final C99SymbolTable oldTable = symbolTable;
		if(ident != null)
			symbolTable = symbolTable.insert(IDENTIFIER, ident, binding);
		
		declarationStack.removeLast();
		declarationStack.add(new DeclaratorFrame(frame.getDeclSpec())); // reset the declarator
		exprTypeStack.push(type);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				exprTypeStack.pop();
				declarationStack.removeLast();
				declarationStack.add(frame);
				symbolTable = oldTable;
			}
		});
		
		return binding;
	}
	
	/**
	 * Just gets rid of the type that was on the type stack.
	 */
	public void consumeInitDeclarator() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final IType type = exprTypeStack.pop();
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				exprTypeStack.push(type);
			}
		});
	}
	
	
	public IBinding consumeFunctionDefinitionHeader() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		DeclaratorFrame frame = declarationStack.getLast();
		DeclSpec declSpec = frame.getDeclSpec();
		String functionName = frame.getDeclaratorName().toString();

		final C99SymbolTable oldTable = symbolTable;
		
		// there may have been a function prototype, hence there may already be a binding for the function
		IC99Binding binding = symbolTable.lookup(IDENTIFIER, functionName);
		if(binding == null) {
			IType type = frame.getDeclaratorType();
			List<IBinding> nestedDeclarators = frame.getNestedDeclarations();
			
			IFunctionType functionType = createFunctionType(type, nestedDeclarators);
			binding = createFunctionBinding(functionName, functionType, declSpec, nestedDeclarators);
			
			// a scope has already been opened for the function body, use the outer scope
			IC99Scope topScope = bindingScopeStack.removeLast();
			binding.setScope(bindingScopeStack.getLast());
			bindingScopeStack.add(topScope);
			
			symbolTable = symbolTable.insert(IDENTIFIER, functionName, binding);
		}
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				symbolTable = oldTable;
			}
		});
		
		return binding;
	}
	
	
	public IBinding consumeDeclaratorCompleteParameter() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.removeLast();
		IToken token = frame.getDeclaratorName();
		IType type   = frame.getDeclaratorType();
		DeclSpec declSpec = frame.getDeclSpec();
		boolean isFunction = frame.isFunctionDeclarator();
	
		// its a function pointer
		if(isFunction)
			type = createFunctionType(type, frame.getNestedDeclarations());
		
		String ident = (token == null) ? NO_IDENT : token.toString();
		
		IC99Binding parameterBinding = createParameterBinding(ident, type, declSpec);
		parameterBinding.setScope(bindingScopeStack.getLast());
		
		// check to see if there is already a parameter binding
		String functionName = declarationStack.getLast().getDeclaratorName().toString();
		C99Function function = (C99Function) symbolTable.lookup(IDENTIFIER, functionName);
		
		if(function != null) {
			// there is already a function binding for this function, that means there
			// is a function prototype and there is already a binding for this parameter
			int position = declarationStack.getLast().getNestedDeclarations().size();
			IParameter[] parameters = function.getParameters();
			if(parameters != null && position < parameters.length) {
				parameterBinding = (IC99Binding)parameters[position];
			}
		}

		// even if the binding is reused it still might be under a different name
		final C99SymbolTable oldTable = symbolTable;
		if(ident != null) {
			symbolTable = symbolTable.insert(IDENTIFIER, ident, parameterBinding);
		}
		
		declarationStack.getLast().addNestedDeclaration(parameterBinding);
		
		// parameter declarations can only have one declarator, so don't reset
		//declarationStack.add(new DeclaratorFrame()); // reset

		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				//declarationStack.removeLast();
				declarationStack.getLast().removeLastNestedDeclaration();
				declarationStack.add(frame);
				symbolTable = oldTable;
			}
		});
		
		return parameterBinding;
	}
	
	
	/**
	 * This is a special case for the rule:
	 *     parameter_declaration ::= declaration_specifiers
	 *     
     * In this case there is no declarator at all
     * 
     * TODO: creating bindings that have no identifier seems really dumb,
     * why does it need to be done? Why not just have a null binding or
     * for that matter don't even have a name node
     * 
	 */
	public IBinding consumeParameterDeclarationWithoutDeclarator() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.removeLast();
		DeclSpec declSpec = frame.getDeclSpec();
		C99Parameter param = createParameterBinding(null, declSpec.getType(), declSpec);
		declarationStack.getLast().addNestedDeclaration(param);

		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				declarationStack.getLast().removeLastNestedDeclaration();
				declarationStack.add(frame);
			}
		});
		
		return param;
	}
	
	
	public IBinding consumeDeclaratorCompleteField() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.getLast();
		IToken token = frame.getDeclaratorName();
		IType type   = frame.getDeclaratorType();
	
		// its a function pointer
		if(frame.isFunctionDeclarator())
			type = createFunctionType(type, frame.getNestedDeclarations());
		
		IBinding binding = createFieldBinding(token.toString(), type, frame.getDeclSpec());
		
		declarationStack.removeLast();
		declarationStack.getLast().addNestedDeclaration(binding);
		declarationStack.add(new DeclaratorFrame(frame.getDeclSpec()));  // reset the declarator
		exprTypeStack.push(type);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
				declarationStack.removeLast();
				declarationStack.getLast().removeLastNestedDeclaration();
				declarationStack.add(frame);
			}
		});
		
		return binding;
	}

	
	/**
	 * An abstract declarator used as part of an expression, eg) a cast.
	 * Only need the type.
	 * 
	 * TODO: this isn't enough, I need a binding for the abstract declarator
	 * what I really need is a consumeDeclaratorCompleteTypeId similar to above
	 */
	public void consumeTypeId() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.removeLast();
		IType type = frame.getDeclaratorType();
		if(frame.isFunctionDeclarator()) // its a function pointer
			type = createFunctionType(type, frame.getNestedDeclarations());
		
		exprTypeStack.push(type);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
				declarationStack.add(frame);
			}
		});
	}

	
	public void consumeDirectDeclaratorArrayModifier() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.getLast();
		frame.addTypeModifier(new C99ArrayType());
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				frame.removeLastTypeModifier();
			}
		});
	}
	
	
	public void consumeAbstractDeclaratorArrayModifier() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.getLast();
		frame.addTypeModifier(new C99ArrayType());
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				frame.removeLastTypeModifier();
			}
		});
	}


	public void consumeDirectDeclaratorModifiedArrayModifier(boolean isStatic, boolean isVarSized, boolean hasTypeQualifierList) {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		C99ArrayType arrayType = new C99ArrayType();
		arrayType.setStatic(isStatic);
		arrayType.setVariableLength(isVarSized);
		
		if(hasTypeQualifierList) {
			arrayType.setConst(typeQualifiers.isConst);
			arrayType.setRestrict(typeQualifiers.isRestrict);
			arrayType.setVolatile(typeQualifiers.isVolatile);
		}

		final DeclaratorFrame frame = declarationStack.getLast();
		frame.addTypeModifier(arrayType);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				frame.removeLastTypeModifier();
			}
		});
	}

	
	
	public void consumePointer() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final DeclaratorFrame frame = declarationStack.getLast();
		frame.addPointerModifier(new C99PointerType());
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				frame.removeLastPointerModifier();
			}
		});
	}
	
	
	public void consumePointerTypeQualifierList() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		C99PointerType pointerType = new C99PointerType();
		pointerType.setConst(typeQualifiers.isConst);
		pointerType.setRestrict(typeQualifiers.isRestrict);
		pointerType.setVolatile(typeQualifiers.isVolatile);
		
		final DeclaratorFrame frame = declarationStack.getLast();
		frame.addPointerModifier(pointerType);

		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				frame.removeLastPointerModifier();
			}
		});
	}
	
	
	public void consumeTypeQualifiers() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		typeQualifiers = new TypeQualifiers();
		
		for(IToken token : parser.getRuleTokens()) {
			switch(token.getKind()) {
				case C99Parsersym.TK_const:
					typeQualifiers.isConst = true;
					break;
				case C99Parsersym.TK_restrict:
					typeQualifiers.isRestrict = true;
					break;
				case C99Parsersym.TK_volatile:
					typeQualifiers.isVolatile = true;
					break;
			}
		}
		
		// I don't think this is really necessary but I need an undo action anyway
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				typeQualifiers = null;
			}
		});
	}
	
	
		
	/**
	 * Works for structs, unions and enums.
	 * If the struct tag is not in the symbol table then it is treated
	 * as a declaration.
	 */
	public IBinding consumeTypeSpecifierElaborated(int kind) {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		String tag = parser.getRightIToken().toString();
		
		IC99Binding structBinding = symbolTable.lookup(STRUCT_TAG, tag);
		
		final C99SymbolTable undoTable;
		
		final boolean isDeclaration = (structBinding == null);
		
		if(isDeclaration) { // declaration of an incomplete type
			if(kind == IASTElaboratedTypeSpecifier.k_enum)
				structBinding = new C99Enumeration();
			else
				structBinding = new C99Structure(kind);
							
			undoTable = symbolTable;
			symbolTable = symbolTable.insert(STRUCT_TAG, tag, structBinding);
		}
		else {
			undoTable = null; // final variable must be initialized
		}
		
		final DeclSpec declSpec = declarationStack.getLast().getDeclSpec();
		declSpec.setType((IType)structBinding); // upcast
		
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				declSpec.setType(null);
				
				if(isDeclaration) {
					assert undoTable != null;
					symbolTable = undoTable;
				}
			}
		});
		
		return structBinding;
	}


	/**
	 * @param key A field in IASTCompositeTypeSpecifier.
	 */
	public IBinding consumeTypeSpecifierComposite(final boolean hasName, int key) {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		// If the symbol table isn't updated then its still ok to undo 
		// because setting symbolTable to oldTable will effectively be a no-op.
		final C99SymbolTable oldTable = symbolTable;
		
		C99Structure struct;
		if(hasName) {
			String ident = parser.getRuleTokens().get(1).toString();
			struct = (C99Structure) symbolTable.lookup(STRUCT_TAG, ident); // structure may have already been declared
			if(struct == null) {
				struct = new C99Structure(ident, key); 
				symbolTable = symbolTable.insert(STRUCT_TAG, ident, struct);
			}
		}
		else {
			struct = new C99Structure(key);
		}
		
		final DeclaratorFrame frame = declarationStack.getLast();
		for(IBinding binding : frame.getNestedDeclarations()) {
			// the parser may allow invalid declarations like typedefs inside of structures, ignore those
			if(binding instanceof C99Field) {
				C99Field field = (C99Field)binding;
				struct.addField(field);
				field.setCompositeTypeOwner(struct);
			}
		}
		
		frame.getDeclSpec().setType(struct);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				frame.getDeclSpec().setType(null);
				symbolTable = oldTable;
			}
		});
		
		return struct;
	}
	
	
	public IBinding consumeTypeSpecifierEnumeration(final boolean hasName) {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		C99Enumeration enumeration = new C99Enumeration();
		
		final C99SymbolTable oldTable = symbolTable;
		if(hasName) {
			String ident = parser.getRuleTokens().get(1).toString(); 
			enumeration.setName(ident);
			symbolTable = symbolTable.insert(STRUCT_TAG, ident, enumeration);
		}
		
		final DeclaratorFrame frame = declarationStack.getLast();
		for(IBinding binding : frame.getNestedDeclarations()) {
			C99Enumerator enumerator = (C99Enumerator)binding;
			enumeration.addEnumerator(enumerator);
			enumerator.setType(enumeration);
		}
		
		frame.getDeclSpec().setType(enumeration);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				frame.getDeclSpec().setType(null);
				if(hasName)
					symbolTable = oldTable;
			}
		});
		
		return enumeration;
	}

	

	public IBinding consumeEnumerator() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		IToken token = parser.getLeftIToken();
		String ident = token.toString();
		C99Enumerator enumerator = new C99Enumerator(ident);
		
		final C99SymbolTable oldTable = symbolTable;
		symbolTable = symbolTable.insert(IDENTIFIER, ident, enumerator);
		
		// enumerators are not declarations in the standard sense, so a scope won't be opened for them
		declarationStack.getLast().addNestedDeclaration(enumerator);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				declarationStack.getLast().removeLastNestedDeclaration();
				symbolTable = oldTable;
			}
		});
		
		return enumerator;
	}


	
	public IField consumeDesignatorBaseField() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		
		IType baseType = getInitializerType();
		String fieldName = parser.getRightIToken().toString();
		
		C99Field fieldBinding = computeFieldBinding(baseType, fieldName, false);
		IType type = fieldBinding == null ? C99ProblemBinding.badType() : fieldBinding.getType();
		
		exprTypeStack.push(type);
	
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
			}
		});
		
		return fieldBinding;
	}
	

	
	private IType getInitializerType() {
		List<IType> outerScope = exprTypeStack.outerScope();
		return outerScope.get(outerScope.size()-1);
	}
	
	
	public void consumeDesignatorBaseArray() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		IType baseType = getInitializerType();
		
		IType type = C99ProblemBinding.badType();
		if(baseType instanceof C99ArrayType) {
			type = ((C99ArrayType)baseType).getType();
		}
		
		exprTypeStack.push(type);
	
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
			}
		});
	}

	public void consumeInitializerStartPositional() {
		if(DEBUG) DebugUtil.printMethodTrace();
		DebugUtil.printMethodTrace();
		
		IType type = getInitializerType(); 
		type = rawType(type);
		
		IType positionType;
		if(type instanceof C99Structure) {
			int position = exprTypeStack.topScope().size();
			C99Field field = (C99Field)((C99Structure)type).getFields()[position];
			positionType = field.getType();
		}
		else if(type instanceof IArrayType) {
			positionType = ((C99ArrayType)type).getType();
		}
		else {
			positionType = C99ProblemBinding.badType();
		}
		
		exprTypeStack.push(positionType);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
			}
		});
	}
	

	private static C99FunctionType createFunctionType(IType returnType, List<IBinding> parameterDeclarations) {
		C99FunctionType functionType = new C99FunctionType();
		functionType.setReturnType(returnType);
		for(IBinding b : parameterDeclarations) {
			C99Variable parameter = (C99Variable) b;
			functionType.addParameterType(parameter.getType());
		}
		return functionType;
	}
	
	
	
	// helper functions for creating binding objects
	
	private static C99Function createFunctionBinding(String ident, IFunctionType type, DeclSpec declSpec) {
		C99Function func = new C99Function(ident == null ? NO_IDENT : ident, type);
		declSpec.modifyBinding(func);
		return func;
	}
	
	private static C99Function createFunctionBinding(String ident, IFunctionType type, DeclSpec declSpec, List<IBinding> params) {
		C99Function func = createFunctionBinding(ident, type, declSpec);
		for(IBinding b : params) {
			func.addParameter((IParameter)b);
		}
		return func;
	}
	
	private static C99Field createFieldBinding(String ident, IType type, DeclSpec declSpec) {
		C99Field var = new C99Field(ident == null ? NO_IDENT : ident);
		var.setType(type);
		declSpec.modifyBinding(var);
		return var;
	}
	
	private static C99Parameter createParameterBinding(String ident, IType type, DeclSpec declSpec) {
		C99Parameter param = new C99Parameter(ident == null ? NO_IDENT : ident);
		param.setType(type);
		declSpec.modifyBinding(param);
		return param;
	}
	
	private static C99Variable createVariableBinding(String ident, IType type, DeclSpec declSpec) {
		C99Variable var = new C99Variable(ident == null ? NO_IDENT : ident);
		var.setType(type);
		declSpec.modifyBinding(var);
		return var;
	}
	
	private static C99Typedef createTypedefBinding(String ident, IType type) {
		return new C99Typedef(type, ident == null ? NO_IDENT : ident);
	}

	
	
	public void openTypeScope() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		exprTypeStack.openScope();
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.closeScope();
			}
		});
	}
	
	
	@SuppressWarnings("nls")
	public void consumeExpressionConstant(int kind) {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		//super.consumeExpressionConstant(kind);
		// TODO: this is incomplete, what about double constants, int constants with long suffix etc
		String constant = parser.getRightIToken().toString();
		
		IType type = null;
		switch(kind) {
			case IASTLiteralExpression.lk_char_constant:
				if(constant.startsWith("L")) {//unsigned short int
					C99BasicType charType = new C99BasicType(IBasicType.t_int);
					charType.setShort(true);
					charType.setUnsigned(true);
					type = charType;
				}
				else
					type = new C99BasicType(IBasicType.t_char);
				break;
				
			case IASTLiteralExpression.lk_float_constant:
				C99BasicType floatType;
				if(constant.contains("f") || constant.contains("F"))
					floatType = new C99BasicType(IBasicType.t_float);
				else
					floatType = new C99BasicType(IBasicType.t_double);
				
				if(constant.contains("l") || constant.contains("L"))
					floatType.setLong(true);
				
				type = floatType;
				break;
				
			case IASTLiteralExpression.lk_integer_constant:
				C99BasicType intType = new C99BasicType(IBasicType.t_int);
				if(constant.contains("l") || constant.contains("L"))
					intType.setLong(true);
			
				if(constant.contains("ll") || constant.contains("LL")) {
					intType.setLongLong(true);
					intType.setLong(false);
				}
				if(constant.contains("u") || constant.contains("U")) 
					intType.setUnsigned(true);
			
				type = intType;
				break;
				
			case IASTLiteralExpression.lk_string_literal:
				type = new C99PointerType(new C99BasicType(IBasicType.t_char));
				break;
				
			default:
				assert false : "can't get here"; //$NON-NLS-1$
		}
		
		exprTypeStack.push(type);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
			}
		});
	}
	 
	
	public IBinding consumeExpressionID() {		
		if(DEBUG) DebugUtil.printMethodTrace();
		
		IToken token = parser.getRightIToken();
		String ident = token.toString();
		IBinding binding = symbolTable.lookup(IDENTIFIER, ident);
		
		IType type = C99ProblemBinding.badType();
		if(binding instanceof ITypeable)
			type = ((ITypeable)binding).getType();
		
		exprTypeStack.push(type);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
			}
		});
		
		return binding;
	}


	public IField consumeExpressionFieldReference(boolean isPointerDereference) {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		String memberName = parser.getRightIToken().toString();
		final IType identType = exprTypeStack.pop();
				
		C99Field field = computeFieldBinding(identType, memberName, isPointerDereference);
		IType resultType = field == null ? C99ProblemBinding.badType() : field.getType();

		exprTypeStack.push(resultType);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
				exprTypeStack.push(identType);
			}
		});
		
		return field;
	}
	
	/**
	 * Computes the type of a field member access in an expression.
	 * eg) x.a; computes the type of a
	 */
	private C99Field computeFieldBinding(IType identType, String memberName, boolean isPointerDereference) {
		IType type = identType;
		if(isPointerDereference) {
			if(type instanceof IPointerType)
				type = ((ITypeContainer)type).getType(); // do the dereference
			else
				return null;
		}

		type = rawType(type);
		if(type instanceof ICompositeType) {
			ICompositeType struct = (ICompositeType) type;
			return (C99Field) struct.findField(memberName);
		}
		
		return null;
	}
		

	// TODO In C a function name can be used without parenthesis, the result is the address of 
	// the function (which is an int I think). This means an identifier that happens to be 
	// a function name should probably evaluate to an int, and then if it subsequently gets parsed
	// as a function call we can look up its function type from the symbol table.
	public void consumeExpressionFunctionCall(final boolean hasArgs) {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final List<IType> scope = hasArgs ? exprTypeStack.closeScope() : null;
		final IType identifierType = exprTypeStack.pop();
		
		IType resultType = C99ProblemBinding.badType();
		
		if(identifierType instanceof IFunctionType) {
			// TODO: check the parameter types
			IFunctionType functionType = (IFunctionType)identifierType;
			resultType = functionType.getReturnType();

		}

		exprTypeStack.push(resultType);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
				exprTypeStack.push(identifierType);
				if(hasArgs)
					exprTypeStack.openScope(scope);
			}
		});
	}

	
	public void consumeExpressionArraySubscript() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		// Not doing type checking so it doesn't matter that this is integral type
		final IType subscriptType = exprTypeStack.pop();
		final IType exprType = exprTypeStack.pop();
		
		IType resultType = C99ProblemBinding.badType();
		if(exprType instanceof IArrayType) {
			IArrayType arrType = (IArrayType) exprType;
			resultType = arrType.getType(); // strip off the array type

		}
		
		exprTypeStack.push(resultType);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
				exprTypeStack.push(exprType);
				exprTypeStack.push(subscriptType);
			}
		});
	}


	public void consumeExpressionUnaryOperator() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		// TODO: this is lazy, need to check the actual rules for types and operators
		final IType expressionType = exprTypeStack.pop();
		
		IType resultType = new C99BasicType(IBasicType.t_int);
		exprTypeStack.push(resultType);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
				exprTypeStack.push(expressionType);
			}
		});
	}

	
	public void consumeExpressionUnarySizeofTypeName() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final IType typeNameType = exprTypeStack.pop();
		
		IType resultType = new C99BasicType(IBasicType.t_int);
		exprTypeStack.push(resultType);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
				exprTypeStack.push(typeNameType);
			}
		});
	}


	public void consumeExpressionCast() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final IType exprType = exprTypeStack.pop();
		
		// pop then push is no-op
		//IType castType = exprTypeStack.pop();
		//exprTypeStack.push(castType);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.push(exprType);
			}
		});
	}
	

	public void consumeExpressionTypeIdInitializer() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		// Throw away the types of the initializer list
		final List<IType> scope = exprTypeStack.closeScope();

		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.openScope(scope);
			}
		});
	}
	
	public void consumeExpressionInitializer() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final IType type = exprTypeStack.pop();
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				exprTypeStack.push(type);
			}
		});
	}
	

	public void consumeExpressionBinaryOperator(int op) {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final IType op2type = exprTypeStack.pop();
		final IType op1type = exprTypeStack.pop();
		
		switch(op) {
			case IASTBinaryExpression.op_assign:
			case IASTBinaryExpression.op_multiplyAssign:
			case IASTBinaryExpression.op_divideAssign:
			case IASTBinaryExpression.op_moduloAssign:
			case IASTBinaryExpression.op_plusAssign:
			case IASTBinaryExpression.op_minusAssign:
			case IASTBinaryExpression.op_shiftLeftAssign:
			case IASTBinaryExpression.op_shiftRightAssign:
			case IASTBinaryExpression.op_binaryAndAssign:
			case IASTBinaryExpression.op_binaryXorAssign:
			case IASTBinaryExpression.op_binaryOrAssign:
				exprTypeStack.push(op1type);
				break;
				
			default:
				IType resultType = new C99BasicType(IBasicType.t_int);
				exprTypeStack.push(resultType);
		}
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				
				exprTypeStack.pop();
				exprTypeStack.push(op1type);
				exprTypeStack.push(op2type);
			}
		});
	}
	
	public void consumeExpressionConditional() {
		if(DEBUG) DebugUtil.printMethodTrace();
		
		final IType expr2Type = exprTypeStack.pop();
		final IType expr1Type = exprTypeStack.pop();
		final IType condType = exprTypeStack.pop();
		exprTypeStack.push(expr1Type);
		
		undoStack.add(new IUndoAction() {
			@Override
			public void undo() {
				if(DEBUG) DebugUtil.printMethodTrace();
				exprTypeStack.pop();
				exprTypeStack.push(condType);
				exprTypeStack.push(expr1Type);
				exprTypeStack.push(expr2Type);
			}
		});
	}

//	// TODO: expression lists are changing
//	public void consumeExpressionList(boolean baseCase) {		
//		// This is a hack, the type of an expression
//		// list will be the first expression in the list.
//		if(!baseCase) {
//			exprTypeStack.pop();
//		}
//	}
	
}

Back to the top