Files
hustoj/core/sim/sim_3_01/pascallang.l
2024-10-10 12:56:56 +08:00

265 lines
4.8 KiB
Plaintext

%{
/* This file is part of the software similarity tester SIM.
Written by Dick Grune, Vrije Universiteit, Amsterdam.
$Id: pascallang.l,v 2.22 2017-03-19 09:23:20 dick Exp $
*/
/*
PASCAL language front end for the similarity tester.
Author: Maarten van der Meulen <maarten@cs.vu.nl>
Date: May 1986
*/
#include "options.h"
#include "token.h"
#include "language.h"
#include "algollike.h"
#include "idf.h"
#include "lex.h"
#include "lang.h"
/* General language front end data */
Token lex_token;
size_t lex_nl_cnt;
size_t lex_tk_cnt;
size_t lex_non_ascii_cnt;
/* Language-dependent data */
/* Data for module idf */
static const struct idf ppcmd[] = {
{"define", META('d')},
{"else", META('e')},
{"endif", META('E')},
{"if", META('i')},
{"ifdef", META('I')},
{"ifndef", META('x')},
{"include", MTCT('I')},
{"line", META('l')},
{"undef", META('u')}
};
static const struct idf reserved[] = {
{"and", NORM('&')},
{"array", NORM('A')},
{"begin", NORM('{')},
{"case", NORM('c')},
{"const", NORM('C')},
{"div", NORM('/')},
{"do", NORM('D')},
{"downto", NORM('d')},
{"else", NORM('e')},
{"end", NORM('}')},
{"extern", CTRL('E')},
{"file", NORM('F')},
{"for", NORM('f')},
{"function", NORM('p')}, /* Equal to procedure */
{"goto", NORM('g')},
{"if", NORM('i')},
{"in", NORM('I')},
{"label", NORM('l')},
{"mod", NORM('%')},
{"nil", NORM('n')},
{"not", NORM('!')},
{"of", No_Token},
{"or", NORM('|')},
{"packed", NORM('P')},
{"procedure", NORM('p')},
{"program", No_Token},
{"record", NORM('r')},
{"repeat", NORM('R')},
{"set", NORM('s')},
{"then", No_Token},
{"to", NORM('t')},
{"type", NORM('T')},
{"until", NORM('u')},
{"var", NORM('v')},
{"while", NORM('w')},
{"with", NORM('W')}
};
/* Special treatment of identifiers */
static Token
idf2token(int hashing) {
Token tk;
lower_case(yytext); /* Pascal is case-insensitive */
tk = idf_in_list(yytext, reserved, sizeof reserved, IDF);
if (Token_EQ(tk, IDF) && hashing) {
/* return a one-Token hash code */
tk = idf_hashed(yytext);
}
return tk;
}
/* Token sets for module algollike */
const Token Non_Finals[] = {
IDF, /* identifier */
NORM('{'), /* also begin */
NORM('('),
NORM('['),
NORM('A'), /* array */
NORM('c'), /* case */
NORM('C'), /* const */
NORM('/'), /* div */
CTRL('E'), /* extern */
NORM('F'), /* file */
NORM('f'), /* for */
NORM('g'), /* goto */
NORM('i'), /* if */
NORM('l'), /* label */
NORM('P'), /* packed */
NORM('p'), /* procedure/function */
NORM('r'), /* record */
NORM('R'), /* repeat */
NORM('s'), /* set */
NORM('T'), /* type */
NORM('v'), /* var */
NORM('w'), /* while */
NORM('W'), /* with */
No_Token
};
const Token Non_Initials[] = {
NORM(')'),
NORM('}'),
NORM(';'),
No_Token
};
const Token Openers[] = {
NORM('{'),
NORM('('),
NORM('['),
No_Token
};
const Token Closers[] = {
NORM('}'),
NORM(')'),
NORM(']'),
No_Token
};
/* Language-dependent code */
const char *Subject = "Pascal programs";
void
Init_Language(void) {
Init_Algol_Language(Non_Finals, Non_Initials, Openers, Closers);
}
int
May_Be_Start_Of_Run(Token ch) {
return May_Be_Start_Of_Algol_Run(ch);
}
size_t
Best_Run_Size(const Token *str, size_t size) {
return Best_Algol_Run_Size(str, size);
}
%}
%option noyywrap
%Start Comment
Layout ([ \t\r\f])
ASCII95 ([\040-\176])
AnyQuoted (\\.)
StrChar ([^\'\n\\]|{AnyQuoted})
StartComment ("{"|"(*")
EndComment ("}"|"*)")
SafeComChar ([^*}\n])
UnsafeComChar ("*")
Digit ([0-9])
Idf ([A-Za-z][A-Za-z0-9_]*)
%%
{StartComment} { /* See clang.l */
BEGIN Comment;
}
<Comment>{SafeComChar}+ { /* safe comment chunk */
}
<Comment>{UnsafeComChar} { /* unsafe char, read one by one */
}
<Comment>"\n" { /* to break up long comments */
return_eol();
}
<Comment>{EndComment} { /* end-of-comment */
BEGIN INITIAL;
}
\'{StrChar}*\' { /* character strings */
return_ch('"');
}
^#{Layout}*include.* { /* ignore #include lines */
}
^#{Layout}*{Idf} { /* a preprocessor line */
char *idf = yytext+1;
/* skip layout in front of preprocessor identifier */
while (*idf == ' ' || *idf == '\t') {
idf++;
}
return_tk(idf_in_list(idf, ppcmd, sizeof ppcmd, NORM('#')));
}
{Digit}+ { /* numeral, passed as an identifier */
return_tk(IDF);
}
{Idf}/"(" { /* identifier in front of ( */
Token tk;
tk = idf2token(is_set_option('F'));
if (!Token_EQ(tk, No_Token)) return_tk(tk);
}
{Idf} { /* identifier */
Token tk;
tk = idf2token(0 /* no hashing */);
if (!Token_EQ(tk, No_Token)) return_tk(tk);
}
\; { /* semicolon, conditionally ignored */
if (is_set_option('f')) return_ch(yytext[0]);
}
\n { /* count newlines */
return_eol();
}
{Layout} { /* ignore layout */
}
{ASCII95} { /* copy other text */
return_ch(yytext[0]);
}
. { /* count non-ASCII chars */
lex_non_ascii_cnt++;
}
%%
/* More language-dependent code */
void
yystart(void) {
BEGIN INITIAL;
}