From e65adf205017c430b1dc49cc4411ee936b029a91 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Sun, 30 Jul 2017 13:22:24 -0700 Subject: [PATCH] Lambda WIP --- src/toolsrc/parse.c | 69 ++++++++++++++++++++++++++++++++++++++++++-- src/toolsrc/tokens.h | 9 +++--- 2 files changed, 72 insertions(+), 6 deletions(-) diff --git a/src/toolsrc/parse.c b/src/toolsrc/parse.c index 277c434..eb694ed 100755 --- a/src/toolsrc/parse.c +++ b/src/toolsrc/parse.c @@ -1,10 +1,15 @@ #include #include "plasm.h" -#define LVALUE 0 -#define RVALUE 1 +#define LVALUE 0 +#define RVALUE 1 +#define LAMBDA_CNT 256 + int infunc = 0, break_tag = 0, cont_tag = 0, stack_loop = 0; long infuncvals = 0; t_token prevstmnt; +int lambda_num = 0; +int lambda_cnt = 0; +*opseq lambda_seq[MAX_LAMBDA]; t_token binary_ops_table[] = { /* Highest precedence */ @@ -338,6 +343,7 @@ int parse_const(long *value) /* * Normal expression parsing */ +int parse_lambda(void); t_opseq *parse_expr(t_opseq *codeseq, int *stackdepth); t_opseq *parse_list(t_opseq *codeseq, int *stackdepth) { @@ -446,6 +452,12 @@ t_opseq *parse_value(t_opseq *codeseq, int rvalue, int *stackdepth) cfnvals = funcvals_cnt(type); } } + else if (scantoken == LAMBDA_TOKEN) + { + type |= WPTR_TYPE; + value = parse_lambda(); + valseq = gen_gbladr(NULL, value, type); + } else if (scantoken == OPEN_PAREN_TOKEN) { if (!(valseq = parse_expr(NULL, stackdepth))) @@ -1447,6 +1459,58 @@ int parse_mods(void) emit_moddep(0, 0); return (0); } +int parse_lambda(void) +{ + char lambda_id[16]; + + if (!infunc) + { + parse_error("Lambda functions only allowed in definitions"); + return (0); + } + /* + * Parse parameters and return value count + */ + if (scan() == OPEN_PAREN_TOKEN) + { + do + { + if (scan() == ID_TOKEN) + { + cfnparms++; + idlocal_add(tokenstr, tokenlen, WORD_TYPE, 2); + scan(); + } + } while (scantoken == COMMA_TOKEN); + if (scantoken != CLOSE_PAREN_TOKEN) + { + parse_error("Bad function parameter list"); + return (0); + } + scan(); + } + if (scantoken == OPEN_PAREN_TOKEN) + { + /* + * Function call - parameters generate before call address + */ + valseq = parse_list(NULL, NULL); + if (scantoken != CLOSE_PAREN_TOKEN) + { + parse_error("Missing closing parenthesis"); + return (NULL); + } + } + else + { + valseq = parse_expr(NULL, NULL); + } + lambda_seq[lambda_cnt++] = valseq; + func_tag = tag_new(DEF_TYPE); + sprintf(lambda_id, "_LAMBDA%04d", lambda_num++); + idfunc_add(idstr, strlen(idstr), DEF_TYPE | funcparms_type(cfnparms), func_tag); + return (func_tag); +} int parse_defs(void) { char c, *idstr; @@ -1469,6 +1533,7 @@ int parse_defs(void) return (0); } emit_bytecode_seg(); + lambda_cnt = 0; bytecode = 1; cfnparms = 0; infuncvals = 1; // Defaut to one return value for compatibility diff --git a/src/toolsrc/tokens.h b/src/toolsrc/tokens.h index b5c81d8..74f5735 100755 --- a/src/toolsrc/tokens.h +++ b/src/toolsrc/tokens.h @@ -1,10 +1,10 @@ /* - * Copyright (C) 2015 The 8-Bit Bunch. Licensed under the Apache License, Version 1.1 + * Copyright (C) 2015 The 8-Bit Bunch. Licensed under the Apache License, Version 1.1 * (the "License"); you may not use this file except in compliance with the License. * You may obtain a copy of the License at . - * Unless required by applicable law or agreed to in writing, software distributed under - * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF - * ANY KIND, either express or implied. See the License for the specific language + * Unless required by applicable law or agreed to in writing, software distributed under + * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF + * ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ @@ -91,6 +91,7 @@ #define NEG_TOKEN TOKEN('-') #define COMP_TOKEN TOKEN('~') #define LOGIC_NOT_TOKEN TOKEN('!') +#define LAMBDA_TOKEN TOKEN('&') #define INC_TOKEN TOKEN('P') #define DEC_TOKEN TOKEN('K') #define BPTR_TOKEN TOKEN('^')