-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.c
2588 lines (2183 loc) · 75.2 KB
/
parser.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
/*
* File: parser.c
* 2018 - Created by Fred Nora.
*/
#include <sys/stat.h>
#include <fcntl.h>
#include "gramcnf.h"
//struct function_d *function_main;
// -------------------------------------
// Getting the string from "asm()" and saving here
// as a structured data.
int meta_index=0;
size_t string_size=0;
int meta_stage=0;
// -------------------------------------
// -----------------------
// Elementos que explicam o identificador.
// See: token.h
//int id[ID_MAX];
//#test:
// Usaremos long porque estamos armazenando endereços de memoria também.
long id[ID_MAX];
// -----------------------
// Elementos que explicam a constante.
long constant[CONSTANT_MAX];
// Salvando a string das constantes,
// onde a constante será armazenada dependendo do tipo.
char constant_byte[2]; //0xFF
char constant_word[4]; //0xFFFF
char constant_dword[8]; //0xFFFFFFFF
char constant_qword[16]; //0xFFFFFFFFFFFFFFFF
// O que colocar antes dessa constante.
// Isso varia com a base. Ex: 0x, 0X
char constant_before[2];
// O que colocar depois dessa constante.
// Isso varia com a base. Ex: H, B.
char constant_after[2];
// -----------------------
long return_info[8];
unsigned long functionList[FUNCTION_COUNT_MAX];
// Espiada, olhadinha.
// #importante
// esquema
// Um símbolo vam seguido de um char.
// a ação depende dessa combinação.
// peekSymbol >>> peekChar
int peekSymbol=0;
int peekChar=0;
char function_main_buffer[512];
char save_symbol[32];
//
// -- Private: Prototypes --------
//
static int __parserInit(void);
// Functions
static int parse_function(int token);
// Statements
// name/content
static int parse_name(int token);
static int parse_content(int token);
static int parse_do(int token);
static int parse_for(int token);
static int parse_if(int token);
static int parse_return(int token);
static unsigned long parse_sizeof(int token);
static int parse_while(int token);
//static int parse_number(int olen);
// Expression
static unsigned long parse_expression(int token);
// Emit
static void emit_label(void);
static void emit_function(void);
static void dump_output_file(int save_file);
static int CreateOutputFile(void);
//
// -------------------------------------
//
static void emit_label(void)
{
strcat (TEXT,";[LABEL]\n");
strcat (TEXT,"segment .text\n");
strcat (TEXT,"_");
strcat (TEXT,save_symbol);
strcat (TEXT,":\n");
}
static void emit_function(void)
{
strcat (TEXT,";[FUNCTION] (\n");
strcat (TEXT,"segment .text \n");
strcat (TEXT,"_");
strcat (TEXT,save_symbol);
strcat (TEXT,":\n");
}
// Parse function.
static int parse_function(int token)
{
int c=0;
int running = 1;
int State = 1;
//#ifdef PARSER_FUNCTION_VERBOSE
//debug
//printf("parse_function: Initializing ...\n");
//#endif
// Se entramos errado.
if (token != TK_IDENTIFIER){
printf ("parse_function: Can't initialize function statement\n");
exit(1);
}
// #bugbug: We don't need this IF statemente here.
if (token == TK_IDENTIFIER)
{
id[ID_TOKEN] = TK_IDENTIFIER;
id[ID_STACK_OFFSET] = stack_index;
// printf ("parse_function: TK_IDENTIFIER={%s} in line %d\n",
// real_token_buffer, lexer_currentline );
}
while (running)
{
c = yylex();
switch (State)
{
// State 1
// Esperamos um separador '('
// pois isso é uma função e não uma definação de variável.
case 1:
switch (c)
{
case TK_SEPARATOR:
if ( strncmp( (char *) real_token_buffer, "(", 1 ) == 0 )
{
// printf ("parse_function: TK_SEPARATOR={%s} in line %d\n",
// real_token_buffer, lexer_currentline );
State=2;
}
break;
default:
printf("parse_function: State1 Missed '(' separator in line %d\n",
lexer_currentline );
exit(1);
break;
};
break;
// State 2
// Esperamos aqui tipos,
// símbolos , separador ',' ou o separador ')'.
case 2:
switch (c)
{
// ')'
case TK_SEPARATOR:
if ( strncmp( (char *) real_token_buffer, ")", 1 ) == 0 )
{
// printf ("parse_function: TK_SEPARATOR={%s} in line %d\n",
// real_token_buffer, lexer_currentline );
State=3;
}
break;
//case type
//case symbol
//case ','
//...
default:
printf("parse_function: State2 something wrong in line %d\n",
lexer_currentline );
exit(1);
break;
};
break;
// State 3
// Esperamos aqui o separador final ';'
// isso finaliza o statement 'function'
case 3:
switch (c)
{
// ';'
// Terminamos o statement function.
case TK_SEPARATOR:
if ( strncmp( (char *) real_token_buffer, ";", 1 ) == 0 )
{
// printf ("parse_function: TK_SEPARATOR={%s} in line %d\n",
// real_token_buffer, lexer_currentline );
return (int) TK_SEPARATOR;
}
break;
default:
printf("parse_function: State3 Expected separator ';' in line %d\n",
lexer_currentline );
exit(1);
break;
};
break;
// Default State.
default:
printf("parse_function: default statement\n");
exit(1);
break;
};
};
return 0;
}
// Parse asm statement.
static int parse_name(int token)
{
// #todo:
// "asm" pode virar um visualizador de strings.
int c=0;
int running = 1;
int State = 1;
int inside = 0;
//debug
//printf("parse_asm: Initializing ...\n");
// Se entramos errado.
if (token != TK_KEYWORD){
printf ("parse_name: token error\n"); exit(1);
}
if (token == TK_KEYWORD){
// printf("parse_name: TK_KEYWORD={%s} in line %d\n",
// real_token_buffer, lexer_currentline );
}
//
// (
//
c = yylex ();
if (c != TK_SEPARATOR){
printf("parse_name: expected (\n"); exit(1);
}
if (c == TK_SEPARATOR){
if ( strncmp( (char *) real_token_buffer, "(", 1 ) == 0 )
{
// printf("parse_name: TK_KEYWORD={%s} in line %d\n",
// real_token_buffer, lexer_currentline );
//ok
inside = 1;
}
}
//
// String?
// " .... "
//
c = yylex();
if (c != TK_STRING){
printf("parse_name: expected string in name("")\n"); exit(1);
}
if (c == TK_STRING)
{
//if ( strncmp( (char *) real_token_buffer, "\"", 1 ) == 0 ){
//ok
//inside = 1;
//}
// #test
// Visualizar a string, pois "asm" pode ser usado
// para manipular strings por outros motivos.
// Isso pode ser algum tipo de dado vindo
// de um arquivo de configuração.
//printf ("name-string: {%s}\n",
// real_token_buffer );
//Stage 0: Get the name string
if (meta_stage == 0)
{
string_size = (size_t) strlen(real_token_buffer);
if (string_size <= 0 ){
printf("string size min\n");
goto error0;
}
if (string_size >= 64 ){
printf("string size max\n");
goto error0;
}
memset(metadata[meta_index].name, 0, 64);
strncpy(
metadata[meta_index].name,
real_token_buffer,
string_size );
metadata[meta_index].name_size = string_size;
// Next stage.
meta_stage++;
}
// Coloca a string no arquivo de saída.
//strcat( outfile, real_token_buffer );
// Ao fim da string vamos para a próxima linha do output file
//strcat( outfile,"\n");
c = yylex();
//)
if ( strncmp( (char *) real_token_buffer, ")", 1 ) == 0 )
{
inside = 0;
c = yylex();
// ;
if ( strncmp( (char *) real_token_buffer, ";", 1 ) == 0 )
{
// ok
return (int) c;
}
printf("parse_name: expected ; in name string\n");
exit(1);
}
printf("parse_name: expected ) in name string\n");
exit(1);
}
error0:
printf ("parse_name: todo unexpected error in name string\n");
exit(1);
return -1;
}
// Parse asm statement.
static int parse_content(int token)
{
// #todo:
// "asm" pode virar um visualizador de strings.
int c=0;
int running = 1;
int State = 1;
int inside = 0;
//debug
//printf("[CONTENT]\n");
// Se entramos errado.
if (token != TK_KEYWORD){
printf ("parse_content: token error\n"); exit(1);
}
if (token == TK_KEYWORD){
// printf("parse_content: TK_KEYWORD={%s} in line %d\n",
// real_token_buffer, lexer_currentline );
}
//
// (
//
c = yylex ();
if (c != TK_SEPARATOR){
printf("parse_content: expected (\n"); exit(1);
}
if (c == TK_SEPARATOR){
if ( strncmp( (char *) real_token_buffer, "(", 1 ) == 0 )
{
// printf("parse_content: TK_KEYWORD={%s} in line %d\n",
// real_token_buffer, lexer_currentline );
//ok
inside = 1;
}
}
//
// String?
// " .... "
//
c = yylex();
if (c != TK_STRING){
printf("parse_content: expected string in content("")\n"); exit(1);
}
if (c == TK_STRING)
{
//if ( strncmp( (char *) real_token_buffer, "\"", 1 ) == 0 ){
//ok
//inside = 1;
//}
// #test
// Visualizar a string, pois "asm" pode ser usado
// para manipular strings por outros motivos.
// Isso pode ser algum tipo de dado vindo
// de um arquivo de configuração.
//printf ("content-string: {%s}\n", real_token_buffer );
//Stage 1: Get the content string
if (meta_stage == 1)
{
string_size = (size_t) strlen(real_token_buffer);
if (string_size <= 0 ){
printf("string size min\n");
goto error0;
}
if (string_size >= 128){
printf("string size max\n");
goto error0;
}
memset(metadata[meta_index].content, 0, 128);
strncpy(
metadata[meta_index].content,
real_token_buffer,
string_size );
metadata[meta_index].content_size = string_size;
metadata[meta_index].initialized = TRUE;
//printf("INITIALIZED\n");
// Salva o index.
metadata[meta_index].id = (int) meta_index;
// Só muda de index depois de 2 strings.
meta_index++;
if (meta_index >= 32){
printf("meta_index limits\n");
goto error0;
}
// Come back to first stage.
meta_stage=0;
}
// Coloca a string no arquivo de saída.
//strcat( outfile, real_token_buffer );
// Ao fim da string vamos para a próxima linha do output file
//strcat( outfile,"\n");
c = yylex();
//)
if ( strncmp( (char *) real_token_buffer, ")", 1 ) == 0 )
{
inside = 0;
c = yylex();
// ;
if ( strncmp( (char *) real_token_buffer, ";", 1 ) == 0 )
{
// ok
return (int) c;
}
printf("parse_content: expected ; in content string\n");
exit(1);
}
printf("parse_content: expected ) in content string\n");
exit(1);
}
error0:
printf ("parse_content: todo unexpected error in comtent string\n");
exit(1);
return -1;
}
// Parse do statement.
static int parse_do(int token)
{
printf("todo: parse_do in line %d\n", lexer_currentline );
exit(1);
return -1;
}
// Parse for statement.
static int parse_for(int token)
{
printf ("todo: parse_for in line %d\n", lexer_currentline );
exit(1);
return -1;
}
// Parse if statement.
static int parse_if(int token)
{
int c=0;
int If_Result = -1;
unsigned long Exp_Result=0;
printf("todo: parse_if in line %d\n", lexer_currentline );
// #todo
// Conferir se o token do argumento é um if
// #todo
// Temos que criar State para if.
// Pega o próximo que deve ser um (.
c = yylex();
if (c != TK_SEPARATOR){
printf ("parse_if separator missed\n"); exit(1);
}
// Expression.
// Testando chamar uma análise de expressão dentro do statement de if.
Exp_Result = parse_expression(c);
// #importante
// Retornamos 1 ou 0 da análise da expressão,
// quem chamou o if vai armazenar esse valor para chamar o else.
If_Result = (int) Exp_Result;
//#debug
printf ("EXP={%d}\n",Exp_Result);
// '{'
c = yylex();
if (c != TK_SEPARATOR){
printf ("parse_if separator { missed\n"); exit(1);
}
// '}'
c = yylex();
if (c != TK_SEPARATOR){
printf ("parse_if separator } missed\n"); exit(1);
}
// ';'
c = yylex();
if (c != TK_SEPARATOR){
printf ("parse_if separator ; missed\n"); exit(1);
}
//exit(1);
return (int) If_Result;
}
// Parse number statement.
// Literal?
/*
static int parse_number(int olen)
{
//pointer #todo
//register char *p = lexptr;
register char *p = token_buffer;
register long n = 0;
register int c;
register int base = 10;
register len = olen;
char *err_copy;
//#todo função importada.
extern double atof ();
for (c = 0; c < len; c++)
{
//se encontrarmos um ponto no meio dos números.
//pois não tem ponto no meio de uma expressões no
//#if (ainda não sei se gcc está falando de diretivas ou statement)
if ( p[c] == '.' )
{
// It's a float since it contains a point.
//yyerror ("floating point numbers not allowed in #if expressions");
printf ("floating point numbers not allowed in #if expressions");
return ERROR;
// ****************
//yylval.dval = atof (p);
// lexptr += len;
// return FLOAT;
// ****************
}
}
//se o comprimeiro for mior que 3.
//se começar com '0x', ou '0X', indicando se um número heaxadecimal.
//então a base será 16.
if ( len >= 3 &&
( !strncmp (p, "0x", 2) || !strncmp (p, "0X", 2)) )
{
//baes hexa.
base = 16;
//pegaremos depois do x.
p += 2;
//atualiza o comprimeito.
len -= 2;
//Se o número começar com '0', então temos octal.
}else if ( *p == '0' )
{
base = 8;
};
while (len-- > 0)
{
c = *p++;
n *= base;
//se o caractere for um dígito decimal.
if (c >= '0' && c <= '9')
{
n += c - '0';
}else{
if (c >= 'A' && c <= 'Z')
c += 'a' - 'A';
if (base == 16 && c >= 'a' && c <= 'f'){
n += c - 'a' + 10;
}else if (len == 0 && c == 'l'){
; //nothing
}else{
//yyerror ("Invalid number in #if expression");
printf ("Invalid number in #if expression");
return ERROR;
}
};
};
lexptr = p;
yylval.lval = n;
return INT;
};
*/
// Parse return statement.
// >> termina com ';'
// return 0;
// return (int) 1;
// return 1+2;
// return (1+2);
// return (int) (1+2);
// return function();
// return (int) function();
static int parse_return(int token)
{
int c=0;
int running = 1;
int State = 1;
int open = 0;
unsigned long eval_ret=0;
char buffer[32];
//char *buffer;
// #debug
printf ("parse_return: Initializing...\n");
// Se entramos errado.
if ( token != TK_KEYWORD ||
keyword_found != KWRETURN )
{
printf ("parse_return: Can't initialize return statement\n");
exit (1);
}
// #obs:
// Isso significa que o token atual é uma keyword 'return'.
// Se a próxima keyword for um ';' então não temos uma expressão.
// Eval
eval_ret = (unsigned long) tree_eval();
//#todo: #bugbug
// itoa
//itoa ( (int) eval_ret, buffer );
// ??
//buffer = (char *) itoa ( (int) eval_ret);
//
// Output
//
// emit_return();
//strcat ( TEXT,";[RETURN]\n");
//strcat ( TEXT," mov eax, ");
//strcat ( TEXT, buffer );
//strcat ( TEXT,"\n ret \n\n");
//strcat ( outfile," mov eax, ");
//strcat ( outfile, buffer );
//strcat ( outfile,"\n ret \n\n");
// O ultimo token em um return statement foi ';'
// vamos conferir
if ( strncmp( (char *) real_token_buffer, ";", 1 ) == 0 )
{
printf("parse_return: ';' found\n");
c = TK_SEPARATOR;
return c;
}
//
// Debug hang
//
// #debug
printf ("parse_return: #breakpoint: ';' not found!\n");
while(1){}
//#obs
//supendemos todo o resto abaixo por enquanto.
/*
while (running)
{
c = yylex ();
switch ( State )
{
//#state1
//esperamos constante, expressão, tipo ou função.
case 1:
switch(c)
{
//se encontramos a constante, o que segue é o separador ';' ou o separador ')'
case TK_CONSTANT:
#ifdef PARSER_VERBOSE
//ok;
printf ("parse_return: State1 TK_CONSTANT={%s} line %d\n",
real_token_buffer, lexer_currentline );
#endif
constant[CONSTANT_TOKEN] = TK_CONSTANT;
constant[CONSTANT_TYPE] = constant_type_found;
constant[CONSTANT_BASE] = constant_base_found;
//#todo: fazer um switch para tipos válidos.
strcat( outfile," mov eax, ");
strcat( outfile, real_token_buffer );
strcat( outfile,"\n ret \n\n");
//strcat( outfile,"");
// se parênteses aberto.
//if ( open == 1 )
//{
// struct tree_node *n = (struct tree_node *) create_tree_node ( ?, NULL, NULL );
//}
//Se não temos um parêntese aberto então vamos para o próximo
//que deverá ser um ';'
if ( open == 0 )
{
State = 2;
}
//mas se ainda temos um parentese aberto então
//encontramos uma constante dentro do parêntese,
//indicando que estamos um uma expressão.
break;
case TK_SEPARATOR:
//iniciamos uma expressão ou condicional.
//uma árvore.
if ( strncmp( (char *) real_token_buffer, "(", 1 ) == 0 )
{
open = 1;
}
//se fecharmos, o que segue pode ser um separador ';',
//uma função, uma constante ou uma expressão.
if ( strncmp( (char *) real_token_buffer, ")", 1 ) == 0 )
{
open = 0;
}
//se o separador for ';' é porque estamos num retorno do tipo void.
//se o retorno não for do tipo void então foi erro de sintaxe..
if ( strncmp( (char *) real_token_buffer, ";", 1 ) == 0 )
{
#ifdef PARSER_RETURN_VERBOSE
printf("parse_return: separator ';' in line %d\n",
lexer_currentline );
#endif
if (open == 1)
{
printf("parse_return: State1 wrong separator ';' in line %d\n", lexer_currentline);
exit(1);
}
//retorno do tipo void.
if (open == 0)
{
strcat( outfile,"\n ret \n\n");
return (int) TK_SEPARATOR;
}
}
break;
//case identificador. (símbolo)
//significa que o return foi seguido de uma função.
case TK_IDENTIFIER:
//#todo Nesse momento podemos chamar a rotian qu trata uma função
//function statement. function_parser
// ';' foi encontrado.
//finalizado o statement de função então vamos sair do statemente de return.
//pois o ';' da função é o mesmo do return.
//se estivermos após a keyword 'return' ou após o tipo '(int)'.
if ( open == 0 )
{
//vamos analizar uma chamada de função dentro de um statement de return.
return (int) parse_function ( TK_IDENTIFIER );
}
//#importante
//temos um identificador dentro do parênteses.
//Se uma função foi chamada dentro do parênteses não devemos esperar
//por um separador ';'
if ( open == 1 )
{
//todo
}
break;
default:
printf("parse_return: State1 default\n");
exit(1);
break;
}
break;
//#state2
// separador ';'
case 2:
switch(c)
{
case TK_SEPARATOR:
if ( strncmp( (char *) real_token_buffer, ";", 1 ) == 0 )
{
#ifdef PARSER_RETURN_VERBOSE
//deu certo.
printf ("parse_return: State2 do_separator TK_SEPARATOR={%s} line %d \n",
real_token_buffer, lexer_currentline );
#endif
//Se encontramos o separador que finaliza o statement
//então podemos retornar.
return (int) TK_SEPARATOR;
}
break;
default:
printf("parse_return: State2 default\n");
exit(1);
break;
}
break;
//Statemente não enumerado.
default:
printf("parse_return: default statement\n");
exit(1);
break;
};
};
//printf("parse_var:\n");
//pegaremos o tipo e a exp.
do_constant:
c = yylex ();
if (c == TK_CONSTANT)
{
#ifdef PARSER_RETURN_VERBOSE
printf ("parse_return: do_constant TK_CONSTANT={%s} line %d\n",
real_token_buffer, lexer_currentline );
#endif
constant[CONSTANT_TOKEN] = TK_CONSTANT;
constant[CONSTANT_TYPE] = constant_type_found;
constant[CONSTANT_BASE] = constant_base_found;
} else {
//falhou.
printf("parse_return: do_constant Expacted constant on line %d", lexer_currentline);
exit(1);
//while(1){}
};
do_separator:
c = yylex ();
//separador ';'
//isso finaliza o statement.
if (c == TK_SEPARATOR)
{
if( strncmp( (char *) real_token_buffer, ";", 1 ) == 0 )
{
#ifdef PARSER_RETURN_VERBOSE
//deu certo.
printf("parse_return: do_separator TK_SEPARATOR={%s} line %d \n",
real_token_buffer, lexer_currentline );
#endif
goto done;
}else{
//falhou.
printf("parse_return: do_separator: fail");
exit(1);
//while(1){}
};
}else{
//falhou.
printf("parse_return: do_separator Expected ';' on line %d",lexer_currentline);
exit(1);
//while(1){}
};
*/
done:
return c;
}
// Parse 'sizeof' statement.
static unsigned long parse_sizeof(int token)
{
unsigned long Result=0;
int c = token;
int State = 1;
int running = 1;
if (c != TK_KEYWORD){
printf("parse_sizeof: fail"); exit(1);
}
while (running)
{
c = yylex();
again:
switch (State)
{
// State 1
// #todo
// (
case 1:
printf("parse_sizeof: State 1\n");
if (c == TK_SEPARATOR){
State=2; break;
}
printf("parse_sizeof: State 1 fail");
exit(1);
break;