53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
/****************************************************************
|
|
* *
|
|
* Copyright 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 "lv_val.h"
|
|
#include "toktyp.h"
|
|
#include "compiler.h"
|
|
#include "opcode.h"
|
|
#include "indir_enum.h"
|
|
#include "cache.h"
|
|
#include "op.h"
|
|
#include <rtnhdr.h>
|
|
#include "valid_mname.h"
|
|
#include "gtm_string.h"
|
|
#include "cachectl.h"
|
|
#include "gtm_text_alloc.h"
|
|
#include "callg.h"
|
|
#include "mdq.h"
|
|
#include "stack_frame.h"
|
|
#include "stringpool.h"
|
|
#include "mv_stent.h"
|
|
#include "min_max.h"
|
|
#include "glvn_pool.h"
|
|
|
|
/* [Used by SET] Store a value in a saved local or global variable. */
|
|
void op_stoglvn(uint4 indx, mval *value)
|
|
{
|
|
lv_val *lv;
|
|
opctype oc;
|
|
DCL_THREADGBL_ACCESS;
|
|
|
|
SETUP_THREADGBL_ACCESS;
|
|
oc = (TREF(glvn_pool_ptr))->slot[indx].sav_opcode;
|
|
if (OC_SAVLVN == oc)
|
|
{ /* lvn */
|
|
lv = op_rfrshlvn(indx, OC_PUTINDX);
|
|
lv->v = *value;
|
|
} else if (OC_NOOP != oc) /* if indirect error blew set up, skip this */
|
|
{ /* gvn */
|
|
op_rfrshgvn(indx, oc);
|
|
op_gvput(value);
|
|
}
|
|
}
|