125 lines
2.9 KiB
C
125 lines
2.9 KiB
C
|
/****************************************************************
|
||
|
* *
|
||
|
* Copyright 2001, 2011 Fidelity Information Services, Inc *
|
||
|
* *
|
||
|
* This source code contains the intellectual property *
|
||
|
* of its copyright holder(s), and is made available *
|
||
|
* under a license. If you do not know the terms of *
|
||
|
* the license, please stop and do not read further. *
|
||
|
* *
|
||
|
****************************************************************/
|
||
|
|
||
|
#include "mdef.h"
|
||
|
#include "compiler.h"
|
||
|
#include "opcode.h"
|
||
|
#include "toktyp.h"
|
||
|
#include "advancewindow.h"
|
||
|
#include "compile_pattern.h"
|
||
|
|
||
|
GBLREF triple *curtchain;
|
||
|
GBLREF char director_token, window_token;
|
||
|
|
||
|
error_def(ERR_EXPR);
|
||
|
error_def(ERR_RHMISSING);
|
||
|
|
||
|
LITREF octabstruct oc_tab[];
|
||
|
LITREF toktabtype tokentable[];
|
||
|
|
||
|
int eval_expr(oprtype *a)
|
||
|
{
|
||
|
triple *ref, *parm, *ref1;
|
||
|
int op_count;
|
||
|
oprtype x1, x2;
|
||
|
opctype i;
|
||
|
unsigned short type;
|
||
|
bool ind_pat;
|
||
|
DCL_THREADGBL_ACCESS;
|
||
|
|
||
|
SETUP_THREADGBL_ACCESS;
|
||
|
if (!expratom(&x1))
|
||
|
{ /* If didn't already add an error of our own, do so now with catch all expression error */
|
||
|
if (OC_RTERROR != curtchain->exorder.bl->exorder.bl->exorder.bl->opcode)
|
||
|
stx_error(ERR_EXPR);
|
||
|
return EXPR_FAIL;
|
||
|
}
|
||
|
while (i = tokentable[window_token].bo_type)
|
||
|
{
|
||
|
type = tokentable[window_token].opr_type;
|
||
|
if (oc_tab[i].octype & OCT_BOOL)
|
||
|
{
|
||
|
if (!TREF(shift_side_effects))
|
||
|
{
|
||
|
for (ref = curtchain->exorder.bl; oc_tab[ref->opcode].octype & OCT_BOOL; ref = ref->exorder.bl)
|
||
|
;
|
||
|
TREF(expr_start) = TREF(expr_start_orig) = ref;
|
||
|
}
|
||
|
switch (i)
|
||
|
{
|
||
|
case OC_NAND:
|
||
|
case OC_AND:
|
||
|
case OC_NOR:
|
||
|
case OC_OR:
|
||
|
TREF(shift_side_effects) = -TRUE; /* "special" TRUE triggers warning in expritem */
|
||
|
break;
|
||
|
default:
|
||
|
if (!TREF(shift_side_effects))
|
||
|
TREF(shift_side_effects) = TRUE;
|
||
|
}
|
||
|
}
|
||
|
coerce(&x1, type);
|
||
|
if (OC_CAT == i)
|
||
|
{
|
||
|
ref1 = ref = maketriple(OC_CAT);
|
||
|
for (op_count = 2; ; op_count++) /* op_count = first operand plus destination */
|
||
|
{
|
||
|
parm = newtriple(OC_PARAMETER);
|
||
|
ref1->operand[1] = put_tref(parm);
|
||
|
ref1 = parm;
|
||
|
ref1->operand[0] = x1;
|
||
|
if (TK_UNDERSCORE != window_token)
|
||
|
{
|
||
|
assert(op_count > 1);
|
||
|
ref->operand[0] = put_ilit(op_count);
|
||
|
ins_triple(ref);
|
||
|
break;
|
||
|
}
|
||
|
advancewindow();
|
||
|
if (!expratom(&x1))
|
||
|
{
|
||
|
stx_error(ERR_RHMISSING);
|
||
|
return EXPR_FAIL;
|
||
|
}
|
||
|
coerce(&x1, type);
|
||
|
}
|
||
|
} else
|
||
|
{
|
||
|
if ((TK_QUESTION == window_token) || (TK_NQUESTION == window_token))
|
||
|
{
|
||
|
ind_pat = FALSE;
|
||
|
if (TK_ATSIGN == director_token)
|
||
|
{
|
||
|
ind_pat = TRUE;
|
||
|
advancewindow();
|
||
|
}
|
||
|
if (!compile_pattern(&x2, ind_pat))
|
||
|
return EXPR_FAIL;
|
||
|
} else
|
||
|
{
|
||
|
advancewindow();
|
||
|
if (!expratom(&x2))
|
||
|
{
|
||
|
stx_error(ERR_RHMISSING);
|
||
|
return EXPR_FAIL;
|
||
|
}
|
||
|
}
|
||
|
coerce(&x2, type);
|
||
|
ref = newtriple(i);
|
||
|
ref->operand[0] = x1;
|
||
|
ref->operand[1] = x2;
|
||
|
}
|
||
|
x1 = put_tref(ref);
|
||
|
}
|
||
|
*a = x1;
|
||
|
return (OC_INDGLVN == curtchain->exorder.bl->opcode) ? EXPR_INDR : EXPR_GOOD;
|
||
|
}
|