2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2024-07-19 11:43:27 -04:00
|
|
|
* Copyright 2001, 2013 Fidelity Information Services, Inc *
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
|
|
|
* 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 "indir_enum.h"
|
|
|
|
#include "toktyp.h"
|
|
|
|
#include "mdq.h"
|
|
|
|
#include "advancewindow.h"
|
|
|
|
#include "fullbool.h"
|
|
|
|
#include "show_source_line.h"
|
|
|
|
|
2012-03-24 14:06:46 -04:00
|
|
|
error_def(ERR_VAREXPECTED);
|
2012-02-05 11:35:58 -05:00
|
|
|
|
|
|
|
int f_incr(oprtype *a, opctype op)
|
|
|
|
{
|
2012-03-24 14:06:46 -04:00
|
|
|
boolean_t ok;
|
2012-02-05 11:35:58 -05:00
|
|
|
oprtype *increment;
|
|
|
|
triple incrchain, *oldchain, *r, *savptr, targchain, tmpexpr, *triptr;
|
|
|
|
DCL_THREADGBL_ACCESS;
|
|
|
|
|
|
|
|
SETUP_THREADGBL_ACCESS;
|
|
|
|
r = maketriple(op);
|
|
|
|
/* may need to evaluate the increment (2nd arg) early and use result later: prepare to juggle triple chains */
|
|
|
|
dqinit(&targchain, exorder); /* a place for the operation and the target */
|
|
|
|
dqinit(&tmpexpr, exorder); /* a place to juggle the shifted chain in case it's active */
|
|
|
|
triptr = TREF(expr_start);
|
|
|
|
savptr = TREF(expr_start_orig); /* but make sure expr_start_orig == expr_start since this is a new chain */
|
|
|
|
TREF(expr_start_orig) = TREF(expr_start) = &tmpexpr;
|
|
|
|
oldchain = setcurtchain(&targchain); /* save the result of the first argument 'cause it evaluates 2nd */
|
2012-03-24 14:06:46 -04:00
|
|
|
switch (TREF(window_token))
|
2012-02-05 11:35:58 -05:00
|
|
|
{
|
|
|
|
case TK_IDENT:
|
|
|
|
/* $INCREMENT() performs an implicit $GET() on a first argument lvn so we use OC_PUTINDX because
|
|
|
|
* we know only at runtime whether to signal an UNDEF error (depending on whether we have
|
|
|
|
* VIEW "NOUNDEF" or "UNDEF" state; op_putindx creates the local variable unconditionally, even if
|
|
|
|
* we have "UNDEF" state, in which case any error in op_fnincr causes an op_kill of that local variable
|
|
|
|
*/
|
|
|
|
ok = (lvn(&(r->operand[0]), OC_PUTINDX, 0));
|
|
|
|
break;
|
|
|
|
case TK_CIRCUMFLEX:
|
|
|
|
ok = gvn();
|
|
|
|
r->opcode = OC_GVINCR;
|
|
|
|
r->operand[0] = put_ilit(0); /* dummy fill since emit_code does not like empty operand[0] */
|
|
|
|
break;
|
|
|
|
case TK_ATSIGN:
|
|
|
|
ok = indirection(&r->operand[0]);
|
|
|
|
r->opcode = OC_INDINCR;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ok = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!ok)
|
|
|
|
{
|
|
|
|
setcurtchain(oldchain);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
TREF(expr_start) = triptr; /* restore original shift chain */
|
|
|
|
TREF(expr_start_orig) = savptr;
|
|
|
|
increment = &r->operand[1];
|
2012-03-24 14:06:46 -04:00
|
|
|
if (TK_COMMA != TREF(window_token))
|
2012-02-05 11:35:58 -05:00
|
|
|
*increment = put_ilit(1); /* default optional increment to 1 */
|
|
|
|
else
|
|
|
|
{
|
2024-07-19 11:43:27 -04:00
|
|
|
dqinit(&incrchain, exorder); /* a place for the increment */
|
|
|
|
setcurtchain(&incrchain); /* increment expr must evaluate before the glvn in $INCR(glvn,expr) */
|
2012-02-05 11:35:58 -05:00
|
|
|
advancewindow();
|
2012-03-24 14:06:46 -04:00
|
|
|
if (EXPR_FAIL == expr(increment, MUMPS_NUM))
|
2012-02-05 11:35:58 -05:00
|
|
|
{
|
|
|
|
setcurtchain(oldchain);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2024-07-19 11:43:27 -04:00
|
|
|
dqadd(&targchain, &incrchain, exorder); /* dir before targ - this is a violation of info hiding */
|
|
|
|
setcurtchain(&targchain);
|
2012-02-05 11:35:58 -05:00
|
|
|
}
|
|
|
|
coerce(increment, OCT_MVAL);
|
|
|
|
ins_triple(r);
|
|
|
|
if (&tmpexpr != tmpexpr.exorder.bl)
|
|
|
|
{ /* one or more OC_GVNAME may have shifted so add to the end of the shift chain */
|
|
|
|
assert(TREF(shift_side_effects));
|
|
|
|
dqadd(TREF(expr_start), &tmpexpr, exorder); /* this is a violation of info hiding */
|
|
|
|
TREF(expr_start) = tmpexpr.exorder.bl;
|
2024-07-19 11:43:27 -04:00
|
|
|
assert(OC_GVSAVTARG == (TREF(expr_start))->opcode);
|
2012-02-05 11:35:58 -05:00
|
|
|
triptr = newtriple(OC_GVRECTARG); /* restore the result of the last gvn to preserve $referece (the naked) */
|
|
|
|
triptr->operand[0] = put_tref(TREF(expr_start));
|
|
|
|
}
|
2012-03-24 14:06:46 -04:00
|
|
|
if (!TREF(shift_side_effects) || (GTM_BOOL != TREF(gtm_fullbool)) || (OC_INDINCR != r->opcode))
|
2012-02-05 11:35:58 -05:00
|
|
|
{ /* put it on the end of the main chain as there's no reason to play more with the ordering */
|
|
|
|
setcurtchain(oldchain);
|
2012-03-24 14:06:46 -04:00
|
|
|
triptr = (TREF(curtchain))->exorder.bl;
|
2024-07-19 11:43:27 -04:00
|
|
|
dqadd(triptr, &targchain, exorder); /* this is a violation of info hiding */
|
2012-02-05 11:35:58 -05:00
|
|
|
} else /* need full side effects or indirect 1st argument so put everything on the shift chain */
|
|
|
|
{ /* add the chain after "expr_start" which may be much before "curtchain" */
|
|
|
|
newtriple(OC_GVSAVTARG);
|
|
|
|
setcurtchain(oldchain);
|
|
|
|
assert(NULL != TREF(expr_start));
|
2024-07-19 11:43:27 -04:00
|
|
|
dqadd(TREF(expr_start), &targchain, exorder); /* this is a violation of info hiding */
|
|
|
|
TREF(expr_start) = targchain.exorder.bl;
|
2012-02-05 11:35:58 -05:00
|
|
|
triptr = newtriple(OC_GVRECTARG);
|
|
|
|
triptr->operand[0] = put_tref(TREF(expr_start));
|
|
|
|
}
|
2024-07-19 11:43:27 -04:00
|
|
|
/* $increment() args need to avoid side effect processing but that's handled in expritem so eval_expr gets $i()'s SE flag */
|
2012-02-05 11:35:58 -05:00
|
|
|
*a = put_tref(r);
|
|
|
|
return TRUE;
|
|
|
|
}
|