Revert "core: FAT_C_READER: Show your speed."

This reverts commit 5a9b9ac36bd33e497272b287ab1f0db715e01d38.
This commit is contained in:
Jan Nieuwenhuizen 2016-12-25 09:57:19 +01:00
parent d8ea0d593b
commit 9dcbdf2135
3 changed files with 0 additions and 198 deletions

View File

@ -21,9 +21,6 @@ export BOOT
ifneq ($(BOOT),)
CPPFLAGS+=-DBOOT=1
endif
ifneq ($(FAT_C_READER),)
CPPFLAGS+=-DFAT_C_READER=1
endif
-include .local.make

9
mes.c
View File

@ -115,15 +115,6 @@ scm *g_cells;
scm *g_news = 0;
#include "mes.symbols.h"
#if 1//FAT_C_READER
scm scm_symbol_quasiquote = {SYMBOL, "quasiquote"};
scm scm_symbol_unquote = {SYMBOL, "unquote"};
scm scm_symbol_unquote_splicing = {SYMBOL, "unquote-splicing"};
scm scm_symbol_syntax = {SYMBOL, "syntax"};
scm scm_symbol_quasisyntax = {SYMBOL, "quasisyntax"};
scm scm_symbol_unsyntax = {SYMBOL, "unsyntax"};
scm scm_symbol_unsyntax_splicing = {SYMBOL, "unsyntax-splicing"};
#endif
SCM tmp;
SCM tmp_num;

186
reader.c
View File

@ -18,11 +18,6 @@
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
*/
#if FAT_C_READER
int fat_c_eat_whitespace (int);
SCM fat_c_read_word (int, SCM, SCM);
SCM fat_c_lookup_ (SCM, SCM);
#endif // FAT_C_READER
SCM
read_input_file_env_ (SCM e, SCM a)
@ -35,10 +30,8 @@ SCM
read_input_file_env (SCM a)
{
r0 = a;
#if !FAT_C_READER
if (assq_ref_cache (cell_symbol_read_input_file, r0) != cell_undefined)
return apply_env (cell_symbol_read_input_file, cell_nil, r0);
#endif
return read_input_file_env_ (read_env (r0), r0);
}
@ -64,9 +57,6 @@ read_word (int c, SCM w, SCM a)
if (c == ')' && w == cell_nil) {ungetchar (c); return cell_nil;}
if (c == ')') {ungetchar (c); return lookup_ (w, a);}
if (c == ';') {read_line_comment (c); return read_word ('\n', w, a);}
#if FAT_C_READER
return fat_c_read_word (c, w, a);
#endif
return read_word (getchar (), append2 (w, cons (MAKE_CHAR (c), cell_nil)), a);
}
@ -75,9 +65,6 @@ eat_whitespace (int c)
{
while (c == ' ' || c == '\t' || c == '\n' || c == '\f') c = getchar ();
if (c == ';') return eat_whitespace (read_line_comment (c));
#if FAT_C_READER
return fat_c_eat_whitespace (c);
#endif
return c;
}
@ -118,19 +105,10 @@ lookup_ (SCM s, SCM a)
if (p == cell_nil) return MAKE_NUMBER (n * sign);
}
#if FAT_C_READER
return fat_c_lookup_ (s, a);
#endif
SCM x = lookup_symbol_ (s);
return x ? x : make_symbol_ (s);
}
SCM
lookup_char (int c, SCM a)
{
return lookup_ (cons (MAKE_CHAR (c), cell_nil), a);
}
SCM
list_of_char_equal_p (SCM a, SCM b)
{
@ -154,167 +132,3 @@ lookup_symbol_ (SCM s)
if (x) x = car (x);
return x;
}
#if FAT_C_READER
SCM lookup_char (int c, SCM a);
SCM
make_keyword (SCM s) ///((internal))
{
SCM x = lookup_symbol_ (s);
x = x ? x : make_symbol_ (s);
g_cells[tmp_num].value = KEYWORD;
return make_cell (tmp_num, STRING (x), 0);
}
int
read_block_comment (int s, int c) ///((internal))
{
if (c == s && peekchar () == '#') return getchar ();
return read_block_comment (s, getchar ());
}
scm char_eof = {CHAR, .name="*eof*", .value=-1};
scm char_nul = {CHAR, .name="nul", .value=0};
scm char_alarm = {CHAR, .name="alarm", .value=7};
scm char_backspace = {CHAR, .name="backspace", .value=8};
scm char_tab = {CHAR, .name="tab", .value=9};
scm char_newline = {CHAR, .name="newline", .value=10};
scm char_vtab = {CHAR, .name="vtab", .value=11};
scm char_page = {CHAR, .name="page", .value=12};
scm char_return = {CHAR, .name="return", .value=13};
scm char_space = {CHAR, .name="space", .value=32};
SCM
read_character () ///((internal))
{
int c = getchar ();
if (c >= '0' && c <= '7'
&& peekchar () >= '0' && peekchar () <= '7') {
c = c - '0';
while (peekchar () >= '0' && peekchar () <= '7') {
c <<= 3;
c += getchar () - '0';
}
}
else if (c >= 'a' && c <= 'z'
&& peekchar () >= 'a' && peekchar () <= 'z') {
char buf[10];
char *p = buf;
*p++ = c;
while (peekchar () >= 'a' && peekchar () <= 'z') {
*p++ = getchar ();
}
*p = 0;
if (!strcmp (buf, char_nul.name)) c = char_nul.value;
else if (!strcmp (buf, char_alarm.name)) c = char_alarm.value;
else if (!strcmp (buf, char_backspace.name)) c = char_backspace.value;
else if (!strcmp (buf, char_tab.name)) c = char_tab.value;
else if (!strcmp (buf, char_newline.name)) c = char_newline.value;
else if (!strcmp (buf, char_vtab.name)) c = char_vtab.value;
else if (!strcmp (buf, char_page.name)) c = char_page.value;
else if (!strcmp (buf, char_return.name)) c = char_return.value;
else if (!strcmp (buf, char_space.name)) c = char_space.value;
else {
fprintf (stderr, "char not supported: %s\n", buf);
assert (!"char not supported");
}
}
return MAKE_CHAR (c);
}
SCM
read_hex () ///((internal))
{
int n = 0;
int c = peekchar ();
while ((c >= '0' && c <= '9')
|| (c >= 'A' && c <= 'F')
|| (c >= 'a' && c <= 'f')) {
n <<= 4;
if (c >= 'a') n += c - 'a' + 10;
else if (c >= 'A') n += c - 'A' + 10;
else n+= c - '0';
getchar ();
c = peekchar ();
}
return MAKE_NUMBER (n);
}
SCM
append_char (SCM x, int i) ///((internal))
{
return append2 (x, cons (MAKE_CHAR (i), cell_nil));
}
SCM
read_string () ///((internal))
{
SCM p = cell_nil;
int c = getchar ();
while (true) {
if (c == '"') break;
if (c == '\\' && peekchar () == '\\') p = append_char (p, getchar ());
else if (c == '\\' && peekchar () == '"') p = append_char (p, getchar ());
else if (c == '\\' && peekchar () == 'n') {getchar (); p = append_char (p, '\n');}
else if (c == EOF) assert (!"EOF in string");
else p = append_char (p, c);
c = getchar ();
}
return MAKE_STRING (p);
}
SCM
fat_c_lookup_ (SCM s, SCM a) ///((internal))
{
if (VALUE (car (s)) == '#' && VALUE (cadr (s)) == ':') return make_keyword (cddr (s));
SCM x = lookup_symbol_ (s);
return x ? x : make_symbol_ (s);
}
int
fat_c_eat_whitespace (int c) ///((internal))
{
if (c == '#' && (peekchar () == '!' || peekchar () == '|')) {c=getchar (); read_block_comment (c, getchar ()); return eat_whitespace (getchar ());}
return c;
}
SCM
fat_c_read_word (int c, SCM w, SCM a) ///((internal))
{
if (c == '"' && w == cell_nil) return read_string ();
if (c == '"') {ungetchar (c); return lookup_ (w, a);}
if (c == ',' && peekchar () == '@') {getchar ();
return cons (cell_symbol_unquote_splicing,
cons (read_word (getchar (), w, a), cell_nil));}
if (c == '\'' && w == cell_nil)
return cons (cell_symbol_quote, cons (read_word (getchar (), w, a), cell_nil));
if (c == '`' && w == cell_nil)
return cons (cell_symbol_quasiquote, cons (read_word (getchar (), w, a), cell_nil));
if (c == ',' && w == cell_nil)
return cons (cell_symbol_unquote, cons (read_word (getchar (), w, a), cell_nil));
if (c == '#' && peekchar () == ',' && w == cell_nil) {
getchar ();
if (peekchar () == '@'){getchar ();
return cons (cell_symbol_unsyntax_splicing,
cons (read_word (getchar (), w, a), cell_nil));}
return cons (cell_symbol_unsyntax, cons (read_word (getchar (), w, a), cell_nil));
}
if (c == '#' && peekchar () == '\'' && w == cell_nil) {
c = getchar ();
return cons (cell_symbol_syntax,
cons (read_word (getchar (), w, a), cell_nil));}
if (c == '#' && peekchar () == '`' && w == cell_nil) {
c = getchar ();
return cons (cell_symbol_quasisyntax,
cons (read_word (getchar (), w, a), cell_nil));}
if (c == '#' && peekchar () == 'x') {getchar (); return read_hex ();}
if (c == '#' && peekchar () == '\\') {getchar (); return read_character ();}
if (c == '#' && w == cell_nil && peekchar () == '(') {getchar (); return list_to_vector (read_list (a));}
if (c == '#' && peekchar () == ';') {getchar (); read_word (getchar (), w, a); return read_word (getchar (), w, a);}
if (c == '#' && (peekchar () == '!' || peekchar () == '|')) {c = getchar (); read_block_comment (c, getchar ()); return read_word (getchar (), w, a);}
return read_word (getchar (), append2 (w, cons (MAKE_CHAR (c), cell_nil)), a);
}
#endif // FAT_C_READER