1 / 6

Compiladores

Compiladores. Análisis Léxico. Oscar Bonilla obonilla@galileo.edu Universidad Galileo. Flex. Generador de Analizadores Léxicos diseñado por Vern Paxson. Formato del archivo de entrada. Definiciones %% Reglas %% Código de usuario. Definiciones: %{ literal %}. Ejemplo.

Download Presentation

Compiladores

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Compiladores Análisis Léxico Oscar Bonilla obonilla@galileo.edu Universidad Galileo

  2. Flex Generador de Analizadores Léxicos diseñado por Vern Paxson Formato del archivo de entrada Definiciones %% Reglas %% Código de usuario Definiciones: %{ literal %}

  3. Ejemplo /* un scanner para un lenguaje similar a Pascal */ %{ #include <math.h> %} DIGIT [0-9] ID [a-z][a-z0-9]* : : :

  4. Ejemplo %% {DIGIT}++ { printf( "An integer: %s (%d)\n", yytext, atoi(yytext) ); } {DIGIT}+"."{DIGIT}* { printf("A float: %s (%g)\n", yytext, atof(yytext) ); } if|then|begin|end|procedure|function { printf("A keyword: %s\n", yytext ); } {ID} printf ("An identifier: %s\n", yytext); "+"|"-"|"*"|"/" printf("An operator: %s\n", yytext); "{"[^}\n]*"}" /* eliminar comentarios */ [ \t\n]+ /* eliminar blancos */ . printf ("Invalid token: %s\n", yytext);

  5. Ejemplo %% main(int argc, char** argv) { ++argv, --argc; if (argc > 0) yyin = fopen(argv[0], "r"); else yyin = stdin(); yylex(); }

  6. ¿Cómo lo corremos? • Lo guardamos en un archivo (pascal.lex) $ flex pascal.lex $ cc -o pascal lex.yy.c $ ./pascal prueba.pas .....

More Related