71 lines
1.7 KiB
C
71 lines
1.7 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 "indir_enum.h"
|
|
#include "toktyp.h"
|
|
#include "svnames.h"
|
|
#include "advancewindow.h"
|
|
#include "cmd.h"
|
|
|
|
int m_zlink(void)
|
|
{
|
|
int rval;
|
|
oprtype file, quals;
|
|
triple *ref;
|
|
DCL_THREADGBL_ACCESS;
|
|
|
|
SETUP_THREADGBL_ACCESS;
|
|
if ((TK_EOL == TREF(window_token)) || (TK_SPACE == TREF(window_token)) || (TK_COLON == TREF(window_token)))
|
|
{
|
|
ref = newtriple(OC_SVGET);
|
|
ref->operand[0] = put_ilit(SV_ZSOURCE);
|
|
file = put_tref(ref);
|
|
if (TK_COLON == TREF(window_token))
|
|
{
|
|
advancewindow();
|
|
if (EXPR_FAIL == expr(&quals, MUMPS_STR))
|
|
return FALSE;
|
|
} else
|
|
{
|
|
ref = newtriple(OC_SVGET);
|
|
ref->operand[0] = put_ilit(SV_ZCOMPILE);
|
|
quals = put_tref(ref);
|
|
}
|
|
} else
|
|
{
|
|
if (EXPR_FAIL == (rval = expr(&file, MUMPS_STR))) /* NOTE assignment */
|
|
return FALSE;
|
|
if (TK_COLON != TREF(window_token))
|
|
{
|
|
if (EXPR_INDR == rval)
|
|
{
|
|
make_commarg(&file, indir_zlink);
|
|
return TRUE;
|
|
}
|
|
ref = newtriple(OC_SVGET);
|
|
ref->operand[0] = put_ilit(SV_ZCOMPILE);
|
|
quals = put_tref(ref);
|
|
} else
|
|
{
|
|
advancewindow();
|
|
if (EXPR_FAIL == expr(&quals, MUMPS_STR))
|
|
return FALSE;
|
|
}
|
|
}
|
|
ref = newtriple(OC_ZLINK);
|
|
ref->operand[0] = file;
|
|
ref->operand[1] = quals;
|
|
return TRUE;
|
|
}
|