fis-gtm/sr_port/f_zahandle.c

69 lines
1.6 KiB
C
Raw Normal View History

/****************************************************************
* *
2024-07-19 11:43:27 -04:00
* Copyright 2001, 2012 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 "indir_enum.h"
#include "toktyp.h"
#include "mdq.h"
#include "fullbool.h"
error_def(ERR_NAMEEXPECTED);
error_def(ERR_VAREXPECTED);
int f_zahandle(oprtype *a, opctype op)
{
2024-07-19 11:43:27 -04:00
triple *oldchain, *r;
save_se save_state;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
r = maketriple(op);
switch (TREF(window_token))
{
case TK_IDENT:
if (!lvn(&(r->operand[0]), OC_GETINDX, 0))
return FALSE;
ins_triple(r);
break;
case TK_CIRCUMFLEX:
stx_error(ERR_NAMEEXPECTED);
return FALSE;
case TK_ATSIGN:
2024-07-19 11:43:27 -04:00
if (SHIFT_SIDE_EFFECTS)
{
2024-07-19 11:43:27 -04:00
START_GVBIND_CHAIN(&save_state, oldchain);
if (!indirection(&(r->operand[0])))
{
setcurtchain(oldchain);
return FALSE;
}
r->operand[1] = put_ilit((mint)indir_fnzahandle);
ins_triple(r);
2024-07-19 11:43:27 -04:00
PLACE_GVBIND_CHAIN(&save_state, oldchain);
} else
{
if (!indirection(&(r->operand[0])))
return FALSE;
r->operand[1] = put_ilit((mint)indir_fnzahandle);
ins_triple(r);
}
r->opcode = OC_INDFUN;
break;
default:
stx_error(ERR_VAREXPECTED);
return FALSE;
}
*a = put_tref(r);
return TRUE;
}