70 lines
1.5 KiB
C
70 lines
1.5 KiB
C
|
/****************************************************************
|
||
|
* *
|
||
|
* Copyright 2001 Sanchez Computer Associates, 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 "iotimer.h"
|
||
|
#include "indir_enum.h"
|
||
|
#include "advancewindow.h"
|
||
|
#include "cmd.h"
|
||
|
|
||
|
GBLREF char window_token;
|
||
|
|
||
|
int m_zdeallocate(void)
|
||
|
{
|
||
|
|
||
|
triple *ref;
|
||
|
oprtype indopr;
|
||
|
bool indirect;
|
||
|
|
||
|
error_def(ERR_RPARENMISSING);
|
||
|
|
||
|
indirect = FALSE;
|
||
|
newtriple(OC_LKINIT);
|
||
|
switch(window_token)
|
||
|
{
|
||
|
case TK_EOL:
|
||
|
case TK_SPACE:
|
||
|
break;
|
||
|
case TK_ATSIGN:
|
||
|
if (!indirection(&indopr))
|
||
|
return FALSE;
|
||
|
ref = newtriple(OC_COMMARG);
|
||
|
ref->operand[0] = indopr;
|
||
|
ref->operand[1] = put_ilit((mint)indir_zdeallocate);
|
||
|
return TRUE;
|
||
|
break;
|
||
|
case TK_LPAREN:
|
||
|
do
|
||
|
{
|
||
|
advancewindow();
|
||
|
if (EXPR_FAIL == nref())
|
||
|
return FALSE;
|
||
|
} while (TK_COMMA == window_token);
|
||
|
if (TK_RPAREN != window_token)
|
||
|
{
|
||
|
stx_error(ERR_RPARENMISSING);
|
||
|
return FALSE;
|
||
|
}
|
||
|
advancewindow();
|
||
|
break;
|
||
|
default:
|
||
|
if (EXPR_FAIL == nref())
|
||
|
return FALSE;
|
||
|
break;
|
||
|
}
|
||
|
ref = newtriple(OC_ZDEALLOCATE);
|
||
|
ref->operand[0] = put_ilit(NO_M_TIMEOUT);
|
||
|
return EXPR_GOOD;
|
||
|
}
|