2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2012-08-18 15:06:58 +02:00
|
|
|
gbx_eval.c
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2018-02-12 02:53:46 +01:00
|
|
|
(c) 2000-2017 Benoît Minisini <g4mba5@gmail.com>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2012-08-18 15:06:58 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2012-08-18 15:06:58 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2012-08-18 15:06:58 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#define __GBX_EVAL_C
|
|
|
|
|
|
|
|
#include "gb_common.h"
|
|
|
|
|
|
|
|
#include "gb_array.h"
|
|
|
|
#include "gbx_string.h"
|
|
|
|
#include "gbx_class.h"
|
|
|
|
#include "gbx_exec.h"
|
2012-05-19 23:35:26 +02:00
|
|
|
#include "gbx_debug.h"
|
2007-12-30 17:41:49 +01:00
|
|
|
#include "gbx_eval.h"
|
|
|
|
|
|
|
|
#include "gbx_c_collection.h"
|
|
|
|
#include "gbx_api.h"
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
bool EVAL_debug = FALSE;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
static EXPRESSION *EVAL;
|
|
|
|
|
|
|
|
static void EVAL_enter()
|
|
|
|
{
|
2012-08-18 15:06:58 +02:00
|
|
|
STACK_push_frame(&EXEC_current, EVAL->func.stack_usage);
|
|
|
|
|
|
|
|
BP = SP;
|
|
|
|
PP = SP;
|
|
|
|
FP = &EVAL->func;
|
|
|
|
PC = EVAL->func.code;
|
2016-01-03 17:44:24 +01:00
|
|
|
|
2012-08-18 15:06:58 +02:00
|
|
|
OP = NULL;
|
|
|
|
CP = &EVAL->exec_class;
|
|
|
|
//AP = ARCH_from_class(CP);
|
|
|
|
|
|
|
|
EP = NULL;
|
|
|
|
EC = NULL;
|
|
|
|
GP = NULL;
|
|
|
|
|
|
|
|
RP->type = T_VOID;
|
2016-01-03 17:44:24 +01:00
|
|
|
|
2012-05-19 23:35:26 +02:00
|
|
|
PROFILE_ENTER_FUNCTION();
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
|
2010-06-18 02:14:53 +02:00
|
|
|
static void error_EVAL_exec(void)
|
|
|
|
{
|
2012-05-19 23:35:26 +02:00
|
|
|
PROFILE_LEAVE_FUNCTION();
|
2012-10-29 01:46:53 +01:00
|
|
|
STACK_pop_frame(&EXEC_current);
|
2010-06-18 02:14:53 +02:00
|
|
|
}
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2008-05-10 17:17:07 +02:00
|
|
|
static void EVAL_exec()
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
2008-05-10 17:17:07 +02:00
|
|
|
// We need to push a void frame, because EXEC_leave looks at *PC to know if a return value is expected
|
2008-10-31 00:32:38 +01:00
|
|
|
STACK_push_frame(&EXEC_current, 0);
|
2008-05-10 17:17:07 +02:00
|
|
|
|
|
|
|
PC = NULL;
|
2012-05-23 21:26:15 +02:00
|
|
|
GP = NULL;
|
2008-05-10 17:17:07 +02:00
|
|
|
|
2010-06-18 02:14:53 +02:00
|
|
|
ON_ERROR(error_EVAL_exec)
|
2008-05-10 17:17:07 +02:00
|
|
|
{
|
|
|
|
EVAL_enter();
|
|
|
|
}
|
2010-06-18 02:14:53 +02:00
|
|
|
END_ERROR
|
2008-05-10 17:17:07 +02:00
|
|
|
|
|
|
|
EXEC_function_loop();
|
|
|
|
|
|
|
|
TEMP = *RP;
|
|
|
|
UNBORROW(&TEMP);
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
bool EVAL_expression(EXPRESSION *expr, EVAL_FUNCTION func)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
2012-08-18 15:06:58 +02:00
|
|
|
int i;
|
|
|
|
EVAL_SYMBOL *sym;
|
|
|
|
bool debug;
|
|
|
|
bool error;
|
|
|
|
int nvar;
|
2016-01-03 17:44:24 +01:00
|
|
|
EXPRESSION *save_eval;
|
2012-08-18 15:06:58 +02:00
|
|
|
/*HASH_TABLE *hash_table;
|
|
|
|
char *name;
|
|
|
|
CCOL_ENUM enum_state;*/
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2016-01-03 17:44:24 +01:00
|
|
|
save_eval = EVAL;
|
2012-08-18 15:06:58 +02:00
|
|
|
EVAL = expr;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2012-08-18 15:06:58 +02:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "EVAL: %s\n", EVAL->source);
|
|
|
|
#endif
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2014-05-18 23:39:52 +02:00
|
|
|
STACK_enable_for_eval();
|
2016-05-04 03:38:46 +02:00
|
|
|
debug = EXEC_debug;
|
|
|
|
EXEC_debug = FALSE;
|
|
|
|
error = FALSE;
|
2014-05-18 23:39:52 +02:00
|
|
|
|
2009-01-29 17:11:30 +01:00
|
|
|
nvar = EVAL->nvar;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2012-08-18 15:06:58 +02:00
|
|
|
STACK_check(nvar);
|
|
|
|
|
2016-01-03 17:44:24 +01:00
|
|
|
if (expr->custom)
|
|
|
|
nvar--;
|
|
|
|
|
2012-08-18 15:06:58 +02:00
|
|
|
for (i = 0; i < nvar; i++)
|
|
|
|
{
|
2016-01-03 17:44:24 +01:00
|
|
|
|
|
|
|
SP->type = T_VARIANT;
|
|
|
|
SP->_variant.vtype = T_NULL;
|
|
|
|
SP++;
|
2012-08-18 15:06:58 +02:00
|
|
|
|
|
|
|
sym = (EVAL_SYMBOL *)TABLE_get_symbol(EVAL->table, EVAL->var[EVAL->nvar - i - 1]);
|
2016-01-03 17:44:24 +01:00
|
|
|
if ((*func)(sym->sym.name, sym->sym.len, (GB_VARIANT *)&SP[-1]))
|
2012-08-18 15:06:58 +02:00
|
|
|
{
|
|
|
|
GB_Error("Unknown symbol");
|
2016-05-04 03:38:46 +02:00
|
|
|
error = TRUE;
|
|
|
|
goto __LEAVE;
|
2012-08-18 15:06:58 +02:00
|
|
|
}
|
2016-05-04 03:38:46 +02:00
|
|
|
|
|
|
|
BORROW(SP - 1);
|
2012-08-18 15:06:58 +02:00
|
|
|
}
|
2016-01-03 17:44:24 +01:00
|
|
|
|
|
|
|
if (expr->custom)
|
|
|
|
{
|
|
|
|
SP->type = T_OBJECT;
|
|
|
|
SP->_object.object = expr->parent;
|
2016-05-04 03:38:46 +02:00
|
|
|
OBJECT_REF(expr->parent);
|
2016-01-03 17:44:24 +01:00
|
|
|
SP++;
|
|
|
|
}
|
|
|
|
|
2008-05-10 17:17:07 +02:00
|
|
|
TRY
|
|
|
|
{
|
2012-08-18 15:06:58 +02:00
|
|
|
EVAL_exec();
|
|
|
|
}
|
|
|
|
CATCH
|
|
|
|
{
|
|
|
|
error = TRUE;
|
|
|
|
}
|
|
|
|
END_TRY
|
2016-01-03 17:44:24 +01:00
|
|
|
|
2016-05-04 03:38:46 +02:00
|
|
|
__LEAVE:
|
|
|
|
|
2014-05-18 23:39:52 +02:00
|
|
|
STACK_disable_for_eval();
|
2012-08-18 15:06:58 +02:00
|
|
|
EXEC_debug = debug;
|
2016-01-03 17:44:24 +01:00
|
|
|
EVAL = save_eval;
|
2012-08-18 15:06:58 +02:00
|
|
|
return error;
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|