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 "gdsroot.h"
|
|
|
|
#include "gtm_facility.h"
|
|
|
|
#include "fileinfo.h"
|
|
|
|
#include "gdsbt.h"
|
|
|
|
#include "gdsfhead.h"
|
|
|
|
#include "stringpool.h"
|
|
|
|
#include "op.h"
|
|
|
|
#include "gvcst_protos.h" /* for gvcst_get prototype */
|
|
|
|
#include "gvcmx.h"
|
|
|
|
#include "gvusr.h"
|
|
|
|
#include "sgnl.h"
|
|
|
|
|
|
|
|
GBLREF gv_namehead *gv_target;
|
|
|
|
GBLREF gd_region *gv_cur_region;
|
|
|
|
|
2024-07-19 11:43:27 -04:00
|
|
|
/* This code is very similar to op_fngvget.c except, if the gvn is undefined, this returns an undefined value as a signal to
|
|
|
|
* op_fnget2, which, in turn, returns a specified "default" value; that slight of hand deals with order of evaluation issues
|
|
|
|
* Any changes to this routine most likely have to be made in op_fngvget.c as well.
|
2012-02-05 11:35:58 -05:00
|
|
|
*/
|
2024-07-19 11:43:27 -04:00
|
|
|
void op_fngvget1(mval *dst)
|
2012-02-05 11:35:58 -05:00
|
|
|
{
|
|
|
|
boolean_t gotit;
|
|
|
|
DCL_THREADGBL_ACCESS;
|
|
|
|
|
|
|
|
SETUP_THREADGBL_ACCESS;
|
|
|
|
if (TREF(gv_last_subsc_null) && NEVER == gv_cur_region->null_subs)
|
|
|
|
sgnl_gvnulsubsc();
|
|
|
|
|
|
|
|
switch (gv_cur_region->dyn.addr->acc_meth)
|
|
|
|
{
|
|
|
|
case dba_bg :
|
|
|
|
case dba_mm :
|
2024-07-19 11:43:27 -04:00
|
|
|
gotit = gv_target->root ? gvcst_get(dst) : FALSE;
|
2012-02-05 11:35:58 -05:00
|
|
|
break;
|
|
|
|
case dba_cm :
|
2024-07-19 11:43:27 -04:00
|
|
|
gotit = gvcmx_get(dst);
|
2012-02-05 11:35:58 -05:00
|
|
|
break;
|
|
|
|
default :
|
2024-07-19 11:43:27 -04:00
|
|
|
if (gotit = gvusr_get(dst)) /* NOTE: assignment */
|
|
|
|
s2pool(&dst->str);
|
2012-02-05 11:35:58 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!gotit)
|
2024-07-19 11:43:27 -04:00
|
|
|
dst->mvtype = 0;
|
|
|
|
assert(0 == (dst->mvtype & MV_ALIASCONT)); /* Should be no alias container flag */
|
2012-02-05 11:35:58 -05:00
|
|
|
return;
|
|
|
|
}
|