2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2024-07-19 11:43:27 -04:00
|
|
|
* Copyright 2001, 2012 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 "mdq.h"
|
|
|
|
#include "compiler.h"
|
|
|
|
#include "opcode.h"
|
|
|
|
#include "indir_enum.h"
|
|
|
|
#include "toktyp.h"
|
|
|
|
#include "mmemory.h"
|
|
|
|
#include "advancewindow.h"
|
|
|
|
#include "cmd.h"
|
|
|
|
|
|
|
|
int m_goto(void)
|
|
|
|
{
|
2012-03-24 14:06:46 -04:00
|
|
|
oprtype *cr;
|
|
|
|
triple *obp, *oldchain, *ref0, *ref1, tmpchain, *triptr;
|
2012-02-05 11:35:58 -05:00
|
|
|
DCL_THREADGBL_ACCESS;
|
|
|
|
|
|
|
|
SETUP_THREADGBL_ACCESS;
|
|
|
|
dqinit(&tmpchain, exorder);
|
|
|
|
oldchain = setcurtchain(&tmpchain);
|
|
|
|
if (!entryref(OC_JMP, OC_EXTJMP, (mint)indir_goto, TRUE, FALSE, FALSE))
|
|
|
|
{
|
|
|
|
setcurtchain(oldchain);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
setcurtchain(oldchain);
|
2012-03-24 14:06:46 -04:00
|
|
|
if (TK_COLON == TREF(window_token))
|
2012-02-05 11:35:58 -05:00
|
|
|
{
|
|
|
|
advancewindow();
|
2012-03-24 14:06:46 -04:00
|
|
|
cr = (oprtype *)mcalloc(SIZEOF(oprtype));
|
|
|
|
if (!bool_expr(FALSE, cr))
|
2012-02-05 11:35:58 -05:00
|
|
|
return FALSE;
|
2024-07-19 11:43:27 -04:00
|
|
|
if ((TREF(expr_start) != TREF(expr_start_orig)) && (OC_NOOP != (TREF(expr_start))->opcode))
|
2012-02-05 11:35:58 -05:00
|
|
|
{
|
|
|
|
triptr = newtriple(OC_GVRECTARG);
|
|
|
|
triptr->operand[0] = put_tref(TREF(expr_start));
|
|
|
|
}
|
|
|
|
obp = oldchain->exorder.bl;
|
|
|
|
dqadd(obp, &tmpchain, exorder); /*this is a violation of info hiding*/
|
2024-07-19 11:43:27 -04:00
|
|
|
if ((TREF(expr_start) != TREF(expr_start_orig)) && (OC_NOOP != (TREF(expr_start))->opcode))
|
2012-02-05 11:35:58 -05:00
|
|
|
{
|
|
|
|
ref0 = newtriple(OC_JMP);
|
|
|
|
ref1 = newtriple(OC_GVRECTARG);
|
|
|
|
ref1->operand[0] = put_tref(TREF(expr_start));
|
|
|
|
*cr = put_tjmp(ref1);
|
|
|
|
tnxtarg(&ref0->operand[0]);
|
|
|
|
} else
|
|
|
|
tnxtarg(cr);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
obp = oldchain->exorder.bl;
|
|
|
|
dqadd(obp, &tmpchain, exorder); /*this is a violation of info hiding*/
|
|
|
|
return TRUE;
|
|
|
|
}
|