Browse Source

Add provided lab files

DricomDragon 5 years ago
parent
commit
bd510e0558
2 changed files with 82 additions and 0 deletions
  1. 25 0
      eval.l
  2. 57 0
      eval.y

+ 25 - 0
eval.l

@@ -0,0 +1,25 @@
+/* -- eval.l --       
+   Evaluation d'une expression       
+   Partie analyseur lexical.    
+
+   Utilisation : flex eval.l */
+
+%{
+#include "eval.tab.h" /* Généré par bison grâce à l'option %defines */
+%}
+
+%option noinput
+%option nounput
+%option noyywrap
+
+BLANC [ \n\t]
+
+%%
+
+[0-9]+      yylval = atoi(yytext); return nombre; /* atoi = ascii to integer; yylval est la 
+                                                     valeur sémantique (par défaut un int) 
+                                                     associée au token */
+[-+()=]     return yytext[0];   /* caracteres unites lexicales */
+{BLANC}+    ;
+.           fprintf(stderr, "Caractere (%c) non reconnu\n", yytext[0]); /* tout le reste (les règles sont évaluées de haut en bas */
+

+ 57 - 0
eval.y

@@ -0,0 +1,57 @@
+/* -- eval.y --       
+   Evaluation d'une expression       
+   Partie analyseur grammatical.    
+
+   Utilisation : bison eval.y */
+
+%{
+#include <stdio.h>
+
+/* Pré-déclarations */
+int yylex (void);
+void yyerror (const char *);
+
+/* Variable définie dans un autre fichier */
+extern char* yytext;
+
+%}
+
+%defines /* Génère le fichier en-tête eval.tab.h */
+
+%token  nombre
+
+%start  EXPR_CALCS /* Axiome de la grammaire */
+
+%%
+
+EXPR_CALCS : EXPR_CALC              
+           | EXPR_CALCS EXPR_CALC   
+           ;
+
+EXPR_CALC : EXPR '='               { printf("%d\n", $1); }
+          ;
+
+EXPR     : FACTEUR                  
+         | EXPR '+' FACTEUR        {$$ = $1 + $3;}
+         | EXPR '-' FACTEUR        {$$ = $1 - $3;}
+         ;
+
+FACTEUR  : nombre                  {$$ = $1;}
+         | '(' EXPR ')'            {$$ = $2;}
+         ;
+
+%%
+#include <stdio.h>
+#include "eval.tab.h"
+
+void yyerror (const char * error) 
+{
+    fprintf (stderr, "Erreur: %s sur l'expression %s\n", error, yytext);
+}
+
+int main() {
+    if ( yyparse() != 0 ) {
+        fprintf(stderr,"Syntaxe incorrecte\n"); return 1; }
+    else
+        return 0;
+}