* harbour/include/hbpp.h
* harbour/include/hbvm.h
* harbour/include/hbcomp.h
* harbour/include/hbcompdf.h
* harbour/include/hbtrace.h
* harbour/include/hbapilng.h
* harbour/include/hbinit.h
* harbour/source/rtl/langapi.c
* harbour/source/pp/ppcore.c
* harbour/source/pp/hbpp.c
* harbour/source/vm/itemapi.c
* harbour/source/vm/hvm.c
* harbour/source/common/hbver.c
* harbour/source/common/hbtrace.c
* harbour/source/common/expropt2.c
* harbour/source/compiler/complex.c
* harbour/source/compiler/hbident.c
* harbour/source/compiler/hbfunchk.c
* changed some declarations from 'char *' to 'const char *' and
fixed casting for some more pedantic compilers
* harbour/source/pp/ppcore.c
! fixed one typo which could cause memory leak and even GPF
* harbour/common.mak
* harbour/source/vm/Makefile
* harbour/source/rtl/Makefile
- harbour/source/rtl/set.c
+ harbour/source/vm/set.c
* harbour/include/hbstack.h
* harbour/source/vm/estack.c
* moved from RTL to HVM
* eliminated hb_set global structure
* moved set structure to HVM stack
+ added internal function hb_setClone() which is used to create
copy of SET structure for child threads
* hidden HB_SET_STRUCT declaration - 3-rd part code must not access it
directly. Dedicated hb_set*() functions should be used instead.
+ added new function:
BOOL hb_setSetItem( HB_set_enum set_specifier, PHB_ITEM pItem )
which allow to change some set by 3-rd party code.
TODO: not all SETs can be changed yet - if someone have a while
then please add code for missing ones.
* harbour/include/set.ch
* harbour/include/hbset.h
+ added _SET_CODEPAGE which works like _SET_LANGUAGE giving common
interface
* harbour/include/hbsetup.h
+ added HB_CODEPAGE_DEFAULT which works like HB_LANG_DEFAULT
* harbour/source/vm/hvm.c
! fixed builds which uses non EN lang or code page modules
by forcing linking the chosen ones
* harbour/include/hbstack.h
* harbour/source/vm/estack.c
* harbour/include/hbapicdp.h
* harbour/source/rtl/cdpapi.c
- removed global code page variable: hb_cdp_page and moved
code page settings to HVM stack
+ added new function hb_cdpID() which returns current code page
character ID
+ added new functions hb_vmCDP() and hb_vmSetCDP() to get/set
active for given thread code page structure
* harbour/include/hbstack.h
* harbour/source/vm/estack.c
* harbour/include/hbapilng.h
* harbour/source/rtl/langapi.c
+ moved lang setting to HVM stack
+ added new functions hb_vmLang() and hb_vmSetLang() to get/set
active for given thread language module
* harbour/include/hbvmpub.h
* harbour/include/hbstack.h
* harbour/include/hbapi.h
* harbour/source/vm/estack.c
* harbour/source/vm/dynsym.c
* harbour/source/vm/itemapi.c
* harbour/source/vm/memvars.c
* changed memvar handles for HB_HANDLE to void * which is directly
casted to PHB_ITEM - new memvar references
* changed HB_DYNS declarations for MT mode. In MT mode HB_DYNS does
not contain area and memvar handles which are moved to thread
local HVM stack
+ added array for thread local memvar and area handles to HVM stack
% eliminated global continues array with all memvars and detached locals
% changed HB_IT_MEMVAR to use pointers to HB_ITEM directly - it resolve
synchronization problems in MT mode and should also improve the speed
and reduce memory usage. It should be well visible in applications which
uses lot of detached locals.
- removed hb_memvarsInit() and hb_memvarsFree() - they are not necessary
now because we do not longer use array with all allocated memvars
and detached local and private stack initialization is made
automatically
+ added internal functions hb_dynsymGetMemvar()/hb_dynsymSetMemvar()
+ added hb_memvarGetValueBySym() for debugger
* moved PRIVATE variable stack to HVM stack
* eliminated all static variables in memvars module
* harbour/include/hbstack.h
* harbour/source/vm/estack.c
* harbour/source/rtl/fserror.c
* moved IO errors to HVM stack
+ added special IO error handling which works without HVM stack
It allows to use hb_fs*() functions without allocated stack
by 3-rd party threads.
* harbour/source/rtl/filesys.c
* moved hb_fsCurDir() to HVM stack with special handling to work
with HVM stack like IO errors
* harbour/source/rdd/workarea.c
* allocated RDD node array in bigger peaces to reduce later RT
reallocations in MT mode. If user want to add dynamically more
then 64 RDDs then it should synchronize this operation himself.
* harbour/source/rdd/wacore.c
* moved WA list, current WA, default RDD and neteer() flag to HVM stack
* harbour/include/hbdefs.h
- removed HB_HANDLE declaration
* harbour/include/hbapi.h
- removed HB_VALUE structure - it's not longer used due to different
memvar handling
* updated hb_struMemvar to new memvar handling
* replaced hb_vmIsLocalRef() and hb_memvarsIsMemvarRef() with
hb_vmIsStackRef() which respect multiple stack and new memvar
and static structures and location in GC mark pass.
* harbour/include/hbstack.h
* harbour/source/vm/estack.c
* harbour/source/vm/hvm.c
+ added support for thread specific data located on HVM stack
Now it's possible to allocate static variables which are
local to thread. Such variables are allocated on HVM stack
and automatically destroyed. To declare new TSD variable use:
HB_TSD_NEW( <name>, <size>, <init>, <destruct> )
<name> - name of variable which holds TSD handler
<size> - size of TSD are which has to be allocated
<init> - init function, executed when new TSD is allocated by thread
(thread access given TSD 1-st time). This function receives
void * pointer to allocated area.
<destruct> - destructor function executed when HVM stack is destroyed
f.e.:
static HB_TSD_NEW( s_scrData, sizeof( HB_SCRDATA ),
NULL, hb_xSaveRestRelease );
To initialize dynamically allocated TSD variable use:
HB_TSD_INIT( <name>, <size>, <init>, <destruct> )
Pointer to TSD can be accessed using hb_stackGetTSD( &<name> )
where <name> is name of variable which holds TSD handler, f.e.:
PHB_SCRDATA pScrData = ( PHB_SCRDATA ) hb_stackGetTSD( &s_scrData );
See source/rtl/xsavescr.c as an example
It's also possible to test if data has been already allocated for
current thread by:
hb_stackTestTSD( &<name> ) => pData
it works like hb_stackGetTSD() but return NULL if current thread data
has not been allocated yet.
* harbour/include/hbstack.h
* harbour/source/vm/estack.c
* changed hb_stack location to thread local storage in MT mode
+ added functions and macros to access/assign new HVM stack members
+ changed garbage collection mark functions to work with multiple
stacks, thread local static and memvar variables
* harbour/source/rtl/xsavescr.c
* use TSD data for screen buffer to make __XSAVESCREEN()/__XRESTSCREEN()
thread independent
* harbour/source/rtl/idle.c
* use TSD data for idle task settings and codeblocks
- removed hb_idleShutDown() - it's not longer necessary
* harbour/source/rtl/setkey.c
* use TSD data for allocated keys to make SETKEY() thread independent
* harbour/source/rtl/math.c
* moved math error handler, math error block, math error mode and
math error structure to TSD
* harbour/source/rtl/errorapi.c
* moved error handler, error block, error launch counter and DOS error
value to TSD
* harbour/source/rtl/inkey.c
* moved inkey "before" and "after" blocks to TSD
* harbour/source/rdd/hsx/hsx.c
* moved HSX handles array to TSD
* harbour/include/hbapigt.h
* harbour/source/rtl/console.c
- removed hb_setkeyInit() and hb_setkeyExit() - they are not longer
necessary, allocated resources will be freed by TSD destructor
function
* harbour/include/hbapi.h
* harbour/source/rtl/console.c
* removed hb_conXSaveRestRelease() - it's not longer necessary,
allocated resources will be freed by TSD destructor function
* harbour/source/vm/macro.c
* moved s_macroFlags to TSD
* harbour/source/rtl/accept.c
* moved accept buffer to TSD
* harbour/include/hbcomp.h
* harbour/include/hbcompdf.h
* harbour/include/hbxvm.h
* harbour/source/compiler/hbmain.c
* harbour/source/compiler/hbfix.c
* harbour/source/compiler/hbpcode.c
* harbour/source/compiler/hbdead.c
* harbour/source/compiler/complex.c
* harbour/source/compiler/genc.c
* harbour/source/compiler/gencc.c
* harbour/source/compiler/hbopt.c
* harbour/source/compiler/hblbl.c
* harbour/source/compiler/hbstripl.c
* harbour/source/compiler/harbour.y
* harbour/source/compiler/harbour.yyc
* harbour/source/compiler/harbour.yyh
* harbour/source/vm/hvm.c
+ added new PCODE HB_P_THREADSTATICS
+ added support for static variables which are local to thread:
THREAD STATIC <varname [:= <exp>], ...>
They work like normal static variables but each thread operates
on its own copy.
* added protection against possible double call to hb_xfree()
It can happen due to wrong marking expressions as used by bison
and executing destructors after our free code when syntax error
appear.
* harbour/source/rtl/perfuncs.prg
* harbour/source/rtl/menuto.prg
* harbour/source/rtl/getlist.prg
* harbour/source/rtl/readvar.prg
* harbour/source/rtl/text.prg
* use THREAD STATIC variables to make above code MT safe
* harbour/include/hbgtcore.h
* harbour/source/rtl/hbgtcore.c
+ added hb_gt_BaseFree() which will release current GT pointer
locked by hb_gt_Base() function. This function will be used
to optional automatic GT access synchronization when threads
share the same GT.
* harbour/source/rtl/gtapi.c
* harbour/source/rtl/inkeyapi.c
* harbour/source/rtl/mouseapi.c
* harbour/contrib/hbct/ctwin.c
* free GT pointer by hb_gt_BaseFree()
TODO: CTWIN is not MT safe yet - it will be updated together
with core GT when we add multi window interface for
thread with own console window.
* harbour/bin/hb-func.sh
* harbour/config/linux/gcc.cf
+ added rt lib to Linux builds
* harbour/bin/postinst.sh
* create MT safe version of FM stat library: fmmt
* harbour/bin/pack_src.sh
+ added support for ZIP packing
* harbour/include/hbapi.h
* harbour/include/hbvm.h
* harbour/source/vm/hvm.c
+ added hb_vmThreadInit()/hb_vmThreadQuit() functions - they initialize
HVM for calling thread so it can execute .prg code and call HVM
functions. They can be used by 3-rd party code threads.
+ added hb_vmUnlock()/hb_vmLock() functions which informs that
thread will not operate on HVM structures for some time allowing
to execute single thread only processes like GC.
+ added hb_vmThreadQuitRequest() which sends stop request to given
thread
+ added hb_vmWaitForThreads() which stops main thread execution waiting
for other threads
+ added hb_vmSuspendThreads() and hb_vmResumeThreads() used be GC
to stop all HVM threads before mark/swap scan
+ added linked list of HVM stacks
+ added hb_vmTerminateThreads() used by main HVM thread in QUIT state
* moved EXIT procedures execution from QUIT request to HVM QUIT state
in MT mode. It may effects some non structural code which tries to
access private variables in EXIT functions but it's much cleaner
and understandable for user. Please remember that we guaranties
that ALWAYS code in BEGIN SEQUENCE is _always_ executed even after
HVM QUIT request just like destructs. Personally I think that we
should move EXIT procedures execution also in ST mode.
* changed startup and cleanup code for new internal structures
* changes startup and cleanup code for MT mode
% removed some redundant HB_ITEM type settings
! eliminated non MT safe code which was using reference counters
without protection
* harbour/common.mak
* harbour/source/vm/Makefile
+ harbour/include/hbthread.h
+ harbour/source/vm/thread.c
+ added C level functions to manage threads and synchronization objects
See hbthread.h for detail description. They are based on PTHREAD API
and PTHREAD documentation can be used as reference. I intentionally
keep this list small for easier multiplatform porting.
Now they have been implemented for PTHREADS (POSIX threads supported by
many different OSes), MS-Win32/64 and OS2. The OS2 version is not tested
at all. I do not even know if it can be compiled so please make tests.
I used Internet resources and some part of xHarbour code as documentation
for OS2 MT API. It should be quite easy to add other platforms if necessary.
Harbour core code needs non recursive mutexes, conditional variables and
TLS for one pointer. If platforms does not support conditional variables
(f.e. MS-Win or OS2) then they can be emulated using multistate semaphores.
+ added .prg functions to manage threads and synchronization objects:
hb_threadStart( <@sStart()> | <bStart> [, <params,...> ] ) -> <pThID>
hb_threadJoin( <pThID> [, @<xRetCode> ] ) -> <lOK>
hb_threadDetach( <pThID> ) -> <lOK>
hb_threadQuitRequest( <pThID> ) -> <lOK>
hb_threadWaitForAll() -> NIL
hb_mutexCreate() -> <pMtx>
hb_mutexLock( <pMtx> [, <nTimeOut> ] ) -> <lLocked>
hb_mutexUnlock( <pMtx> ) -> <lOK>
hb_mutexNotify( <pMtx> [, <xVal>] ) -> NIL
hb_mutexNotifyAll( <pMtx> [, <xVal>] ) -> NIL
hb_mutexSubscribe( <pMtx>, [ <nTimeOut> ] [, @<xSubscribed> ] ) -> <lSubscribed>
hb_mutexSubscribeNow( <pMtx>, [ <nTimeOut> ] [, @<xSubscribed> ] ) -> <lSubscribed>
The function list should give similar to xHarbour API but they are not exactly
the same and except of hb_mutex*() functions which should replicate xHarbour behavior.
+ harbour/source/vm/vmmt
+ harbour/source/vm/vmmt/Makefile
+ added hbvmmt library to GNU make builds.
Non GNU make builds should be updated.
* harbour/contrib/hbct/pos1.c
* harbour/contrib/gtwvg/gtwvg.c
* harbour/contrib/rddads/ads1.c
* harbour/contrib/hbmisc/spd.c
* harbour/contrib/hbbmcdx/bmdbfcdx.c
* harbour/contrib/examples/rdddbt/dbfdbt1.c
* harbour/source/vm/runner.c
* harbour/source/vm/itemapi.c
* harbour/source/vm/hvm.c
* harbour/source/rtl/console.c
* harbour/source/rtl/strcase.c
* harbour/source/rtl/spfiles.c
* harbour/source/rtl/defpath.c
* harbour/source/rtl/hbgtcore.c
* harbour/source/rtl/dateshb.c
* harbour/source/rtl/mlcfunc.c
* harbour/source/rtl/fstemp.c
* harbour/source/rtl/is.c
* harbour/source/rtl/setcolor.c
* harbour/source/rtl/errorint.c
* harbour/source/rtl/transfrm.c
* harbour/source/rtl/dates.c
* harbour/source/rtl/filesys.c
* harbour/source/rtl/gtdos/gtdos.c
* harbour/source/rtl/gtwin/gtwin.c
* harbour/source/rtl/gtwvt/gtwvt.c
* harbour/source/rtl/gtxwc/gtxwc.c
* harbour/source/rtl/gttrm/gttrm.c
* harbour/source/rtl/gtpca/gtpca.c
* harbour/source/rtl/gtcgi/gtcgi.c
* harbour/source/rtl/gtcrs/gtcrs.c
* harbour/source/rtl/gtstd/gtstd.c
* harbour/source/rtl/gtsln/gtsln.c
* harbour/source/rtl/gtsln/gtsln.h
* harbour/source/rdd/dbf1.c
* harbour/source/rdd/sdf1.c
* harbour/source/rdd/delim1.c
* harbour/source/rdd/dbcmd.c
* harbour/source/rdd/hbdbsort.c
* harbour/source/rdd/workarea.c
* harbour/source/rdd/dbffpt/dbffpt1.c
* harbour/source/rdd/dbfcdx/dbfcdx1.c
* harbour/source/rdd/dbfntx/dbfntx1.c
* harbour/source/rdd/hsx/hsx.c
* harbour/source/rdd/hbsix/sxfname.c
* use API functions instead of direct accessing to hb_cdp_page or hb_set
* harbour/source/rtl/fstemp.c
* harbour/source/rtl/fssize.c
* harbour/source/rtl/hbffind.c
* harbour/source/rtl/filesys.c
* encapsulate potentially slow IO operation inside
hb_vmUnlock()/hb_vmLock() calls to allow other thread GC
activation
* harbour/contrib/hbnf/fttext.c
! fixed casting
* harbour/contrib/gtwvg/gtwvg.h
- removed #include <comctl32.h> - my MinGW and MinGW/CE instalations do
not have them. If it exists in some newer ones then it has to be
covered by #if version checking.
* harbour/source/vm/dynsym.c
- removed hb_dynsymLog() and hb_dynsymMemvarHandle()
* modified code to be MT safe and improved speed of some operations
* added MUEXT protection for global dynamic table access
* harbour/include/hbapi.h
* harbour/source/vm/garbage.c
* changed to work with MT HVM
* changed to work with new memvar structures and thread local static and
memvar variables
* added MUEXT protection for linked block lists
+ added parameter to hb_gcCollectAll() which will force GC activation
in MT mode by temporary suspending all executed threads.
+ added logical parameter to HB_GCALL() functions which is passed to
hb_gcCollectAll()
* harbour/source/vm/fm.c
* added MUEXT protection for FM statistic module
* added MT protection for reference counters. For platforms
which supports atomic incrmenetation/decrementation (f.e.
Interlocked*() functions in MS-Win) such operations are
used. For other it's MUTEX protection. It gives MT safe
readonly access for HVM complex variables without user
synchronization. The MUTEX protection can cause some speed
overhead so it's good to define MT safe version of
HB_ATOM_INC()/HB_ATOM_DEC() in hbthread.h if given platform
has them. Now they are defined only for Windows. For other
platforms We can define can define them in assembler for some
most popular CPUs in the future.
* harbour/source/vm/classes.c
* changed class definition array. Now it keeps pointers to class
structures.
* In MT mode allocated at HVM startup big enough array for class
definitions to avoid later RT reallocations. It effectively eliminates
MUTEX synchronization for class structure access.
* protect by MUTEX code for new class creation
* harbour/source/debug/dbgentry.c
* eliminated hbvmopt.h and direct accessing to HVM structures
* harbour/source/rtl/gtclip.c
* protect with MUTEX access to internal clipboard data
* harbour/source/rdd/nulsys/nulsys.c
+ added hb_rddCloseAll()
+ harbour/tests/mt
+ harbour/tests/mt/mttest01.prg
+ harbour/tests/mt/mttest02.prg
+ harbour/tests/mt/mttest03.prg
+ harbour/tests/mt/mttest04.prg
+ harbour/tests/mt/mttest05.prg
+ harbour/tests/mt/mttest06.prg
+ harbour/tests/mt/mttest07.prg
+ added some demonstration/test small MT programs written
using Harbour language. Some of them can be also compiled
by xHarbour but xHarbour does not pass any of my tests in
real multi-CPU machine so do not expect they will work
correctly.
Harbour threads needs OS threads support. Each Harbour thread is directly
mapped to OS thread. It's not very efficient on some older system where
cost of thread creation and/or task switching is very expensive but it
should not be bigger problem for modern OS-es which can support threads
in practice nearly in user space only.
I haven't touched Harbour function calling convention which comes from
Clipper. It means that we do not pass pointer to VM to each functions
like CLIP or xBase++. To resolve the problem I have to use thread local
storage (TLS) where such pointer is kept. If platform does not support
TLS then it can be emulated by us. Anyhow the speed of accessing TLS
data and extracting HB_STACK poitner is critical for performance.
Some compilers depending on used hardware and OS give native support
for TLS (f.e. __thread keyword in GCC/BCC or __declspec( thread ) in MSVC).
This should give optimal performance. On other Harbour uses TLS functions
like TlsGetValue() (MS-WIN) or pthread_getspecific() (PTHREAD) are used.
OS2 gives quite interesting TLS functionality which seems to be quite fast
though it will be interesting to know how it is iplemented internally for
real multi CPU machines (if it depends on CPU exception then the
performance will be bad). We need TLS only for one pointer to HB_STACK
structure.
I haven't added any tricks like HB_THREAD_STUB in xHarbour to reduce
the cost of TLS access. If it will be necessary for some platform the we
can add it.
Except TLS Harbour threads needs OS support for non recursive mutexes or
critical sections and conditional variables. If platforms does not support
conditional variables (f.e. MS-Win or OS2) then they can be emulated using
multistate semaphores. I intentionally didn't create code which may need
recursive mutexes. The non recursive ones are often faster and some
platforms may not support recursive mutexes so they will have to be
emulated by us.
Harbour uses reference counters for complex variables. It means that even
readonly access to complex item causes internal write operations necessary
to increment/decrement its reference counter. To make such readonly access
MT safe we have to make incrementation and decrementation with result
checking atomic. By default it's done by mutex inside vm/fm.c but some
platforms have native support for atomic inc/dec operations, f.e.
Interlocked*() functions in MS-Win. If they are available then such
functions should be used to not reduce the performance by mutex call
very often used functions. For many CPUs it should be quite easy to
implement such atomic inc/dec functionality in assembler. F.e. for
GCC and x86@32 it may looks like:
static __inline__ void hb_atomic_inc32( volatile int * p )
{
__asm__ __volatile__(
"lock incl %0"
:"=m" (*p) :"m" (*p)
);
}
static __inline__ int hb_atomic_dec32( volatile int * p )
{
unsigned char c;
__asm__ __volatile__(
"lock decl %0"
"sete %1"
:"=m" (*p), "=qm" (c) :"m" (*p) : "memory"
);
return c == 0;
}
and then it's enough to define in hbthreads.h:
#define HB_ATOM_INC( p ) hb_atomic_inc32( ( volatile int * ) p )
#define HB_ATOM_DEC( p ) hb_atomic_dec32( ( volatile int * ) p )
Probably I'll make it for some most popular CPUs in the future.
In Harbour each thread which wants to call HVM functions have to allocate
it's own HVM stack. It's done hb_vmThreadInit(). The HVM stack is freed
by calling hb_vmThreadQuit(). This functions can be called also by 3-rd
party threads if they want to call HVM functions or execute .prg code.
Calling HVM functions without allocated stack will cause GPF.
I moved most of static variables to HVM stack to make them thread
local. But some of them like FS errors have their own alternative
copy which is used when thread does not allocate HVM stack. It allows
to use hb_fs*() functions without HVM stack but programmer have to
know that error codes return by hb_fs*Error() functions can be
overwritten by other threads which also didn't allocated HVM stack.
To execute garbage collector scan and mark pass it's necessary to
stop other HVM threads. Otherwise the scan may give false results.
It's also possible to not stop threads but protect with mutex all
operations on GC items but it will probably cause performance reduction
and will force some other modifications. Maybe I'll implement it
in the future.
I didn't use any OS level thread KILL or CANCEL calls. All HVM threads
have to be cleanly removed without any resource leaks.
QUIT command terminate only calling thread. If main (startup) HVM
thread call QUIT then it sends QUIT request to all existing threads.
In QUIT state ALWAYS statements and destructors are executed.
New thread is created by:
hb_threadStart( <@sStart()> | <bStart> [, <params,...> ] ) -> <pThID>
The returned value is a pointer to internal thread structure which
can be used in JOIN or DETACH operations. Each thread should be Joined
or DETACHED to avoid resource leaks. If programmer does not store
<pThID> or all instances of <pThID> are destroyed then thread is
automatically detached. I do not know clear method of thread detaching
in OS2. If some OS2 users knows it then plase update vm/hbthread.c.
When thread terminates then all locked by this thread mutexes are
released.
Each thread uses its own memvars (PRIVATEs and PUBLICs) and work areas.
When new thread is created then it inherits from parent thread:
- code page
- language
- SETs
- default RDD
error block is initialized to default value by calling ERRORSYS()
and PUBLIC variable GetList := {} is created.
The following objects are initialized to default value:
- error block
- math error handler and math error block
- macro compiler features setting (hb_setMacro())
or move them to SETs.
We can think about inheriting them. It's also possible to add
inheriting of all visible memvars but I do not know it's good
idea.
Compilation and linking:
For MT mode HVM library should be compiled with HB_MT_VM macro.
GNU make automatically creates hbvmmt library which should be
linked with Harbour MT programs instead of hbvm.
Non GNU make files should be updated.
If given compiler support TLS then you can try to set HB_USE_TLS
to force using native compiler TLS support. Now it's enabled by
default only for BCC. For Linux and GCC builds it may depend also
on used GLIBC version. In older system there is no TLS support
at all or TLS works only for shared binaries so I haven't enabled
it. If you will test some other compiler then please add default
native TLS support for them in hbthread.h
Users using hb* scripts can simply use -mt switch when they want
to create MT program, f.e.:
hbmk -n -w3 -es2 -mt mttest01.prg
There are still some minor things which should be done but I'll
do them later. Current state seems to be fully functional.
The most important and still missing is our own file lock server
for RDD synchronization in POSIX systems. Kernel internally
recognize POSIX locks by PID and file i-node - not PID and file
handle. It means that the same file open more then once by one
process shares locks. Because POSIX locks can be overwritten
then we do not have any synchronization between aliased workareas
or threads using the same table in *nixes. We have to make
synchronization ourselves. I'll create such lock server ASAP.
Please test and enjoy using Harbour threads.
8187 lines
352 KiB
Plaintext
8187 lines
352 KiB
Plaintext
/* A Bison parser, made by GNU Bison 2.3. */
|
||
|
||
/* Skeleton implementation for Bison's Yacc-like parsers in C
|
||
|
||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
||
Free Software Foundation, Inc.
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 2, or (at your option)
|
||
any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program; if not, write to the Free Software
|
||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
Boston, MA 02110-1301, USA. */
|
||
|
||
/* As a special exception, you may create a larger work that contains
|
||
part or all of the Bison parser skeleton and distribute that work
|
||
under terms of your choice, so long as that work isn't itself a
|
||
parser generator using the skeleton or a modified version thereof
|
||
as a parser skeleton. Alternatively, if you modify or redistribute
|
||
the parser skeleton itself, you may (at your option) remove this
|
||
special exception, which will cause the skeleton and the resulting
|
||
Bison output files to be licensed under the GNU General Public
|
||
License without this special exception.
|
||
|
||
This special exception was added by the Free Software Foundation in
|
||
version 2.2 of Bison. */
|
||
|
||
/* C LALR(1) parser skeleton written by Richard Stallman, by
|
||
simplifying the original so-called "semantic" parser. */
|
||
|
||
/* All symbols defined below should begin with yy or YY, to avoid
|
||
infringing on user name space. This should be done even for local
|
||
variables, as they might otherwise be expanded by user macros.
|
||
There are some unavoidable exceptions within include files to
|
||
define necessary library symbols; they are noted "INFRINGES ON
|
||
USER NAME SPACE" below. */
|
||
|
||
/* Identify Bison output. */
|
||
#define YYBISON 1
|
||
|
||
/* Bison version. */
|
||
#define YYBISON_VERSION "2.3"
|
||
|
||
/* Skeleton name. */
|
||
#define YYSKELETON_NAME "yacc.c"
|
||
|
||
/* Pure parsers. */
|
||
#define YYPURE 1
|
||
|
||
/* Using locations. */
|
||
#define YYLSP_NEEDED 0
|
||
|
||
/* Substitute the variable and function names. */
|
||
#define yyparse hb_compparse
|
||
#define yylex hb_complex
|
||
#define yyerror hb_comperror
|
||
#define yylval hb_complval
|
||
#define yychar hb_compchar
|
||
#define yydebug hb_compdebug
|
||
#define yynerrs hb_compnerrs
|
||
|
||
|
||
/* Tokens. */
|
||
#ifndef YYTOKENTYPE
|
||
# define YYTOKENTYPE
|
||
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
||
know about them. */
|
||
enum yytokentype {
|
||
FUNCTION = 258,
|
||
PROCEDURE = 259,
|
||
IDENTIFIER = 260,
|
||
RETURN = 261,
|
||
NIL = 262,
|
||
NUM_DOUBLE = 263,
|
||
INASSIGN = 264,
|
||
NUM_LONG = 265,
|
||
LOCAL = 266,
|
||
STATIC = 267,
|
||
IIF = 268,
|
||
IF = 269,
|
||
ELSE = 270,
|
||
ELSEIF = 271,
|
||
END = 272,
|
||
ENDIF = 273,
|
||
LITERAL = 274,
|
||
TRUEVALUE = 275,
|
||
FALSEVALUE = 276,
|
||
ANNOUNCE = 277,
|
||
EXTERN = 278,
|
||
DYNAMIC = 279,
|
||
INIT = 280,
|
||
EXIT = 281,
|
||
AND = 282,
|
||
OR = 283,
|
||
NOT = 284,
|
||
PUBLIC = 285,
|
||
EQ = 286,
|
||
NE1 = 287,
|
||
NE2 = 288,
|
||
INC = 289,
|
||
DEC = 290,
|
||
ALIASOP = 291,
|
||
DOCASE = 292,
|
||
CASE = 293,
|
||
OTHERWISE = 294,
|
||
ENDCASE = 295,
|
||
ENDDO = 296,
|
||
MEMVAR = 297,
|
||
WHILE = 298,
|
||
LOOP = 299,
|
||
FOR = 300,
|
||
NEXT = 301,
|
||
TO = 302,
|
||
STEP = 303,
|
||
LE = 304,
|
||
GE = 305,
|
||
FIELD = 306,
|
||
IN = 307,
|
||
PARAMETERS = 308,
|
||
PLUSEQ = 309,
|
||
MINUSEQ = 310,
|
||
MULTEQ = 311,
|
||
DIVEQ = 312,
|
||
POWER = 313,
|
||
EXPEQ = 314,
|
||
MODEQ = 315,
|
||
PRIVATE = 316,
|
||
BEGINSEQ = 317,
|
||
BREAK = 318,
|
||
RECOVER = 319,
|
||
RECOVERUSING = 320,
|
||
ALWAYS = 321,
|
||
ENDSEQ = 322,
|
||
DO = 323,
|
||
WITH = 324,
|
||
SELF = 325,
|
||
LINE = 326,
|
||
MACROVAR = 327,
|
||
MACROTEXT = 328,
|
||
AS_ARRAY = 329,
|
||
AS_BLOCK = 330,
|
||
AS_CHARACTER = 331,
|
||
AS_CLASS = 332,
|
||
AS_DATE = 333,
|
||
AS_LOGICAL = 334,
|
||
AS_NUMERIC = 335,
|
||
AS_OBJECT = 336,
|
||
AS_VARIANT = 337,
|
||
DECLARE = 338,
|
||
OPTIONAL = 339,
|
||
DECLARE_CLASS = 340,
|
||
DECLARE_MEMBER = 341,
|
||
AS_ARRAY_ARRAY = 342,
|
||
AS_BLOCK_ARRAY = 343,
|
||
AS_CHARACTER_ARRAY = 344,
|
||
AS_CLASS_ARRAY = 345,
|
||
AS_DATE_ARRAY = 346,
|
||
AS_LOGICAL_ARRAY = 347,
|
||
AS_NUMERIC_ARRAY = 348,
|
||
AS_OBJECT_ARRAY = 349,
|
||
PROCREQ = 350,
|
||
CBSTART = 351,
|
||
DOIDENT = 352,
|
||
FOREACH = 353,
|
||
DESCEND = 354,
|
||
DOSWITCH = 355,
|
||
ENDSWITCH = 356,
|
||
WITHOBJECT = 357,
|
||
ENDWITH = 358,
|
||
NUM_DATE = 359,
|
||
EPSILON = 360,
|
||
HASHOP = 361,
|
||
THREAD = 362,
|
||
POST = 363,
|
||
UNARY = 364,
|
||
PRE = 365
|
||
};
|
||
#endif
|
||
/* Tokens. */
|
||
#define FUNCTION 258
|
||
#define PROCEDURE 259
|
||
#define IDENTIFIER 260
|
||
#define RETURN 261
|
||
#define NIL 262
|
||
#define NUM_DOUBLE 263
|
||
#define INASSIGN 264
|
||
#define NUM_LONG 265
|
||
#define LOCAL 266
|
||
#define STATIC 267
|
||
#define IIF 268
|
||
#define IF 269
|
||
#define ELSE 270
|
||
#define ELSEIF 271
|
||
#define END 272
|
||
#define ENDIF 273
|
||
#define LITERAL 274
|
||
#define TRUEVALUE 275
|
||
#define FALSEVALUE 276
|
||
#define ANNOUNCE 277
|
||
#define EXTERN 278
|
||
#define DYNAMIC 279
|
||
#define INIT 280
|
||
#define EXIT 281
|
||
#define AND 282
|
||
#define OR 283
|
||
#define NOT 284
|
||
#define PUBLIC 285
|
||
#define EQ 286
|
||
#define NE1 287
|
||
#define NE2 288
|
||
#define INC 289
|
||
#define DEC 290
|
||
#define ALIASOP 291
|
||
#define DOCASE 292
|
||
#define CASE 293
|
||
#define OTHERWISE 294
|
||
#define ENDCASE 295
|
||
#define ENDDO 296
|
||
#define MEMVAR 297
|
||
#define WHILE 298
|
||
#define LOOP 299
|
||
#define FOR 300
|
||
#define NEXT 301
|
||
#define TO 302
|
||
#define STEP 303
|
||
#define LE 304
|
||
#define GE 305
|
||
#define FIELD 306
|
||
#define IN 307
|
||
#define PARAMETERS 308
|
||
#define PLUSEQ 309
|
||
#define MINUSEQ 310
|
||
#define MULTEQ 311
|
||
#define DIVEQ 312
|
||
#define POWER 313
|
||
#define EXPEQ 314
|
||
#define MODEQ 315
|
||
#define PRIVATE 316
|
||
#define BEGINSEQ 317
|
||
#define BREAK 318
|
||
#define RECOVER 319
|
||
#define RECOVERUSING 320
|
||
#define ALWAYS 321
|
||
#define ENDSEQ 322
|
||
#define DO 323
|
||
#define WITH 324
|
||
#define SELF 325
|
||
#define LINE 326
|
||
#define MACROVAR 327
|
||
#define MACROTEXT 328
|
||
#define AS_ARRAY 329
|
||
#define AS_BLOCK 330
|
||
#define AS_CHARACTER 331
|
||
#define AS_CLASS 332
|
||
#define AS_DATE 333
|
||
#define AS_LOGICAL 334
|
||
#define AS_NUMERIC 335
|
||
#define AS_OBJECT 336
|
||
#define AS_VARIANT 337
|
||
#define DECLARE 338
|
||
#define OPTIONAL 339
|
||
#define DECLARE_CLASS 340
|
||
#define DECLARE_MEMBER 341
|
||
#define AS_ARRAY_ARRAY 342
|
||
#define AS_BLOCK_ARRAY 343
|
||
#define AS_CHARACTER_ARRAY 344
|
||
#define AS_CLASS_ARRAY 345
|
||
#define AS_DATE_ARRAY 346
|
||
#define AS_LOGICAL_ARRAY 347
|
||
#define AS_NUMERIC_ARRAY 348
|
||
#define AS_OBJECT_ARRAY 349
|
||
#define PROCREQ 350
|
||
#define CBSTART 351
|
||
#define DOIDENT 352
|
||
#define FOREACH 353
|
||
#define DESCEND 354
|
||
#define DOSWITCH 355
|
||
#define ENDSWITCH 356
|
||
#define WITHOBJECT 357
|
||
#define ENDWITH 358
|
||
#define NUM_DATE 359
|
||
#define EPSILON 360
|
||
#define HASHOP 361
|
||
#define THREAD 362
|
||
#define POST 363
|
||
#define UNARY 364
|
||
#define PRE 365
|
||
|
||
|
||
|
||
|
||
/* Copy the first part of user declarations. */
|
||
#line 5 "harbour.y"
|
||
|
||
/*
|
||
* $Id$
|
||
*/
|
||
|
||
/*
|
||
* Harbour Project source code:
|
||
* Compiler YACC rules and actions
|
||
*
|
||
* Copyright 1999 Antonio Linares <alinares@fivetech.com>
|
||
* www - http://www.harbour-project.org
|
||
*
|
||
* This program is free software; you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation; either version 2 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with this program; if not, write to the Free Software
|
||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
|
||
* their web site at http://www.gnu.org/).
|
||
*
|
||
*/
|
||
|
||
/* TODO list
|
||
* 1) Change the pcode generated by ::cVar from Self:cVar to QSELF():cVar
|
||
* The major problem to solve is how to support QSELF() inside a codeblock.
|
||
*/
|
||
|
||
|
||
#include "hbcomp.h"
|
||
|
||
/* Compile using: bison -d -v harbour.y */
|
||
|
||
/* to pacify some warnings in BCC */
|
||
#if defined( __BORLANDC__ ) && !defined( __STDC__ )
|
||
# define __STDC__
|
||
#endif
|
||
|
||
#undef alloca
|
||
#define alloca hb_xgrab
|
||
#undef malloc
|
||
#define malloc hb_xgrab
|
||
#undef realloc
|
||
#define realloc hb_xrealloc
|
||
#undef free
|
||
#define free hb_xfree
|
||
|
||
/* NOTE: these symbols are used internally in bison.simple
|
||
*/
|
||
#undef YYFREE
|
||
#define YYFREE hb_xfree
|
||
#undef YYMALLOC
|
||
#define YYMALLOC hb_xgrab
|
||
|
||
#define NO_YYERROR
|
||
|
||
static void hb_compLoopStart( HB_COMP_DECL, BOOL );
|
||
static void hb_compLoopEnd( HB_COMP_DECL );
|
||
static void hb_compLoopLoop( HB_COMP_DECL );
|
||
static void hb_compLoopExit( HB_COMP_DECL );
|
||
static void hb_compLoopHere( HB_COMP_DECL );
|
||
static long hb_compLoopCount( HB_COMP_DECL );
|
||
|
||
static void * hb_compElseIfGen( HB_COMP_DECL, void * pFirstElseIf, ULONG ulOffset ); /* generates a support structure for elseifs pcode fixups */
|
||
static void hb_compElseIfFix( HB_COMP_DECL, void * pIfElseIfs ); /* implements the ElseIfs pcode fixups */
|
||
|
||
static void hb_compRTVariableAdd( HB_COMP_DECL, HB_EXPR_PTR, BOOL );
|
||
static void hb_compRTVariableGen( HB_COMP_DECL, char * );
|
||
|
||
static HB_EXPR_PTR hb_compArrayDimPush( HB_EXPR_PTR pInitValue, HB_COMP_DECL );
|
||
static void hb_compVariableDim( char *, HB_EXPR_PTR, HB_COMP_DECL );
|
||
|
||
static void hb_compForStart( HB_COMP_DECL, char *szVarName, BOOL bForEach );
|
||
static void hb_compForEnd( HB_COMP_DECL, char *szVarName );
|
||
static void hb_compEnumStart( HB_COMP_DECL, HB_EXPR_PTR pVars, HB_EXPR_PTR pExprs, int descend );
|
||
static void hb_compEnumNext( HB_COMP_DECL, HB_EXPR_PTR pExpr, int descend );
|
||
static void hb_compEnumEnd( HB_COMP_DECL, HB_EXPR_PTR pExpr );
|
||
|
||
static void hb_compSwitchStart( HB_COMP_DECL );
|
||
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR );
|
||
static void hb_compSwitchEnd( HB_COMP_DECL );
|
||
|
||
static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr );
|
||
|
||
#ifdef HB_YYDEBUG
|
||
#define YYDEBUG 1 /* Parser debug information support */
|
||
#endif
|
||
|
||
/* Controls if passing by reference '@' is allowed */
|
||
#define HB_PASSBYREF_OFF 0
|
||
#define HB_PASSBYREF_FUNCALL 1
|
||
#define HB_PASSBYREF_ARRAY 2
|
||
|
||
static void hb_compDebugStart( void ) { };
|
||
|
||
|
||
|
||
/* Enabling traces. */
|
||
#ifndef YYDEBUG
|
||
# define YYDEBUG 0
|
||
#endif
|
||
|
||
/* Enabling verbose error messages. */
|
||
#ifdef YYERROR_VERBOSE
|
||
# undef YYERROR_VERBOSE
|
||
# define YYERROR_VERBOSE 1
|
||
#else
|
||
# define YYERROR_VERBOSE 0
|
||
#endif
|
||
|
||
/* Enabling the token table. */
|
||
#ifndef YYTOKEN_TABLE
|
||
# define YYTOKEN_TABLE 0
|
||
#endif
|
||
|
||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||
typedef union YYSTYPE
|
||
#line 109 "harbour.y"
|
||
{
|
||
char * string; /* to hold a string returned by lex */
|
||
int iNumber; /* to hold a temporary integer number */
|
||
HB_LONG lNumber; /* to hold a temporary long number */
|
||
BOOL bTrue;
|
||
HB_EXPR_PTR asExpr;
|
||
void * pVoid; /* to hold any memory structure we may need */
|
||
struct
|
||
{
|
||
HB_LONG lNumber; /* to hold a long number returned by lex */
|
||
UCHAR bWidth; /* to hold the width of the value */
|
||
} valLong;
|
||
struct
|
||
{
|
||
double dNumber; /* to hold a double number returned by lex */
|
||
/* NOTE: Intentionally using "unsigned char" instead of "BYTE" */
|
||
UCHAR bWidth; /* to hold the width of the value */
|
||
UCHAR bDec; /* to hold the number of decimal points in the value */
|
||
} valDouble;
|
||
struct
|
||
{
|
||
char * string;
|
||
int length;
|
||
BOOL dealloc;
|
||
} valChar;
|
||
struct
|
||
{
|
||
char * string;
|
||
int length;
|
||
int flags; /* Flag for early {|| ¯o} (1) or late {|| &(macro)} (2) binding */
|
||
} asCodeblock;
|
||
struct
|
||
{
|
||
BOOL bMacro;
|
||
union
|
||
{
|
||
char * string;
|
||
HB_EXPR_PTR macro;
|
||
} value;
|
||
} asMessage;
|
||
}
|
||
/* Line 187 of yacc.c. */
|
||
#line 469 "harboury.c"
|
||
YYSTYPE;
|
||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||
# define YYSTYPE_IS_DECLARED 1
|
||
# define YYSTYPE_IS_TRIVIAL 1
|
||
#endif
|
||
|
||
|
||
|
||
/* Copy the second part of user declarations. */
|
||
#line 151 "harbour.y"
|
||
|
||
/* This must be placed after the above union - the union is
|
||
* typedef-ined to YYSTYPE
|
||
*/
|
||
extern int yylex( YYSTYPE *, HB_COMP_DECL ); /* main lex token function, called by yyparse() */
|
||
extern void yyerror( HB_COMP_DECL, char * ); /* parsing error management function */
|
||
|
||
|
||
/* Line 216 of yacc.c. */
|
||
#line 489 "harboury.c"
|
||
|
||
#ifdef short
|
||
# undef short
|
||
#endif
|
||
|
||
#ifdef YYTYPE_UINT8
|
||
typedef YYTYPE_UINT8 yytype_uint8;
|
||
#else
|
||
typedef unsigned char yytype_uint8;
|
||
#endif
|
||
|
||
#ifdef YYTYPE_INT8
|
||
typedef YYTYPE_INT8 yytype_int8;
|
||
#elif (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
typedef signed char yytype_int8;
|
||
#else
|
||
typedef short int yytype_int8;
|
||
#endif
|
||
|
||
#ifdef YYTYPE_UINT16
|
||
typedef YYTYPE_UINT16 yytype_uint16;
|
||
#else
|
||
typedef unsigned short int yytype_uint16;
|
||
#endif
|
||
|
||
#ifdef YYTYPE_INT16
|
||
typedef YYTYPE_INT16 yytype_int16;
|
||
#else
|
||
typedef short int yytype_int16;
|
||
#endif
|
||
|
||
#ifndef YYSIZE_T
|
||
# ifdef __SIZE_TYPE__
|
||
# define YYSIZE_T __SIZE_TYPE__
|
||
# elif defined size_t
|
||
# define YYSIZE_T size_t
|
||
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define YYSIZE_T size_t
|
||
# else
|
||
# define YYSIZE_T unsigned int
|
||
# endif
|
||
#endif
|
||
|
||
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
|
||
|
||
#ifndef YY_
|
||
# if YYENABLE_NLS
|
||
# if ENABLE_NLS
|
||
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define YY_(msgid) dgettext ("bison-runtime", msgid)
|
||
# endif
|
||
# endif
|
||
# ifndef YY_
|
||
# define YY_(msgid) msgid
|
||
# endif
|
||
#endif
|
||
|
||
/* Suppress unused-variable warnings by "using" E. */
|
||
#if ! defined lint || defined __GNUC__
|
||
# define YYUSE(e) ((void) (e))
|
||
#else
|
||
# define YYUSE(e) /* empty */
|
||
#endif
|
||
|
||
/* Identity function, used to suppress warnings about constant conditions. */
|
||
#ifndef lint
|
||
# define YYID(n) (n)
|
||
#else
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
static int
|
||
YYID (int i)
|
||
#else
|
||
static int
|
||
YYID (i)
|
||
int i;
|
||
#endif
|
||
{
|
||
return i;
|
||
}
|
||
#endif
|
||
|
||
#if ! defined yyoverflow || YYERROR_VERBOSE
|
||
|
||
/* The parser invokes alloca or malloc; define the necessary symbols. */
|
||
|
||
# ifdef YYSTACK_USE_ALLOCA
|
||
# if YYSTACK_USE_ALLOCA
|
||
# ifdef __GNUC__
|
||
# define YYSTACK_ALLOC __builtin_alloca
|
||
# elif defined __BUILTIN_VA_ARG_INCR
|
||
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
|
||
# elif defined _AIX
|
||
# define YYSTACK_ALLOC __alloca
|
||
# elif defined _MSC_VER
|
||
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define alloca _alloca
|
||
# else
|
||
# define YYSTACK_ALLOC alloca
|
||
# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
|
||
# ifndef _STDLIB_H
|
||
# define _STDLIB_H 1
|
||
# endif
|
||
# endif
|
||
# endif
|
||
# endif
|
||
# endif
|
||
|
||
# ifdef YYSTACK_ALLOC
|
||
/* Pacify GCC's `empty if-body' warning. */
|
||
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
|
||
# ifndef YYSTACK_ALLOC_MAXIMUM
|
||
/* The OS might guarantee only one guard page at the bottom of the stack,
|
||
and a page size can be as small as 4096 bytes. So we cannot safely
|
||
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
|
||
to allow for a few compiler-allocated temporary stack slots. */
|
||
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
|
||
# endif
|
||
# else
|
||
# define YYSTACK_ALLOC YYMALLOC
|
||
# define YYSTACK_FREE YYFREE
|
||
# ifndef YYSTACK_ALLOC_MAXIMUM
|
||
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
|
||
# endif
|
||
# if (defined __cplusplus && ! defined _STDLIB_H \
|
||
&& ! ((defined YYMALLOC || defined malloc) \
|
||
&& (defined YYFREE || defined free)))
|
||
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
|
||
# ifndef _STDLIB_H
|
||
# define _STDLIB_H 1
|
||
# endif
|
||
# endif
|
||
# ifndef YYMALLOC
|
||
# define YYMALLOC malloc
|
||
# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
|
||
# endif
|
||
# endif
|
||
# ifndef YYFREE
|
||
# define YYFREE free
|
||
# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
void free (void *); /* INFRINGES ON USER NAME SPACE */
|
||
# endif
|
||
# endif
|
||
# endif
|
||
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
|
||
|
||
|
||
#if (! defined yyoverflow \
|
||
&& (! defined __cplusplus \
|
||
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
|
||
|
||
/* A type that is properly aligned for any stack member. */
|
||
union yyalloc
|
||
{
|
||
yytype_int16 yyss;
|
||
YYSTYPE yyvs;
|
||
};
|
||
|
||
/* The size of the maximum gap between one aligned stack and the next. */
|
||
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
|
||
|
||
/* The size of an array large to enough to hold all stacks, each with
|
||
N elements. */
|
||
# define YYSTACK_BYTES(N) \
|
||
((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
|
||
+ YYSTACK_GAP_MAXIMUM)
|
||
|
||
/* Copy COUNT objects from FROM to TO. The source and destination do
|
||
not overlap. */
|
||
# ifndef YYCOPY
|
||
# if defined __GNUC__ && 1 < __GNUC__
|
||
# define YYCOPY(To, From, Count) \
|
||
__builtin_memcpy (To, From, (Count) * sizeof (*(From)))
|
||
# else
|
||
# define YYCOPY(To, From, Count) \
|
||
do \
|
||
{ \
|
||
YYSIZE_T yyi; \
|
||
for (yyi = 0; yyi < (Count); yyi++) \
|
||
(To)[yyi] = (From)[yyi]; \
|
||
} \
|
||
while (YYID (0))
|
||
# endif
|
||
# endif
|
||
|
||
/* Relocate STACK from its old location to the new one. The
|
||
local variables YYSIZE and YYSTACKSIZE give the old and new number of
|
||
elements in the stack, and YYPTR gives the new location of the
|
||
stack. Advance YYPTR to a properly aligned location for the next
|
||
stack. */
|
||
# define YYSTACK_RELOCATE(Stack) \
|
||
do \
|
||
{ \
|
||
YYSIZE_T yynewbytes; \
|
||
YYCOPY (&yyptr->Stack, Stack, yysize); \
|
||
Stack = &yyptr->Stack; \
|
||
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
|
||
yyptr += yynewbytes / sizeof (*yyptr); \
|
||
} \
|
||
while (YYID (0))
|
||
|
||
#endif
|
||
|
||
/* YYFINAL -- State number of the termination state. */
|
||
#define YYFINAL 290
|
||
/* YYLAST -- Last index in YYTABLE. */
|
||
#define YYLAST 8843
|
||
|
||
/* YYNTOKENS -- Number of terminals. */
|
||
#define YYNTOKENS 133
|
||
/* YYNNTS -- Number of nonterminals. */
|
||
#define YYNNTS 252
|
||
/* YYNRULES -- Number of rules. */
|
||
#define YYNRULES 639
|
||
/* YYNRULES -- Number of states. */
|
||
#define YYNSTATES 1017
|
||
|
||
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
|
||
#define YYUNDEFTOK 2
|
||
#define YYMAXUTOK 365
|
||
|
||
#define YYTRANSLATE(YYX) \
|
||
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
|
||
|
||
/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
|
||
static const yytype_uint8 yytranslate[] =
|
||
{
|
||
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
122, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 112, 117, 120, 2,
|
||
125, 126, 115, 113, 124, 114, 2, 116, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 129, 123,
|
||
110, 109, 111, 2, 121, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 131, 2, 130, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 127, 132, 128, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
|
||
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
||
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
||
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
||
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
||
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
||
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
|
||
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
|
||
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
|
||
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
|
||
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
|
||
105, 106, 107, 108, 118, 119
|
||
};
|
||
|
||
#if YYDEBUG
|
||
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
|
||
YYRHS. */
|
||
static const yytype_uint16 yyprhs[] =
|
||
{
|
||
0, 0, 3, 5, 6, 8, 10, 12, 14, 16,
|
||
19, 22, 25, 28, 31, 34, 38, 43, 50, 51,
|
||
57, 58, 64, 65, 74, 75, 84, 85, 87, 89,
|
||
91, 92, 94, 96, 100, 101, 103, 104, 106, 108,
|
||
110, 112, 114, 116, 118, 121, 123, 125, 127, 129,
|
||
131, 133, 135, 137, 139, 141, 144, 147, 152, 155,
|
||
158, 161, 164, 167, 170, 173, 176, 179, 182, 185,
|
||
188, 191, 194, 197, 198, 203, 206, 209, 212, 213,
|
||
218, 219, 220, 226, 227, 228, 234, 236, 238, 240,
|
||
244, 248, 249, 254, 259, 261, 265, 266, 269, 271,
|
||
273, 275, 277, 279, 281, 286, 294, 299, 307, 308,
|
||
310, 312, 314, 316, 319, 320, 322, 324, 328, 330,
|
||
334, 336, 338, 340, 342, 344, 346, 348, 350, 352,
|
||
354, 356, 358, 360, 362, 364, 366, 368, 370, 372,
|
||
374, 376, 378, 381, 384, 386, 389, 391, 394, 397,
|
||
399, 401, 404, 406, 409, 413, 416, 419, 422, 426,
|
||
430, 433, 437, 443, 445, 448, 450, 452, 455, 458,
|
||
461, 464, 468, 471, 474, 477, 480, 483, 486, 489,
|
||
492, 495, 498, 501, 504, 507, 510, 512, 514, 516,
|
||
519, 522, 525, 528, 531, 534, 537, 540, 543, 546,
|
||
549, 552, 555, 558, 561, 564, 567, 570, 573, 576,
|
||
579, 582, 585, 588, 591, 594, 597, 600, 603, 606,
|
||
609, 612, 615, 618, 621, 624, 627, 630, 633, 636,
|
||
639, 642, 645, 648, 651, 652, 658, 660, 661, 667,
|
||
668, 674, 677, 680, 682, 686, 688, 690, 693, 696,
|
||
699, 702, 705, 707, 709, 713, 717, 720, 722, 724,
|
||
726, 731, 734, 735, 741, 744, 746, 748, 750, 752,
|
||
754, 756, 758, 759, 763, 765, 767, 769, 771, 773,
|
||
775, 777, 779, 781, 782, 786, 788, 790, 791, 795,
|
||
797, 798, 802, 804, 806, 808, 810, 812, 814, 816,
|
||
818, 820, 822, 824, 825, 829, 830, 834, 836, 838,
|
||
840, 841, 843, 845, 847, 849, 851, 853, 855, 857,
|
||
859, 861, 863, 865, 867, 869, 871, 873, 875, 877,
|
||
879, 881, 883, 885, 887, 889, 891, 893, 895, 897,
|
||
899, 901, 903, 906, 909, 912, 915, 918, 921, 925,
|
||
929, 933, 937, 941, 945, 949, 953, 957, 961, 965,
|
||
969, 973, 977, 981, 985, 989, 993, 997, 1001, 1005,
|
||
1009, 1013, 1017, 1021, 1025, 1029, 1033, 1035, 1037, 1039,
|
||
1041, 1043, 1045, 1049, 1053, 1057, 1061, 1065, 1069, 1073,
|
||
1077, 1081, 1085, 1089, 1093, 1097, 1101, 1105, 1109, 1113,
|
||
1116, 1119, 1123, 1128, 1130, 1134, 1135, 1140, 1141, 1143,
|
||
1145, 1149, 1152, 1157, 1159, 1163, 1167, 1168, 1174, 1176,
|
||
1180, 1184, 1187, 1196, 1199, 1200, 1205, 1206, 1211, 1212,
|
||
1218, 1219, 1224, 1226, 1230, 1232, 1236, 1238, 1241, 1246,
|
||
1250, 1251, 1255, 1256, 1257, 1264, 1268, 1271, 1274, 1278,
|
||
1283, 1284, 1290, 1293, 1298, 1299, 1302, 1303, 1308, 1311,
|
||
1316, 1317, 1326, 1327, 1333, 1337, 1342, 1346, 1347, 1355,
|
||
1357, 1361, 1363, 1366, 1368, 1371, 1372, 1379, 1380, 1384,
|
||
1385, 1387, 1389, 1393, 1395, 1399, 1401, 1404, 1408, 1414,
|
||
1419, 1425, 1433, 1437, 1442, 1449, 1455, 1462, 1471, 1473,
|
||
1475, 1477, 1479, 1481, 1483, 1485, 1487, 1490, 1494, 1498,
|
||
1503, 1504, 1505, 1512, 1513, 1518, 1519, 1520, 1527, 1528,
|
||
1529, 1537, 1539, 1541, 1543, 1547, 1551, 1554, 1559, 1561,
|
||
1563, 1565, 1566, 1570, 1572, 1575, 1576, 1577, 1584, 1585,
|
||
1586, 1594, 1595, 1596, 1602, 1603, 1609, 1610, 1611, 1619,
|
||
1621, 1623, 1625, 1627, 1628, 1629, 1630, 1643, 1645, 1647,
|
||
1648, 1651, 1654, 1656, 1659, 1661, 1664, 1666, 1668, 1670,
|
||
1674, 1677, 1679, 1681, 1685, 1686, 1687, 1688, 1699, 1700,
|
||
1702, 1703, 1708, 1711, 1713, 1715, 1717, 1718, 1723, 1725,
|
||
1728, 1729, 1735, 1736, 1743, 1745, 1748, 1749, 1750, 1756,
|
||
1757, 1758, 1759, 1760, 1772, 1774, 1776, 1777, 1780, 1781,
|
||
1785, 1787, 1788, 1792, 1796, 1798, 1801, 1803, 1805, 1806,
|
||
1811, 1812, 1816, 1817, 1820, 1822, 1825, 1827, 1830, 1834,
|
||
1836, 1838, 1840, 1842, 1844, 1845, 1852, 1854, 1856, 1858
|
||
};
|
||
|
||
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
|
||
static const yytype_int16 yyrhs[] =
|
||
{
|
||
134, 0, -1, 135, -1, -1, 384, -1, 282, -1,
|
||
137, -1, 149, -1, 136, -1, 1, 384, -1, 135,
|
||
384, -1, 135, 282, -1, 135, 137, -1, 135, 149,
|
||
-1, 135, 136, -1, 135, 1, 384, -1, 71, 10,
|
||
19, 384, -1, 71, 10, 19, 121, 19, 384, -1,
|
||
-1, 142, 3, 167, 138, 384, -1, -1, 142, 4,
|
||
167, 139, 384, -1, -1, 142, 3, 167, 140, 125,
|
||
143, 126, 384, -1, -1, 142, 4, 167, 141, 125,
|
||
143, 126, 384, -1, -1, 12, -1, 25, -1, 26,
|
||
-1, -1, 105, -1, 148, -1, 148, 124, 105, -1,
|
||
-1, 146, -1, -1, 147, -1, 80, -1, 76, -1,
|
||
78, -1, 79, -1, 75, -1, 81, -1, 77, 167,
|
||
-1, 82, -1, 147, -1, 74, -1, 93, -1, 89,
|
||
-1, 91, -1, 92, -1, 87, -1, 88, -1, 94,
|
||
-1, 90, 167, -1, 167, 144, -1, 148, 124, 167,
|
||
144, -1, 297, 158, -1, 259, 158, -1, 202, 158,
|
||
-1, 197, 158, -1, 215, 158, -1, 189, 158, -1,
|
||
191, 158, -1, 257, 158, -1, 232, 158, -1, 231,
|
||
158, -1, 242, 158, -1, 235, 158, -1, 234, 158,
|
||
-1, 375, 158, -1, 63, 158, -1, -1, 63, 150,
|
||
223, 384, -1, 26, 158, -1, 44, 158, -1, 6,
|
||
158, -1, -1, 6, 151, 223, 384, -1, -1, -1,
|
||
30, 152, 267, 153, 384, -1, -1, -1, 61, 154,
|
||
267, 155, 384, -1, 261, -1, 275, -1, 279, -1,
|
||
23, 165, 384, -1, 24, 166, 384, -1, -1, 22,
|
||
167, 156, 384, -1, 95, 157, 126, 384, -1, 19,
|
||
-1, 19, 113, 19, -1, -1, 159, 384, -1, 384,
|
||
-1, 149, -1, 282, -1, 136, -1, 161, -1, 1,
|
||
-1, 162, 3, 167, 384, -1, 162, 3, 167, 125,
|
||
143, 126, 384, -1, 162, 4, 167, 384, -1, 162,
|
||
4, 167, 125, 143, 126, 384, -1, -1, 12, -1,
|
||
25, -1, 26, -1, 160, -1, 163, 160, -1, -1,
|
||
163, -1, 167, -1, 165, 124, 167, -1, 167, -1,
|
||
166, 124, 167, -1, 5, -1, 48, -1, 47, -1,
|
||
44, -1, 26, -1, 52, -1, 84, -1, 23, -1,
|
||
24, -1, 22, -1, 11, -1, 42, -1, 12, -1,
|
||
61, -1, 30, -1, 53, -1, 95, -1, 99, -1,
|
||
107, -1, 8, -1, 10, -1, 104, -1, 10, 36,
|
||
-1, 8, 36, -1, 7, -1, 171, 36, -1, 19,
|
||
-1, 173, 36, -1, 254, 36, -1, 20, -1, 21,
|
||
-1, 176, 36, -1, 70, -1, 178, 36, -1, 127,
|
||
248, 128, -1, 180, 36, -1, 180, 246, -1, 182,
|
||
36, -1, 127, 106, 128, -1, 127, 186, 128, -1,
|
||
184, 36, -1, 223, 106, 227, -1, 186, 124, 223,
|
||
106, 227, -1, 167, -1, 167, 36, -1, 72, -1,
|
||
73, -1, 189, 36, -1, 120, 257, -1, 191, 36,
|
||
-1, 51, 36, -1, 51, 36, 193, -1, 193, 188,
|
||
-1, 193, 170, -1, 193, 258, -1, 193, 190, -1,
|
||
193, 192, -1, 193, 172, -1, 193, 174, -1, 193,
|
||
177, -1, 193, 175, -1, 193, 179, -1, 193, 181,
|
||
-1, 193, 183, -1, 193, 185, -1, 193, 260, -1,
|
||
167, -1, 189, -1, 191, -1, 170, 195, -1, 190,
|
||
195, -1, 192, 195, -1, 258, 195, -1, 172, 195,
|
||
-1, 174, 195, -1, 177, 195, -1, 175, 195, -1,
|
||
185, 195, -1, 179, 195, -1, 181, 195, -1, 183,
|
||
195, -1, 199, 195, -1, 260, 195, -1, 206, 195,
|
||
-1, 214, 195, -1, 217, 195, -1, 188, 195, -1,
|
||
193, 195, -1, 194, 195, -1, 170, 257, -1, 188,
|
||
257, -1, 190, 257, -1, 192, 257, -1, 258, 257,
|
||
-1, 193, 257, -1, 168, 246, -1, 171, 246, -1,
|
||
169, 246, -1, 173, 246, -1, 254, 246, -1, 176,
|
||
246, -1, 184, 246, -1, 178, 246, -1, 187, 246,
|
||
-1, 196, 246, -1, 197, 246, -1, 189, 246, -1,
|
||
191, 246, -1, 211, 246, -1, 215, 246, -1, 202,
|
||
246, -1, 259, 246, -1, 257, 246, -1, 198, 36,
|
||
-1, -1, 167, 125, 201, 207, 126, -1, 200, -1,
|
||
-1, 189, 125, 203, 207, 126, -1, -1, 191, 125,
|
||
204, 207, 126, -1, 121, 200, -1, 202, 36, -1,
|
||
210, -1, 207, 124, 210, -1, 227, -1, 209, -1,
|
||
121, 167, -1, 121, 189, -1, 121, 196, -1, 121,
|
||
211, -1, 121, 198, -1, 105, -1, 208, -1, 229,
|
||
129, 212, -1, 213, 129, 212, -1, 129, 212, -1,
|
||
167, -1, 189, -1, 191, -1, 125, 121, 167, 126,
|
||
-1, 211, 36, -1, -1, 211, 125, 216, 207, 126,
|
||
-1, 215, 36, -1, 168, -1, 171, -1, 169, -1,
|
||
173, -1, 254, -1, 176, -1, 178, -1, -1, 178,
|
||
219, 146, -1, 180, -1, 182, -1, 184, -1, 196,
|
||
-1, 197, -1, 189, -1, 191, -1, 198, -1, 202,
|
||
-1, -1, 202, 220, 146, -1, 259, -1, 211, -1,
|
||
-1, 211, 221, 146, -1, 215, -1, -1, 215, 222,
|
||
146, -1, 234, -1, 242, -1, 231, -1, 232, -1,
|
||
233, -1, 243, -1, 244, -1, 245, -1, 218, -1,
|
||
187, -1, 257, -1, -1, 187, 224, 146, -1, -1,
|
||
257, 225, 146, -1, 205, -1, 105, -1, 223, -1,
|
||
-1, 223, -1, 167, -1, 196, -1, 189, -1, 191,
|
||
-1, 211, -1, 198, -1, 257, -1, 168, -1, 171,
|
||
-1, 169, -1, 173, -1, 254, -1, 176, -1, 178,
|
||
-1, 180, -1, 182, -1, 184, -1, 196, -1, 197,
|
||
-1, 189, -1, 191, -1, 187, -1, 198, -1, 257,
|
||
-1, 202, -1, 259, -1, 211, -1, 215, -1, 34,
|
||
-1, 35, -1, 229, 230, -1, 34, 223, -1, 35,
|
||
223, -1, 29, 223, -1, 114, 223, -1, 113, 223,
|
||
-1, 168, 9, 223, -1, 171, 9, 223, -1, 169,
|
||
9, 223, -1, 173, 9, 223, -1, 254, 9, 223,
|
||
-1, 176, 9, 223, -1, 178, 9, 223, -1, 180,
|
||
9, 223, -1, 182, 9, 223, -1, 184, 9, 223,
|
||
-1, 196, 9, 223, -1, 197, 9, 223, -1, 189,
|
||
9, 223, -1, 191, 9, 223, -1, 187, 9, 223,
|
||
-1, 198, 9, 223, -1, 257, 9, 223, -1, 259,
|
||
9, 223, -1, 202, 9, 223, -1, 211, 9, 223,
|
||
-1, 215, 9, 223, -1, 229, 109, 223, -1, 229,
|
||
54, 223, -1, 229, 55, 223, -1, 229, 56, 223,
|
||
-1, 229, 57, 223, -1, 229, 60, 223, -1, 229,
|
||
59, 223, -1, 236, -1, 237, -1, 238, -1, 239,
|
||
-1, 240, -1, 241, -1, 223, 113, 223, -1, 223,
|
||
114, 223, -1, 223, 115, 223, -1, 223, 116, 223,
|
||
-1, 223, 117, 223, -1, 223, 58, 223, -1, 223,
|
||
27, 223, -1, 223, 28, 223, -1, 223, 31, 223,
|
||
-1, 223, 110, 223, -1, 223, 111, 223, -1, 223,
|
||
49, 223, -1, 223, 50, 223, -1, 223, 32, 223,
|
||
-1, 223, 33, 223, -1, 223, 112, 223, -1, 223,
|
||
109, 223, -1, 247, 130, -1, 131, 226, -1, 247,
|
||
124, 226, -1, 247, 130, 131, 226, -1, 210, -1,
|
||
248, 124, 210, -1, -1, 96, 250, 251, 132, -1,
|
||
-1, 105, -1, 252, -1, 252, 124, 105, -1, 167,
|
||
144, -1, 252, 124, 167, 144, -1, 223, -1, 253,
|
||
124, 223, -1, 249, 253, 128, -1, -1, 249, 384,
|
||
255, 164, 128, -1, 223, -1, 256, 124, 223, -1,
|
||
125, 256, 126, -1, 257, 36, -1, 13, 125, 223,
|
||
124, 208, 124, 208, 126, -1, 259, 36, -1, -1,
|
||
11, 262, 266, 384, -1, -1, 12, 263, 266, 384,
|
||
-1, -1, 107, 12, 264, 266, 384, -1, -1, 53,
|
||
265, 281, 384, -1, 269, -1, 266, 124, 269, -1,
|
||
268, -1, 267, 124, 268, -1, 269, -1, 189, 144,
|
||
-1, 189, 144, 9, 223, -1, 189, 273, 145, -1,
|
||
-1, 167, 144, 270, -1, -1, -1, 167, 144, 271,
|
||
9, 272, 223, -1, 167, 273, 145, -1, 274, 130,
|
||
-1, 131, 223, -1, 274, 124, 223, -1, 274, 130,
|
||
131, 223, -1, -1, 51, 276, 277, 278, 384, -1,
|
||
167, 144, -1, 277, 124, 167, 144, -1, -1, 52,
|
||
167, -1, -1, 42, 280, 281, 384, -1, 167, 144,
|
||
-1, 281, 124, 167, 144, -1, -1, 83, 167, 125,
|
||
283, 292, 126, 144, 384, -1, -1, 83, 167, 284,
|
||
287, 384, -1, 85, 167, 384, -1, 85, 167, 167,
|
||
384, -1, 86, 288, 384, -1, -1, 86, 127, 144,
|
||
285, 286, 128, 384, -1, 290, -1, 286, 124, 290,
|
||
-1, 288, -1, 287, 288, -1, 290, -1, 287, 290,
|
||
-1, -1, 167, 125, 289, 292, 126, 144, -1, -1,
|
||
167, 291, 144, -1, -1, 295, -1, 296, -1, 295,
|
||
124, 296, -1, 294, -1, 293, 124, 294, -1, 227,
|
||
-1, 167, 144, -1, 121, 167, 144, -1, 121, 167,
|
||
125, 293, 126, -1, 295, 124, 167, 144, -1, 295,
|
||
124, 121, 167, 144, -1, 295, 124, 121, 167, 125,
|
||
293, 126, -1, 84, 167, 144, -1, 84, 121, 167,
|
||
144, -1, 84, 121, 167, 125, 293, 126, -1, 296,
|
||
124, 84, 167, 144, -1, 296, 124, 84, 121, 167,
|
||
144, -1, 296, 124, 84, 121, 167, 125, 293, 126,
|
||
-1, 298, -1, 311, -1, 326, -1, 332, -1, 362,
|
||
-1, 344, -1, 349, -1, 381, -1, 299, 309, -1,
|
||
299, 302, 309, -1, 299, 304, 309, -1, 299, 304,
|
||
302, 309, -1, -1, -1, 14, 256, 300, 384, 301,
|
||
164, -1, -1, 15, 384, 303, 164, -1, -1, -1,
|
||
16, 305, 256, 384, 306, 164, -1, -1, -1, 304,
|
||
16, 307, 256, 384, 308, 164, -1, 310, -1, 18,
|
||
-1, 17, -1, 316, 317, 312, -1, 316, 322, 312,
|
||
-1, 316, 312, -1, 316, 317, 322, 312, -1, 313,
|
||
-1, 40, -1, 17, -1, -1, 37, 315, 384, -1,
|
||
314, -1, 314, 163, -1, -1, -1, 38, 318, 256,
|
||
384, 319, 164, -1, -1, -1, 317, 38, 320, 256,
|
||
384, 321, 164, -1, -1, -1, 39, 323, 384, 324,
|
||
164, -1, -1, 322, 39, 325, 384, 164, -1, -1,
|
||
-1, 329, 256, 384, 327, 164, 328, 330, -1, 43,
|
||
-1, 331, -1, 41, -1, 17, -1, -1, -1, -1,
|
||
45, 228, 336, 223, 333, 47, 256, 337, 334, 384,
|
||
335, 338, -1, 109, -1, 9, -1, -1, 48, 256,
|
||
-1, 164, 339, -1, 46, -1, 46, 167, -1, 17,
|
||
-1, 17, 167, -1, 167, -1, 196, -1, 340, -1,
|
||
341, 124, 340, -1, 121, 167, -1, 223, -1, 342,
|
||
-1, 343, 124, 342, -1, -1, -1, -1, 98, 341,
|
||
52, 343, 345, 348, 346, 384, 347, 338, -1, -1,
|
||
99, -1, -1, 355, 350, 356, 351, -1, 355, 351,
|
||
-1, 352, -1, 101, -1, 17, -1, -1, 100, 354,
|
||
223, 384, -1, 353, -1, 353, 163, -1, -1, 38,
|
||
223, 357, 384, 164, -1, -1, 356, 38, 223, 358,
|
||
384, 164, -1, 359, -1, 356, 359, -1, -1, -1,
|
||
39, 360, 384, 361, 164, -1, -1, -1, -1, -1,
|
||
62, 363, 368, 384, 164, 364, 371, 365, 369, 366,
|
||
367, -1, 67, -1, 17, -1, -1, 69, 223, -1,
|
||
-1, 370, 384, 164, -1, 66, -1, -1, 372, 384,
|
||
164, -1, 373, 384, 164, -1, 64, -1, 65, 167,
|
||
-1, 189, -1, 191, -1, -1, 68, 374, 376, 378,
|
||
-1, -1, 97, 377, 378, -1, -1, 69, 379, -1,
|
||
124, -1, 124, 380, -1, 380, -1, 379, 124, -1,
|
||
379, 124, 380, -1, 167, -1, 209, -1, 205, -1,
|
||
218, -1, 257, -1, -1, 102, 223, 384, 382, 164,
|
||
383, -1, 103, -1, 17, -1, 122, -1, 123, -1
|
||
};
|
||
|
||
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
|
||
static const yytype_uint16 yyrline[] =
|
||
{
|
||
0, 272, 272, 273, 276, 277, 278, 279, 280, 281,
|
||
282, 283, 284, 285, 286, 287, 290, 295, 303, 303,
|
||
304, 304, 305, 305, 306, 306, 309, 310, 311, 312,
|
||
315, 316, 317, 318, 321, 322, 325, 326, 329, 330,
|
||
331, 332, 333, 334, 335, 336, 337, 340, 341, 342,
|
||
343, 344, 345, 346, 347, 348, 351, 352, 360, 361,
|
||
362, 363, 364, 365, 371, 377, 378, 379, 380, 381,
|
||
382, 383, 384, 386, 386, 392, 393, 394, 406, 406,
|
||
428, 430, 428, 434, 436, 434, 440, 441, 442, 443,
|
||
444, 445, 445, 459, 462, 470, 489, 489, 492, 493,
|
||
494, 495, 496, 497, 510, 511, 512, 513, 516, 517,
|
||
518, 519, 522, 523, 526, 527, 530, 531, 534, 535,
|
||
538, 539, 540, 541, 542, 543, 544, 545, 546, 547,
|
||
548, 549, 550, 551, 552, 553, 554, 555, 556, 561,
|
||
562, 565, 568, 569, 574, 577, 582, 588, 593, 598,
|
||
599, 602, 607, 610, 621, 624, 629, 632, 635, 636,
|
||
639, 642, 643, 648, 651, 656, 657, 660, 665, 668,
|
||
675, 676, 681, 682, 683, 684, 685, 686, 687, 688,
|
||
689, 690, 691, 692, 693, 694, 697, 698, 699, 702,
|
||
703, 704, 705, 706, 707, 708, 709, 710, 711, 712,
|
||
713, 714, 715, 716, 717, 718, 719, 720, 721, 730,
|
||
731, 732, 733, 734, 735, 740, 741, 742, 743, 744,
|
||
745, 746, 747, 748, 749, 750, 751, 752, 753, 754,
|
||
755, 756, 757, 760, 763, 763, 766, 767, 767, 768,
|
||
768, 772, 775, 778, 779, 782, 783, 786, 787, 788,
|
||
789, 790, 793, 794, 799, 800, 801, 807, 808, 809,
|
||
812, 815, 820, 820, 823, 832, 833, 834, 835, 836,
|
||
837, 838, 839, 839, 840, 841, 842, 843, 844, 845,
|
||
846, 847, 848, 849, 849, 850, 851, 852, 852, 853,
|
||
854, 854, 855, 856, 857, 858, 859, 860, 861, 862,
|
||
865, 866, 867, 868, 868, 869, 869, 870, 873, 874,
|
||
877, 878, 881, 882, 883, 884, 885, 886, 887, 894,
|
||
895, 896, 897, 898, 899, 900, 901, 902, 903, 904,
|
||
905, 906, 907, 908, 909, 910, 911, 912, 913, 914,
|
||
920, 921, 924, 927, 928, 931, 932, 933, 936, 937,
|
||
938, 939, 940, 941, 942, 943, 944, 945, 946, 947,
|
||
948, 949, 950, 951, 952, 953, 954, 955, 956, 959,
|
||
962, 965, 968, 971, 974, 977, 980, 981, 982, 983,
|
||
984, 985, 988, 989, 990, 991, 992, 993, 996, 997,
|
||
1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1011,
|
||
1017, 1018, 1019, 1022, 1023, 1026, 1026, 1032, 1033, 1034,
|
||
1035, 1038, 1039, 1042, 1043, 1046, 1048, 1047, 1083, 1084,
|
||
1086, 1089, 1098, 1102, 1105, 1105, 1107, 1107, 1109, 1109,
|
||
1111, 1111, 1121, 1122, 1125, 1126, 1134, 1135, 1137, 1141,
|
||
1148, 1148, 1165, 1168, 1165, 1196, 1202, 1205, 1206, 1207,
|
||
1210, 1210, 1218, 1219, 1222, 1223, 1226, 1226, 1229, 1230,
|
||
1233, 1233, 1256, 1256, 1257, 1258, 1259, 1260, 1260, 1263,
|
||
1264, 1267, 1268, 1269, 1270, 1273, 1273, 1295, 1295, 1350,
|
||
1351, 1352, 1353, 1356, 1357, 1360, 1363, 1364, 1365, 1366,
|
||
1367, 1368, 1371, 1372, 1373, 1374, 1375, 1376, 1379, 1380,
|
||
1381, 1382, 1383, 1384, 1385, 1386, 1389, 1390, 1391, 1392,
|
||
1396, 1398, 1395, 1403, 1403, 1407, 1409, 1407, 1417, 1419,
|
||
1417, 1428, 1436, 1437, 1440, 1444, 1448, 1451, 1457, 1464,
|
||
1465, 1468, 1468, 1471, 1472, 1480, 1481, 1480, 1492, 1493,
|
||
1492, 1505, 1505, 1505, 1507, 1507, 1512, 1517, 1511, 1531,
|
||
1540, 1544, 1545, 1549, 1562, 1567, 1548, 1615, 1616, 1619,
|
||
1620, 1623, 1631, 1632, 1633, 1634, 1637, 1638, 1641, 1642,
|
||
1645, 1646, 1649, 1650, 1655, 1661, 1672, 1654, 1692, 1693,
|
||
1697, 1696, 1709, 1716, 1724, 1725, 1729, 1728, 1738, 1739,
|
||
1748, 1748, 1751, 1751, 1754, 1756, 1759, 1759, 1759, 1764,
|
||
1772, 1783, 1793, 1763, 1824, 1825, 1828, 1829, 1837, 1838,
|
||
1841, 1850, 1851, 1852, 1855, 1866, 1884, 1885, 1889, 1888,
|
||
1896, 1895, 1906, 1907, 1910, 1911, 1912, 1913, 1914, 1917,
|
||
1918, 1919, 1920, 1921, 1925, 1924, 1947, 1948, 1951, 1952
|
||
};
|
||
#endif
|
||
|
||
#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
|
||
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
|
||
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
|
||
static const char *const yytname[] =
|
||
{
|
||
"$end", "error", "$undefined", "FUNCTION", "PROCEDURE", "IDENTIFIER",
|
||
"RETURN", "NIL", "NUM_DOUBLE", "INASSIGN", "NUM_LONG", "LOCAL", "STATIC",
|
||
"IIF", "IF", "ELSE", "ELSEIF", "END", "ENDIF", "LITERAL", "TRUEVALUE",
|
||
"FALSEVALUE", "ANNOUNCE", "EXTERN", "DYNAMIC", "INIT", "EXIT", "AND",
|
||
"OR", "NOT", "PUBLIC", "EQ", "NE1", "NE2", "INC", "DEC", "ALIASOP",
|
||
"DOCASE", "CASE", "OTHERWISE", "ENDCASE", "ENDDO", "MEMVAR", "WHILE",
|
||
"LOOP", "FOR", "NEXT", "TO", "STEP", "LE", "GE", "FIELD", "IN",
|
||
"PARAMETERS", "PLUSEQ", "MINUSEQ", "MULTEQ", "DIVEQ", "POWER", "EXPEQ",
|
||
"MODEQ", "PRIVATE", "BEGINSEQ", "BREAK", "RECOVER", "RECOVERUSING",
|
||
"ALWAYS", "ENDSEQ", "DO", "WITH", "SELF", "LINE", "MACROVAR",
|
||
"MACROTEXT", "AS_ARRAY", "AS_BLOCK", "AS_CHARACTER", "AS_CLASS",
|
||
"AS_DATE", "AS_LOGICAL", "AS_NUMERIC", "AS_OBJECT", "AS_VARIANT",
|
||
"DECLARE", "OPTIONAL", "DECLARE_CLASS", "DECLARE_MEMBER",
|
||
"AS_ARRAY_ARRAY", "AS_BLOCK_ARRAY", "AS_CHARACTER_ARRAY",
|
||
"AS_CLASS_ARRAY", "AS_DATE_ARRAY", "AS_LOGICAL_ARRAY",
|
||
"AS_NUMERIC_ARRAY", "AS_OBJECT_ARRAY", "PROCREQ", "CBSTART", "DOIDENT",
|
||
"FOREACH", "DESCEND", "DOSWITCH", "ENDSWITCH", "WITHOBJECT", "ENDWITH",
|
||
"NUM_DATE", "EPSILON", "HASHOP", "THREAD", "POST", "'='", "'<'", "'>'",
|
||
"'$'", "'+'", "'-'", "'*'", "'/'", "'%'", "UNARY", "PRE", "'&'", "'@'",
|
||
"'\\n'", "';'", "','", "'('", "')'", "'{'", "'}'", "':'", "']'", "'['",
|
||
"'|'", "$accept", "Main", "Source", "Line", "Function", "@1", "@2", "@3",
|
||
"@4", "FunScope", "Params", "AsType", "AsArrayType", "StrongType",
|
||
"AsArray", "ParamList", "Statement", "@5", "@6", "@7", "@8", "@9", "@10",
|
||
"@11", "CompTimeStr", "CrlfStmnt", "@12", "LineStat", "ControlError",
|
||
"FunScopeId", "Statements", "EmptyStats", "ExtList", "DynList",
|
||
"IdentName", "NumValue", "DateValue", "NumAlias", "NilValue", "NilAlias",
|
||
"LiteralValue", "LiteralAlias", "CodeBlockAlias", "Logical",
|
||
"LogicalAlias", "SelfValue", "SelfAlias", "Array", "ArrayAlias",
|
||
"ArrayAt", "ArrayAtAlias", "Hash", "HashAlias", "HashList", "Variable",
|
||
"VarAlias", "MacroVar", "MacroVarAlias", "MacroExpr", "MacroExprAlias",
|
||
"FieldAlias", "FieldVarAlias", "AliasId", "AliasVar", "AliasExpr",
|
||
"VariableAt", "VariableAtAlias", "FunIdentCall", "@13", "FunCall", "@14",
|
||
"@15", "FunRef", "FunCallAlias", "ArgList", "Argument", "RefArgument",
|
||
"ExtArgument", "ObjectData", "SendId", "ObjectRef", "ObjectDataAlias",
|
||
"ObjectMethod", "@16", "ObjectMethodAlias", "SimpleExpression", "@17",
|
||
"@18", "@19", "@20", "Expression", "@21", "@22", "ExtExpression",
|
||
"EmptyExpression", "LValue", "LeftExpression", "PostOp", "ExprPostOp",
|
||
"ExprPreOp", "ExprUnary", "ExprAssign", "ExprEqual", "ExprPlusEq",
|
||
"ExprMinusEq", "ExprMultEq", "ExprDivEq", "ExprModEq", "ExprExpEq",
|
||
"ExprOperEq", "ExprMath", "ExprBool", "ExprRelation", "ArrayIndex",
|
||
"IndexList", "ElemList", "BlockHead", "@23", "BlockVars", "BlockVarList",
|
||
"BlockExpList", "CodeBlock", "@24", "ExpList", "PareExpList",
|
||
"PareExpListAlias", "IfInline", "IfInlineAlias", "VarDefs", "@25", "@26",
|
||
"@27", "@28", "VarList", "ExtVarList", "ExtVarDef", "VarDef", "@29",
|
||
"@30", "@31", "DimList", "DimIndex", "FieldsDef", "@32", "FieldList",
|
||
"InAlias", "MemvarDef", "@33", "MemvarList", "Declaration", "@34", "@35",
|
||
"@36", "DecDataList", "ClassInfo", "DecMethod", "@37", "DecData", "@38",
|
||
"DecList", "DummyArgList", "DummyArgument", "FormalList", "OptList",
|
||
"ExecFlow", "IfEndif", "IfBegin", "@39", "@40", "IfElse", "@41",
|
||
"IfElseIf", "@42", "@43", "@44", "@45", "EndIf", "EndIfID", "DoCase",
|
||
"EndCase", "EndCaseID", "DoCaseStart", "@46", "DoCaseBegin", "Cases",
|
||
"@47", "@48", "@49", "@50", "Otherwise", "@51", "@52", "@53", "DoWhile",
|
||
"@54", "@55", "WhileBegin", "EndWhile", "EndWhileID", "ForNext", "@56",
|
||
"@57", "@58", "ForAssign", "StepExpr", "ForStatements", "EndForID",
|
||
"ForVar", "ForList", "ForExpr", "ForArgs", "ForEach", "@59", "@60",
|
||
"@61", "Descend", "DoSwitch", "@62", "EndSwitch", "EndSwitchID",
|
||
"SwitchStart", "@63", "SwitchBegin", "SwitchCases", "@64", "@65",
|
||
"SwitchDefault", "@66", "@67", "BeginSeq", "@68", "@69", "@70", "@71",
|
||
"EndSeqID", "BlockSeq", "AlwaysSeq", "Always", "RecoverSeq",
|
||
"RecoverEmpty", "RecoverUsing", "DoName", "DoProc", "@72", "@73",
|
||
"DoArgs", "DoArgList", "DoArgument", "WithObject", "@74", "EndWithID",
|
||
"Crlf", 0
|
||
};
|
||
#endif
|
||
|
||
# ifdef YYPRINT
|
||
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
|
||
token YYLEX-NUM. */
|
||
static const yytype_uint16 yytoknum[] =
|
||
{
|
||
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
|
||
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
|
||
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
|
||
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
|
||
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
|
||
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
|
||
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
|
||
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
|
||
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
|
||
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
|
||
355, 356, 357, 358, 359, 360, 361, 362, 363, 61,
|
||
60, 62, 36, 43, 45, 42, 47, 37, 364, 365,
|
||
38, 64, 10, 59, 44, 40, 41, 123, 125, 58,
|
||
93, 91, 124
|
||
};
|
||
# endif
|
||
|
||
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
|
||
static const yytype_uint16 yyr1[] =
|
||
{
|
||
0, 133, 134, 134, 135, 135, 135, 135, 135, 135,
|
||
135, 135, 135, 135, 135, 135, 136, 136, 138, 137,
|
||
139, 137, 140, 137, 141, 137, 142, 142, 142, 142,
|
||
143, 143, 143, 143, 144, 144, 145, 145, 146, 146,
|
||
146, 146, 146, 146, 146, 146, 146, 147, 147, 147,
|
||
147, 147, 147, 147, 147, 147, 148, 148, 149, 149,
|
||
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
149, 149, 149, 150, 149, 149, 149, 149, 151, 149,
|
||
152, 153, 149, 154, 155, 149, 149, 149, 149, 149,
|
||
149, 156, 149, 149, 157, 157, 159, 158, 160, 160,
|
||
160, 160, 160, 160, 161, 161, 161, 161, 162, 162,
|
||
162, 162, 163, 163, 164, 164, 165, 165, 166, 166,
|
||
167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
|
||
167, 167, 167, 167, 167, 167, 167, 167, 167, 168,
|
||
168, 169, 170, 170, 171, 172, 173, 174, 175, 176,
|
||
176, 177, 178, 179, 180, 181, 182, 183, 184, 184,
|
||
185, 186, 186, 187, 188, 189, 189, 190, 191, 192,
|
||
193, 193, 194, 194, 194, 194, 194, 194, 194, 194,
|
||
194, 194, 194, 194, 194, 194, 195, 195, 195, 196,
|
||
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
|
||
196, 196, 196, 196, 196, 196, 196, 196, 196, 197,
|
||
197, 197, 197, 197, 197, 198, 198, 198, 198, 198,
|
||
198, 198, 198, 198, 198, 198, 198, 198, 198, 198,
|
||
198, 198, 198, 199, 201, 200, 202, 203, 202, 204,
|
||
202, 205, 206, 207, 207, 208, 208, 209, 209, 209,
|
||
209, 209, 210, 210, 211, 211, 211, 212, 212, 212,
|
||
213, 214, 216, 215, 217, 218, 218, 218, 218, 218,
|
||
218, 218, 219, 218, 218, 218, 218, 218, 218, 218,
|
||
218, 218, 218, 220, 218, 218, 218, 221, 218, 218,
|
||
222, 218, 218, 218, 218, 218, 218, 218, 218, 218,
|
||
223, 223, 223, 224, 223, 225, 223, 223, 226, 226,
|
||
227, 227, 228, 228, 228, 228, 228, 228, 228, 229,
|
||
229, 229, 229, 229, 229, 229, 229, 229, 229, 229,
|
||
229, 229, 229, 229, 229, 229, 229, 229, 229, 229,
|
||
230, 230, 231, 232, 232, 233, 233, 233, 234, 234,
|
||
234, 234, 234, 234, 234, 234, 234, 234, 234, 234,
|
||
234, 234, 234, 234, 234, 234, 234, 234, 234, 235,
|
||
236, 237, 238, 239, 240, 241, 242, 242, 242, 242,
|
||
242, 242, 243, 243, 243, 243, 243, 243, 244, 244,
|
||
245, 245, 245, 245, 245, 245, 245, 245, 245, 246,
|
||
247, 247, 247, 248, 248, 250, 249, 251, 251, 251,
|
||
251, 252, 252, 253, 253, 254, 255, 254, 256, 256,
|
||
257, 258, 259, 260, 262, 261, 263, 261, 264, 261,
|
||
265, 261, 266, 266, 267, 267, 268, 268, 268, 268,
|
||
270, 269, 271, 272, 269, 269, 273, 274, 274, 274,
|
||
276, 275, 277, 277, 278, 278, 280, 279, 281, 281,
|
||
283, 282, 284, 282, 282, 282, 282, 285, 282, 286,
|
||
286, 287, 287, 287, 287, 289, 288, 291, 290, 292,
|
||
292, 292, 292, 293, 293, 294, 295, 295, 295, 295,
|
||
295, 295, 296, 296, 296, 296, 296, 296, 297, 297,
|
||
297, 297, 297, 297, 297, 297, 298, 298, 298, 298,
|
||
300, 301, 299, 303, 302, 305, 306, 304, 307, 308,
|
||
304, 309, 310, 310, 311, 311, 311, 311, 312, 313,
|
||
313, 315, 314, 316, 316, 318, 319, 317, 320, 321,
|
||
317, 323, 324, 322, 325, 322, 327, 328, 326, 329,
|
||
330, 331, 331, 333, 334, 335, 332, 336, 336, 337,
|
||
337, 338, 339, 339, 339, 339, 340, 340, 341, 341,
|
||
342, 342, 343, 343, 345, 346, 347, 344, 348, 348,
|
||
350, 349, 349, 351, 352, 352, 354, 353, 355, 355,
|
||
357, 356, 358, 356, 356, 356, 360, 361, 359, 363,
|
||
364, 365, 366, 362, 367, 367, 368, 368, 369, 369,
|
||
370, 371, 371, 371, 372, 373, 374, 374, 376, 375,
|
||
377, 375, 378, 378, 379, 379, 379, 379, 379, 380,
|
||
380, 380, 380, 380, 382, 381, 383, 383, 384, 384
|
||
};
|
||
|
||
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
|
||
static const yytype_uint8 yyr2[] =
|
||
{
|
||
0, 2, 1, 0, 1, 1, 1, 1, 1, 2,
|
||
2, 2, 2, 2, 2, 3, 4, 6, 0, 5,
|
||
0, 5, 0, 8, 0, 8, 0, 1, 1, 1,
|
||
0, 1, 1, 3, 0, 1, 0, 1, 1, 1,
|
||
1, 1, 1, 1, 2, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 2, 2, 4, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 0, 4, 2, 2, 2, 0, 4,
|
||
0, 0, 5, 0, 0, 5, 1, 1, 1, 3,
|
||
3, 0, 4, 4, 1, 3, 0, 2, 1, 1,
|
||
1, 1, 1, 1, 4, 7, 4, 7, 0, 1,
|
||
1, 1, 1, 2, 0, 1, 1, 3, 1, 3,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 2, 2, 1, 2, 1, 2, 2, 1,
|
||
1, 2, 1, 2, 3, 2, 2, 2, 3, 3,
|
||
2, 3, 5, 1, 2, 1, 1, 2, 2, 2,
|
||
2, 3, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 1, 1, 1, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 0, 5, 1, 0, 5, 0,
|
||
5, 2, 2, 1, 3, 1, 1, 2, 2, 2,
|
||
2, 2, 1, 1, 3, 3, 2, 1, 1, 1,
|
||
4, 2, 0, 5, 2, 1, 1, 1, 1, 1,
|
||
1, 1, 0, 3, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 0, 3, 1, 1, 0, 3, 1,
|
||
0, 3, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 0, 3, 0, 3, 1, 1, 1,
|
||
0, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 2, 2, 2, 2, 2, 2, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 1, 1, 1, 1,
|
||
1, 1, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 3, 2,
|
||
2, 3, 4, 1, 3, 0, 4, 0, 1, 1,
|
||
3, 2, 4, 1, 3, 3, 0, 5, 1, 3,
|
||
3, 2, 8, 2, 0, 4, 0, 4, 0, 5,
|
||
0, 4, 1, 3, 1, 3, 1, 2, 4, 3,
|
||
0, 3, 0, 0, 6, 3, 2, 2, 3, 4,
|
||
0, 5, 2, 4, 0, 2, 0, 4, 2, 4,
|
||
0, 8, 0, 5, 3, 4, 3, 0, 7, 1,
|
||
3, 1, 2, 1, 2, 0, 6, 0, 3, 0,
|
||
1, 1, 3, 1, 3, 1, 2, 3, 5, 4,
|
||
5, 7, 3, 4, 6, 5, 6, 8, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 2, 3, 3, 4,
|
||
0, 0, 6, 0, 4, 0, 0, 6, 0, 0,
|
||
7, 1, 1, 1, 3, 3, 2, 4, 1, 1,
|
||
1, 0, 3, 1, 2, 0, 0, 6, 0, 0,
|
||
7, 0, 0, 5, 0, 5, 0, 0, 7, 1,
|
||
1, 1, 1, 0, 0, 0, 12, 1, 1, 0,
|
||
2, 2, 1, 2, 1, 2, 1, 1, 1, 3,
|
||
2, 1, 1, 3, 0, 0, 0, 10, 0, 1,
|
||
0, 4, 2, 1, 1, 1, 0, 4, 1, 2,
|
||
0, 5, 0, 6, 1, 2, 0, 0, 5, 0,
|
||
0, 0, 0, 11, 1, 1, 0, 2, 0, 3,
|
||
1, 0, 3, 3, 1, 2, 1, 1, 0, 4,
|
||
0, 3, 0, 2, 1, 2, 1, 2, 3, 1,
|
||
1, 1, 1, 1, 0, 6, 1, 1, 1, 1
|
||
};
|
||
|
||
/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
|
||
STATE-NUM when YYTABLE doesn't specify something else to do. Zero
|
||
means the default is an error. */
|
||
static const yytype_uint16 yydefact[] =
|
||
{
|
||
0, 0, 120, 78, 144, 139, 140, 424, 426, 0,
|
||
0, 146, 149, 150, 129, 127, 128, 28, 124, 80,
|
||
0, 0, 531, 456, 549, 123, 0, 122, 121, 450,
|
||
125, 430, 83, 599, 73, 0, 152, 0, 165, 166,
|
||
0, 126, 0, 0, 136, 405, 620, 0, 137, 586,
|
||
0, 141, 138, 0, 638, 639, 0, 310, 0, 0,
|
||
0, 8, 6, 0, 7, 163, 319, 321, 0, 320,
|
||
0, 322, 0, 0, 324, 0, 325, 0, 326, 0,
|
||
327, 0, 328, 0, 333, 0, 331, 0, 332, 0,
|
||
0, 0, 329, 330, 334, 0, 236, 336, 0, 338,
|
||
0, 0, 339, 0, 0, 96, 96, 96, 96, 376,
|
||
377, 378, 379, 380, 381, 96, 0, 323, 335, 0,
|
||
337, 0, 86, 87, 88, 5, 96, 498, 0, 499,
|
||
0, 0, 500, 0, 501, 503, 504, 0, 580, 502,
|
||
96, 505, 4, 9, 0, 77, 0, 143, 142, 0,
|
||
0, 0, 130, 132, 129, 127, 128, 124, 0, 134,
|
||
131, 123, 0, 135, 133, 136, 138, 0, 0, 0,
|
||
265, 267, 266, 268, 270, 271, 274, 275, 276, 301,
|
||
279, 280, 277, 278, 281, 282, 307, 286, 289, 300,
|
||
418, 0, 294, 295, 296, 292, 293, 297, 298, 299,
|
||
269, 510, 302, 285, 91, 0, 116, 0, 118, 75,
|
||
0, 343, 344, 0, 0, 76, 163, 319, 321, 320,
|
||
322, 324, 325, 326, 327, 328, 333, 314, 315, 313,
|
||
330, 317, 336, 316, 339, 0, 0, 323, 318, 337,
|
||
170, 0, 0, 0, 606, 0, 72, 616, 617, 618,
|
||
0, 462, 0, 34, 0, 0, 94, 0, 407, 622,
|
||
163, 331, 332, 567, 334, 338, 335, 568, 0, 0,
|
||
0, 428, 0, 168, 0, 0, 252, 0, 0, 0,
|
||
253, 246, 403, 311, 245, 0, 257, 258, 259, 256,
|
||
1, 0, 14, 12, 13, 11, 10, 0, 0, 164,
|
||
234, 0, 0, 215, 0, 0, 217, 186, 187, 188,
|
||
189, 209, 0, 145, 216, 193, 0, 147, 218, 194,
|
||
196, 0, 151, 220, 195, 0, 153, 222, 198, 0,
|
||
155, 156, 199, 0, 157, 200, 0, 160, 221, 197,
|
||
0, 223, 206, 210, 0, 167, 237, 63, 226, 190,
|
||
211, 0, 169, 239, 64, 227, 191, 212, 0, 0,
|
||
186, 173, 0, 177, 0, 178, 180, 0, 179, 0,
|
||
181, 0, 182, 0, 183, 0, 184, 172, 187, 175,
|
||
188, 176, 207, 0, 214, 174, 0, 185, 208, 0,
|
||
224, 0, 61, 225, 0, 233, 201, 0, 242, 60,
|
||
230, 203, 0, 261, 262, 228, 0, 204, 0, 264,
|
||
62, 229, 205, 340, 341, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 342, 67, 66, 70, 69, 68, 413,
|
||
0, 416, 0, 148, 219, 0, 421, 65, 232, 192,
|
||
213, 0, 423, 59, 231, 202, 58, 0, 515, 523,
|
||
522, 0, 0, 506, 521, 103, 426, 110, 124, 101,
|
||
99, 112, 102, 0, 0, 100, 98, 530, 535, 541,
|
||
529, 526, 528, 0, 0, 0, 0, 585, 584, 0,
|
||
582, 583, 71, 0, 97, 34, 0, 432, 0, 0,
|
||
345, 347, 346, 0, 241, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 89, 0, 90, 34, 81, 434, 436, 532,
|
||
34, 0, 558, 557, 0, 171, 34, 454, 0, 84,
|
||
0, 0, 0, 622, 0, 460, 0, 0, 464, 47,
|
||
42, 39, 0, 40, 41, 38, 43, 45, 52, 53,
|
||
49, 0, 50, 51, 48, 54, 467, 35, 46, 475,
|
||
466, 0, 0, 408, 34, 0, 409, 0, 621, 0,
|
||
0, 0, 634, 0, 0, 420, 158, 247, 248, 249,
|
||
251, 241, 250, 0, 159, 310, 310, 154, 15, 18,
|
||
20, 310, 348, 308, 309, 400, 0, 399, 350, 349,
|
||
351, 353, 354, 355, 356, 357, 362, 360, 310, 361,
|
||
310, 358, 359, 363, 366, 367, 310, 255, 368, 370,
|
||
371, 372, 373, 375, 374, 369, 254, 0, 415, 0,
|
||
352, 364, 365, 513, 0, 507, 518, 0, 508, 0,
|
||
0, 113, 0, 0, 538, 524, 0, 544, 525, 546,
|
||
0, 596, 0, 594, 79, 0, 440, 36, 0, 0,
|
||
425, 427, 310, 273, 304, 284, 288, 291, 388, 389,
|
||
390, 395, 396, 393, 394, 387, 398, 391, 392, 397,
|
||
382, 383, 384, 385, 386, 419, 511, 306, 92, 117,
|
||
119, 437, 36, 0, 0, 458, 0, 457, 553, 452,
|
||
0, 0, 0, 431, 0, 607, 0, 74, 619, 0,
|
||
16, 479, 477, 0, 471, 473, 465, 44, 55, 0,
|
||
479, 95, 93, 411, 406, 0, 624, 163, 307, 630,
|
||
300, 0, 302, 623, 626, 0, 571, 572, 574, 569,
|
||
587, 0, 0, 260, 0, 311, 161, 404, 0, 0,
|
||
0, 0, 0, 243, 401, 0, 0, 0, 0, 414,
|
||
0, 0, 0, 0, 0, 509, 0, 0, 0, 542,
|
||
0, 527, 0, 0, 590, 0, 0, 581, 595, 447,
|
||
441, 0, 445, 37, 0, 446, 433, 0, 0, 0,
|
||
439, 435, 82, 34, 0, 455, 34, 451, 85, 600,
|
||
0, 126, 0, 34, 0, 480, 481, 34, 472, 474,
|
||
463, 477, 0, 469, 0, 410, 34, 625, 627, 570,
|
||
0, 578, 0, 429, 310, 19, 30, 21, 30, 310,
|
||
235, 402, 238, 240, 263, 417, 514, 516, 0, 30,
|
||
104, 30, 106, 536, 0, 0, 0, 547, 0, 597,
|
||
592, 443, 448, 0, 310, 512, 438, 459, 0, 453,
|
||
611, 17, 0, 34, 34, 486, 34, 0, 0, 478,
|
||
0, 0, 34, 412, 628, 573, 579, 575, 637, 636,
|
||
635, 162, 31, 0, 32, 34, 0, 244, 0, 519,
|
||
0, 0, 0, 543, 539, 545, 0, 0, 0, 0,
|
||
0, 449, 0, 559, 614, 0, 601, 0, 0, 34,
|
||
492, 310, 487, 0, 0, 34, 482, 0, 470, 468,
|
||
476, 0, 0, 0, 56, 0, 517, 0, 0, 0,
|
||
537, 0, 552, 551, 548, 550, 591, 598, 0, 444,
|
||
422, 0, 554, 615, 608, 0, 0, 310, 493, 485,
|
||
0, 483, 461, 34, 489, 0, 34, 576, 23, 33,
|
||
34, 25, 520, 105, 107, 540, 593, 560, 0, 610,
|
||
602, 0, 612, 613, 0, 310, 488, 310, 490, 34,
|
||
495, 0, 57, 555, 0, 0, 494, 484, 0, 310,
|
||
496, 0, 577, 0, 605, 604, 603, 609, 491, 0,
|
||
564, 562, 561, 556, 497, 565, 563
|
||
};
|
||
|
||
/* YYDEFGOTO[NTERM-NUM]. */
|
||
static const yytype_int16 yydefgoto[] =
|
||
{
|
||
-1, 59, 60, 459, 62, 758, 760, 759, 761, 63,
|
||
893, 566, 792, 567, 568, 894, 460, 245, 144, 210,
|
||
704, 243, 714, 520, 257, 209, 146, 461, 462, 463,
|
||
770, 1001, 205, 207, 65, 170, 171, 68, 172, 70,
|
||
173, 72, 73, 174, 75, 175, 77, 176, 79, 177,
|
||
81, 178, 83, 279, 179, 85, 180, 87, 181, 89,
|
||
90, 91, 310, 182, 183, 184, 95, 96, 601, 185,
|
||
618, 620, 186, 98, 762, 280, 281, 763, 187, 289,
|
||
100, 101, 188, 626, 103, 189, 495, 497, 498, 499,
|
||
755, 496, 519, 605, 284, 235, 191, 423, 192, 193,
|
||
194, 195, 108, 109, 110, 111, 112, 113, 114, 196,
|
||
197, 198, 199, 348, 304, 285, 116, 258, 575, 576,
|
||
430, 200, 639, 275, 202, 119, 203, 121, 122, 149,
|
||
150, 583, 242, 486, 526, 527, 487, 790, 791, 910,
|
||
667, 668, 123, 241, 537, 712, 124, 214, 531, 465,
|
||
721, 546, 729, 822, 723, 255, 730, 725, 817, 814,
|
||
960, 961, 815, 816, 126, 127, 128, 518, 798, 451,
|
||
772, 452, 644, 898, 774, 937, 453, 454, 129, 471,
|
||
472, 130, 213, 131, 473, 652, 902, 780, 941, 474,
|
||
653, 854, 782, 132, 783, 906, 133, 944, 945, 134,
|
||
804, 978, 1003, 534, 952, 1002, 1012, 267, 268, 747,
|
||
748, 135, 831, 931, 991, 887, 136, 479, 480, 481,
|
||
137, 269, 138, 662, 858, 909, 663, 785, 908, 139,
|
||
244, 870, 954, 994, 1006, 541, 980, 981, 916, 917,
|
||
918, 249, 140, 543, 259, 578, 743, 744, 141, 751,
|
||
890, 466
|
||
};
|
||
|
||
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
||
STATE-NUM. */
|
||
#define YYPACT_NINF -716
|
||
static const yytype_int16 yypact[] =
|
||
{
|
||
4763, 332, -716, 397, -716, -4, 5, 312, 785, -71,
|
||
7544, -716, -716, -716, 8639, 8639, 8639, -716, 122, 1577,
|
||
7544, 7544, -716, 1769, -716, 397, 3775, -716, -716, 50,
|
||
-716, 2008, 2147, -716, 397, 304, -716, 98, -716, -716,
|
||
8639, -716, 8639, 1747, 75, -716, -716, 3775, -716, -716,
|
||
7544, -716, 164, 132, -716, -716, 7667, 7052, 8396, 302,
|
||
4893, -716, -716, 609, -716, 192, 55, 69, 2960, 29,
|
||
8396, 31, 8396, 8396, 33, 8396, 84, 8396, 109, 8396,
|
||
46, 8396, 149, 8396, 91, 2960, 16, 2960, 145, 2960,
|
||
4167, 8396, 100, 65, 48, 8396, -716, 95, 8396, 25,
|
||
232, 8396, 107, 8396, 830, -716, -716, -716, -716, -716,
|
||
-716, -716, -716, -716, -716, -716, 3292, 180, 212, 2960,
|
||
260, 8396, -716, -716, -716, -716, -716, -716, 490, -716,
|
||
5149, 387, -716, 7544, -716, -716, -716, 5276, 249, -716,
|
||
-716, -716, -716, -716, 7544, -716, 332, -716, -716, 8639,
|
||
8639, 7544, -716, -716, -716, -716, -716, -716, 7544, -716,
|
||
-716, -716, 50, -716, -716, -716, -716, 7544, 7544, 8639,
|
||
330, 476, 199, 626, 1103, 4320, 1474, 2455, 1969, 8173,
|
||
519, 1513, 537, 2411, 2615, 7989, -716, 3417, 8050, -716,
|
||
4274, 1042, -716, -716, -716, -716, -716, -716, -716, -716,
|
||
2302, 288, 8112, 2441, -716, 400, -716, 425, -716, -716,
|
||
8441, -716, -716, 332, 8639, -716, 15, 298, 298, 52,
|
||
60, 93, 134, 157, 411, 189, 298, 78, 154, 146,
|
||
298, -14, 191, 226, 200, 8, 307, 210, 63, 211,
|
||
388, 8639, 8639, 8441, 412, 7544, -716, -716, -716, -716,
|
||
447, 365, 4696, 4424, 369, 332, 389, 408, 3565, 457,
|
||
343, -3, 162, 146, 506, 183, 213, -716, 221, 7544,
|
||
3127, -716, 7544, -716, 8639, 168, -716, 423, 3775, 341,
|
||
-716, -716, -716, 3856, -716, 356, -716, -716, -716, -716,
|
||
-716, 332, -716, -716, -716, -716, -716, 8639, 8639, -716,
|
||
-716, 7544, 7175, -716, 284, 7544, -716, -716, -716, -716,
|
||
-716, -716, 7544, -716, -716, -716, 7544, -716, -716, -716,
|
||
-716, 7544, -716, -716, -716, 7544, -716, -716, -716, 7544,
|
||
-716, -716, -716, 7544, -716, -716, 7544, -716, -716, -716,
|
||
7544, -716, -716, -716, 7544, -716, -716, -716, -716, -716,
|
||
-716, 7544, -716, -716, -716, -716, -716, -716, -4, 5,
|
||
545, -716, 559, -716, 568, -716, -716, 570, -716, 590,
|
||
-716, 157, -716, 411, -716, 611, -716, -716, 613, -716,
|
||
615, -716, -716, 623, 627, -716, 628, -716, -716, 7544,
|
||
-716, 7544, -716, -716, 7544, -716, -716, 7544, -716, -716,
|
||
-716, -716, 7544, -716, -716, -716, 8396, -716, 7544, -716,
|
||
-716, -716, -716, -716, -716, 7544, 7544, 7544, 7544, 7544,
|
||
7544, 7544, 8396, -716, -716, -716, -716, -716, -716, 4274,
|
||
363, -716, 7544, -716, -716, 7544, -716, -716, -716, -716,
|
||
-716, 7544, -716, -716, -716, -716, -716, 332, -716, -716,
|
||
-716, 527, 541, -716, -716, -716, 1262, -716, 129, -716,
|
||
-716, -716, -716, 619, 5403, -716, -716, -716, -716, -716,
|
||
-716, -716, -716, 418, 371, 439, 5530, -716, -716, 602,
|
||
-716, -716, -716, 3127, -716, 4398, 443, -716, 443, 2998,
|
||
2597, -716, -716, 489, -716, 4424, 4424, 4424, 4424, 4424,
|
||
7544, 7544, 7544, 7544, 7544, 7544, 7544, 7544, 7544, 7544,
|
||
7544, 7544, 7544, 7544, 7544, 7544, 7544, 7544, 332, 4424,
|
||
332, 8639, -716, 8639, -716, 4398, 531, -716, -716, -716,
|
||
4424, 497, -716, -716, 7544, -716, 4424, 229, 497, 531,
|
||
7544, 332, 3127, 457, 479, -716, 8639, 332, -716, -716,
|
||
-716, -716, 8639, -716, -716, -716, -716, -716, -716, -716,
|
||
-716, 8639, -716, -716, -716, -716, -716, -716, -716, -716,
|
||
-716, 646, 332, -716, 4424, 535, 546, 7298, -716, 7790,
|
||
3775, 3127, -716, 8639, 511, -716, -716, 227, 78, 146,
|
||
-14, 178, 226, 7544, -716, 7544, 7421, -716, -716, 544,
|
||
551, 7421, 4274, -716, 4274, -716, 7175, 540, 4274, 4274,
|
||
4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 7421, 4274,
|
||
7421, 4274, 4274, 4274, 4274, 4274, 7421, -716, 4274, 4274,
|
||
4274, 4274, 4274, 4274, 4274, 4274, -716, 7544, -716, 6927,
|
||
4274, 4274, 4274, -716, 7544, -716, -716, 527, -716, 8639,
|
||
8639, -716, 7544, 332, -716, -716, 371, -716, -716, -716,
|
||
7544, -716, 11, -716, -716, 7544, 670, 875, 353, 8639,
|
||
-716, -716, 7913, -716, -716, -716, -716, -716, 4309, 4274,
|
||
2597, 2597, 2597, 1614, 1614, 629, 2597, 1614, 1614, 1614,
|
||
358, 358, 316, 316, 316, 4274, -716, -716, -716, -716,
|
||
-716, 680, 875, 8441, 332, -716, 8639, -716, 4274, -716,
|
||
8639, 8639, 332, -716, 332, 4274, 4537, -716, -716, 671,
|
||
-716, 2790, 369, 4696, -716, -716, -716, -716, -716, 8639,
|
||
2790, -716, -716, -716, -716, 8485, 7913, 327, 507, -716,
|
||
510, 4274, 618, 567, -716, 8639, 4274, -716, 577, -716,
|
||
-716, 6292, 443, -716, 4013, 4274, -716, -716, 332, 579,
|
||
332, 588, 173, -716, -716, 7175, 201, 293, 320, 4274,
|
||
5020, 574, 6419, 439, 7544, -716, -79, 392, 439, -716,
|
||
7544, -716, 332, 6546, 4274, 332, 7544, -716, -716, 4274,
|
||
-716, 705, -716, -716, 7544, 586, -716, 594, 5657, 7544,
|
||
-716, -716, -716, 4424, 672, -716, 4424, -716, -716, -716,
|
||
332, 8263, 8639, 4424, 595, 599, 600, 4424, -716, -716,
|
||
-716, -716, 364, -716, 596, -716, 4424, -716, 7913, 489,
|
||
7790, 631, 39, -716, 7544, -716, 8530, -716, 8530, 7421,
|
||
-716, -716, -716, -716, -716, -716, -716, -716, 439, 8530,
|
||
-716, 8530, -716, -716, 6038, 439, 6038, -716, 332, -716,
|
||
4274, -716, 4274, 7544, 7913, -716, 4274, -716, 7544, -716,
|
||
578, -716, 8639, 4424, 4596, -716, 4424, 8307, 641, -716,
|
||
8639, 332, 4424, -716, -716, -716, -716, -716, -716, -716,
|
||
-716, -716, -716, 601, 610, 4424, 607, -716, 5657, -716,
|
||
612, 624, 5784, -716, -716, -716, 22, 5911, 5911, 332,
|
||
7544, 4274, 632, -17, -716, 8639, -716, 332, 332, 8676,
|
||
-716, 7544, -716, 332, 8639, 4424, 600, 8352, -716, -716,
|
||
-716, 332, 332, 8594, -716, 332, -716, 5657, 332, 332,
|
||
-716, 5784, -716, -716, -716, -716, -716, -716, 5911, 4274,
|
||
-716, 7544, -716, -716, 660, 6165, 6165, 7544, -716, -716,
|
||
375, -716, -716, 8697, -716, 8639, 4424, -716, -716, -716,
|
||
4424, -716, -716, -716, -716, -716, -716, 288, 332, -716,
|
||
-716, 332, -716, -716, 403, 7544, -716, 7544, -716, 8718,
|
||
-716, 6673, -716, -716, 13, 6800, -716, -716, 413, 7544,
|
||
-716, 20, -716, 6673, -716, -716, -716, -716, -716, 458,
|
||
8639, 8639, -716, -716, -716, -716, -716
|
||
};
|
||
|
||
/* YYPGOTO[NTERM-NUM]. */
|
||
static const yytype_int16 yypgoto[] =
|
||
{
|
||
-716, -716, -716, 310, 677, -716, -716, -716, -716, -716,
|
||
-457, -477, 37, 90, -640, -716, 315, -716, -716, -716,
|
||
-716, -716, -716, -716, -716, 198, -716, -458, -716, -716,
|
||
270, -338, -716, -716, 3188, 981, 1217, 654, 45, 655,
|
||
272, 662, 663, 333, 664, 453, 669, 478, 673, 598,
|
||
674, 720, 675, -716, 1286, 676, 0, 681, 76, 683,
|
||
520, -716, 8641, 1377, 1441, 1532, -716, -168, -716, 1630,
|
||
-716, -716, -568, -716, -123, -660, -567, -55, 1783, -132,
|
||
-716, -716, 1844, -716, -716, -564, -716, -716, -716, -716,
|
||
3931, -716, -716, -592, -584, -716, 1951, -716, 1971, 2180,
|
||
-716, 2197, -716, -716, -716, -716, -716, -716, -716, 2271,
|
||
-716, -716, -716, 3463, -716, -716, -716, -716, -716, -716,
|
||
-716, 743, -716, -6, 152, 685, 1004, 686, -716, -716,
|
||
-716, -716, -716, -145, 534, 59, -207, -716, -716, -716,
|
||
253, -716, -716, -716, -716, -716, -716, -716, 539, 360,
|
||
-716, -716, -716, -716, -716, -539, -716, -700, -716, 49,
|
||
-559, -203, -716, -92, -716, -716, -716, -716, -716, 334,
|
||
-716, -716, -716, -716, -716, -716, -436, -716, -716, -454,
|
||
-716, -716, -716, -716, -716, -716, -716, -716, -716, 314,
|
||
-716, -716, -716, -716, -716, -716, -716, -716, -716, -716,
|
||
-716, -716, -716, -716, -716, -210, -716, 215, -716, -31,
|
||
-716, -716, -716, -716, -716, -716, -716, -716, 138, -716,
|
||
-716, -716, -716, -716, -716, -716, 139, -716, -716, -716,
|
||
-716, -716, -716, -716, -716, -716, -716, -716, -716, -716,
|
||
-716, -716, -716, -716, -716, 259, -716, -715, -716, -716,
|
||
-716, 3232
|
||
};
|
||
|
||
/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
|
||
positive, shift that token. If negative, reduce the rule which
|
||
number is the opposite. If zero, do what YYDEFACT says.
|
||
If YYTABLE_NINF, syntax error. */
|
||
#define YYTABLE_NINF -634
|
||
static const yytype_int16 yytable[] =
|
||
{
|
||
86, 494, 282, 528, 201, 488, 651, 724, 666, 738,
|
||
739, 756, 797, 740, 764, 645, 648, 532, 651, 655,
|
||
658, 827, 395, 819, -312, 344, 227, 793, 477, 823,
|
||
1004, 951, 147, 345, 402, 247, 528, 1010, 312, 942,
|
||
316, 148, 321, 54, 55, 69, 849, 261, 701, 786,
|
||
661, 299, 345, 705, 151, 333, 888, 394, 287, 709,
|
||
86, 403, 793, 943, 301, 313, 1011, 317, 308, 322,
|
||
308, 219, 308, 308, 391, 308, 88, 308, 305, 308,
|
||
1005, 308, 334, 308, 395, 308, 240, 308, 313, 308,
|
||
378, 308, 219, 325, 256, 308, 317, 733, 308, 436,
|
||
340, 308, 228, 308, 397, 69, 494, 517, 250, 389,
|
||
591, 248, 478, 884, 345, -334, 408, 533, 329, 308,
|
||
326, 308, 346, 262, -312, -29, -29, 475, 302, 322,
|
||
86, 398, -111, -111, 288, 362, 88, 86, -96, -96,
|
||
300, 346, 889, 409, 309, 330, 309, 302, 309, 309,
|
||
404, 309, 118, 309, 351, 309, 302, 309, 336, 309,
|
||
302, 309, 302, 309, 302, 309, 380, 309, 738, 739,
|
||
326, 309, 740, 841, 309, 69, 271, 309, 238, 309,
|
||
928, 352, 69, 302, 818, 337, 302, -96, -96, 432,
|
||
352, 302, -335, 330, 302, 309, 302, 309, 352, 266,
|
||
302, 145, 781, 346, 912, 273, 88, -331, 312, 302,
|
||
525, 775, 118, 88, -236, 302, 433, -96, -96, 403,
|
||
311, 435, 302, 215, 302, 337, 302, 398, 299, -96,
|
||
-96, 302, 246, -320, -320, 313, 409, 343, 302, 350,
|
||
302, 357, 384, 525, -96, -96, 433, 442, 436, 436,
|
||
891, -96, -96, -320, -320, -320, -320, 272, -320, -320,
|
||
738, 739, 403, 299, 740, 302, 477, -96, -96, 441,
|
||
353, 440, 71, 579, 627, -329, 302, 302, 588, 353,
|
||
302, 710, 118, -332, 347, 302, 354, 353, 302, 118,
|
||
636, 392, 517, 302, 585, 399, 442, 839, 220, 840,
|
||
410, 771, 290, 424, 425, 426, 427, -236, 404, -236,
|
||
61, 302, 651, 428, 302, 64, 437, 300, 443, 220,
|
||
302, -130, 302, 219, 446, 839, 867, 842, -320, 869,
|
||
302, 302, 71, 74, -96, -96, 875, 959, 482, 301,
|
||
879, 302, 302, 302, 302, 580, -130, -130, -130, 883,
|
||
478, 404, 300, 711, 262, -338, -163, 302, -163, 221,
|
||
125, 406, 364, 299, -319, -319, -130, -130, -130, -130,
|
||
292, -130, -130, 959, 507, 294, 38, 39, 809, 299,
|
||
221, 896, -96, -96, -319, -319, -319, -319, 467, -319,
|
||
-319, 302, 900, 74, 901, -566, 920, 922, 984, 923,
|
||
464, 959, 71, 959, 467, 930, 287, 476, 606, 71,
|
||
657, 470, 517, 832, 607, 959, 507, 839, 934, 843,
|
||
295, -130, 287, 367, 53, 468, 469, 470, 998, 302,
|
||
266, 514, 515, 516, 846, 467, 422, -130, 752, 162,
|
||
1009, -130, 958, -130, 839, 857, 844, 334, 964, -629,
|
||
-629, -629, 300, 76, 54, 55, 654, 469, 470, -319,
|
||
865, 302, 796, 74, 86, 593, 544, -566, 300, 594,
|
||
74, 512, 513, 514, 515, 516, 86, 794, 78, 222,
|
||
596, 540, 288, 795, 597, 305, 988, 637, 880, 990,
|
||
545, 638, 881, 992, 569, 766, 528, 767, 288, 985,
|
||
222, 986, 571, 768, 223, 447, 448, 449, 450, 69,
|
||
-321, -321, 1000, 76, 54, 55, 903, 851, 905, -96,
|
||
-96, 69, 54, 55, 521, 223, 577, 985, 344, 996,
|
||
-321, -321, -321, -321, 572, -321, -321, 985, 78, 1008,
|
||
88, 757, 395, 369, 449, 450, 389, 54, 55, 523,
|
||
220, 586, 88, -331, -331, 345, 447, 646, 449, 450,
|
||
936, 54, 55, 517, 940, 54, 55, 669, 371, 946,
|
||
947, -329, -329, -331, -331, -331, -331, 494, -331, -331,
|
||
261, 299, 985, 76, 1014, 673, 674, 675, 676, 677,
|
||
76, -329, -329, -329, -329, 313, -329, -329, 80, 972,
|
||
719, 54, 55, 975, 317, -321, 322, 302, 78, 697,
|
||
976, 221, 297, 298, 300, 78, 118, 982, 983, 54,
|
||
55, 706, 649, 650, 224, 219, 326, 435, 118, -631,
|
||
-631, -631, -632, -632, -632, 316, 300, 753, 773, 86,
|
||
660, 661, 914, 915, 346, 224, 778, 337, -331, 345,
|
||
302, 352, -335, -335, 436, 703, 262, 1007, 80, 433,
|
||
-322, -322, 317, 436, 442, 731, -329, 734, 302, -22,
|
||
735, 765, -335, -335, -335, -335, -24, -335, -335, -442,
|
||
-322, -322, -322, -322, 69, -322, -322, 507, 373, 799,
|
||
810, 828, -305, -305, -305, -305, -305, -305, -305, -305,
|
||
-305, 830, 845, 525, 836, -305, -305, -305, -305, -305,
|
||
-305, -305, -305, 838, 861, 88, 86, 863, 864, 868,
|
||
82, 876, 882, 877, 878, 927, 979, 932, 80, 742,
|
||
886, 222, 266, 935, 933, 80, 71, 293, 938, 800,
|
||
-633, -633, -633, 117, 361, 363, 225, -335, 71, 302,
|
||
939, 86, 365, 366, 368, -322, 223, 302, 950, 370,
|
||
535, 69, 801, 372, 374, 376, 377, 225, 848, 237,
|
||
86, 379, 86, 381, 855, 385, 387, 539, 702, 824,
|
||
82, 538, 997, 86, 897, 926, 647, 656, -27, -27,
|
||
237, 118, 88, 1013, -132, 749, 69, 74, 86, 885,
|
||
787, 788, 718, 117, 0, 0, 0, 0, 0, 74,
|
||
375, 0, 0, 0, 0, 69, 0, 69, 0, -132,
|
||
-132, -132, 0, 0, 0, 0, 0, 88, 69, 0,
|
||
0, 0, 0, 383, 0, 0, 0, 0, 0, -132,
|
||
-132, -132, -132, 69, -132, -132, 88, 0, 88, 0,
|
||
82, 0, 220, 0, 86, 0, 86, 82, 0, 88,
|
||
0, 0, 913, 0, 413, 414, 0, 0, 118, 0,
|
||
0, 0, 0, 117, 88, 0, 224, 0, 0, 0,
|
||
117, 0, 0, 0, 415, 416, 417, 418, 742, 419,
|
||
420, 0, 0, 0, -132, 0, 0, 0, 86, 69,
|
||
0, 69, 86, 118, 0, 0, 0, 86, 86, 0,
|
||
-132, 71, 0, 221, -132, 0, -132, 76, 0, 0,
|
||
0, 0, 118, 0, 118, 0, 0, 0, 0, 76,
|
||
88, 0, 88, 0, 0, 118, 0, 86, 0, 421,
|
||
0, 86, 78, 69, 0, 977, 0, 69, 86, 549,
|
||
118, 0, 69, 69, 78, 86, 86, 0, 0, 422,
|
||
0, 0, 558, 559, 560, 561, 562, 563, 564, 565,
|
||
0, 0, 74, 0, 88, 0, 0, 0, 88, 0,
|
||
742, 66, 69, 88, 88, 0, 69, 0, 71, 0,
|
||
0, 86, 0, 69, 0, 86, 0, 0, 225, 0,
|
||
69, 69, 0, 86, 120, 0, 118, 217, 118, 0,
|
||
0, 0, 0, 88, 0, 0, 0, 88, 0, 0,
|
||
0, 237, 0, 71, 88, 0, 0, 0, 217, 0,
|
||
239, 88, 88, 222, 0, 0, 69, 0, 0, 0,
|
||
69, 66, 71, 0, 71, 0, 0, 0, 69, 74,
|
||
118, 239, 0, 0, 118, 71, 0, 0, 223, 118,
|
||
118, 0, 80, 0, 120, 0, 0, 88, 0, 0,
|
||
71, 88, 0, 0, 80, 0, 413, 414, 0, 88,
|
||
0, 0, 0, 0, 74, 0, 0, 0, 0, 118,
|
||
0, 0, 76, 118, 386, 0, 415, 416, 417, 418,
|
||
118, 419, 420, 74, 0, 74, 0, 118, 118, 0,
|
||
0, 66, 321, 0, 0, 0, 74, 78, 66, 0,
|
||
0, 0, 0, 0, 0, 0, 71, 0, 71, 0,
|
||
0, 74, 0, 0, 120, 0, 0, -324, -324, 322,
|
||
0, 120, 0, 118, 0, 0, 0, 118, 0, 0,
|
||
0, 0, 0, 0, 0, 118, 0, -324, -324, -324,
|
||
-324, 0, -324, -324, 0, 0, 0, 0, 0, 76,
|
||
71, 422, 0, 0, 71, 0, 0, 0, 224, 71,
|
||
71, 0, 0, 0, 82, 0, 0, 74, 0, 74,
|
||
0, 0, 0, 0, 78, 0, 82, 0, 0, 0,
|
||
0, 0, 0, 0, 76, 0, 0, 117, 0, 71,
|
||
0, 0, 0, 71, 0, 0, 0, 67, 0, 117,
|
||
71, 0, 0, 76, 0, 76, 0, 71, 71, 78,
|
||
0, 74, -324, 0, 302, 74, 76, 80, 0, 0,
|
||
74, 74, 0, 218, 0, 0, 0, 0, 78, 0,
|
||
78, 76, 0, 0, 0, 0, 0, 0, 0, 217,
|
||
0, 78, 0, 71, 218, -109, -109, 71, 0, 0,
|
||
74, -132, 0, 0, 74, 71, 78, 67, 0, 0,
|
||
0, 74, 239, 0, 0, 0, 84, 0, 74, 74,
|
||
0, 0, 0, 0, 0, 0, -132, -132, -132, 0,
|
||
225, 0, 0, 0, 0, 0, 0, 76, 0, 76,
|
||
0, 0, 226, 0, 80, 0, -132, -132, -132, -132,
|
||
0, -132, -132, 237, 74, 0, 0, 0, 74, 0,
|
||
0, 0, 78, 226, 78, 0, 74, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 84, 67, 0, 80,
|
||
0, 76, 0, 0, 67, 76, 0, 0, 0, 82,
|
||
76, 76, 0, 0, 0, 0, 0, 0, 80, 0,
|
||
80, -132, 0, 0, 0, 0, 78, 92, 0, 0,
|
||
78, 80, 117, 0, 0, 78, 78, -132, 0, 0,
|
||
76, -132, 0, -132, 76, 0, 80, 0, 0, 0,
|
||
0, 76, 0, 229, 0, 0, 0, 0, 76, 76,
|
||
0, 0, 0, 0, 0, 78, 84, 0, 0, 78,
|
||
0, 0, 0, 84, 263, 0, 78, 0, 0, 0,
|
||
0, 0, 0, 78, 78, 0, 82, 92, 0, 0,
|
||
0, 93, 0, 0, 76, 66, 0, 0, 76, 0,
|
||
0, 0, 80, 0, 80, 0, 76, 66, 0, 117,
|
||
0, 0, 0, 0, 0, 0, 0, 230, 120, 78,
|
||
0, 82, 0, 78, 0, 0, 0, 0, 0, 0,
|
||
120, 78, 0, 329, 0, 0, 0, 0, 230, 0,
|
||
82, 0, 82, 0, 117, 218, 80, 0, 0, 0,
|
||
80, 93, 0, 82, 0, 80, 80, 92, -326, -326,
|
||
330, 0, 0, 117, 92, 117, 0, 0, 82, 0,
|
||
0, 0, 351, 0, 0, 0, 117, 0, -326, -326,
|
||
-326, -326, 94, -326, -326, 80, 0, 0, 0, 80,
|
||
0, 117, 0, 0, 0, 0, 80, -332, -332, 352,
|
||
0, 0, 0, 80, 80, 0, 0, 0, 231, 0,
|
||
0, 217, 0, 0, 226, 0, 0, -332, -332, -332,
|
||
-332, 93, -332, -332, 82, 0, 82, 0, 93, 264,
|
||
0, 0, 0, 0, 239, 0, -134, 0, 0, 80,
|
||
0, 0, 94, 80, 0, 0, 0, 117, 0, 117,
|
||
0, 80, 0, -326, 0, 302, 0, 0, 0, 0,
|
||
0, -134, -134, -134, 0, 0, 0, 0, 82, 0,
|
||
66, 0, 82, 0, 0, 0, 0, 82, 82, 0,
|
||
97, -134, -134, -134, -134, 0, -134, -134, 353, 0,
|
||
0, 117, -332, 120, 302, 117, 0, 0, 0, 0,
|
||
117, 117, 0, 0, 0, 589, 232, 82, 0, 0,
|
||
0, 82, 94, 505, 506, 0, 0, 0, 82, 94,
|
||
0, 0, 507, 0, 0, 82, 82, 232, 0, 0,
|
||
117, 67, 0, 0, 117, 0, -134, 0, 0, 0,
|
||
97, 117, 0, 67, 0, 0, 0, 66, 117, 117,
|
||
0, 0, -134, 0, 0, 0, -134, 0, -134, 0,
|
||
0, 82, 0, 0, 0, 82, 0, 0, 0, 230,
|
||
120, 0, 0, 82, 509, 510, 511, 512, 513, 514,
|
||
515, 516, 66, 0, 117, 0, 0, 0, 117, 0,
|
||
0, 0, 0, 0, 0, 0, 117, 0, 0, 0,
|
||
84, 66, 2, 66, 0, 120, 0, 0, 152, 153,
|
||
97, 0, 84, 0, 66, 0, 0, 97, 0, 154,
|
||
155, 156, 0, 157, 120, 0, 120, 159, -131, 66,
|
||
0, 0, 0, 99, 0, 0, 0, 120, 0, 160,
|
||
0, 161, 0, 0, 27, 28, 0, 218, 0, 30,
|
||
163, 0, 120, -131, -131, -131, 0, 0, 164, 233,
|
||
590, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, -131, -131, -131, -131, 0, -131, -131,
|
||
265, 41, 0, 0, 0, 66, 0, 66, 0, 0,
|
||
0, 92, 165, 99, 102, 0, 48, 0, 0, 0,
|
||
0, 0, 0, 92, 166, 0, 67, 0, 120, 0,
|
||
120, 0, 0, 0, 0, 0, 226, 0, 0, 0,
|
||
234, 0, 0, 0, 253, 0, 0, 0, -131, 66,
|
||
0, 0, 0, 66, 0, 0, 0, 0, 66, 66,
|
||
0, 234, 0, 0, -131, 0, 0, 0, -131, 0,
|
||
-131, 0, 120, 0, 102, 93, 120, 0, 232, 0,
|
||
0, 120, 120, 99, 0, 0, 0, 93, 66, 0,
|
||
99, 0, 66, 0, 0, 84, 0, 0, 0, 66,
|
||
0, 0, 0, 67, 0, 0, 66, 66, 0, 0,
|
||
0, 120, 0, 0, 0, 120, 0, 0, 0, 0,
|
||
0, 104, 120, 0, 0, 0, 0, 263, 0, 120,
|
||
120, 0, 0, 0, 0, 0, 0, 0, 67, 0,
|
||
0, 105, 66, 0, 102, 0, 66, 236, 336, 0,
|
||
0, 102, 0, 0, 66, 0, 0, 67, 0, 67,
|
||
0, 0, 0, 0, 0, 120, 94, 0, 236, 120,
|
||
67, 0, 84, -328, -328, 337, 0, 120, 94, 0,
|
||
0, 104, 0, 0, 0, 67, 92, -135, 0, 0,
|
||
0, 230, 0, -328, -328, -328, -328, 0, -328, -328,
|
||
0, 105, 0, 0, 0, 0, 0, 84, 0, 0,
|
||
0, 0, -135, -135, -135, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 84, 0, 84, 0,
|
||
0, 592, -135, -135, -135, -135, 0, -135, -135, 84,
|
||
0, 67, 0, 67, 0, 0, 0, 0, 0, 0,
|
||
93, 104, 0, 0, 84, 0, 0, 0, 104, 0,
|
||
0, 0, 0, 92, 97, 0, 0, 0, -328, 0,
|
||
302, 105, 0, 0, 0, 0, 97, 0, 105, 0,
|
||
0, 0, 264, 0, 0, 67, 0, -135, 0, 67,
|
||
0, 0, 234, 0, 67, 67, 0, 0, 92, 0,
|
||
0, 0, 0, -135, 0, 0, 0, -135, 0, -135,
|
||
84, 0, 84, 0, 0, 0, 0, 92, 0, 92,
|
||
0, 0, 0, 0, 67, 0, -133, 93, 67, 0,
|
||
92, 0, 0, 0, 0, 67, 0, 0, 0, 0,
|
||
0, 94, 67, 67, 0, 92, 0, 0, 0, 0,
|
||
106, -133, -133, -133, 84, 0, 0, 0, 84, 0,
|
||
0, 0, 93, 84, 84, 0, 0, 107, 0, 0,
|
||
0, -133, -133, -133, -133, 0, -133, -133, 67, 0,
|
||
232, 93, 67, 93, 0, 0, 0, 0, 0, 0,
|
||
67, 0, 0, 84, 93, 0, 0, 84, 0, 236,
|
||
0, 92, 0, 92, 84, 0, 0, 0, 0, 93,
|
||
106, 84, 84, 0, 0, 0, 0, 99, 94, 0,
|
||
0, 0, 0, 0, 0, 0, -133, 107, 0, 99,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 97,
|
||
0, 115, -133, 0, 0, 92, -133, 84, -133, 92,
|
||
0, 84, 0, 94, 92, 92, 0, 0, 0, 84,
|
||
0, 0, 0, 0, 0, 93, 0, 93, 0, 0,
|
||
0, 0, 94, 0, 94, 0, 0, 0, 102, 0,
|
||
106, 432, 0, 0, 92, 94, 0, 106, 92, 0,
|
||
102, 0, 0, 0, 0, 92, 0, 107, 0, 0,
|
||
94, 115, 92, 92, 107, 0, -323, -323, 433, 93,
|
||
0, 0, 0, 93, 0, 0, 97, 0, 93, 93,
|
||
0, 0, 0, 0, 0, 0, -323, -323, -323, -323,
|
||
0, -323, -323, 265, 0, 0, 0, 0, 92, 0,
|
||
0, 0, 92, 0, 0, 0, 0, 0, 93, 0,
|
||
92, 97, 93, 0, 0, 0, 94, 0, 94, 93,
|
||
0, 0, 0, 0, 0, 0, 93, 93, 0, 0,
|
||
97, 115, 97, 0, 0, 0, 0, 0, 115, 0,
|
||
0, 0, 0, 97, 0, 104, 0, 0, 0, 0,
|
||
391, 0, 99, 0, 234, 0, 0, 104, 97, 0,
|
||
94, -323, 93, 302, 94, 105, 93, 0, 0, 94,
|
||
94, 0, 0, 0, 93, -330, -330, 105, 0, 0,
|
||
441, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 333, -330, -330, -330, -330, 94,
|
||
-330, -330, 0, 94, 0, -337, -337, 442, 0, 0,
|
||
94, 0, 0, 102, 97, 0, 97, 94, 94, -327,
|
||
-327, 334, 0, 0, 0, -337, -337, -337, -337, 99,
|
||
-337, -337, 0, 0, 0, 0, 0, 0, 0, -327,
|
||
-327, -327, -327, 0, -327, -327, 0, 0, 0, 0,
|
||
0, 0, 0, 94, 0, 0, 0, 94, 97, 0,
|
||
0, 236, 97, 0, 99, 94, 0, 97, 97, 0,
|
||
-330, 0, 302, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 99, 0, 99, 0, 0, 0, 0,
|
||
102, 0, 0, 0, 0, 0, 99, 97, 0, 0,
|
||
-337, 97, 302, 0, 0, 0, 0, 0, 97, 0,
|
||
0, 99, 0, 0, -327, 97, 97, 0, 0, 0,
|
||
104, 0, 0, 0, 0, 102, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
105, 0, 0, 0, 102, 0, 102, 0, 0, 0,
|
||
0, 97, 0, 0, 394, 97, 0, 102, 502, 503,
|
||
504, 0, 0, 97, 0, 0, 0, 99, 0, 99,
|
||
0, 0, 102, 0, 106, 0, 505, 506, 0, -334,
|
||
-334, 395, 0, 0, 0, 507, 106, 0, 0, 0,
|
||
0, 107, 0, 0, 0, 0, 0, 104, 0, -334,
|
||
-334, -334, -334, 107, -334, -334, 0, 0, 0, 0,
|
||
0, 99, 0, 0, 0, 99, 0, 105, 0, 0,
|
||
99, 99, 0, 0, 0, 0, 0, 0, 102, 0,
|
||
102, 0, 104, 0, 0, 0, 508, 509, 510, 511,
|
||
512, 513, 514, 515, 516, 0, 0, 0, 0, 0,
|
||
99, 104, 105, 104, 99, 0, 0, 0, 0, 0,
|
||
0, 99, 0, 0, 104, 115, 0, 0, 99, 99,
|
||
0, 105, 102, 105, -334, 0, 102, 115, 0, 104,
|
||
0, 102, 102, 0, 105, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 105,
|
||
0, 0, 0, 0, 99, 0, 0, 0, 99, 0,
|
||
0, 102, 0, 0, 0, 102, 99, 0, 0, 0,
|
||
0, 0, 102, 0, 0, 2, 0, 0, 0, 102,
|
||
102, 152, 153, 0, 0, 104, 0, 104, 0, 0,
|
||
0, 0, 154, 155, 156, 0, 157, 0, 0, 106,
|
||
159, 0, 0, 0, 0, 105, 0, 105, 0, 0,
|
||
0, 0, 160, 0, 161, 102, 107, 27, 28, 102,
|
||
0, 0, 30, 163, 0, 0, 0, 102, 0, 104,
|
||
0, 164, 0, 104, 0, 0, 0, 0, 104, 104,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 105,
|
||
0, 0, 0, 105, 811, 0, 0, 0, 105, 105,
|
||
0, 0, 0, 0, 0, 165, 0, 0, 104, 48,
|
||
0, 0, 104, 0, 0, 0, 106, 166, 0, 104,
|
||
0, 0, 0, 0, 0, 0, 104, 104, 105, 0,
|
||
115, 812, 105, 107, 0, 0, 0, 0, 0, 105,
|
||
0, 0, 0, 0, 0, 0, 105, 105, 0, 0,
|
||
0, 106, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 104, 0, 0, 0, 104, 0, 107, 0,
|
||
106, 0, 106, 0, 104, 0, 0, 0, 0, 0,
|
||
0, 0, 105, 106, 0, 2, 105, 107, 0, 107,
|
||
0, 152, 153, 0, 105, 0, 0, 0, 106, 0,
|
||
107, 0, 154, 155, 156, 0, 157, 115, 0, 0,
|
||
159, 0, 0, 0, 0, 107, 0, 0, 0, 0,
|
||
0, 0, 160, 0, 161, 0, 0, 27, 28, 0,
|
||
0, 0, 30, 163, 0, 0, 0, 0, 0, 0,
|
||
0, 164, 115, 0, 0, 500, 501, 0, 0, 502,
|
||
503, 504, 38, 39, 106, 0, 106, 0, 0, 0,
|
||
0, 115, 0, 115, 41, 0, 0, 505, 506, 0,
|
||
0, 107, 0, 107, 115, 165, 507, 0, 0, 48,
|
||
0, 0, 0, 0, 0, 0, 0, 166, 0, 115,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 106, 0,
|
||
53, 0, 106, 0, 0, 272, 0, 106, 106, 0,
|
||
0, 0, 0, 0, 0, 107, 0, 0, 0, 107,
|
||
0, 0, 0, 0, 107, 107, 0, 508, 509, 510,
|
||
511, 512, 513, 514, 515, 516, 0, 106, 0, 0,
|
||
0, 106, 672, 0, 0, 115, 0, 115, 106, 0,
|
||
0, 0, 0, 0, 107, 106, 106, 0, 107, 0,
|
||
0, 0, 0, 0, 0, 107, 0, 0, 0, 0,
|
||
0, 0, 107, 107, 500, 501, 0, 0, 502, 503,
|
||
504, 0, 0, 0, 0, 0, 0, 0, 0, 115,
|
||
0, 106, 0, 115, 0, 106, 505, 506, 115, 115,
|
||
0, 0, 0, 106, 0, 507, 0, 0, 107, 0,
|
||
0, 0, 107, 0, 0, 0, 0, 0, 0, 0,
|
||
107, 0, 204, 206, 208, 0, 0, 0, 115, 0,
|
||
0, 0, 115, 0, 216, 0, 0, 0, 0, 115,
|
||
0, 0, 0, 0, 0, 0, 115, 115, 251, 0,
|
||
252, 254, 142, 143, 0, 260, 508, 509, 510, 511,
|
||
512, 513, 514, 515, 516, 0, 286, 0, 0, 54,
|
||
55, 0, 0, 0, 0, 0, 307, 0, 307, 0,
|
||
307, 307, 115, 307, 0, 307, 115, 307, 0, 307,
|
||
0, 307, 0, 307, 115, 307, 0, 307, 360, 307,
|
||
0, 0, 0, 307, 0, 0, 307, 0, 0, 307,
|
||
0, 307, 296, 0, 0, 0, 0, 2, 0, 4,
|
||
5, 0, 6, 152, 153, 9, 0, 307, 0, 307,
|
||
0, 11, 12, 13, 154, 155, 156, 0, 157, 0,
|
||
0, 158, 159, 0, 0, 0, 20, 21, 0, 0,
|
||
0, 0, 0, 0, 160, 0, 161, 485, 485, 27,
|
||
28, 0, 0, 162, 30, 163, 0, 0, 431, 0,
|
||
0, 0, 0, 164, 0, 0, 0, 493, 0, 0,
|
||
0, 0, 36, 0, 38, 39, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 41, 0, 484, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 165, 45, 0,
|
||
0, 48, 0, 0, 0, 0, 51, 0, 485, 166,
|
||
0, 0, 530, 0, 0, 167, 168, 0, 0, 0,
|
||
0, 0, 53, 169, 54, 55, 0, 56, 0, 57,
|
||
0, 58, 0, 0, 0, 0, 402, 0, 0, 536,
|
||
530, 485, 0, 0, 0, 0, 0, 522, 0, 524,
|
||
547, 0, 0, 0, 0, 529, 574, 0, 0, 0,
|
||
0, -338, -338, 403, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 584, 0, 0, 0, 587, 0, 0, 0,
|
||
0, -338, -338, -338, -338, 0, -338, -338, 0, 0,
|
||
0, 0, 0, 0, 548, 599, 600, 570, 0, 0,
|
||
0, -287, -287, -287, -287, -287, -287, -287, -287, -287,
|
||
0, 0, 582, 0, -287, -287, -287, -287, -287, -287,
|
||
-287, -287, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 598, 0, 0, 0, 0, 0, 303,
|
||
306, 0, 314, 0, 318, 0, 0, 323, 0, 327,
|
||
0, 331, 404, 0, 0, 338, -338, 341, 302, 0,
|
||
0, 355, 0, 0, 0, 390, 393, 0, 0, 0,
|
||
400, 0, 405, 0, 0, 411, 0, 0, 0, 0,
|
||
2, 0, 0, 0, 0, 0, 152, 153, 0, 0,
|
||
434, 438, 0, 444, 0, 0, 0, 154, 155, 156,
|
||
0, 157, 0, 0, 286, 159, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 160, 0, 161,
|
||
286, 0, 27, 28, 0, 0, 0, 30, 163, 0,
|
||
0, 0, 0, 0, 0, 0, 164, 0, 0, 0,
|
||
0, 0, 0, 303, 306, 314, 318, 323, 327, 331,
|
||
0, 338, 341, 0, 355, 390, 393, 0, 400, 41,
|
||
405, 411, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
165, 0, 0, 434, 48, 438, 444, 0, 0, 0,
|
||
573, 0, 166, 0, 0, 0, 0, 0, 0, 643,
|
||
303, 306, 314, 318, 323, 327, 331, 0, 338, 341,
|
||
0, 355, 390, 393, 0, 400, 405, 411, 0, 0,
|
||
434, 438, 444, 0, 0, 0, 0, 659, 0, 699,
|
||
0, 700, 0, 0, 0, 664, 0, 0, 670, 0,
|
||
671, 0, 0, 0, 0, 355, 390, 0, 405, 438,
|
||
0, 0, 0, 0, 722, 0, 0, 0, 0, 0,
|
||
727, 0, 0, 0, 0, 0, 0, 0, 0, 728,
|
||
696, 0, 698, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 707, 0, 737, 0, 0, 260, 0,
|
||
713, 485, 0, 716, 717, 0, 720, 0, 0, 726,
|
||
2, 0, 4, 5, 0, 6, 152, 153, 9, 0,
|
||
0, 0, 0, 0, 11, 12, 13, 154, 155, 156,
|
||
0, 157, 0, 0, 732, 159, 0, 0, 0, 0,
|
||
0, 0, 0, 750, 0, 0, 0, 160, 0, 161,
|
||
0, 0, 27, 28, 0, 0, 162, 30, 163, 0,
|
||
0, 0, 0, 0, 331, 0, 164, 776, 777, 0,
|
||
0, 0, 0, 0, 0, 36, 0, 38, 39, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 485, 0, 41,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
165, 45, 0, 0, 48, 0, 0, 0, 0, 51,
|
||
0, 0, 166, 500, 501, 779, 0, 502, 503, 504,
|
||
0, 485, 0, 0, 803, 53, 0, 0, 805, 806,
|
||
56, 0, 57, 0, 58, 505, 506, 0, 0, 813,
|
||
0, 722, 0, 0, 507, 0, 0, 821, 813, 0,
|
||
0, 0, 0, 826, 737, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 829, 0, 0, 802, 0, 0, 0,
|
||
0, 190, 0, 0, 807, 0, 808, 0, 0, 0,
|
||
0, 211, 212, 0, 0, 820, 0, 0, 0, 0,
|
||
0, 0, 595, 0, 0, 508, 509, 510, 511, 512,
|
||
513, 514, 515, 516, 0, 0, 0, 0, 0, 0,
|
||
0, 270, 0, 0, 833, 0, 0, 190, 283, 0,
|
||
835, 0, 837, 0, 0, 0, 0, 0, 0, 873,
|
||
874, 0, 0, 0, 0, 847, 0, 0, 850, 852,
|
||
853, 0, 0, 0, 856, 0, 737, 859, 0, 0,
|
||
0, 0, 0, 0, 895, 0, 895, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 895, 0, 895,
|
||
500, 501, 871, 0, 502, 503, 504, 429, 0, 0,
|
||
0, 0, 390, 0, 0, 405, 0, 0, 0, 0,
|
||
919, 0, 505, 506, 190, 925, 0, 0, 821, 0,
|
||
0, 507, 0, 0, 0, 483, 0, 0, 0, 0,
|
||
899, 0, 489, 0, 0, 0, 0, 904, 0, 490,
|
||
907, 0, 0, 0, 0, 0, 0, 0, 491, 492,
|
||
0, 0, 0, 953, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 963, 929, 0, 966, 0, 0, 0, 834,
|
||
0, 970, 508, 509, 510, 511, 512, 513, 514, 515,
|
||
516, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 948, 0, 0, 0, 0, 0, 0, 0, 955,
|
||
956, 0, 0, 989, 0, 962, 0, 0, 0, 0,
|
||
0, 0, 0, 967, 968, 0, 0, 971, 0, 0,
|
||
973, 974, 2, 0, 4, 358, 542, 359, 152, 153,
|
||
9, 0, 0, 0, 0, 0, 11, 12, 13, 154,
|
||
155, 156, 0, 157, 0, 0, 0, 159, 1015, 1016,
|
||
581, 0, 0, 190, 0, 438, 0, 0, 0, 160,
|
||
993, 161, 0, 995, 27, 28, 0, 0, 0, 30,
|
||
163, 0, 0, 0, 0, 0, 0, 0, 164, 0,
|
||
0, 0, 602, 604, 0, 0, 608, 36, 0, 38,
|
||
39, 0, 0, 609, 0, 0, 0, 610, 0, 0,
|
||
0, 41, 611, 0, 0, 0, 612, 0, 0, 0,
|
||
613, 0, 165, 45, 614, 0, 48, 615, 0, 0,
|
||
0, 616, 0, 0, 166, 617, 0, 0, 0, 0,
|
||
0, 0, 619, 0, 0, 0, 0, 53, 0, 0,
|
||
0, 0, 272, 0, 57, 0, 0, 0, 0, 0,
|
||
0, 500, 501, 0, 0, 502, 503, 504, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
621, 0, 622, 505, 506, 623, 0, 0, 624, 325,
|
||
0, 0, 507, 625, 0, 0, 500, 0, 0, 628,
|
||
502, 503, 504, 0, 0, 0, 629, 630, 631, 632,
|
||
633, 634, 635, 0, -325, -325, 326, 0, 505, 506,
|
||
0, 0, 0, 640, 0, 0, 641, 507, 0, 0,
|
||
0, 0, 642, 0, -325, -325, -325, -325, 0, -325,
|
||
-325, 0, 0, 508, 509, 510, 511, 512, 513, 514,
|
||
515, 516, 0, 0, -272, -272, -272, -272, -272, -272,
|
||
-272, -272, -272, 0, 0, 0, 0, -272, -272, -272,
|
||
-272, -272, -272, -272, -272, 0, 0, 0, 508, 509,
|
||
510, 511, 512, 513, 514, 515, 516, 0, 0, 0,
|
||
0, 678, 679, 680, 681, 682, 683, 684, 685, 686,
|
||
687, 688, 689, 690, 691, 692, 693, 694, 695, -325,
|
||
0, 302, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 708, 0, 0, 0, 0,
|
||
0, 715, 549, 550, 551, 552, 553, 554, 555, 556,
|
||
557, 0, 0, 0, 0, 558, 559, 560, 561, 562,
|
||
563, 564, 565, 0, 0, 0, 0, 0, 549, 550,
|
||
551, 552, 553, 554, 555, 556, 557, 0, 741, 0,
|
||
746, 558, 559, 560, 561, 562, 563, 564, 565, 0,
|
||
0, 0, 0, 0, 754, 0, 0, 0, 0, 665,
|
||
0, 0, 0, 0, 0, 0, 0, 604, 455, 0,
|
||
-108, -108, 2, 3, 4, 5, 0, 6, 7, 456,
|
||
9, 10, 0, 0, -114, 0, 11, 12, 13, 14,
|
||
15, 16, 457, 458, 0, 0, 0, 19, 769, 0,
|
||
0, 20, 21, 0, 22, 190, 0, 0, 0, 23,
|
||
24, 25, 26, 190, 27, 28, 0, 0, 29, 30,
|
||
31, 784, 0, 0, 0, 0, 789, 0, 32, 33,
|
||
34, -114, -114, -114, -114, 35, 0, 36, 37, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 44, 45, 46, 47, 48, 49, 0, 50,
|
||
0, 51, 0, 0, 52, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 53, 0, 54,
|
||
55, 0, 56, 0, 57, 0, 58, 741, 0, 0,
|
||
549, 550, 551, 552, 553, 554, 555, 556, 557, 0,
|
||
0, 0, 0, 558, 559, 560, 561, 562, 563, 564,
|
||
565, 0, 0, 0, 0, 0, 604, 0, 0, 0,
|
||
0, 2, 0, 0, 0, 190, 0, 152, 153, 0,
|
||
0, 190, 0, 0, 0, 0, 0, 860, 154, 155,
|
||
156, 921, 157, 0, 0, 862, 159, 0, 0, 0,
|
||
866, 0, 0, 0, 0, 0, 0, 0, 160, 0,
|
||
161, 0, 0, 27, 28, 0, 0, 0, 30, 163,
|
||
0, 0, 0, 0, 0, 0, 0, 164, 0, 741,
|
||
0, 746, 0, -3, 1, 0, -26, -26, 2, 3,
|
||
4, 5, 0, 6, 7, 8, 9, 10, 0, 0,
|
||
41, 0, 11, 12, 13, 14, 15, 16, 17, 18,
|
||
0, 165, 0, 19, 911, 48, 0, 20, 21, 190,
|
||
22, 0, 0, 166, 0, 23, 24, 25, 26, 0,
|
||
27, 28, 0, 0, 29, 30, 31, 0, 54, 55,
|
||
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
|
||
0, 35, 0, 36, 37, 38, 39, 0, 0, 0,
|
||
0, 949, 0, 0, 0, 0, 40, 41, 42, 43,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
|
||
46, 47, 48, 49, 0, 50, 0, 51, 0, 0,
|
||
52, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 190, 53, 0, 54, 55, 0, 56, 0,
|
||
57, 0, 58, -2, 291, 0, -26, -26, 2, 3,
|
||
4, 5, 0, 6, 7, 8, 9, 10, 0, 0,
|
||
0, 0, 11, 12, 13, 14, 15, 16, 17, 18,
|
||
0, 0, 0, 19, 0, 0, 0, 20, 21, 0,
|
||
22, 0, 0, 0, 0, 23, 24, 25, 26, 0,
|
||
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
|
||
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
|
||
0, 35, 0, 36, 37, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
|
||
46, 47, 48, 49, 0, 50, 0, 51, 0, 0,
|
||
52, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 53, 0, 54, 55, 0, 56, 0,
|
||
57, 455, 58, -108, -108, 2, 3, 4, 5, 0,
|
||
6, 7, 456, 9, 10, -115, -115, -115, -115, 11,
|
||
12, 13, 14, 15, 16, 457, 458, 0, 0, 0,
|
||
19, 0, 0, 0, 20, 21, 0, 22, -115, -115,
|
||
-115, -115, 23, 24, 25, 26, -115, 27, 28, 0,
|
||
0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
|
||
0, 32, 33, 34, -115, -115, -115, -115, 35, 0,
|
||
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 40, 41, 42, 43, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 44, 45, 46, 47, 48,
|
||
49, -115, 50, -115, 51, 0, 0, 52, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
53, 0, 54, 55, 0, 56, 0, 57, -115, 58,
|
||
455, 0, -108, -108, 2, 3, 4, 5, 0, 6,
|
||
7, 456, 9, 10, 0, 0, -533, 0, 11, 12,
|
||
13, 14, 15, 16, 457, 458, 0, 0, 0, 19,
|
||
0, 0, 0, 20, 21, 0, 22, -533, -533, -533,
|
||
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
|
||
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
|
||
32, 33, 34, 0, 0, 0, 0, 35, 0, 36,
|
||
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
|
||
0, 50, 0, 51, 0, 0, 52, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 53,
|
||
0, 54, 55, 0, 56, 0, 57, 455, 58, -108,
|
||
-108, 2, 3, 4, 5, 0, 6, 7, 456, 9,
|
||
10, 0, 0, -588, 0, 11, 12, 13, 14, 15,
|
||
16, 457, 458, 0, 0, 0, 19, 0, 0, 0,
|
||
20, 21, 0, 22, -588, -588, 0, 0, 23, 24,
|
||
25, 26, 0, 27, 28, 0, 0, 29, 30, 31,
|
||
0, 0, 0, 0, 0, 0, 0, 32, 33, 34,
|
||
0, 0, 0, 0, 35, 0, 36, 37, 38, 39,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 40,
|
||
41, 42, 43, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 44, 45, 46, 47, 48, 49, -588, 50, 0,
|
||
51, 0, 0, 52, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 53, 0, 54, 55,
|
||
0, 56, 0, 57, 455, 58, -108, -108, 2, 3,
|
||
4, 5, 0, 6, 7, 456, 9, 10, 0, 0,
|
||
-534, 0, 11, 12, 13, 14, 15, 16, 457, 458,
|
||
0, 0, 0, 19, 0, 0, 0, 20, 21, 0,
|
||
22, -534, -534, -534, 0, 23, 24, 25, 26, 0,
|
||
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
|
||
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
|
||
0, 35, 0, 36, 37, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
|
||
46, 47, 48, 49, 0, 50, 0, 51, 0, 0,
|
||
52, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 53, 0, 54, 55, 0, 56, 0,
|
||
57, 455, 58, -108, -108, 2, 3, 4, 5, 0,
|
||
6, 7, 456, 9, 10, 0, 0, -589, 0, 11,
|
||
12, 13, 14, 15, 16, 457, 458, 0, 0, 0,
|
||
19, 0, 0, 0, 20, 21, 0, 22, -589, -589,
|
||
0, 0, 23, 24, 25, 26, 0, 27, 28, 0,
|
||
0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
|
||
0, 32, 33, 34, 0, 0, 0, 0, 35, 0,
|
||
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 40, 41, 42, 43, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 44, 45, 46, 47, 48,
|
||
49, -589, 50, 0, 51, 0, 0, 52, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
53, 0, 54, 55, 0, 56, 0, 57, 455, 58,
|
||
-108, -108, 2, 3, 4, 5, 0, 6, 7, 456,
|
||
9, 10, -114, -114, -114, -114, 11, 12, 13, 14,
|
||
15, 16, 457, 458, 0, 0, 0, 19, 0, 0,
|
||
0, 20, 21, 0, 22, 0, 0, 0, 0, 23,
|
||
24, 25, 26, 0, 27, 28, 0, 0, 29, 30,
|
||
31, 0, 0, 0, 0, 0, 0, 0, 32, 33,
|
||
34, 0, 0, 0, 0, 35, 0, 36, 37, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 44, 45, 46, 47, 48, 49, 0, 50,
|
||
0, 51, 0, 0, 52, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 53, 0, 54,
|
||
55, 0, 56, 0, 57, 455, 58, -108, -108, 2,
|
||
3, 4, 5, 0, 6, 7, 456, 9, 10, 0,
|
||
0, -114, 0, 11, 12, 13, 14, 15, 16, 457,
|
||
458, 0, 0, 0, 19, 0, 0, 0, 20, 21,
|
||
0, 22, -114, -114, -114, 0, 23, 24, 25, 26,
|
||
0, 27, 28, 0, 0, 29, 30, 31, 0, 0,
|
||
0, 0, 0, 0, 0, 32, 33, 34, 0, 0,
|
||
0, 0, 35, 0, 36, 37, 38, 39, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 40, 41, 42,
|
||
43, 0, 0, 0, 0, 0, 0, 0, 0, 44,
|
||
45, 46, 47, 48, 49, 0, 50, 0, 51, 0,
|
||
0, 52, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 53, 0, 54, 55, 0, 56,
|
||
0, 57, 455, 58, -108, -108, 2, 3, 4, 5,
|
||
0, 6, 7, 456, 9, 10, 0, 0, -114, 0,
|
||
11, 12, 13, 14, 15, 16, 457, 458, 0, 0,
|
||
0, 19, 0, 0, 0, 20, 21, 0, 22, -114,
|
||
-114, 0, 0, 23, 24, 25, 26, 0, 27, 28,
|
||
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
|
||
0, 0, 32, 33, 34, 0, 0, 0, 0, 35,
|
||
0, 36, 37, 38, 39, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 40, 41, 42, 43, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 44, 45, 46, 47,
|
||
48, 49, -114, 50, 0, 51, 0, 0, 52, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 53, 0, 54, 55, 0, 56, 0, 57, 455,
|
||
58, -108, -108, 2, 3, 4, 5, 0, 6, 7,
|
||
456, 9, 10, 0, 0, -114, 0, 11, 12, 13,
|
||
14, 15, 16, 457, 458, 0, 0, 0, 19, 0,
|
||
0, 0, 20, 21, 0, 22, 0, -114, -114, 0,
|
||
23, 24, 25, 26, 0, 27, 28, 0, 0, 29,
|
||
30, 31, 0, 0, 0, 0, 0, 0, 0, 32,
|
||
33, 34, 0, 0, 0, 0, 35, 0, 36, 37,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 40, 41, 42, 43, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 44, 45, 46, 47, 48, 49, 0,
|
||
50, 0, 51, 0, 0, 52, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 53, 0,
|
||
54, 55, 0, 56, 0, 57, 455, 58, -108, -108,
|
||
2, 3, 4, 5, 0, 6, 7, 456, 9, 10,
|
||
0, 0, -114, 0, 11, 12, 13, 14, 15, 16,
|
||
457, 458, 0, 0, 0, 19, 0, 0, 0, 20,
|
||
21, 0, 22, 0, 0, 0, 0, 23, 24, 25,
|
||
26, 0, 27, 28, 0, 0, 29, 30, 31, 0,
|
||
0, 0, 0, 0, 0, 0, 32, 33, 34, 0,
|
||
0, -114, -114, 35, 0, 36, 37, 38, 39, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 40, 41,
|
||
42, 43, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
44, 45, 46, 47, 48, 49, 0, 50, 0, 51,
|
||
0, 0, 52, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 53, 0, 54, 55, 0,
|
||
56, 0, 57, 455, 58, -108, -108, 2, 3, 4,
|
||
5, 0, 6, 7, 456, 9, 10, 0, 0, -114,
|
||
0, 11, 12, 13, 14, 15, 16, 457, 458, 0,
|
||
0, 0, 19, 0, 0, 0, 20, 21, 0, 22,
|
||
0, 0, 0, 0, 23, 24, 25, 26, 0, 27,
|
||
28, 0, 0, 29, 30, 31, 0, 0, 0, 0,
|
||
0, 0, 0, 32, 33, 34, 0, 0, 0, 0,
|
||
35, 0, 36, 37, 38, 39, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 40, 41, 42, 43, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 44, 45, 46,
|
||
47, 48, 49, 0, 50, -114, 51, 0, 0, 52,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 53, 0, 54, 55, 0, 56, 0, 57,
|
||
455, 58, -108, -108, 2, 3, 4, 5, 0, 6,
|
||
7, 456, 9, 10, 0, 0, -114, -114, 11, 12,
|
||
13, 14, 15, 16, 457, 458, 0, 0, 0, 19,
|
||
0, 0, 0, 20, 21, 0, 22, 0, 0, 0,
|
||
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
|
||
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
|
||
32, 33, 34, 0, 0, 0, 0, 35, 0, 36,
|
||
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
|
||
0, 50, 0, 51, 0, 0, 52, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 53,
|
||
0, 54, 55, 0, 56, 0, 57, 455, 58, -108,
|
||
-108, 2, 3, 4, 5, 0, 6, 7, 456, 9,
|
||
10, 0, 0, -114, 0, 11, 12, 13, 14, 15,
|
||
16, 457, 458, 0, 0, 0, 19, 0, 0, 0,
|
||
20, 21, 0, 22, 0, 0, 0, -114, 23, 24,
|
||
25, 26, 0, 27, 28, 0, 0, 29, 30, 31,
|
||
0, 0, 0, 0, 0, 0, 0, 32, 33, 34,
|
||
0, 0, 0, 0, 35, 0, 36, 37, 38, 39,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 40,
|
||
41, 42, 43, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 44, 45, 46, 47, 48, 49, 0, 50, 0,
|
||
51, 0, 0, 52, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 53, 0, 54, 55,
|
||
0, 56, 0, 57, 455, 58, -108, -108, 2, 3,
|
||
4, 5, 0, 6, 7, 456, 9, 10, 0, 0,
|
||
-114, 0, 11, 12, 13, 14, 15, 16, 457, 458,
|
||
0, 0, 0, 19, 0, 0, 0, 20, 21, 0,
|
||
22, 0, 0, 0, 0, 23, 24, 25, 26, -114,
|
||
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
|
||
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
|
||
0, 35, 0, 36, 37, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
|
||
46, 47, 48, 49, 0, 50, 0, 51, 0, 0,
|
||
52, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 53, 0, 54, 55, 0, 56, 0,
|
||
57, 455, 58, -108, -108, 2, 3, 4, 5, 0,
|
||
6, 7, 456, 9, 10, 0, 0, -114, 0, 11,
|
||
12, 13, 14, 15, 16, 457, 458, 0, 0, 0,
|
||
19, 0, 0, 0, 20, 21, 0, 22, 0, 0,
|
||
0, 0, 23, 24, 25, 26, 0, 27, 28, 0,
|
||
0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
|
||
0, 32, 33, 34, 0, 0, 0, -114, 35, 0,
|
||
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 40, 41, 42, 43, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 44, 45, 46, 47, 48,
|
||
49, 0, 50, 0, 51, 0, 0, 52, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
53, 0, 54, 55, 0, 56, 0, 57, 455, 58,
|
||
-108, -108, 2, 3, 4, 5, 0, 6, 7, 456,
|
||
9, 10, 0, 0, 0, 0, 11, 12, 13, 14,
|
||
15, 16, 457, 458, 0, 0, 0, 19, 0, 0,
|
||
0, 20, 21, 0, 22, 0, 0, 0, 0, 23,
|
||
24, 25, 26, 0, 27, 28, 0, 0, 29, 30,
|
||
31, 0, 0, 0, 0, 0, 0, 0, 32, 33,
|
||
34, 0, 0, 0, 0, 35, 0, 36, 37, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 44, 45, 46, 47, 48, 49, 0, 50,
|
||
0, 51, 0, 0, 52, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 53, 0, 54,
|
||
55, 0, 56, 0, 57, -114, 58, 2, 0, 4,
|
||
5, 0, 6, 152, 153, 9, 0, 0, 0, 0,
|
||
0, 11, 12, 13, 154, 155, 156, 0, 157, 0,
|
||
0, 158, 159, 0, 0, 0, 20, 21, 0, 0,
|
||
0, 0, 0, 0, 160, 0, 161, 0, 0, 27,
|
||
28, 0, 0, 162, 30, 163, 0, 0, 0, 0,
|
||
0, 0, 0, 164, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 36, 0, 38, 39, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 41, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 165, 45, 0,
|
||
0, 48, 0, 0, 0, 0, 51, 276, 277, 166,
|
||
0, 0, 0, 0, 0, 167, 168, 0, 0, 0,
|
||
0, 0, 53, 278, 0, 0, 0, 56, 0, 57,
|
||
2, 58, 4, 5, 0, 6, 152, 153, 9, 0,
|
||
0, 0, 0, 0, 11, 12, 13, 154, 155, 156,
|
||
0, 157, 0, 0, 158, 159, 0, 0, 0, 20,
|
||
21, 0, 0, 0, 0, 0, 0, 160, 0, 161,
|
||
0, 0, 27, 28, 0, 0, 162, 30, 163, 0,
|
||
0, 0, 0, 0, 0, 0, 164, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 36, 0, 38, 39, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 41,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
165, 45, 0, 0, 48, 0, 0, 0, 0, 51,
|
||
603, 0, 166, 0, 0, 0, 0, 0, 167, 168,
|
||
0, 0, 0, 0, 0, 53, 169, 0, 0, 0,
|
||
56, 0, 57, 2, 58, 4, 5, 0, 6, 152,
|
||
153, 9, 0, 0, 0, 0, 0, 11, 12, 13,
|
||
154, 155, 156, 0, 157, 0, 0, 158, 159, 0,
|
||
0, 0, 20, 21, 0, 0, 0, 0, 0, 0,
|
||
160, 0, 161, 0, 0, 27, 28, 0, 0, 162,
|
||
30, 163, 0, 0, 0, 0, 0, 0, 0, 164,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 36, 0,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 41, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 165, 45, 0, 0, 48, 0, 0,
|
||
0, 0, 51, 0, 0, 166, 0, 0, 0, 0,
|
||
0, 167, 168, 0, 0, 0, 0, 0, 53, 278,
|
||
0, 0, 736, 56, 0, 57, 2, 58, 4, 5,
|
||
0, 6, 152, 153, 9, 0, 0, 0, 0, 0,
|
||
11, 12, 13, 154, 155, 156, 0, 157, 0, 0,
|
||
158, 159, 0, 0, 0, 20, 21, 0, 0, 0,
|
||
0, 0, 0, 160, 0, 161, 0, 0, 27, 28,
|
||
0, 0, 162, 30, 163, 0, 0, 0, 0, 0,
|
||
0, 0, 164, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 36, 0, 38, 39, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 41, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 165, 45, 0, 0,
|
||
48, 0, 0, 0, 0, 51, 276, 0, 166, 0,
|
||
0, 0, 0, 0, 167, 168, 0, 0, 0, 0,
|
||
0, 53, 278, 0, 0, 0, 56, 0, 57, 2,
|
||
58, 4, 5, 0, 6, 152, 153, 9, 0, 0,
|
||
0, 0, 0, 11, 12, 13, 154, 155, 156, 0,
|
||
157, 0, 0, 158, 159, 0, 0, 0, 20, 21,
|
||
0, 0, 0, 0, 0, 0, 160, 0, 161, 0,
|
||
0, 27, 28, 0, 0, 162, 30, 163, 0, 0,
|
||
0, 0, 0, 0, 0, 164, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 36, 0, 38, 39, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 41, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 165,
|
||
45, 0, 0, 48, 0, 0, 0, 0, 51, 0,
|
||
0, 166, 0, 0, 0, 0, 0, 167, 168, 0,
|
||
0, 0, 0, 0, 53, 169, 0, 0, 0, 56,
|
||
0, 57, 2, 58, 4, 5, 0, 6, 152, 153,
|
||
9, 0, 0, 0, 0, 0, 11, 12, 13, 154,
|
||
155, 156, 0, 157, 0, 0, 158, 159, 0, 0,
|
||
0, 20, 21, 0, 0, 0, 0, 0, 0, 160,
|
||
0, 161, 0, 0, 27, 28, 0, 0, 162, 30,
|
||
163, 0, 0, 0, 0, 0, 0, 0, 164, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 36, 0, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 41, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 165, 45, 0, 0, 48, 0, 0, 0,
|
||
0, 51, 0, 0, 166, 0, 0, 0, 0, 0,
|
||
167, 168, 0, 0, 0, 0, 0, 53, 274, 0,
|
||
0, 0, 56, 0, 57, 2, 58, 4, 5, 0,
|
||
6, 152, 153, 9, 0, 0, 0, 0, 0, 11,
|
||
12, 13, 154, 155, 156, 0, 157, 0, 0, 158,
|
||
159, 0, 0, 0, 20, 21, 0, 0, 0, 0,
|
||
0, 0, 160, 0, 161, 0, 0, 27, 28, 0,
|
||
0, 162, 30, 163, 0, 0, 0, 0, 0, 0,
|
||
0, 164, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
36, 0, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 41, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 165, 45, 0, 0, 48,
|
||
0, 0, 0, 0, 51, 0, 0, 166, 0, 0,
|
||
0, 0, 0, 167, 168, 0, 0, 0, 0, 0,
|
||
53, 745, 0, 0, 0, 56, 0, 57, 2, 58,
|
||
4, 5, 0, 6, 152, 153, 9, 0, 0, 0,
|
||
0, 0, 11, 12, 13, 154, 155, 156, 0, 157,
|
||
0, 0, 158, 159, 0, 0, 0, 20, 21, 0,
|
||
0, 0, 0, 0, 0, 160, 0, 161, 0, 0,
|
||
27, 28, 0, 0, 162, 30, 163, 0, 0, 0,
|
||
0, 0, 0, 0, 164, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 36, 0, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 41, 397, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 165, 45,
|
||
0, 0, 48, 0, 0, 0, 0, 51, 0, 0,
|
||
166, 0, 0, -336, -336, 398, 167, 168, 0, 0,
|
||
0, 0, 0, 53, 278, 0, 0, 0, 56, 0,
|
||
57, 0, 58, -336, -336, -336, -336, 0, -336, -336,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 408,
|
||
0, 0, 0, -283, -283, -283, -283, -283, -283, -283,
|
||
-283, -283, 0, 0, 0, 0, -283, -283, -283, -283,
|
||
-283, -283, -283, -283, -339, -339, 409, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, -339, -339, -339, -339, 0, -339,
|
||
-339, 0, 0, 0, 0, 0, 0, 0, -336, 0,
|
||
302, 435, 0, 0, -290, -290, -290, -290, -290, -290,
|
||
-290, -290, -290, 0, 0, 0, 0, -290, -290, -290,
|
||
-290, -290, -290, -290, -290, 0, -335, -335, 436, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, -335, -335, -335, -335,
|
||
0, -335, -335, 0, 0, 0, 0, 0, 0, -339,
|
||
0, 302, 340, 0, 0, 0, -305, -305, -305, -305,
|
||
-305, -305, -305, -305, -305, 0, 0, 0, 0, -305,
|
||
-305, -305, -305, -305, -305, -305, -305, -333, -333, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, -333, -333, -333,
|
||
-333, 0, -333, -333, 0, 0, 0, 0, 0, 0,
|
||
0, -335, 0, 302, 0, 0, 0, -303, -303, -303,
|
||
-303, -303, -303, -303, -303, -303, 0, 0, 0, 0,
|
||
-303, -303, -303, -303, -303, -303, -303, -303, 2, 0,
|
||
0, 0, 0, 0, 152, 153, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 154, 155, 156, 0, 157,
|
||
0, 0, 0, 159, 0, 0, 0, 0, 0, 0,
|
||
0, 0, -333, 0, 302, 160, 0, 161, 0, 0,
|
||
27, 28, 2, 0, 0, 30, 163, 0, 152, 153,
|
||
0, 0, 0, 0, 164, 0, 0, 0, 0, 154,
|
||
155, 156, 0, 157, 0, 0, 0, 159, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 41, 0, 160,
|
||
0, 161, 0, 0, 27, 28, 0, 2, 165, 30,
|
||
163, 0, 48, 152, 153, 0, 0, 0, 164, 0,
|
||
166, 0, 0, 0, 154, 155, 156, 0, 157, 0,
|
||
0, 0, 159, 0, 872, 0, 0, 0, 0, 0,
|
||
0, 811, 0, 0, 160, 0, 161, 0, 0, 27,
|
||
28, 2, 165, 0, 30, 163, 48, 152, 153, 0,
|
||
0, 0, 0, 164, 166, 0, 0, 0, 154, 155,
|
||
156, 0, 157, 0, 0, 0, 159, 0, 924, 0,
|
||
0, 0, 0, 0, 0, 0, 41, 0, 160, 0,
|
||
161, 0, 0, 27, 28, 0, 2, 165, 30, 163,
|
||
0, 48, 152, 153, 0, 0, 0, 164, 0, 166,
|
||
0, 0, 0, 154, 155, 156, 0, 157, 38, 39,
|
||
0, 159, 0, 965, 0, 0, 0, 0, 0, 0,
|
||
41, 0, 0, 160, 0, 161, 0, 0, 27, 28,
|
||
2, 165, 0, 30, 163, 48, 152, 153, 0, 0,
|
||
0, 0, 164, 166, 0, 0, 0, 154, 155, 156,
|
||
0, 157, 0, 38, 39, 159, 53, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 41, 0, 160, 0, 161,
|
||
0, 0, 27, 28, 0, 2, 165, 30, 163, 0,
|
||
48, 152, 153, 0, 0, 0, 164, 0, 166, 0,
|
||
0, 0, 154, 155, 156, 0, 157, 0, 0, 0,
|
||
159, 0, 0, 0, 0, 0, 0, 0, 0, 41,
|
||
0, 0, 160, 0, 161, 0, 0, 27, 28, 0,
|
||
165, 0, 30, 163, 48, 0, 0, 0, 0, 0,
|
||
825, 164, 166, 0, 0, 0, 0, 0, 0, 2,
|
||
0, 0, 0, 0, 0, 152, 153, 0, 0, 0,
|
||
0, 0, 0, 0, 41, 0, 154, 155, 156, 0,
|
||
157, 0, 0, 0, 159, 165, 0, 0, 0, 48,
|
||
0, 0, 0, 0, 0, 892, 160, 166, 161, 0,
|
||
0, 27, 28, 0, 2, 0, 30, 163, 0, 0,
|
||
152, 153, 0, 0, 0, 164, 0, 0, 0, 0,
|
||
0, 154, 155, 156, 0, 157, 0, 0, 0, 159,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 41, 0,
|
||
0, 160, 0, 161, 0, 0, 27, 28, 0, 165,
|
||
0, 30, 163, 48, 0, 0, 0, 0, 0, 969,
|
||
164, 166, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 315, 0, 319, 320, 0, 324, 0, 328, 0,
|
||
332, 0, 335, 41, 339, 0, 342, 0, 349, 0,
|
||
356, 382, 388, 0, 165, 0, 396, 0, 48, 401,
|
||
0, 0, 407, 0, 412, 0, 166, 0, 0, 0,
|
||
549, 550, 551, 552, 553, 554, 555, 556, 557, 0,
|
||
439, 0, 445, 558, 559, 560, 561, 562, 563, 564,
|
||
565, 549, 550, 551, 552, 553, 554, 555, 556, 557,
|
||
0, 0, 0, 0, 558, 559, 560, 561, 562, 563,
|
||
564, 565, 549, 550, 551, 552, 553, 554, 555, 556,
|
||
557, 957, 0, 0, 0, 558, 559, 560, 561, 562,
|
||
563, 564, 565, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 987, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 999
|
||
};
|
||
|
||
static const yytype_int16 yycheck[] =
|
||
{
|
||
0, 169, 57, 210, 10, 150, 464, 546, 485, 577,
|
||
577, 595, 672, 577, 606, 451, 452, 9, 476, 473,
|
||
474, 736, 36, 723, 9, 9, 26, 667, 17, 729,
|
||
17, 48, 36, 36, 9, 35, 243, 17, 9, 17,
|
||
9, 36, 9, 122, 123, 0, 125, 47, 525, 38,
|
||
39, 36, 36, 530, 125, 9, 17, 9, 58, 536,
|
||
60, 36, 702, 41, 9, 36, 46, 36, 68, 36,
|
||
70, 26, 72, 73, 9, 75, 0, 77, 9, 79,
|
||
67, 81, 36, 83, 36, 85, 36, 87, 36, 89,
|
||
90, 91, 47, 9, 19, 95, 36, 574, 98, 36,
|
||
9, 101, 26, 103, 9, 60, 274, 124, 10, 9,
|
||
278, 35, 101, 828, 36, 129, 9, 109, 9, 119,
|
||
36, 121, 125, 47, 109, 3, 4, 133, 131, 36,
|
||
130, 36, 3, 4, 58, 90, 60, 137, 122, 123,
|
||
125, 125, 103, 36, 68, 36, 70, 131, 72, 73,
|
||
125, 75, 0, 77, 9, 79, 131, 81, 9, 83,
|
||
131, 85, 131, 87, 131, 89, 90, 91, 736, 736,
|
||
36, 95, 736, 765, 98, 130, 12, 101, 26, 103,
|
||
880, 36, 137, 131, 723, 36, 131, 122, 123, 9,
|
||
36, 131, 129, 36, 131, 119, 131, 121, 36, 47,
|
||
131, 3, 656, 125, 864, 53, 130, 129, 9, 131,
|
||
210, 647, 60, 137, 36, 131, 36, 122, 123, 36,
|
||
68, 9, 131, 25, 131, 36, 131, 36, 36, 122,
|
||
123, 131, 34, 34, 35, 36, 36, 85, 131, 87,
|
||
131, 89, 90, 243, 122, 123, 36, 36, 36, 36,
|
||
834, 122, 123, 54, 55, 56, 57, 125, 59, 60,
|
||
828, 828, 36, 36, 828, 131, 17, 122, 123, 9,
|
||
125, 119, 0, 52, 406, 129, 131, 131, 278, 125,
|
||
131, 52, 130, 129, 86, 131, 88, 125, 131, 137,
|
||
422, 93, 124, 131, 126, 97, 36, 124, 26, 126,
|
||
102, 639, 0, 105, 106, 107, 108, 129, 125, 131,
|
||
0, 131, 770, 115, 131, 0, 118, 125, 120, 47,
|
||
131, 9, 131, 278, 126, 124, 803, 126, 129, 806,
|
||
131, 131, 60, 0, 122, 123, 813, 921, 140, 9,
|
||
817, 131, 131, 131, 131, 124, 34, 35, 36, 826,
|
||
101, 125, 125, 124, 278, 129, 129, 131, 131, 26,
|
||
0, 129, 90, 36, 34, 35, 54, 55, 56, 57,
|
||
60, 59, 60, 957, 58, 60, 72, 73, 716, 36,
|
||
47, 838, 122, 123, 54, 55, 56, 57, 17, 59,
|
||
60, 131, 849, 60, 851, 52, 873, 874, 957, 876,
|
||
130, 985, 130, 987, 17, 882, 406, 137, 124, 137,
|
||
39, 40, 124, 751, 130, 999, 58, 124, 895, 126,
|
||
60, 109, 422, 90, 120, 38, 39, 40, 987, 131,
|
||
278, 115, 116, 117, 772, 17, 129, 125, 583, 51,
|
||
999, 129, 919, 131, 124, 783, 126, 36, 925, 122,
|
||
123, 124, 125, 0, 122, 123, 38, 39, 40, 129,
|
||
798, 131, 669, 130, 464, 124, 19, 124, 125, 128,
|
||
137, 113, 114, 115, 116, 117, 476, 124, 0, 26,
|
||
124, 69, 406, 130, 128, 9, 963, 124, 124, 966,
|
||
125, 128, 128, 970, 125, 618, 703, 620, 422, 124,
|
||
47, 126, 113, 626, 26, 15, 16, 17, 18, 464,
|
||
34, 35, 989, 60, 122, 123, 854, 125, 856, 122,
|
||
123, 476, 122, 123, 124, 47, 69, 124, 9, 126,
|
||
54, 55, 56, 57, 126, 59, 60, 124, 60, 126,
|
||
464, 596, 36, 90, 17, 18, 9, 122, 123, 124,
|
||
278, 128, 476, 34, 35, 36, 15, 16, 17, 18,
|
||
898, 122, 123, 124, 902, 122, 123, 124, 90, 907,
|
||
908, 34, 35, 54, 55, 56, 57, 745, 59, 60,
|
||
580, 36, 124, 130, 126, 495, 496, 497, 498, 499,
|
||
137, 54, 55, 56, 57, 36, 59, 60, 0, 937,
|
||
121, 122, 123, 941, 36, 129, 36, 131, 130, 519,
|
||
948, 278, 3, 4, 125, 137, 464, 955, 956, 122,
|
||
123, 124, 3, 4, 26, 580, 36, 9, 476, 122,
|
||
123, 124, 122, 123, 124, 9, 125, 126, 644, 639,
|
||
38, 39, 64, 65, 125, 47, 652, 36, 129, 36,
|
||
131, 36, 34, 35, 36, 124, 580, 995, 60, 36,
|
||
34, 35, 36, 36, 36, 19, 129, 132, 131, 125,
|
||
124, 131, 54, 55, 56, 57, 125, 59, 60, 9,
|
||
54, 55, 56, 57, 639, 59, 60, 58, 90, 9,
|
||
19, 124, 74, 75, 76, 77, 78, 79, 80, 81,
|
||
82, 124, 128, 703, 125, 87, 88, 89, 90, 91,
|
||
92, 93, 94, 125, 9, 639, 716, 131, 124, 47,
|
||
0, 126, 126, 124, 124, 84, 66, 126, 130, 577,
|
||
99, 278, 580, 126, 124, 137, 464, 60, 126, 702,
|
||
122, 123, 124, 0, 90, 90, 26, 129, 476, 131,
|
||
126, 751, 90, 90, 90, 129, 278, 131, 126, 90,
|
||
240, 716, 703, 90, 90, 90, 90, 47, 774, 26,
|
||
770, 90, 772, 90, 780, 90, 90, 243, 525, 730,
|
||
60, 242, 985, 783, 839, 877, 452, 473, 3, 4,
|
||
47, 639, 716, 1003, 9, 580, 751, 464, 798, 830,
|
||
662, 662, 543, 60, -1, -1, -1, -1, -1, 476,
|
||
90, -1, -1, -1, -1, 770, -1, 772, -1, 34,
|
||
35, 36, -1, -1, -1, -1, -1, 751, 783, -1,
|
||
-1, -1, -1, 90, -1, -1, -1, -1, -1, 54,
|
||
55, 56, 57, 798, 59, 60, 770, -1, 772, -1,
|
||
130, -1, 580, -1, 854, -1, 856, 137, -1, 783,
|
||
-1, -1, 868, -1, 34, 35, -1, -1, 716, -1,
|
||
-1, -1, -1, 130, 798, -1, 278, -1, -1, -1,
|
||
137, -1, -1, -1, 54, 55, 56, 57, 736, 59,
|
||
60, -1, -1, -1, 109, -1, -1, -1, 898, 854,
|
||
-1, 856, 902, 751, -1, -1, -1, 907, 908, -1,
|
||
125, 639, -1, 580, 129, -1, 131, 464, -1, -1,
|
||
-1, -1, 770, -1, 772, -1, -1, -1, -1, 476,
|
||
854, -1, 856, -1, -1, 783, -1, 937, -1, 109,
|
||
-1, 941, 464, 898, -1, 951, -1, 902, 948, 74,
|
||
798, -1, 907, 908, 476, 955, 956, -1, -1, 129,
|
||
-1, -1, 87, 88, 89, 90, 91, 92, 93, 94,
|
||
-1, -1, 639, -1, 898, -1, -1, -1, 902, -1,
|
||
828, 0, 937, 907, 908, -1, 941, -1, 716, -1,
|
||
-1, 991, -1, 948, -1, 995, -1, -1, 278, -1,
|
||
955, 956, -1, 1003, 0, -1, 854, 26, 856, -1,
|
||
-1, -1, -1, 937, -1, -1, -1, 941, -1, -1,
|
||
-1, 278, -1, 751, 948, -1, -1, -1, 47, -1,
|
||
26, 955, 956, 580, -1, -1, 991, -1, -1, -1,
|
||
995, 60, 770, -1, 772, -1, -1, -1, 1003, 716,
|
||
898, 47, -1, -1, 902, 783, -1, -1, 580, 907,
|
||
908, -1, 464, -1, 60, -1, -1, 991, -1, -1,
|
||
798, 995, -1, -1, 476, -1, 34, 35, -1, 1003,
|
||
-1, -1, -1, -1, 751, -1, -1, -1, -1, 937,
|
||
-1, -1, 639, 941, 90, -1, 54, 55, 56, 57,
|
||
948, 59, 60, 770, -1, 772, -1, 955, 956, -1,
|
||
-1, 130, 9, -1, -1, -1, 783, 639, 137, -1,
|
||
-1, -1, -1, -1, -1, -1, 854, -1, 856, -1,
|
||
-1, 798, -1, -1, 130, -1, -1, 34, 35, 36,
|
||
-1, 137, -1, 991, -1, -1, -1, 995, -1, -1,
|
||
-1, -1, -1, -1, -1, 1003, -1, 54, 55, 56,
|
||
57, -1, 59, 60, -1, -1, -1, -1, -1, 716,
|
||
898, 129, -1, -1, 902, -1, -1, -1, 580, 907,
|
||
908, -1, -1, -1, 464, -1, -1, 854, -1, 856,
|
||
-1, -1, -1, -1, 716, -1, 476, -1, -1, -1,
|
||
-1, -1, -1, -1, 751, -1, -1, 464, -1, 937,
|
||
-1, -1, -1, 941, -1, -1, -1, 0, -1, 476,
|
||
948, -1, -1, 770, -1, 772, -1, 955, 956, 751,
|
||
-1, 898, 129, -1, 131, 902, 783, 639, -1, -1,
|
||
907, 908, -1, 26, -1, -1, -1, -1, 770, -1,
|
||
772, 798, -1, -1, -1, -1, -1, -1, -1, 278,
|
||
-1, 783, -1, 991, 47, 3, 4, 995, -1, -1,
|
||
937, 9, -1, -1, 941, 1003, 798, 60, -1, -1,
|
||
-1, 948, 278, -1, -1, -1, 0, -1, 955, 956,
|
||
-1, -1, -1, -1, -1, -1, 34, 35, 36, -1,
|
||
580, -1, -1, -1, -1, -1, -1, 854, -1, 856,
|
||
-1, -1, 26, -1, 716, -1, 54, 55, 56, 57,
|
||
-1, 59, 60, 580, 991, -1, -1, -1, 995, -1,
|
||
-1, -1, 854, 47, 856, -1, 1003, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 60, 130, -1, 751,
|
||
-1, 898, -1, -1, 137, 902, -1, -1, -1, 639,
|
||
907, 908, -1, -1, -1, -1, -1, -1, 770, -1,
|
||
772, 109, -1, -1, -1, -1, 898, 0, -1, -1,
|
||
902, 783, 639, -1, -1, 907, 908, 125, -1, -1,
|
||
937, 129, -1, 131, 941, -1, 798, -1, -1, -1,
|
||
-1, 948, -1, 26, -1, -1, -1, -1, 955, 956,
|
||
-1, -1, -1, -1, -1, 937, 130, -1, -1, 941,
|
||
-1, -1, -1, 137, 47, -1, 948, -1, -1, -1,
|
||
-1, -1, -1, 955, 956, -1, 716, 60, -1, -1,
|
||
-1, 0, -1, -1, 991, 464, -1, -1, 995, -1,
|
||
-1, -1, 854, -1, 856, -1, 1003, 476, -1, 716,
|
||
-1, -1, -1, -1, -1, -1, -1, 26, 464, 991,
|
||
-1, 751, -1, 995, -1, -1, -1, -1, -1, -1,
|
||
476, 1003, -1, 9, -1, -1, -1, -1, 47, -1,
|
||
770, -1, 772, -1, 751, 278, 898, -1, -1, -1,
|
||
902, 60, -1, 783, -1, 907, 908, 130, 34, 35,
|
||
36, -1, -1, 770, 137, 772, -1, -1, 798, -1,
|
||
-1, -1, 9, -1, -1, -1, 783, -1, 54, 55,
|
||
56, 57, 0, 59, 60, 937, -1, -1, -1, 941,
|
||
-1, 798, -1, -1, -1, -1, 948, 34, 35, 36,
|
||
-1, -1, -1, 955, 956, -1, -1, -1, 26, -1,
|
||
-1, 580, -1, -1, 278, -1, -1, 54, 55, 56,
|
||
57, 130, 59, 60, 854, -1, 856, -1, 137, 47,
|
||
-1, -1, -1, -1, 580, -1, 9, -1, -1, 991,
|
||
-1, -1, 60, 995, -1, -1, -1, 854, -1, 856,
|
||
-1, 1003, -1, 129, -1, 131, -1, -1, -1, -1,
|
||
-1, 34, 35, 36, -1, -1, -1, -1, 898, -1,
|
||
639, -1, 902, -1, -1, -1, -1, 907, 908, -1,
|
||
0, 54, 55, 56, 57, -1, 59, 60, 125, -1,
|
||
-1, 898, 129, 639, 131, 902, -1, -1, -1, -1,
|
||
907, 908, -1, -1, -1, 278, 26, 937, -1, -1,
|
||
-1, 941, 130, 49, 50, -1, -1, -1, 948, 137,
|
||
-1, -1, 58, -1, -1, 955, 956, 47, -1, -1,
|
||
937, 464, -1, -1, 941, -1, 109, -1, -1, -1,
|
||
60, 948, -1, 476, -1, -1, -1, 716, 955, 956,
|
||
-1, -1, 125, -1, -1, -1, 129, -1, 131, -1,
|
||
-1, 991, -1, -1, -1, 995, -1, -1, -1, 278,
|
||
716, -1, -1, 1003, 110, 111, 112, 113, 114, 115,
|
||
116, 117, 751, -1, 991, -1, -1, -1, 995, -1,
|
||
-1, -1, -1, -1, -1, -1, 1003, -1, -1, -1,
|
||
464, 770, 5, 772, -1, 751, -1, -1, 11, 12,
|
||
130, -1, 476, -1, 783, -1, -1, 137, -1, 22,
|
||
23, 24, -1, 26, 770, -1, 772, 30, 9, 798,
|
||
-1, -1, -1, 0, -1, -1, -1, 783, -1, 42,
|
||
-1, 44, -1, -1, 47, 48, -1, 580, -1, 52,
|
||
53, -1, 798, 34, 35, 36, -1, -1, 61, 26,
|
||
278, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 54, 55, 56, 57, -1, 59, 60,
|
||
47, 84, -1, -1, -1, 854, -1, 856, -1, -1,
|
||
-1, 464, 95, 60, 0, -1, 99, -1, -1, -1,
|
||
-1, -1, -1, 476, 107, -1, 639, -1, 854, -1,
|
||
856, -1, -1, -1, -1, -1, 580, -1, -1, -1,
|
||
26, -1, -1, -1, 127, -1, -1, -1, 109, 898,
|
||
-1, -1, -1, 902, -1, -1, -1, -1, 907, 908,
|
||
-1, 47, -1, -1, 125, -1, -1, -1, 129, -1,
|
||
131, -1, 898, -1, 60, 464, 902, -1, 278, -1,
|
||
-1, 907, 908, 130, -1, -1, -1, 476, 937, -1,
|
||
137, -1, 941, -1, -1, 639, -1, -1, -1, 948,
|
||
-1, -1, -1, 716, -1, -1, 955, 956, -1, -1,
|
||
-1, 937, -1, -1, -1, 941, -1, -1, -1, -1,
|
||
-1, 0, 948, -1, -1, -1, -1, 580, -1, 955,
|
||
956, -1, -1, -1, -1, -1, -1, -1, 751, -1,
|
||
-1, 0, 991, -1, 130, -1, 995, 26, 9, -1,
|
||
-1, 137, -1, -1, 1003, -1, -1, 770, -1, 772,
|
||
-1, -1, -1, -1, -1, 991, 464, -1, 47, 995,
|
||
783, -1, 716, 34, 35, 36, -1, 1003, 476, -1,
|
||
-1, 60, -1, -1, -1, 798, 639, 9, -1, -1,
|
||
-1, 580, -1, 54, 55, 56, 57, -1, 59, 60,
|
||
-1, 60, -1, -1, -1, -1, -1, 751, -1, -1,
|
||
-1, -1, 34, 35, 36, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 770, -1, 772, -1,
|
||
-1, 278, 54, 55, 56, 57, -1, 59, 60, 783,
|
||
-1, 854, -1, 856, -1, -1, -1, -1, -1, -1,
|
||
639, 130, -1, -1, 798, -1, -1, -1, 137, -1,
|
||
-1, -1, -1, 716, 464, -1, -1, -1, 129, -1,
|
||
131, 130, -1, -1, -1, -1, 476, -1, 137, -1,
|
||
-1, -1, 580, -1, -1, 898, -1, 109, -1, 902,
|
||
-1, -1, 278, -1, 907, 908, -1, -1, 751, -1,
|
||
-1, -1, -1, 125, -1, -1, -1, 129, -1, 131,
|
||
854, -1, 856, -1, -1, -1, -1, 770, -1, 772,
|
||
-1, -1, -1, -1, 937, -1, 9, 716, 941, -1,
|
||
783, -1, -1, -1, -1, 948, -1, -1, -1, -1,
|
||
-1, 639, 955, 956, -1, 798, -1, -1, -1, -1,
|
||
0, 34, 35, 36, 898, -1, -1, -1, 902, -1,
|
||
-1, -1, 751, 907, 908, -1, -1, 0, -1, -1,
|
||
-1, 54, 55, 56, 57, -1, 59, 60, 991, -1,
|
||
580, 770, 995, 772, -1, -1, -1, -1, -1, -1,
|
||
1003, -1, -1, 937, 783, -1, -1, 941, -1, 278,
|
||
-1, 854, -1, 856, 948, -1, -1, -1, -1, 798,
|
||
60, 955, 956, -1, -1, -1, -1, 464, 716, -1,
|
||
-1, -1, -1, -1, -1, -1, 109, 60, -1, 476,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 639,
|
||
-1, 0, 125, -1, -1, 898, 129, 991, 131, 902,
|
||
-1, 995, -1, 751, 907, 908, -1, -1, -1, 1003,
|
||
-1, -1, -1, -1, -1, 854, -1, 856, -1, -1,
|
||
-1, -1, 770, -1, 772, -1, -1, -1, 464, -1,
|
||
130, 9, -1, -1, 937, 783, -1, 137, 941, -1,
|
||
476, -1, -1, -1, -1, 948, -1, 130, -1, -1,
|
||
798, 60, 955, 956, 137, -1, 34, 35, 36, 898,
|
||
-1, -1, -1, 902, -1, -1, 716, -1, 907, 908,
|
||
-1, -1, -1, -1, -1, -1, 54, 55, 56, 57,
|
||
-1, 59, 60, 580, -1, -1, -1, -1, 991, -1,
|
||
-1, -1, 995, -1, -1, -1, -1, -1, 937, -1,
|
||
1003, 751, 941, -1, -1, -1, 854, -1, 856, 948,
|
||
-1, -1, -1, -1, -1, -1, 955, 956, -1, -1,
|
||
770, 130, 772, -1, -1, -1, -1, -1, 137, -1,
|
||
-1, -1, -1, 783, -1, 464, -1, -1, -1, -1,
|
||
9, -1, 639, -1, 580, -1, -1, 476, 798, -1,
|
||
898, 129, 991, 131, 902, 464, 995, -1, -1, 907,
|
||
908, -1, -1, -1, 1003, 34, 35, 476, -1, -1,
|
||
9, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 9, 54, 55, 56, 57, 937,
|
||
59, 60, -1, 941, -1, 34, 35, 36, -1, -1,
|
||
948, -1, -1, 639, 854, -1, 856, 955, 956, 34,
|
||
35, 36, -1, -1, -1, 54, 55, 56, 57, 716,
|
||
59, 60, -1, -1, -1, -1, -1, -1, -1, 54,
|
||
55, 56, 57, -1, 59, 60, -1, -1, -1, -1,
|
||
-1, -1, -1, 991, -1, -1, -1, 995, 898, -1,
|
||
-1, 580, 902, -1, 751, 1003, -1, 907, 908, -1,
|
||
129, -1, 131, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 770, -1, 772, -1, -1, -1, -1,
|
||
716, -1, -1, -1, -1, -1, 783, 937, -1, -1,
|
||
129, 941, 131, -1, -1, -1, -1, -1, 948, -1,
|
||
-1, 798, -1, -1, 129, 955, 956, -1, -1, -1,
|
||
639, -1, -1, -1, -1, 751, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
639, -1, -1, -1, 770, -1, 772, -1, -1, -1,
|
||
-1, 991, -1, -1, 9, 995, -1, 783, 31, 32,
|
||
33, -1, -1, 1003, -1, -1, -1, 854, -1, 856,
|
||
-1, -1, 798, -1, 464, -1, 49, 50, -1, 34,
|
||
35, 36, -1, -1, -1, 58, 476, -1, -1, -1,
|
||
-1, 464, -1, -1, -1, -1, -1, 716, -1, 54,
|
||
55, 56, 57, 476, 59, 60, -1, -1, -1, -1,
|
||
-1, 898, -1, -1, -1, 902, -1, 716, -1, -1,
|
||
907, 908, -1, -1, -1, -1, -1, -1, 854, -1,
|
||
856, -1, 751, -1, -1, -1, 109, 110, 111, 112,
|
||
113, 114, 115, 116, 117, -1, -1, -1, -1, -1,
|
||
937, 770, 751, 772, 941, -1, -1, -1, -1, -1,
|
||
-1, 948, -1, -1, 783, 464, -1, -1, 955, 956,
|
||
-1, 770, 898, 772, 129, -1, 902, 476, -1, 798,
|
||
-1, 907, 908, -1, 783, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 798,
|
||
-1, -1, -1, -1, 991, -1, -1, -1, 995, -1,
|
||
-1, 937, -1, -1, -1, 941, 1003, -1, -1, -1,
|
||
-1, -1, 948, -1, -1, 5, -1, -1, -1, 955,
|
||
956, 11, 12, -1, -1, 854, -1, 856, -1, -1,
|
||
-1, -1, 22, 23, 24, -1, 26, -1, -1, 639,
|
||
30, -1, -1, -1, -1, 854, -1, 856, -1, -1,
|
||
-1, -1, 42, -1, 44, 991, 639, 47, 48, 995,
|
||
-1, -1, 52, 53, -1, -1, -1, 1003, -1, 898,
|
||
-1, 61, -1, 902, -1, -1, -1, -1, 907, 908,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 898,
|
||
-1, -1, -1, 902, 84, -1, -1, -1, 907, 908,
|
||
-1, -1, -1, -1, -1, 95, -1, -1, 937, 99,
|
||
-1, -1, 941, -1, -1, -1, 716, 107, -1, 948,
|
||
-1, -1, -1, -1, -1, -1, 955, 956, 937, -1,
|
||
639, 121, 941, 716, -1, -1, -1, -1, -1, 948,
|
||
-1, -1, -1, -1, -1, -1, 955, 956, -1, -1,
|
||
-1, 751, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 991, -1, -1, -1, 995, -1, 751, -1,
|
||
770, -1, 772, -1, 1003, -1, -1, -1, -1, -1,
|
||
-1, -1, 991, 783, -1, 5, 995, 770, -1, 772,
|
||
-1, 11, 12, -1, 1003, -1, -1, -1, 798, -1,
|
||
783, -1, 22, 23, 24, -1, 26, 716, -1, -1,
|
||
30, -1, -1, -1, -1, 798, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, -1,
|
||
-1, -1, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, 751, -1, -1, 27, 28, -1, -1, 31,
|
||
32, 33, 72, 73, 854, -1, 856, -1, -1, -1,
|
||
-1, 770, -1, 772, 84, -1, -1, 49, 50, -1,
|
||
-1, 854, -1, 856, 783, 95, 58, -1, -1, 99,
|
||
-1, -1, -1, -1, -1, -1, -1, 107, -1, 798,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 898, -1,
|
||
120, -1, 902, -1, -1, 125, -1, 907, 908, -1,
|
||
-1, -1, -1, -1, -1, 898, -1, -1, -1, 902,
|
||
-1, -1, -1, -1, 907, 908, -1, 109, 110, 111,
|
||
112, 113, 114, 115, 116, 117, -1, 937, -1, -1,
|
||
-1, 941, 124, -1, -1, 854, -1, 856, 948, -1,
|
||
-1, -1, -1, -1, 937, 955, 956, -1, 941, -1,
|
||
-1, -1, -1, -1, -1, 948, -1, -1, -1, -1,
|
||
-1, -1, 955, 956, 27, 28, -1, -1, 31, 32,
|
||
33, -1, -1, -1, -1, -1, -1, -1, -1, 898,
|
||
-1, 991, -1, 902, -1, 995, 49, 50, 907, 908,
|
||
-1, -1, -1, 1003, -1, 58, -1, -1, 991, -1,
|
||
-1, -1, 995, -1, -1, -1, -1, -1, -1, -1,
|
||
1003, -1, 14, 15, 16, -1, -1, -1, 937, -1,
|
||
-1, -1, 941, -1, 26, -1, -1, -1, -1, 948,
|
||
-1, -1, -1, -1, -1, -1, 955, 956, 40, -1,
|
||
42, 43, 0, 1, -1, 47, 109, 110, 111, 112,
|
||
113, 114, 115, 116, 117, -1, 58, -1, -1, 122,
|
||
123, -1, -1, -1, -1, -1, 68, -1, 70, -1,
|
||
72, 73, 991, 75, -1, 77, 995, 79, -1, 81,
|
||
-1, 83, -1, 85, 1003, 87, -1, 89, 90, 91,
|
||
-1, -1, -1, 95, -1, -1, 98, -1, -1, 101,
|
||
-1, 103, 60, -1, -1, -1, -1, 5, -1, 7,
|
||
8, -1, 10, 11, 12, 13, -1, 119, -1, 121,
|
||
-1, 19, 20, 21, 22, 23, 24, -1, 26, -1,
|
||
-1, 29, 30, -1, -1, -1, 34, 35, -1, -1,
|
||
-1, -1, -1, -1, 42, -1, 44, 149, 150, 47,
|
||
48, -1, -1, 51, 52, 53, -1, -1, 116, -1,
|
||
-1, -1, -1, 61, -1, -1, -1, 169, -1, -1,
|
||
-1, -1, 70, -1, 72, 73, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 84, -1, 146, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 95, 96, -1,
|
||
-1, 99, -1, -1, -1, -1, 104, -1, 210, 107,
|
||
-1, -1, 214, -1, -1, 113, 114, -1, -1, -1,
|
||
-1, -1, 120, 121, 122, 123, -1, 125, -1, 127,
|
||
-1, 129, -1, -1, -1, -1, 9, -1, -1, 241,
|
||
242, 243, -1, -1, -1, -1, -1, 205, -1, 207,
|
||
252, -1, -1, -1, -1, 213, 258, -1, -1, -1,
|
||
-1, 34, 35, 36, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 274, -1, -1, -1, 278, -1, -1, -1,
|
||
-1, 54, 55, 56, 57, -1, 59, 60, -1, -1,
|
||
-1, -1, -1, -1, 252, 297, 298, 255, -1, -1,
|
||
-1, 74, 75, 76, 77, 78, 79, 80, 81, 82,
|
||
-1, -1, 270, -1, 87, 88, 89, 90, 91, 92,
|
||
93, 94, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 291, -1, -1, -1, -1, -1, 66,
|
||
67, -1, 69, -1, 71, -1, -1, 74, -1, 76,
|
||
-1, 78, 125, -1, -1, 82, 129, 84, 131, -1,
|
||
-1, 88, -1, -1, -1, 92, 93, -1, -1, -1,
|
||
97, -1, 99, -1, -1, 102, -1, -1, -1, -1,
|
||
5, -1, -1, -1, -1, -1, 11, 12, -1, -1,
|
||
117, 118, -1, 120, -1, -1, -1, 22, 23, 24,
|
||
-1, 26, -1, -1, 406, 30, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 42, -1, 44,
|
||
422, -1, 47, 48, -1, -1, -1, 52, 53, -1,
|
||
-1, -1, -1, -1, -1, -1, 61, -1, -1, -1,
|
||
-1, -1, -1, 170, 171, 172, 173, 174, 175, 176,
|
||
-1, 178, 179, -1, 181, 182, 183, -1, 185, 84,
|
||
187, 188, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
95, -1, -1, 200, 99, 202, 203, -1, -1, -1,
|
||
105, -1, 107, -1, -1, -1, -1, -1, -1, 447,
|
||
217, 218, 219, 220, 221, 222, 223, -1, 225, 226,
|
||
-1, 228, 229, 230, -1, 232, 233, 234, -1, -1,
|
||
237, 238, 239, -1, -1, -1, -1, 475, -1, 521,
|
||
-1, 523, -1, -1, -1, 483, -1, -1, 486, -1,
|
||
488, -1, -1, -1, -1, 262, 263, -1, 265, 266,
|
||
-1, -1, -1, -1, 546, -1, -1, -1, -1, -1,
|
||
552, -1, -1, -1, -1, -1, -1, -1, -1, 561,
|
||
518, -1, 520, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 531, -1, 577, -1, -1, 580, -1,
|
||
538, 583, -1, 541, 542, -1, 544, -1, -1, 547,
|
||
5, -1, 7, 8, -1, 10, 11, 12, 13, -1,
|
||
-1, -1, -1, -1, 19, 20, 21, 22, 23, 24,
|
||
-1, 26, -1, -1, 572, 30, -1, -1, -1, -1,
|
||
-1, -1, -1, 581, -1, -1, -1, 42, -1, 44,
|
||
-1, -1, 47, 48, -1, -1, 51, 52, 53, -1,
|
||
-1, -1, -1, -1, 371, -1, 61, 649, 650, -1,
|
||
-1, -1, -1, -1, -1, 70, -1, 72, 73, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 669, -1, 84,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
95, 96, -1, -1, 99, -1, -1, -1, -1, 104,
|
||
-1, -1, 107, 27, 28, 653, -1, 31, 32, 33,
|
||
-1, 703, -1, -1, 706, 120, -1, -1, 710, 711,
|
||
125, -1, 127, -1, 129, 49, 50, -1, -1, 721,
|
||
-1, 723, -1, -1, 58, -1, -1, 729, 730, -1,
|
||
-1, -1, -1, 735, 736, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 745, -1, -1, 704, -1, -1, -1,
|
||
-1, 10, -1, -1, 712, -1, 714, -1, -1, -1,
|
||
-1, 20, 21, -1, -1, 723, -1, -1, -1, -1,
|
||
-1, -1, 106, -1, -1, 109, 110, 111, 112, 113,
|
||
114, 115, 116, 117, -1, -1, -1, -1, -1, -1,
|
||
-1, 50, -1, -1, 752, -1, -1, 56, 57, -1,
|
||
758, -1, 760, -1, -1, -1, -1, -1, -1, 811,
|
||
812, -1, -1, -1, -1, 773, -1, -1, 776, 777,
|
||
778, -1, -1, -1, 782, -1, 828, 785, -1, -1,
|
||
-1, -1, -1, -1, 836, -1, 838, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 849, -1, 851,
|
||
27, 28, 810, -1, 31, 32, 33, 116, -1, -1,
|
||
-1, -1, 589, -1, -1, 592, -1, -1, -1, -1,
|
||
872, -1, 49, 50, 133, 877, -1, -1, 880, -1,
|
||
-1, 58, -1, -1, -1, 144, -1, -1, -1, -1,
|
||
848, -1, 151, -1, -1, -1, -1, 855, -1, 158,
|
||
858, -1, -1, -1, -1, -1, -1, -1, 167, 168,
|
||
-1, -1, -1, 915, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 924, 881, -1, 927, -1, -1, -1, 106,
|
||
-1, 933, 109, 110, 111, 112, 113, 114, 115, 116,
|
||
117, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 909, -1, -1, -1, -1, -1, -1, -1, 917,
|
||
918, -1, -1, 965, -1, 923, -1, -1, -1, -1,
|
||
-1, -1, -1, 931, 932, -1, -1, 935, -1, -1,
|
||
938, 939, 5, -1, 7, 8, 245, 10, 11, 12,
|
||
13, -1, -1, -1, -1, -1, 19, 20, 21, 22,
|
||
23, 24, -1, 26, -1, -1, -1, 30, 1010, 1011,
|
||
269, -1, -1, 272, -1, 742, -1, -1, -1, 42,
|
||
978, 44, -1, 981, 47, 48, -1, -1, -1, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, -1,
|
||
-1, -1, 301, 302, -1, -1, 305, 70, -1, 72,
|
||
73, -1, -1, 312, -1, -1, -1, 316, -1, -1,
|
||
-1, 84, 321, -1, -1, -1, 325, -1, -1, -1,
|
||
329, -1, 95, 96, 333, -1, 99, 336, -1, -1,
|
||
-1, 340, -1, -1, 107, 344, -1, -1, -1, -1,
|
||
-1, -1, 351, -1, -1, -1, -1, 120, -1, -1,
|
||
-1, -1, 125, -1, 127, -1, -1, -1, -1, -1,
|
||
-1, 27, 28, -1, -1, 31, 32, 33, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
389, -1, 391, 49, 50, 394, -1, -1, 397, 9,
|
||
-1, -1, 58, 402, -1, -1, 27, -1, -1, 408,
|
||
31, 32, 33, -1, -1, -1, 415, 416, 417, 418,
|
||
419, 420, 421, -1, 34, 35, 36, -1, 49, 50,
|
||
-1, -1, -1, 432, -1, -1, 435, 58, -1, -1,
|
||
-1, -1, 441, -1, 54, 55, 56, 57, -1, 59,
|
||
60, -1, -1, 109, 110, 111, 112, 113, 114, 115,
|
||
116, 117, -1, -1, 74, 75, 76, 77, 78, 79,
|
||
80, 81, 82, -1, -1, -1, -1, 87, 88, 89,
|
||
90, 91, 92, 93, 94, -1, -1, -1, 109, 110,
|
||
111, 112, 113, 114, 115, 116, 117, -1, -1, -1,
|
||
-1, 500, 501, 502, 503, 504, 505, 506, 507, 508,
|
||
509, 510, 511, 512, 513, 514, 515, 516, 517, 129,
|
||
-1, 131, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 534, -1, -1, -1, -1,
|
||
-1, 540, 74, 75, 76, 77, 78, 79, 80, 81,
|
||
82, -1, -1, -1, -1, 87, 88, 89, 90, 91,
|
||
92, 93, 94, -1, -1, -1, -1, -1, 74, 75,
|
||
76, 77, 78, 79, 80, 81, 82, -1, 577, -1,
|
||
579, 87, 88, 89, 90, 91, 92, 93, 94, -1,
|
||
-1, -1, -1, -1, 593, -1, -1, -1, -1, 131,
|
||
-1, -1, -1, -1, -1, -1, -1, 606, 1, -1,
|
||
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
|
||
13, 14, -1, -1, 17, -1, 19, 20, 21, 22,
|
||
23, 24, 25, 26, -1, -1, -1, 30, 637, -1,
|
||
-1, 34, 35, -1, 37, 644, -1, -1, -1, 42,
|
||
43, 44, 45, 652, 47, 48, -1, -1, 51, 52,
|
||
53, 660, -1, -1, -1, -1, 665, -1, 61, 62,
|
||
63, 64, 65, 66, 67, 68, -1, 70, 71, 72,
|
||
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 95, 96, 97, 98, 99, 100, -1, 102,
|
||
-1, 104, -1, -1, 107, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 120, -1, 122,
|
||
123, -1, 125, -1, 127, -1, 129, 736, -1, -1,
|
||
74, 75, 76, 77, 78, 79, 80, 81, 82, -1,
|
||
-1, -1, -1, 87, 88, 89, 90, 91, 92, 93,
|
||
94, -1, -1, -1, -1, -1, 765, -1, -1, -1,
|
||
-1, 5, -1, -1, -1, 774, -1, 11, 12, -1,
|
||
-1, 780, -1, -1, -1, -1, -1, 786, 22, 23,
|
||
24, 125, 26, -1, -1, 794, 30, -1, -1, -1,
|
||
799, -1, -1, -1, -1, -1, -1, -1, 42, -1,
|
||
44, -1, -1, 47, 48, -1, -1, -1, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, -1, 828,
|
||
-1, 830, -1, 0, 1, -1, 3, 4, 5, 6,
|
||
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
|
||
84, -1, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
-1, 95, -1, 30, 863, 99, -1, 34, 35, 868,
|
||
37, -1, -1, 107, -1, 42, 43, 44, 45, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, 122, 123,
|
||
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
|
||
-1, 68, -1, 70, 71, 72, 73, -1, -1, -1,
|
||
-1, 910, -1, -1, -1, -1, 83, 84, 85, 86,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
|
||
97, 98, 99, 100, -1, 102, -1, 104, -1, -1,
|
||
107, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 951, 120, -1, 122, 123, -1, 125, -1,
|
||
127, -1, 129, 0, 1, -1, 3, 4, 5, 6,
|
||
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
|
||
-1, -1, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
|
||
37, -1, -1, -1, -1, 42, 43, 44, 45, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
|
||
-1, 68, -1, 70, 71, 72, 73, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 83, 84, 85, 86,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
|
||
97, 98, 99, 100, -1, 102, -1, 104, -1, -1,
|
||
107, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 120, -1, 122, 123, -1, 125, -1,
|
||
127, 1, 129, 3, 4, 5, 6, 7, 8, -1,
|
||
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
|
||
20, 21, 22, 23, 24, 25, 26, -1, -1, -1,
|
||
30, -1, -1, -1, 34, 35, -1, 37, 38, 39,
|
||
40, 41, 42, 43, 44, 45, 46, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, 62, 63, 64, 65, 66, 67, 68, -1,
|
||
70, 71, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, 84, 85, 86, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 95, 96, 97, 98, 99,
|
||
100, 101, 102, 103, 104, -1, -1, 107, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
120, -1, 122, 123, -1, 125, -1, 127, 128, 129,
|
||
1, -1, 3, 4, 5, 6, 7, 8, -1, 10,
|
||
11, 12, 13, 14, -1, -1, 17, -1, 19, 20,
|
||
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, 34, 35, -1, 37, 38, 39, 40,
|
||
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
|
||
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
|
||
61, 62, 63, -1, -1, -1, -1, 68, -1, 70,
|
||
71, 72, 73, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 83, 84, 85, 86, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 95, 96, 97, 98, 99, 100,
|
||
-1, 102, -1, 104, -1, -1, 107, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 120,
|
||
-1, 122, 123, -1, 125, -1, 127, 1, 129, 3,
|
||
4, 5, 6, 7, 8, -1, 10, 11, 12, 13,
|
||
14, -1, -1, 17, -1, 19, 20, 21, 22, 23,
|
||
24, 25, 26, -1, -1, -1, 30, -1, -1, -1,
|
||
34, 35, -1, 37, 38, 39, -1, -1, 42, 43,
|
||
44, 45, -1, 47, 48, -1, -1, 51, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, 62, 63,
|
||
-1, -1, -1, -1, 68, -1, 70, 71, 72, 73,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 83,
|
||
84, 85, 86, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 95, 96, 97, 98, 99, 100, 101, 102, -1,
|
||
104, -1, -1, 107, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 120, -1, 122, 123,
|
||
-1, 125, -1, 127, 1, 129, 3, 4, 5, 6,
|
||
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
|
||
17, -1, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
|
||
37, 38, 39, 40, -1, 42, 43, 44, 45, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
|
||
-1, 68, -1, 70, 71, 72, 73, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 83, 84, 85, 86,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
|
||
97, 98, 99, 100, -1, 102, -1, 104, -1, -1,
|
||
107, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 120, -1, 122, 123, -1, 125, -1,
|
||
127, 1, 129, 3, 4, 5, 6, 7, 8, -1,
|
||
10, 11, 12, 13, 14, -1, -1, 17, -1, 19,
|
||
20, 21, 22, 23, 24, 25, 26, -1, -1, -1,
|
||
30, -1, -1, -1, 34, 35, -1, 37, 38, 39,
|
||
-1, -1, 42, 43, 44, 45, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, 62, 63, -1, -1, -1, -1, 68, -1,
|
||
70, 71, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, 84, 85, 86, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 95, 96, 97, 98, 99,
|
||
100, 101, 102, -1, 104, -1, -1, 107, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
120, -1, 122, 123, -1, 125, -1, 127, 1, 129,
|
||
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
|
||
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
|
||
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
|
||
-1, 34, 35, -1, 37, -1, -1, -1, -1, 42,
|
||
43, 44, 45, -1, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
|
||
63, -1, -1, -1, -1, 68, -1, 70, 71, 72,
|
||
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 95, 96, 97, 98, 99, 100, -1, 102,
|
||
-1, 104, -1, -1, 107, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 120, -1, 122,
|
||
123, -1, 125, -1, 127, 1, 129, 3, 4, 5,
|
||
6, 7, 8, -1, 10, 11, 12, 13, 14, -1,
|
||
-1, 17, -1, 19, 20, 21, 22, 23, 24, 25,
|
||
26, -1, -1, -1, 30, -1, -1, -1, 34, 35,
|
||
-1, 37, 38, 39, 40, -1, 42, 43, 44, 45,
|
||
-1, 47, 48, -1, -1, 51, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, 62, 63, -1, -1,
|
||
-1, -1, 68, -1, 70, 71, 72, 73, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 83, 84, 85,
|
||
86, -1, -1, -1, -1, -1, -1, -1, -1, 95,
|
||
96, 97, 98, 99, 100, -1, 102, -1, 104, -1,
|
||
-1, 107, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 120, -1, 122, 123, -1, 125,
|
||
-1, 127, 1, 129, 3, 4, 5, 6, 7, 8,
|
||
-1, 10, 11, 12, 13, 14, -1, -1, 17, -1,
|
||
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
|
||
-1, 30, -1, -1, -1, 34, 35, -1, 37, 38,
|
||
39, -1, -1, 42, 43, 44, 45, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, 62, 63, -1, -1, -1, -1, 68,
|
||
-1, 70, 71, 72, 73, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 83, 84, 85, 86, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 95, 96, 97, 98,
|
||
99, 100, 101, 102, -1, 104, -1, -1, 107, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 120, -1, 122, 123, -1, 125, -1, 127, 1,
|
||
129, 3, 4, 5, 6, 7, 8, -1, 10, 11,
|
||
12, 13, 14, -1, -1, 17, -1, 19, 20, 21,
|
||
22, 23, 24, 25, 26, -1, -1, -1, 30, -1,
|
||
-1, -1, 34, 35, -1, 37, -1, 39, 40, -1,
|
||
42, 43, 44, 45, -1, 47, 48, -1, -1, 51,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
62, 63, -1, -1, -1, -1, 68, -1, 70, 71,
|
||
72, 73, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 83, 84, 85, 86, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 95, 96, 97, 98, 99, 100, -1,
|
||
102, -1, 104, -1, -1, 107, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 120, -1,
|
||
122, 123, -1, 125, -1, 127, 1, 129, 3, 4,
|
||
5, 6, 7, 8, -1, 10, 11, 12, 13, 14,
|
||
-1, -1, 17, -1, 19, 20, 21, 22, 23, 24,
|
||
25, 26, -1, -1, -1, 30, -1, -1, -1, 34,
|
||
35, -1, 37, -1, -1, -1, -1, 42, 43, 44,
|
||
45, -1, 47, 48, -1, -1, 51, 52, 53, -1,
|
||
-1, -1, -1, -1, -1, -1, 61, 62, 63, -1,
|
||
-1, 66, 67, 68, -1, 70, 71, 72, 73, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 83, 84,
|
||
85, 86, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
95, 96, 97, 98, 99, 100, -1, 102, -1, 104,
|
||
-1, -1, 107, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 120, -1, 122, 123, -1,
|
||
125, -1, 127, 1, 129, 3, 4, 5, 6, 7,
|
||
8, -1, 10, 11, 12, 13, 14, -1, -1, 17,
|
||
-1, 19, 20, 21, 22, 23, 24, 25, 26, -1,
|
||
-1, -1, 30, -1, -1, -1, 34, 35, -1, 37,
|
||
-1, -1, -1, -1, 42, 43, 44, 45, -1, 47,
|
||
48, -1, -1, 51, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, 62, 63, -1, -1, -1, -1,
|
||
68, -1, 70, 71, 72, 73, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 83, 84, 85, 86, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 95, 96, 97,
|
||
98, 99, 100, -1, 102, 103, 104, -1, -1, 107,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 120, -1, 122, 123, -1, 125, -1, 127,
|
||
1, 129, 3, 4, 5, 6, 7, 8, -1, 10,
|
||
11, 12, 13, 14, -1, -1, 17, 18, 19, 20,
|
||
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, 34, 35, -1, 37, -1, -1, -1,
|
||
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
|
||
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
|
||
61, 62, 63, -1, -1, -1, -1, 68, -1, 70,
|
||
71, 72, 73, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 83, 84, 85, 86, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 95, 96, 97, 98, 99, 100,
|
||
-1, 102, -1, 104, -1, -1, 107, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 120,
|
||
-1, 122, 123, -1, 125, -1, 127, 1, 129, 3,
|
||
4, 5, 6, 7, 8, -1, 10, 11, 12, 13,
|
||
14, -1, -1, 17, -1, 19, 20, 21, 22, 23,
|
||
24, 25, 26, -1, -1, -1, 30, -1, -1, -1,
|
||
34, 35, -1, 37, -1, -1, -1, 41, 42, 43,
|
||
44, 45, -1, 47, 48, -1, -1, 51, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, 62, 63,
|
||
-1, -1, -1, -1, 68, -1, 70, 71, 72, 73,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 83,
|
||
84, 85, 86, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 95, 96, 97, 98, 99, 100, -1, 102, -1,
|
||
104, -1, -1, 107, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 120, -1, 122, 123,
|
||
-1, 125, -1, 127, 1, 129, 3, 4, 5, 6,
|
||
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
|
||
17, -1, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
|
||
37, -1, -1, -1, -1, 42, 43, 44, 45, 46,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
|
||
-1, 68, -1, 70, 71, 72, 73, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 83, 84, 85, 86,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
|
||
97, 98, 99, 100, -1, 102, -1, 104, -1, -1,
|
||
107, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 120, -1, 122, 123, -1, 125, -1,
|
||
127, 1, 129, 3, 4, 5, 6, 7, 8, -1,
|
||
10, 11, 12, 13, 14, -1, -1, 17, -1, 19,
|
||
20, 21, 22, 23, 24, 25, 26, -1, -1, -1,
|
||
30, -1, -1, -1, 34, 35, -1, 37, -1, -1,
|
||
-1, -1, 42, 43, 44, 45, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, 62, 63, -1, -1, -1, 67, 68, -1,
|
||
70, 71, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, 84, 85, 86, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 95, 96, 97, 98, 99,
|
||
100, -1, 102, -1, 104, -1, -1, 107, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
120, -1, 122, 123, -1, 125, -1, 127, 1, 129,
|
||
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
|
||
13, 14, -1, -1, -1, -1, 19, 20, 21, 22,
|
||
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
|
||
-1, 34, 35, -1, 37, -1, -1, -1, -1, 42,
|
||
43, 44, 45, -1, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
|
||
63, -1, -1, -1, -1, 68, -1, 70, 71, 72,
|
||
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 95, 96, 97, 98, 99, 100, -1, 102,
|
||
-1, 104, -1, -1, 107, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 120, -1, 122,
|
||
123, -1, 125, -1, 127, 128, 129, 5, -1, 7,
|
||
8, -1, 10, 11, 12, 13, -1, -1, -1, -1,
|
||
-1, 19, 20, 21, 22, 23, 24, -1, 26, -1,
|
||
-1, 29, 30, -1, -1, -1, 34, 35, -1, -1,
|
||
-1, -1, -1, -1, 42, -1, 44, -1, -1, 47,
|
||
48, -1, -1, 51, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 70, -1, 72, 73, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 84, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 95, 96, -1,
|
||
-1, 99, -1, -1, -1, -1, 104, 105, 106, 107,
|
||
-1, -1, -1, -1, -1, 113, 114, -1, -1, -1,
|
||
-1, -1, 120, 121, -1, -1, -1, 125, -1, 127,
|
||
5, 129, 7, 8, -1, 10, 11, 12, 13, -1,
|
||
-1, -1, -1, -1, 19, 20, 21, 22, 23, 24,
|
||
-1, 26, -1, -1, 29, 30, -1, -1, -1, 34,
|
||
35, -1, -1, -1, -1, -1, -1, 42, -1, 44,
|
||
-1, -1, 47, 48, -1, -1, 51, 52, 53, -1,
|
||
-1, -1, -1, -1, -1, -1, 61, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 70, -1, 72, 73, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 84,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
95, 96, -1, -1, 99, -1, -1, -1, -1, 104,
|
||
105, -1, 107, -1, -1, -1, -1, -1, 113, 114,
|
||
-1, -1, -1, -1, -1, 120, 121, -1, -1, -1,
|
||
125, -1, 127, 5, 129, 7, 8, -1, 10, 11,
|
||
12, 13, -1, -1, -1, -1, -1, 19, 20, 21,
|
||
22, 23, 24, -1, 26, -1, -1, 29, 30, -1,
|
||
-1, -1, 34, 35, -1, -1, -1, -1, -1, -1,
|
||
42, -1, 44, -1, -1, 47, 48, -1, -1, 51,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 70, -1,
|
||
72, 73, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 84, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 95, 96, -1, -1, 99, -1, -1,
|
||
-1, -1, 104, -1, -1, 107, -1, -1, -1, -1,
|
||
-1, 113, 114, -1, -1, -1, -1, -1, 120, 121,
|
||
-1, -1, 124, 125, -1, 127, 5, 129, 7, 8,
|
||
-1, 10, 11, 12, 13, -1, -1, -1, -1, -1,
|
||
19, 20, 21, 22, 23, 24, -1, 26, -1, -1,
|
||
29, 30, -1, -1, -1, 34, 35, -1, -1, -1,
|
||
-1, -1, -1, 42, -1, 44, -1, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 70, -1, 72, 73, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 84, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 95, 96, -1, -1,
|
||
99, -1, -1, -1, -1, 104, 105, -1, 107, -1,
|
||
-1, -1, -1, -1, 113, 114, -1, -1, -1, -1,
|
||
-1, 120, 121, -1, -1, -1, 125, -1, 127, 5,
|
||
129, 7, 8, -1, 10, 11, 12, 13, -1, -1,
|
||
-1, -1, -1, 19, 20, 21, 22, 23, 24, -1,
|
||
26, -1, -1, 29, 30, -1, -1, -1, 34, 35,
|
||
-1, -1, -1, -1, -1, -1, 42, -1, 44, -1,
|
||
-1, 47, 48, -1, -1, 51, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 70, -1, 72, 73, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 84, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 95,
|
||
96, -1, -1, 99, -1, -1, -1, -1, 104, -1,
|
||
-1, 107, -1, -1, -1, -1, -1, 113, 114, -1,
|
||
-1, -1, -1, -1, 120, 121, -1, -1, -1, 125,
|
||
-1, 127, 5, 129, 7, 8, -1, 10, 11, 12,
|
||
13, -1, -1, -1, -1, -1, 19, 20, 21, 22,
|
||
23, 24, -1, 26, -1, -1, 29, 30, -1, -1,
|
||
-1, 34, 35, -1, -1, -1, -1, -1, -1, 42,
|
||
-1, 44, -1, -1, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 70, -1, 72,
|
||
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 84, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 95, 96, -1, -1, 99, -1, -1, -1,
|
||
-1, 104, -1, -1, 107, -1, -1, -1, -1, -1,
|
||
113, 114, -1, -1, -1, -1, -1, 120, 121, -1,
|
||
-1, -1, 125, -1, 127, 5, 129, 7, 8, -1,
|
||
10, 11, 12, 13, -1, -1, -1, -1, -1, 19,
|
||
20, 21, 22, 23, 24, -1, 26, -1, -1, 29,
|
||
30, -1, -1, -1, 34, 35, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
70, -1, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 84, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 95, 96, -1, -1, 99,
|
||
-1, -1, -1, -1, 104, -1, -1, 107, -1, -1,
|
||
-1, -1, -1, 113, 114, -1, -1, -1, -1, -1,
|
||
120, 121, -1, -1, -1, 125, -1, 127, 5, 129,
|
||
7, 8, -1, 10, 11, 12, 13, -1, -1, -1,
|
||
-1, -1, 19, 20, 21, 22, 23, 24, -1, 26,
|
||
-1, -1, 29, 30, -1, -1, -1, 34, 35, -1,
|
||
-1, -1, -1, -1, -1, 42, -1, 44, -1, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 70, -1, 72, 73, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 84, 9, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
|
||
-1, -1, 99, -1, -1, -1, -1, 104, -1, -1,
|
||
107, -1, -1, 34, 35, 36, 113, 114, -1, -1,
|
||
-1, -1, -1, 120, 121, -1, -1, -1, 125, -1,
|
||
127, -1, 129, 54, 55, 56, 57, -1, 59, 60,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 9,
|
||
-1, -1, -1, 74, 75, 76, 77, 78, 79, 80,
|
||
81, 82, -1, -1, -1, -1, 87, 88, 89, 90,
|
||
91, 92, 93, 94, 34, 35, 36, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 54, 55, 56, 57, -1, 59,
|
||
60, -1, -1, -1, -1, -1, -1, -1, 129, -1,
|
||
131, 9, -1, -1, 74, 75, 76, 77, 78, 79,
|
||
80, 81, 82, -1, -1, -1, -1, 87, 88, 89,
|
||
90, 91, 92, 93, 94, -1, 34, 35, 36, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 54, 55, 56, 57,
|
||
-1, 59, 60, -1, -1, -1, -1, -1, -1, 129,
|
||
-1, 131, 9, -1, -1, -1, 74, 75, 76, 77,
|
||
78, 79, 80, 81, 82, -1, -1, -1, -1, 87,
|
||
88, 89, 90, 91, 92, 93, 94, 34, 35, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 54, 55, 56,
|
||
57, -1, 59, 60, -1, -1, -1, -1, -1, -1,
|
||
-1, 129, -1, 131, -1, -1, -1, 74, 75, 76,
|
||
77, 78, 79, 80, 81, 82, -1, -1, -1, -1,
|
||
87, 88, 89, 90, 91, 92, 93, 94, 5, -1,
|
||
-1, -1, -1, -1, 11, 12, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 22, 23, 24, -1, 26,
|
||
-1, -1, -1, 30, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 129, -1, 131, 42, -1, 44, -1, -1,
|
||
47, 48, 5, -1, -1, 52, 53, -1, 11, 12,
|
||
-1, -1, -1, -1, 61, -1, -1, -1, -1, 22,
|
||
23, 24, -1, 26, -1, -1, -1, 30, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 84, -1, 42,
|
||
-1, 44, -1, -1, 47, 48, -1, 5, 95, 52,
|
||
53, -1, 99, 11, 12, -1, -1, -1, 61, -1,
|
||
107, -1, -1, -1, 22, 23, 24, -1, 26, -1,
|
||
-1, -1, 30, -1, 121, -1, -1, -1, -1, -1,
|
||
-1, 84, -1, -1, 42, -1, 44, -1, -1, 47,
|
||
48, 5, 95, -1, 52, 53, 99, 11, 12, -1,
|
||
-1, -1, -1, 61, 107, -1, -1, -1, 22, 23,
|
||
24, -1, 26, -1, -1, -1, 30, -1, 121, -1,
|
||
-1, -1, -1, -1, -1, -1, 84, -1, 42, -1,
|
||
44, -1, -1, 47, 48, -1, 5, 95, 52, 53,
|
||
-1, 99, 11, 12, -1, -1, -1, 61, -1, 107,
|
||
-1, -1, -1, 22, 23, 24, -1, 26, 72, 73,
|
||
-1, 30, -1, 121, -1, -1, -1, -1, -1, -1,
|
||
84, -1, -1, 42, -1, 44, -1, -1, 47, 48,
|
||
5, 95, -1, 52, 53, 99, 11, 12, -1, -1,
|
||
-1, -1, 61, 107, -1, -1, -1, 22, 23, 24,
|
||
-1, 26, -1, 72, 73, 30, 120, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 84, -1, 42, -1, 44,
|
||
-1, -1, 47, 48, -1, 5, 95, 52, 53, -1,
|
||
99, 11, 12, -1, -1, -1, 61, -1, 107, -1,
|
||
-1, -1, 22, 23, 24, -1, 26, -1, -1, -1,
|
||
30, -1, -1, -1, -1, -1, -1, -1, -1, 84,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, -1,
|
||
95, -1, 52, 53, 99, -1, -1, -1, -1, -1,
|
||
105, 61, 107, -1, -1, -1, -1, -1, -1, 5,
|
||
-1, -1, -1, -1, -1, 11, 12, -1, -1, -1,
|
||
-1, -1, -1, -1, 84, -1, 22, 23, 24, -1,
|
||
26, -1, -1, -1, 30, 95, -1, -1, -1, 99,
|
||
-1, -1, -1, -1, -1, 105, 42, 107, 44, -1,
|
||
-1, 47, 48, -1, 5, -1, 52, 53, -1, -1,
|
||
11, 12, -1, -1, -1, 61, -1, -1, -1, -1,
|
||
-1, 22, 23, 24, -1, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 84, -1,
|
||
-1, 42, -1, 44, -1, -1, 47, 48, -1, 95,
|
||
-1, 52, 53, 99, -1, -1, -1, -1, -1, 105,
|
||
61, 107, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 70, -1, 72, 73, -1, 75, -1, 77, -1,
|
||
79, -1, 81, 84, 83, -1, 85, -1, 87, -1,
|
||
89, 90, 91, -1, 95, -1, 95, -1, 99, 98,
|
||
-1, -1, 101, -1, 103, -1, 107, -1, -1, -1,
|
||
74, 75, 76, 77, 78, 79, 80, 81, 82, -1,
|
||
119, -1, 121, 87, 88, 89, 90, 91, 92, 93,
|
||
94, 74, 75, 76, 77, 78, 79, 80, 81, 82,
|
||
-1, -1, -1, -1, 87, 88, 89, 90, 91, 92,
|
||
93, 94, 74, 75, 76, 77, 78, 79, 80, 81,
|
||
82, 125, -1, -1, -1, 87, 88, 89, 90, 91,
|
||
92, 93, 94, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 125, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 125
|
||
};
|
||
|
||
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
||
symbol of state STATE-NUM. */
|
||
static const yytype_uint16 yystos[] =
|
||
{
|
||
0, 1, 5, 6, 7, 8, 10, 11, 12, 13,
|
||
14, 19, 20, 21, 22, 23, 24, 25, 26, 30,
|
||
34, 35, 37, 42, 43, 44, 45, 47, 48, 51,
|
||
52, 53, 61, 62, 63, 68, 70, 71, 72, 73,
|
||
83, 84, 85, 86, 95, 96, 97, 98, 99, 100,
|
||
102, 104, 107, 120, 122, 123, 125, 127, 129, 134,
|
||
135, 136, 137, 142, 149, 167, 168, 169, 170, 171,
|
||
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
||
182, 183, 184, 185, 187, 188, 189, 190, 191, 192,
|
||
193, 194, 196, 197, 198, 199, 200, 202, 206, 211,
|
||
213, 214, 215, 217, 229, 231, 232, 234, 235, 236,
|
||
237, 238, 239, 240, 241, 242, 249, 254, 257, 258,
|
||
259, 260, 261, 275, 279, 282, 297, 298, 299, 311,
|
||
314, 316, 326, 329, 332, 344, 349, 353, 355, 362,
|
||
375, 381, 384, 384, 151, 158, 159, 36, 36, 262,
|
||
263, 125, 11, 12, 22, 23, 24, 26, 29, 30,
|
||
42, 44, 51, 53, 61, 95, 107, 113, 114, 121,
|
||
168, 169, 171, 173, 176, 178, 180, 182, 184, 187,
|
||
189, 191, 196, 197, 198, 202, 205, 211, 215, 218,
|
||
223, 229, 231, 232, 233, 234, 242, 243, 244, 245,
|
||
254, 256, 257, 259, 167, 165, 167, 166, 167, 158,
|
||
152, 223, 223, 315, 280, 158, 167, 168, 169, 171,
|
||
173, 176, 178, 180, 182, 184, 187, 189, 191, 196,
|
||
197, 198, 202, 211, 215, 228, 229, 254, 257, 259,
|
||
36, 276, 265, 154, 363, 150, 158, 189, 191, 374,
|
||
10, 167, 167, 127, 167, 288, 19, 157, 250, 377,
|
||
167, 189, 191, 196, 198, 211, 257, 340, 341, 354,
|
||
223, 12, 125, 257, 121, 256, 105, 106, 121, 186,
|
||
208, 209, 210, 223, 227, 248, 167, 189, 191, 212,
|
||
0, 1, 136, 137, 149, 282, 384, 3, 4, 36,
|
||
125, 9, 131, 246, 247, 9, 246, 167, 189, 191,
|
||
195, 257, 9, 36, 246, 195, 9, 36, 246, 195,
|
||
195, 9, 36, 246, 195, 9, 36, 246, 195, 9,
|
||
36, 246, 195, 9, 36, 195, 9, 36, 246, 195,
|
||
9, 246, 195, 257, 9, 36, 125, 158, 246, 195,
|
||
257, 9, 36, 125, 158, 246, 195, 257, 8, 10,
|
||
167, 170, 171, 172, 173, 174, 175, 176, 177, 178,
|
||
179, 180, 181, 182, 183, 184, 185, 188, 189, 190,
|
||
191, 192, 195, 254, 257, 258, 259, 260, 195, 9,
|
||
246, 9, 158, 246, 9, 36, 195, 9, 36, 158,
|
||
246, 195, 9, 36, 125, 246, 129, 195, 9, 36,
|
||
158, 246, 195, 34, 35, 54, 55, 56, 57, 59,
|
||
60, 109, 129, 230, 158, 158, 158, 158, 158, 223,
|
||
253, 384, 9, 36, 246, 9, 36, 158, 246, 195,
|
||
257, 9, 36, 158, 246, 195, 158, 15, 16, 17,
|
||
18, 302, 304, 309, 310, 1, 12, 25, 26, 136,
|
||
149, 160, 161, 162, 163, 282, 384, 17, 38, 39,
|
||
40, 312, 313, 317, 322, 256, 163, 17, 101, 350,
|
||
351, 352, 158, 223, 384, 167, 266, 269, 266, 223,
|
||
223, 223, 223, 167, 200, 219, 224, 220, 221, 222,
|
||
27, 28, 31, 32, 33, 49, 50, 58, 109, 110,
|
||
111, 112, 113, 114, 115, 116, 117, 124, 300, 225,
|
||
156, 124, 384, 124, 384, 189, 267, 268, 269, 384,
|
||
167, 281, 9, 109, 336, 193, 167, 277, 281, 267,
|
||
69, 368, 223, 376, 19, 125, 284, 167, 384, 74,
|
||
75, 76, 77, 78, 79, 80, 81, 82, 87, 88,
|
||
89, 90, 91, 92, 93, 94, 144, 146, 147, 125,
|
||
384, 113, 126, 105, 167, 251, 252, 69, 378, 52,
|
||
124, 223, 384, 264, 167, 126, 128, 167, 189, 196,
|
||
198, 200, 211, 124, 128, 106, 124, 128, 384, 167,
|
||
167, 201, 223, 105, 223, 226, 124, 130, 223, 223,
|
||
223, 223, 223, 223, 223, 223, 223, 223, 203, 223,
|
||
204, 223, 223, 223, 223, 223, 216, 212, 223, 223,
|
||
223, 223, 223, 223, 223, 223, 212, 124, 128, 255,
|
||
223, 223, 223, 384, 305, 309, 16, 302, 309, 3,
|
||
4, 160, 318, 323, 38, 312, 322, 39, 312, 384,
|
||
38, 39, 356, 359, 384, 131, 144, 273, 274, 124,
|
||
384, 384, 124, 146, 146, 146, 146, 146, 223, 223,
|
||
223, 223, 223, 223, 223, 223, 223, 223, 223, 223,
|
||
223, 223, 223, 223, 223, 223, 384, 146, 384, 167,
|
||
167, 144, 273, 124, 153, 144, 124, 384, 223, 144,
|
||
52, 124, 278, 384, 155, 223, 384, 384, 378, 121,
|
||
384, 283, 167, 287, 288, 290, 384, 167, 167, 285,
|
||
289, 19, 384, 144, 132, 124, 124, 167, 205, 209,
|
||
218, 223, 257, 379, 380, 121, 223, 342, 343, 340,
|
||
384, 382, 266, 126, 223, 223, 227, 210, 138, 140,
|
||
139, 141, 207, 210, 226, 131, 207, 207, 207, 223,
|
||
163, 164, 303, 256, 307, 309, 167, 167, 256, 384,
|
||
320, 312, 325, 327, 223, 360, 38, 351, 359, 223,
|
||
270, 271, 145, 147, 124, 130, 269, 208, 301, 9,
|
||
145, 268, 384, 167, 333, 167, 167, 384, 384, 164,
|
||
19, 84, 121, 167, 292, 295, 296, 291, 288, 290,
|
||
384, 167, 286, 290, 292, 105, 167, 380, 124, 167,
|
||
124, 345, 164, 384, 106, 384, 125, 384, 125, 124,
|
||
126, 226, 126, 126, 126, 128, 164, 384, 256, 125,
|
||
384, 125, 384, 384, 324, 256, 384, 164, 357, 384,
|
||
223, 9, 223, 131, 124, 164, 223, 144, 47, 144,
|
||
364, 384, 121, 167, 167, 144, 126, 124, 124, 144,
|
||
124, 128, 126, 144, 380, 342, 99, 348, 17, 103,
|
||
383, 227, 105, 143, 148, 167, 143, 210, 306, 384,
|
||
143, 143, 319, 164, 384, 164, 328, 384, 361, 358,
|
||
272, 223, 208, 256, 64, 65, 371, 372, 373, 167,
|
||
144, 125, 144, 144, 121, 167, 296, 84, 290, 384,
|
||
144, 346, 126, 124, 144, 126, 164, 308, 126, 126,
|
||
164, 321, 17, 41, 330, 331, 164, 164, 384, 223,
|
||
126, 48, 337, 167, 365, 384, 384, 125, 144, 227,
|
||
293, 294, 384, 167, 144, 121, 167, 384, 384, 105,
|
||
167, 384, 164, 384, 384, 164, 164, 256, 334, 66,
|
||
369, 370, 164, 164, 293, 124, 126, 125, 144, 167,
|
||
144, 347, 144, 384, 366, 384, 126, 294, 293, 125,
|
||
144, 164, 338, 335, 17, 67, 367, 164, 126, 293,
|
||
17, 46, 339, 338, 126, 167, 167
|
||
};
|
||
|
||
#define yyerrok (yyerrstatus = 0)
|
||
#define yyclearin (yychar = YYEMPTY)
|
||
#define YYEMPTY (-2)
|
||
#define YYEOF 0
|
||
|
||
#define YYACCEPT goto yyacceptlab
|
||
#define YYABORT goto yyabortlab
|
||
#define YYERROR goto yyerrorlab
|
||
|
||
|
||
/* Like YYERROR except do call yyerror. This remains here temporarily
|
||
to ease the transition to the new meaning of YYERROR, for GCC.
|
||
Once GCC version 2 has supplanted version 1, this can go. */
|
||
|
||
#define YYFAIL goto yyerrlab
|
||
|
||
#define YYRECOVERING() (!!yyerrstatus)
|
||
|
||
#define YYBACKUP(Token, Value) \
|
||
do \
|
||
if (yychar == YYEMPTY && yylen == 1) \
|
||
{ \
|
||
yychar = (Token); \
|
||
yylval = (Value); \
|
||
yytoken = YYTRANSLATE (yychar); \
|
||
YYPOPSTACK (1); \
|
||
goto yybackup; \
|
||
} \
|
||
else \
|
||
{ \
|
||
yyerror (pComp, YY_("syntax error: cannot back up")); \
|
||
YYERROR; \
|
||
} \
|
||
while (YYID (0))
|
||
|
||
|
||
#define YYTERROR 1
|
||
#define YYERRCODE 256
|
||
|
||
|
||
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
|
||
If N is 0, then set CURRENT to the empty location which ends
|
||
the previous symbol: RHS[0] (always defined). */
|
||
|
||
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
|
||
#ifndef YYLLOC_DEFAULT
|
||
# define YYLLOC_DEFAULT(Current, Rhs, N) \
|
||
do \
|
||
if (YYID (N)) \
|
||
{ \
|
||
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
|
||
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
|
||
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
|
||
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
|
||
} \
|
||
else \
|
||
{ \
|
||
(Current).first_line = (Current).last_line = \
|
||
YYRHSLOC (Rhs, 0).last_line; \
|
||
(Current).first_column = (Current).last_column = \
|
||
YYRHSLOC (Rhs, 0).last_column; \
|
||
} \
|
||
while (YYID (0))
|
||
#endif
|
||
|
||
|
||
/* YY_LOCATION_PRINT -- Print the location on the stream.
|
||
This macro was not mandated originally: define only if we know
|
||
we won't break user code: when these are the locations we know. */
|
||
|
||
#ifndef YY_LOCATION_PRINT
|
||
# if YYLTYPE_IS_TRIVIAL
|
||
# define YY_LOCATION_PRINT(File, Loc) \
|
||
fprintf (File, "%d.%d-%d.%d", \
|
||
(Loc).first_line, (Loc).first_column, \
|
||
(Loc).last_line, (Loc).last_column)
|
||
# else
|
||
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
|
||
# endif
|
||
#endif
|
||
|
||
|
||
/* YYLEX -- calling `yylex' with the right arguments. */
|
||
|
||
#ifdef YYLEX_PARAM
|
||
# define YYLEX yylex (&yylval, YYLEX_PARAM)
|
||
#else
|
||
# define YYLEX yylex (&yylval, pComp)
|
||
#endif
|
||
|
||
/* Enable debugging if requested. */
|
||
#if YYDEBUG
|
||
|
||
# ifndef YYFPRINTF
|
||
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define YYFPRINTF fprintf
|
||
# endif
|
||
|
||
# define YYDPRINTF(Args) \
|
||
do { \
|
||
if (yydebug) \
|
||
YYFPRINTF Args; \
|
||
} while (YYID (0))
|
||
|
||
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
|
||
do { \
|
||
if (yydebug) \
|
||
{ \
|
||
YYFPRINTF (stderr, "%s ", Title); \
|
||
yy_symbol_print (stderr, \
|
||
Type, Value, pComp); \
|
||
YYFPRINTF (stderr, "\n"); \
|
||
} \
|
||
} while (YYID (0))
|
||
|
||
|
||
/*--------------------------------.
|
||
| Print this symbol on YYOUTPUT. |
|
||
`--------------------------------*/
|
||
|
||
/*ARGSUSED*/
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
static void
|
||
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, HB_COMP_PTR pComp)
|
||
#else
|
||
static void
|
||
yy_symbol_value_print (yyoutput, yytype, yyvaluep, pComp)
|
||
FILE *yyoutput;
|
||
int yytype;
|
||
YYSTYPE const * const yyvaluep;
|
||
HB_COMP_PTR pComp;
|
||
#endif
|
||
{
|
||
if (!yyvaluep)
|
||
return;
|
||
YYUSE (pComp);
|
||
# ifdef YYPRINT
|
||
if (yytype < YYNTOKENS)
|
||
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
|
||
# else
|
||
YYUSE (yyoutput);
|
||
# endif
|
||
switch (yytype)
|
||
{
|
||
default:
|
||
break;
|
||
}
|
||
}
|
||
|
||
|
||
/*--------------------------------.
|
||
| Print this symbol on YYOUTPUT. |
|
||
`--------------------------------*/
|
||
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
static void
|
||
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, HB_COMP_PTR pComp)
|
||
#else
|
||
static void
|
||
yy_symbol_print (yyoutput, yytype, yyvaluep, pComp)
|
||
FILE *yyoutput;
|
||
int yytype;
|
||
YYSTYPE const * const yyvaluep;
|
||
HB_COMP_PTR pComp;
|
||
#endif
|
||
{
|
||
if (yytype < YYNTOKENS)
|
||
YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
|
||
else
|
||
YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
|
||
|
||
yy_symbol_value_print (yyoutput, yytype, yyvaluep, pComp);
|
||
YYFPRINTF (yyoutput, ")");
|
||
}
|
||
|
||
/*------------------------------------------------------------------.
|
||
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
|
||
| TOP (included). |
|
||
`------------------------------------------------------------------*/
|
||
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
static void
|
||
yy_stack_print (yytype_int16 *bottom, yytype_int16 *top)
|
||
#else
|
||
static void
|
||
yy_stack_print (bottom, top)
|
||
yytype_int16 *bottom;
|
||
yytype_int16 *top;
|
||
#endif
|
||
{
|
||
YYFPRINTF (stderr, "Stack now");
|
||
for (; bottom <= top; ++bottom)
|
||
YYFPRINTF (stderr, " %d", *bottom);
|
||
YYFPRINTF (stderr, "\n");
|
||
}
|
||
|
||
# define YY_STACK_PRINT(Bottom, Top) \
|
||
do { \
|
||
if (yydebug) \
|
||
yy_stack_print ((Bottom), (Top)); \
|
||
} while (YYID (0))
|
||
|
||
|
||
/*------------------------------------------------.
|
||
| Report that the YYRULE is going to be reduced. |
|
||
`------------------------------------------------*/
|
||
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
static void
|
||
yy_reduce_print (YYSTYPE *yyvsp, int yyrule, HB_COMP_PTR pComp)
|
||
#else
|
||
static void
|
||
yy_reduce_print (yyvsp, yyrule, pComp)
|
||
YYSTYPE *yyvsp;
|
||
int yyrule;
|
||
HB_COMP_PTR pComp;
|
||
#endif
|
||
{
|
||
int yynrhs = yyr2[yyrule];
|
||
int yyi;
|
||
unsigned long int yylno = yyrline[yyrule];
|
||
YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
|
||
yyrule - 1, yylno);
|
||
/* The symbols being reduced. */
|
||
for (yyi = 0; yyi < yynrhs; yyi++)
|
||
{
|
||
fprintf (stderr, " $%d = ", yyi + 1);
|
||
yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
|
||
&(yyvsp[(yyi + 1) - (yynrhs)])
|
||
, pComp);
|
||
fprintf (stderr, "\n");
|
||
}
|
||
}
|
||
|
||
# define YY_REDUCE_PRINT(Rule) \
|
||
do { \
|
||
if (yydebug) \
|
||
yy_reduce_print (yyvsp, Rule, pComp); \
|
||
} while (YYID (0))
|
||
|
||
/* Nonzero means print parse trace. It is left uninitialized so that
|
||
multiple parsers can coexist. */
|
||
int yydebug;
|
||
#else /* !YYDEBUG */
|
||
# define YYDPRINTF(Args)
|
||
# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
|
||
# define YY_STACK_PRINT(Bottom, Top)
|
||
# define YY_REDUCE_PRINT(Rule)
|
||
#endif /* !YYDEBUG */
|
||
|
||
|
||
/* YYINITDEPTH -- initial size of the parser's stacks. */
|
||
#ifndef YYINITDEPTH
|
||
# define YYINITDEPTH 200
|
||
#endif
|
||
|
||
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
|
||
if the built-in stack extension method is used).
|
||
|
||
Do not make this value too large; the results are undefined if
|
||
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
|
||
evaluated with infinite-precision integer arithmetic. */
|
||
|
||
#ifndef YYMAXDEPTH
|
||
# define YYMAXDEPTH 10000
|
||
#endif
|
||
|
||
|
||
|
||
#if YYERROR_VERBOSE
|
||
|
||
# ifndef yystrlen
|
||
# if defined __GLIBC__ && defined _STRING_H
|
||
# define yystrlen strlen
|
||
# else
|
||
/* Return the length of YYSTR. */
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
static YYSIZE_T
|
||
yystrlen (const char *yystr)
|
||
#else
|
||
static YYSIZE_T
|
||
yystrlen (yystr)
|
||
const char *yystr;
|
||
#endif
|
||
{
|
||
YYSIZE_T yylen;
|
||
for (yylen = 0; yystr[yylen]; yylen++)
|
||
continue;
|
||
return yylen;
|
||
}
|
||
# endif
|
||
# endif
|
||
|
||
# ifndef yystpcpy
|
||
# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
|
||
# define yystpcpy stpcpy
|
||
# else
|
||
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
|
||
YYDEST. */
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
static char *
|
||
yystpcpy (char *yydest, const char *yysrc)
|
||
#else
|
||
static char *
|
||
yystpcpy (yydest, yysrc)
|
||
char *yydest;
|
||
const char *yysrc;
|
||
#endif
|
||
{
|
||
char *yyd = yydest;
|
||
const char *yys = yysrc;
|
||
|
||
while ((*yyd++ = *yys++) != '\0')
|
||
continue;
|
||
|
||
return yyd - 1;
|
||
}
|
||
# endif
|
||
# endif
|
||
|
||
# ifndef yytnamerr
|
||
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
|
||
quotes and backslashes, so that it's suitable for yyerror. The
|
||
heuristic is that double-quoting is unnecessary unless the string
|
||
contains an apostrophe, a comma, or backslash (other than
|
||
backslash-backslash). YYSTR is taken from yytname. If YYRES is
|
||
null, do not copy; instead, return the length of what the result
|
||
would have been. */
|
||
static YYSIZE_T
|
||
yytnamerr (char *yyres, const char *yystr)
|
||
{
|
||
if (*yystr == '"')
|
||
{
|
||
YYSIZE_T yyn = 0;
|
||
char const *yyp = yystr;
|
||
|
||
for (;;)
|
||
switch (*++yyp)
|
||
{
|
||
case '\'':
|
||
case ',':
|
||
goto do_not_strip_quotes;
|
||
|
||
case '\\':
|
||
if (*++yyp != '\\')
|
||
goto do_not_strip_quotes;
|
||
/* Fall through. */
|
||
default:
|
||
if (yyres)
|
||
yyres[yyn] = *yyp;
|
||
yyn++;
|
||
break;
|
||
|
||
case '"':
|
||
if (yyres)
|
||
yyres[yyn] = '\0';
|
||
return yyn;
|
||
}
|
||
do_not_strip_quotes: ;
|
||
}
|
||
|
||
if (! yyres)
|
||
return yystrlen (yystr);
|
||
|
||
return yystpcpy (yyres, yystr) - yyres;
|
||
}
|
||
# endif
|
||
|
||
/* Copy into YYRESULT an error message about the unexpected token
|
||
YYCHAR while in state YYSTATE. Return the number of bytes copied,
|
||
including the terminating null byte. If YYRESULT is null, do not
|
||
copy anything; just return the number of bytes that would be
|
||
copied. As a special case, return 0 if an ordinary "syntax error"
|
||
message will do. Return YYSIZE_MAXIMUM if overflow occurs during
|
||
size calculation. */
|
||
static YYSIZE_T
|
||
yysyntax_error (char *yyresult, int yystate, int yychar)
|
||
{
|
||
int yyn = yypact[yystate];
|
||
|
||
if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
|
||
return 0;
|
||
else
|
||
{
|
||
int yytype = YYTRANSLATE (yychar);
|
||
YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
|
||
YYSIZE_T yysize = yysize0;
|
||
YYSIZE_T yysize1;
|
||
int yysize_overflow = 0;
|
||
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
|
||
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
|
||
int yyx;
|
||
|
||
# if 0
|
||
/* This is so xgettext sees the translatable formats that are
|
||
constructed on the fly. */
|
||
YY_("syntax error, unexpected %s");
|
||
YY_("syntax error, unexpected %s, expecting %s");
|
||
YY_("syntax error, unexpected %s, expecting %s or %s");
|
||
YY_("syntax error, unexpected %s, expecting %s or %s or %s");
|
||
YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
|
||
# endif
|
||
char *yyfmt;
|
||
char const *yyf;
|
||
static char const yyunexpected[] = "syntax error, unexpected %s";
|
||
static char const yyexpecting[] = ", expecting %s";
|
||
static char const yyor[] = " or %s";
|
||
char yyformat[sizeof yyunexpected
|
||
+ sizeof yyexpecting - 1
|
||
+ ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
|
||
* (sizeof yyor - 1))];
|
||
char const *yyprefix = yyexpecting;
|
||
|
||
/* Start YYX at -YYN if negative to avoid negative indexes in
|
||
YYCHECK. */
|
||
int yyxbegin = yyn < 0 ? -yyn : 0;
|
||
|
||
/* Stay within bounds of both yycheck and yytname. */
|
||
int yychecklim = YYLAST - yyn + 1;
|
||
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
|
||
int yycount = 1;
|
||
|
||
yyarg[0] = yytname[yytype];
|
||
yyfmt = yystpcpy (yyformat, yyunexpected);
|
||
|
||
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
|
||
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
|
||
{
|
||
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
|
||
{
|
||
yycount = 1;
|
||
yysize = yysize0;
|
||
yyformat[sizeof yyunexpected - 1] = '\0';
|
||
break;
|
||
}
|
||
yyarg[yycount++] = yytname[yyx];
|
||
yysize1 = yysize + yytnamerr (0, yytname[yyx]);
|
||
yysize_overflow |= (yysize1 < yysize);
|
||
yysize = yysize1;
|
||
yyfmt = yystpcpy (yyfmt, yyprefix);
|
||
yyprefix = yyor;
|
||
}
|
||
|
||
yyf = YY_(yyformat);
|
||
yysize1 = yysize + yystrlen (yyf);
|
||
yysize_overflow |= (yysize1 < yysize);
|
||
yysize = yysize1;
|
||
|
||
if (yysize_overflow)
|
||
return YYSIZE_MAXIMUM;
|
||
|
||
if (yyresult)
|
||
{
|
||
/* Avoid sprintf, as that infringes on the user's name space.
|
||
Don't have undefined behavior even if the translation
|
||
produced a string with the wrong number of "%s"s. */
|
||
char *yyp = yyresult;
|
||
int yyi = 0;
|
||
while ((*yyp = *yyf) != '\0')
|
||
{
|
||
if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
|
||
{
|
||
yyp += yytnamerr (yyp, yyarg[yyi++]);
|
||
yyf += 2;
|
||
}
|
||
else
|
||
{
|
||
yyp++;
|
||
yyf++;
|
||
}
|
||
}
|
||
}
|
||
return yysize;
|
||
}
|
||
}
|
||
#endif /* YYERROR_VERBOSE */
|
||
|
||
|
||
/*-----------------------------------------------.
|
||
| Release the memory associated to this symbol. |
|
||
`-----------------------------------------------*/
|
||
|
||
/*ARGSUSED*/
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
static void
|
||
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, HB_COMP_PTR pComp)
|
||
#else
|
||
static void
|
||
yydestruct (yymsg, yytype, yyvaluep, pComp)
|
||
const char *yymsg;
|
||
int yytype;
|
||
YYSTYPE *yyvaluep;
|
||
HB_COMP_PTR pComp;
|
||
#endif
|
||
{
|
||
YYUSE (yyvaluep);
|
||
YYUSE (pComp);
|
||
|
||
if (!yymsg)
|
||
yymsg = "Deleting";
|
||
YYUSE (yymsg);
|
||
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
|
||
|
||
switch (yytype)
|
||
{
|
||
case 19: /* "LITERAL" */
|
||
#line 268 "harbour.y"
|
||
{ if( (yyvaluep->valChar).dealloc ) hb_xfree( (yyvaluep->valChar).string ); };
|
||
#line 4012 "harboury.c"
|
||
break;
|
||
case 96: /* "CBSTART" */
|
||
#line 267 "harbour.y"
|
||
{ if( (yyvaluep->asCodeblock).string ) hb_xfree( (yyvaluep->asCodeblock).string ); };
|
||
#line 4017 "harboury.c"
|
||
break;
|
||
|
||
default:
|
||
break;
|
||
}
|
||
}
|
||
|
||
|
||
/* Prevent warnings from -Wmissing-prototypes. */
|
||
|
||
#ifdef YYPARSE_PARAM
|
||
#if defined __STDC__ || defined __cplusplus
|
||
int yyparse (void *YYPARSE_PARAM);
|
||
#else
|
||
int yyparse ();
|
||
#endif
|
||
#else /* ! YYPARSE_PARAM */
|
||
#if defined __STDC__ || defined __cplusplus
|
||
int yyparse (HB_COMP_PTR pComp);
|
||
#else
|
||
int yyparse ();
|
||
#endif
|
||
#endif /* ! YYPARSE_PARAM */
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/*----------.
|
||
| yyparse. |
|
||
`----------*/
|
||
|
||
#ifdef YYPARSE_PARAM
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
int
|
||
yyparse (void *YYPARSE_PARAM)
|
||
#else
|
||
int
|
||
yyparse (YYPARSE_PARAM)
|
||
void *YYPARSE_PARAM;
|
||
#endif
|
||
#else /* ! YYPARSE_PARAM */
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
int
|
||
yyparse (HB_COMP_PTR pComp)
|
||
#else
|
||
int
|
||
yyparse (pComp)
|
||
HB_COMP_PTR pComp;
|
||
#endif
|
||
#endif
|
||
{
|
||
/* The look-ahead symbol. */
|
||
int yychar;
|
||
|
||
/* The semantic value of the look-ahead symbol. */
|
||
YYSTYPE yylval;
|
||
|
||
/* Number of syntax errors so far. */
|
||
int yynerrs;
|
||
|
||
int yystate;
|
||
int yyn;
|
||
int yyresult;
|
||
/* Number of tokens to shift before error messages enabled. */
|
||
int yyerrstatus;
|
||
/* Look-ahead token as an internal (translated) token number. */
|
||
int yytoken = 0;
|
||
#if YYERROR_VERBOSE
|
||
/* Buffer for error messages, and its allocated size. */
|
||
char yymsgbuf[128];
|
||
char *yymsg = yymsgbuf;
|
||
YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
|
||
#endif
|
||
|
||
/* Three stacks and their tools:
|
||
`yyss': related to states,
|
||
`yyvs': related to semantic values,
|
||
`yyls': related to locations.
|
||
|
||
Refer to the stacks thru separate pointers, to allow yyoverflow
|
||
to reallocate them elsewhere. */
|
||
|
||
/* The state stack. */
|
||
yytype_int16 yyssa[YYINITDEPTH];
|
||
yytype_int16 *yyss = yyssa;
|
||
yytype_int16 *yyssp;
|
||
|
||
/* The semantic value stack. */
|
||
YYSTYPE yyvsa[YYINITDEPTH];
|
||
YYSTYPE *yyvs = yyvsa;
|
||
YYSTYPE *yyvsp;
|
||
|
||
|
||
|
||
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
|
||
|
||
YYSIZE_T yystacksize = YYINITDEPTH;
|
||
|
||
/* The variables used to return semantic value and location from the
|
||
action routines. */
|
||
YYSTYPE yyval;
|
||
|
||
|
||
/* The number of symbols on the RHS of the reduced rule.
|
||
Keep to zero when no symbol should be popped. */
|
||
int yylen = 0;
|
||
|
||
YYDPRINTF ((stderr, "Starting parse\n"));
|
||
|
||
yystate = 0;
|
||
yyerrstatus = 0;
|
||
yynerrs = 0;
|
||
yychar = YYEMPTY; /* Cause a token to be read. */
|
||
|
||
/* Initialize stack pointers.
|
||
Waste one element of value and location stack
|
||
so that they stay on the same level as the state stack.
|
||
The wasted elements are never initialized. */
|
||
|
||
yyssp = yyss;
|
||
yyvsp = yyvs;
|
||
|
||
goto yysetstate;
|
||
|
||
/*------------------------------------------------------------.
|
||
| yynewstate -- Push a new state, which is found in yystate. |
|
||
`------------------------------------------------------------*/
|
||
yynewstate:
|
||
/* In all cases, when you get here, the value and location stacks
|
||
have just been pushed. So pushing a state here evens the stacks. */
|
||
yyssp++;
|
||
|
||
yysetstate:
|
||
*yyssp = yystate;
|
||
|
||
if (yyss + yystacksize - 1 <= yyssp)
|
||
{
|
||
/* Get the current used size of the three stacks, in elements. */
|
||
YYSIZE_T yysize = yyssp - yyss + 1;
|
||
|
||
#ifdef yyoverflow
|
||
{
|
||
/* Give user a chance to reallocate the stack. Use copies of
|
||
these so that the &'s don't force the real ones into
|
||
memory. */
|
||
YYSTYPE *yyvs1 = yyvs;
|
||
yytype_int16 *yyss1 = yyss;
|
||
|
||
|
||
/* Each stack pointer address is followed by the size of the
|
||
data in use in that stack, in bytes. This used to be a
|
||
conditional around just the two extra args, but that might
|
||
be undefined if yyoverflow is a macro. */
|
||
yyoverflow (YY_("memory exhausted"),
|
||
&yyss1, yysize * sizeof (*yyssp),
|
||
&yyvs1, yysize * sizeof (*yyvsp),
|
||
|
||
&yystacksize);
|
||
|
||
yyss = yyss1;
|
||
yyvs = yyvs1;
|
||
}
|
||
#else /* no yyoverflow */
|
||
# ifndef YYSTACK_RELOCATE
|
||
goto yyexhaustedlab;
|
||
# else
|
||
/* Extend the stack our own way. */
|
||
if (YYMAXDEPTH <= yystacksize)
|
||
goto yyexhaustedlab;
|
||
yystacksize *= 2;
|
||
if (YYMAXDEPTH < yystacksize)
|
||
yystacksize = YYMAXDEPTH;
|
||
|
||
{
|
||
yytype_int16 *yyss1 = yyss;
|
||
union yyalloc *yyptr =
|
||
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
|
||
if (! yyptr)
|
||
goto yyexhaustedlab;
|
||
YYSTACK_RELOCATE (yyss);
|
||
YYSTACK_RELOCATE (yyvs);
|
||
YYUSE (yyptr);
|
||
|
||
# undef YYSTACK_RELOCATE
|
||
if (yyss1 != yyssa)
|
||
YYSTACK_FREE (yyss1);
|
||
}
|
||
# endif
|
||
#endif /* no yyoverflow */
|
||
|
||
yyssp = yyss + yysize - 1;
|
||
yyvsp = yyvs + yysize - 1;
|
||
|
||
|
||
YYDPRINTF ((stderr, "Stack size increased to %lu\n",
|
||
(unsigned long int) yystacksize));
|
||
|
||
if (yyss + yystacksize - 1 <= yyssp)
|
||
YYABORT;
|
||
}
|
||
|
||
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
|
||
|
||
goto yybackup;
|
||
|
||
/*-----------.
|
||
| yybackup. |
|
||
`-----------*/
|
||
yybackup:
|
||
|
||
/* Do appropriate processing given the current state. Read a
|
||
look-ahead token if we need one and don't already have one. */
|
||
|
||
/* First try to decide what to do without reference to look-ahead token. */
|
||
yyn = yypact[yystate];
|
||
if (yyn == YYPACT_NINF)
|
||
goto yydefault;
|
||
|
||
/* Not known => get a look-ahead token if don't already have one. */
|
||
|
||
/* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */
|
||
if (yychar == YYEMPTY)
|
||
{
|
||
YYDPRINTF ((stderr, "Reading a token: "));
|
||
yychar = YYLEX;
|
||
}
|
||
|
||
if (yychar <= YYEOF)
|
||
{
|
||
yychar = yytoken = YYEOF;
|
||
YYDPRINTF ((stderr, "Now at end of input.\n"));
|
||
}
|
||
else
|
||
{
|
||
yytoken = YYTRANSLATE (yychar);
|
||
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
|
||
}
|
||
|
||
/* If the proper action on seeing token YYTOKEN is to reduce or to
|
||
detect an error, take that action. */
|
||
yyn += yytoken;
|
||
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
|
||
goto yydefault;
|
||
yyn = yytable[yyn];
|
||
if (yyn <= 0)
|
||
{
|
||
if (yyn == 0 || yyn == YYTABLE_NINF)
|
||
goto yyerrlab;
|
||
yyn = -yyn;
|
||
goto yyreduce;
|
||
}
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
/* Count tokens shifted since error; after three, turn off error
|
||
status. */
|
||
if (yyerrstatus)
|
||
yyerrstatus--;
|
||
|
||
/* Shift the look-ahead token. */
|
||
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
|
||
|
||
/* Discard the shifted token unless it is eof. */
|
||
if (yychar != YYEOF)
|
||
yychar = YYEMPTY;
|
||
|
||
yystate = yyn;
|
||
*++yyvsp = yylval;
|
||
|
||
goto yynewstate;
|
||
|
||
|
||
/*-----------------------------------------------------------.
|
||
| yydefault -- do the default action for the current state. |
|
||
`-----------------------------------------------------------*/
|
||
yydefault:
|
||
yyn = yydefact[yystate];
|
||
if (yyn == 0)
|
||
goto yyerrlab;
|
||
goto yyreduce;
|
||
|
||
|
||
/*-----------------------------.
|
||
| yyreduce -- Do a reduction. |
|
||
`-----------------------------*/
|
||
yyreduce:
|
||
/* yyn is the number of a rule to reduce with. */
|
||
yylen = yyr2[yyn];
|
||
|
||
/* If YYLEN is nonzero, implement the default value of the action:
|
||
`$$ = $1'.
|
||
|
||
Otherwise, the following line sets YYVAL to garbage.
|
||
This behavior is undocumented and Bison
|
||
users should not rely upon it. Assigning to YYVAL
|
||
unconditionally makes the parser a bit smaller, and it avoids a
|
||
GCC warning that YYVAL may be used uninitialized. */
|
||
yyval = yyvsp[1-yylen];
|
||
|
||
|
||
YY_REDUCE_PRINT (yyn);
|
||
switch (yyn)
|
||
{
|
||
case 9:
|
||
#line 281 "harbour.y"
|
||
{ yyclearin; yyerrok; ;}
|
||
break;
|
||
|
||
case 15:
|
||
#line 287 "harbour.y"
|
||
{ yyclearin; yyerrok; ;}
|
||
break;
|
||
|
||
case 16:
|
||
#line 291 "harbour.y"
|
||
{ HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(3) - (4)].valChar).string, (yyvsp[(3) - (4)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC );
|
||
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(2) - (4)].valLong).lNumber;
|
||
HB_COMP_PARAM->pLex->fEol = FALSE;
|
||
if( (yyvsp[(3) - (4)].valChar).dealloc ) { hb_xfree( (yyvsp[(3) - (4)].valChar).string ); (yyvsp[(3) - (4)].valChar).dealloc = FALSE; } ;}
|
||
break;
|
||
|
||
case 17:
|
||
#line 296 "harbour.y"
|
||
{ HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(5) - (6)].valChar).string, (yyvsp[(5) - (6)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC );
|
||
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(2) - (6)].valLong).lNumber;
|
||
HB_COMP_PARAM->pLex->fEol = FALSE;
|
||
if( (yyvsp[(3) - (6)].valChar).dealloc ) { hb_xfree( (yyvsp[(3) - (6)].valChar).string ); (yyvsp[(3) - (6)].valChar).dealloc = FALSE; }
|
||
if( (yyvsp[(5) - (6)].valChar).dealloc ) { hb_xfree( (yyvsp[(5) - (6)].valChar).string ); (yyvsp[(5) - (6)].valChar).dealloc = FALSE; } ;}
|
||
break;
|
||
|
||
case 18:
|
||
#line 303 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); ;}
|
||
break;
|
||
|
||
case 20:
|
||
#line 304 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); ;}
|
||
break;
|
||
|
||
case 22:
|
||
#line 305 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); HB_COMP_PARAM->iVarScope = VS_PARAMETER; ;}
|
||
break;
|
||
|
||
case 24:
|
||
#line 306 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); HB_COMP_PARAM->iVarScope = VS_PARAMETER;;}
|
||
break;
|
||
|
||
case 26:
|
||
#line 309 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_PUBLIC; ;}
|
||
break;
|
||
|
||
case 27:
|
||
#line 310 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_STATIC; ;}
|
||
break;
|
||
|
||
case 28:
|
||
#line 311 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_INIT; ;}
|
||
break;
|
||
|
||
case 29:
|
||
#line 312 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_EXIT; ;}
|
||
break;
|
||
|
||
case 30:
|
||
#line 315 "harbour.y"
|
||
{ (yyval.iNumber) = 0; ;}
|
||
break;
|
||
|
||
case 31:
|
||
#line 316 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = 0; ;}
|
||
break;
|
||
|
||
case 33:
|
||
#line 318 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = (yyvsp[(1) - (3)].iNumber); ;}
|
||
break;
|
||
|
||
case 34:
|
||
#line 321 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 36:
|
||
#line 325 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 38:
|
||
#line 329 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'N'; ;}
|
||
break;
|
||
|
||
case 39:
|
||
#line 330 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'C'; ;}
|
||
break;
|
||
|
||
case 40:
|
||
#line 331 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'D'; ;}
|
||
break;
|
||
|
||
case 41:
|
||
#line 332 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'L'; ;}
|
||
break;
|
||
|
||
case 42:
|
||
#line 333 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'B'; ;}
|
||
break;
|
||
|
||
case 43:
|
||
#line 334 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'O'; ;}
|
||
break;
|
||
|
||
case 44:
|
||
#line 335 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'S'; HB_COMP_PARAM->szFromClass = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 45:
|
||
#line 336 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 47:
|
||
#line 340 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'A'; ;}
|
||
break;
|
||
|
||
case 48:
|
||
#line 341 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'n'; ;}
|
||
break;
|
||
|
||
case 49:
|
||
#line 342 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'c'; ;}
|
||
break;
|
||
|
||
case 50:
|
||
#line 343 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'd'; ;}
|
||
break;
|
||
|
||
case 51:
|
||
#line 344 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'l'; ;}
|
||
break;
|
||
|
||
case 52:
|
||
#line 345 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'a'; ;}
|
||
break;
|
||
|
||
case 53:
|
||
#line 346 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'b'; ;}
|
||
break;
|
||
|
||
case 54:
|
||
#line 347 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'o'; ;}
|
||
break;
|
||
|
||
case 55:
|
||
#line 348 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 's'; HB_COMP_PARAM->szFromClass = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 56:
|
||
#line 351 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 57:
|
||
#line 352 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 59:
|
||
#line 361 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 60:
|
||
#line 362 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 61:
|
||
#line 363 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 62:
|
||
#line 364 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 63:
|
||
#line 365 "harbour.y"
|
||
{ if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) )
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 64:
|
||
#line 371 "harbour.y"
|
||
{ if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) )
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 65:
|
||
#line 377 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 66:
|
||
#line 378 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 67:
|
||
#line 379 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 68:
|
||
#line 380 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 69:
|
||
#line 381 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 70:
|
||
#line 382 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 71:
|
||
#line 383 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 72:
|
||
#line 384 "harbour.y"
|
||
{ hb_compGenBreak( HB_COMP_PARAM ); hb_compGenPCode2( HB_P_DOSHORT, 0, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 73:
|
||
#line 386 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 74:
|
||
#line 387 "harbour.y"
|
||
{
|
||
hb_compGenBreak( HB_COMP_PARAM ); HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compGenPCode2( HB_P_DOSHORT, 1, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 75:
|
||
#line 392 "harbour.y"
|
||
{ hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 76:
|
||
#line 393 "harbour.y"
|
||
{ hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 77:
|
||
#line 394 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL );
|
||
}
|
||
hb_compGenPCode1( HB_P_ENDPROC, HB_COMP_PARAM );
|
||
if( (HB_COMP_PARAM->functions.pLast->bFlags & FUN_PROCEDURE) == 0 )
|
||
{ /* return from a function without a return value */
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_NO_RETURN_VALUE, NULL, NULL );
|
||
}
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 78:
|
||
#line 406 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 79:
|
||
#line 408 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL );
|
||
}
|
||
/* TODO: check if return value agree with declared value */
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK )
|
||
/* extended clodeblock, use HB_P_ENDBLOCK to return value and stop execution */
|
||
hb_compGenPCode1( HB_P_ENDBLOCK, HB_COMP_PARAM );
|
||
else
|
||
hb_compGenPCode2( HB_P_RETVALUE, HB_P_ENDPROC, HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_PROCEDURE )
|
||
{ /* procedure returns a value */
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_PROC_RETURN_VALUE, NULL, NULL );
|
||
}
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 80:
|
||
#line 428 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PUBLIC; ;}
|
||
break;
|
||
|
||
case 81:
|
||
#line 430 "harbour.y"
|
||
{ hb_compRTVariableGen( HB_COMP_PARAM, "__MVPUBLIC" );
|
||
HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 83:
|
||
#line 434 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PRIVATE; ;}
|
||
break;
|
||
|
||
case 84:
|
||
#line 436 "harbour.y"
|
||
{ hb_compRTVariableGen( HB_COMP_PARAM, "__MVPRIVATE" );
|
||
HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 91:
|
||
#line 445 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->szAnnounce == NULL )
|
||
{
|
||
/* check for reserved name
|
||
* NOTE: Clipper doesn't check for it
|
||
*/
|
||
char * szFunction = hb_compReservedName( (yyvsp[(2) - (2)].string) );
|
||
if( szFunction )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FUNC_RESERVED, szFunction, (yyvsp[(2) - (2)].string) );
|
||
HB_COMP_PARAM->szAnnounce = (yyvsp[(2) - (2)].string);
|
||
}
|
||
else
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_DUPL_ANNOUNCE, (yyvsp[(2) - (2)].string), NULL );
|
||
;}
|
||
break;
|
||
|
||
case 93:
|
||
#line 459 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 94:
|
||
#line 462 "harbour.y"
|
||
{
|
||
if( (yyvsp[(1) - (1)].valChar).dealloc )
|
||
{
|
||
(yyvsp[(1) - (1)].valChar).string = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(1) - (1)].valChar).string, HB_IDENT_FREE );
|
||
(yyvsp[(1) - (1)].valChar).dealloc = FALSE;
|
||
}
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].valChar).string );
|
||
;}
|
||
break;
|
||
|
||
case 95:
|
||
#line 470 "harbour.y"
|
||
{
|
||
{
|
||
char szFileName[ _POSIX_PATH_MAX + 1 ];
|
||
hb_strncat( hb_strncpy( szFileName, (yyvsp[(1) - (3)].valChar).string, sizeof( szFileName ) - 1 ), (yyvsp[(3) - (3)].valChar).string, sizeof( szFileName ) - 1 );
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, hb_compIdentifierNew( HB_COMP_PARAM, szFileName, HB_IDENT_COPY ) );
|
||
if( (yyvsp[(1) - (3)].valChar).dealloc )
|
||
{
|
||
hb_xfree( (yyvsp[(1) - (3)].valChar).string );
|
||
(yyvsp[(1) - (3)].valChar).dealloc = FALSE;
|
||
}
|
||
if( (yyvsp[(3) - (3)].valChar).dealloc )
|
||
{
|
||
hb_xfree( (yyvsp[(3) - (3)].valChar).string );
|
||
(yyvsp[(3) - (3)].valChar).dealloc = FALSE;
|
||
}
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 96:
|
||
#line 489 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 98:
|
||
#line 492 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 99:
|
||
#line 493 "harbour.y"
|
||
{ (yyval.lNumber) = 1; ;}
|
||
break;
|
||
|
||
case 100:
|
||
#line 494 "harbour.y"
|
||
{ (yyval.lNumber) = 1; ;}
|
||
break;
|
||
|
||
case 101:
|
||
#line 495 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 102:
|
||
#line 496 "harbour.y"
|
||
{ (yyval.lNumber) = 0; hb_compCheckUnclosedStru( HB_COMP_PARAM, HB_COMP_PARAM->functions.pLast ); ;}
|
||
break;
|
||
|
||
case 103:
|
||
#line 497 "harbour.y"
|
||
{ if( HB_COMP_PARAM->ilastLineErr && HB_COMP_PARAM->ilastLineErr == HB_COMP_PARAM->currLine )
|
||
{
|
||
yyclearin;
|
||
}
|
||
else
|
||
{
|
||
yyerrok;
|
||
HB_COMP_PARAM->ilastLineErr = HB_COMP_PARAM->currLine;
|
||
}
|
||
(yyval.lNumber) = 0;
|
||
;}
|
||
break;
|
||
|
||
case 113:
|
||
#line 523 "harbour.y"
|
||
{ (yyval.lNumber) += (yyvsp[(2) - (2)].lNumber); ;}
|
||
break;
|
||
|
||
case 114:
|
||
#line 526 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 116:
|
||
#line 530 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), 0 ); ;}
|
||
break;
|
||
|
||
case 117:
|
||
#line 531 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), 0 ); ;}
|
||
break;
|
||
|
||
case 118:
|
||
#line 534 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), HB_FS_DEFERRED ); ;}
|
||
break;
|
||
|
||
case 119:
|
||
#line 535 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), HB_FS_DEFERRED ); ;}
|
||
break;
|
||
|
||
case 121:
|
||
#line 539 "harbour.y"
|
||
{ (yyval.string) = "STEP"; ;}
|
||
break;
|
||
|
||
case 122:
|
||
#line 540 "harbour.y"
|
||
{ (yyval.string) = "TO"; ;}
|
||
break;
|
||
|
||
case 123:
|
||
#line 541 "harbour.y"
|
||
{ (yyval.string) = "LOOP"; ;}
|
||
break;
|
||
|
||
case 124:
|
||
#line 542 "harbour.y"
|
||
{ (yyval.string) = "EXIT"; ;}
|
||
break;
|
||
|
||
case 125:
|
||
#line 543 "harbour.y"
|
||
{ (yyval.string) = "IN"; ;}
|
||
break;
|
||
|
||
case 126:
|
||
#line 544 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 127:
|
||
#line 545 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 128:
|
||
#line 546 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 129:
|
||
#line 547 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 130:
|
||
#line 548 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 131:
|
||
#line 549 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 132:
|
||
#line 550 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 133:
|
||
#line 551 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 134:
|
||
#line 552 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 135:
|
||
#line 553 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 136:
|
||
#line 554 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 137:
|
||
#line 555 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 138:
|
||
#line 556 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 139:
|
||
#line 561 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewDouble( (yyvsp[(1) - (1)].valDouble).dNumber, (yyvsp[(1) - (1)].valDouble).bWidth, (yyvsp[(1) - (1)].valDouble).bDec, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 140:
|
||
#line 562 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 141:
|
||
#line 565 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewDate( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 142:
|
||
#line 568 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (2)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 143:
|
||
#line 569 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, hb_compExprNewDouble( (yyvsp[(1) - (2)].valDouble).dNumber, (yyvsp[(1) - (2)].valDouble).bWidth, (yyvsp[(1) - (2)].valDouble).bDec, HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 144:
|
||
#line 574 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNil( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 146:
|
||
#line 582 "harbour.y"
|
||
{
|
||
(yyval.asExpr) = hb_compExprNewString( (yyvsp[(1) - (1)].valChar).string, (yyvsp[(1) - (1)].valChar).length, (yyvsp[(1) - (1)].valChar).dealloc, HB_COMP_PARAM );
|
||
(yyvsp[(1) - (1)].valChar).dealloc = FALSE;
|
||
;}
|
||
break;
|
||
|
||
case 149:
|
||
#line 598 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLogical( TRUE, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 150:
|
||
#line 599 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLogical( FALSE, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 152:
|
||
#line 607 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewSelf( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 154:
|
||
#line 621 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArray( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 156:
|
||
#line 629 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 158:
|
||
#line 635 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewHash( NULL, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 159:
|
||
#line 636 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewHash( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 161:
|
||
#line 642 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 162:
|
||
#line 643 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprAddListExpr( (yyvsp[(1) - (5)].asExpr), (yyvsp[(3) - (5)].asExpr) ), (yyvsp[(5) - (5)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 163:
|
||
#line 648 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 164:
|
||
#line 651 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAlias( (yyvsp[(1) - (2)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 165:
|
||
#line 656 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, '&', (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 166:
|
||
#line 657 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, 0, (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 168:
|
||
#line 665 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( (yyvsp[(2) - (2)].asExpr), 0, NULL, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 170:
|
||
#line 675 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAlias( "FIELD", HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 171:
|
||
#line 676 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(3) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 172:
|
||
#line 681 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 173:
|
||
#line 682 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 174:
|
||
#line 683 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 175:
|
||
#line 684 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 176:
|
||
#line 685 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 177:
|
||
#line 686 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 178:
|
||
#line 687 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 179:
|
||
#line 688 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 180:
|
||
#line 689 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 181:
|
||
#line 690 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 182:
|
||
#line 691 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 183:
|
||
#line 692 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 184:
|
||
#line 693 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 185:
|
||
#line 694 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 186:
|
||
#line 697 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 189:
|
||
#line 702 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 190:
|
||
#line 703 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 191:
|
||
#line 704 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 192:
|
||
#line 705 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 193:
|
||
#line 706 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 194:
|
||
#line 707 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 195:
|
||
#line 708 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 196:
|
||
#line 709 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 197:
|
||
#line 710 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 198:
|
||
#line 711 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 199:
|
||
#line 712 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 200:
|
||
#line 713 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 201:
|
||
#line 714 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 202:
|
||
#line 715 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 203:
|
||
#line 716 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 204:
|
||
#line 717 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 205:
|
||
#line 718 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 206:
|
||
#line 719 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 207:
|
||
#line 720 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 208:
|
||
#line 721 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 209:
|
||
#line 730 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 210:
|
||
#line 731 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 211:
|
||
#line 732 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 212:
|
||
#line 733 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 213:
|
||
#line 734 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 214:
|
||
#line 735 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 215:
|
||
#line 740 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 216:
|
||
#line 741 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 217:
|
||
#line 742 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 218:
|
||
#line 743 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 219:
|
||
#line 744 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 220:
|
||
#line 745 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 221:
|
||
#line 746 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 222:
|
||
#line 747 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 223:
|
||
#line 748 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 224:
|
||
#line 749 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 225:
|
||
#line 750 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 226:
|
||
#line 751 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 227:
|
||
#line 752 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 228:
|
||
#line 753 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 229:
|
||
#line 754 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 230:
|
||
#line 755 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 231:
|
||
#line 756 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 232:
|
||
#line 757 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 234:
|
||
#line 763 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 235:
|
||
#line 763 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( (yyvsp[(1) - (5)].string), HB_COMP_PARAM ), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 237:
|
||
#line 767 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 238:
|
||
#line 767 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 239:
|
||
#line 768 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 240:
|
||
#line 768 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 241:
|
||
#line 772 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 243:
|
||
#line 778 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 244:
|
||
#line 779 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 247:
|
||
#line 786 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 248:
|
||
#line 787 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 249:
|
||
#line 788 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 250:
|
||
#line 789 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 251:
|
||
#line 790 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr)->value.asList.reference = TRUE; ;}
|
||
break;
|
||
|
||
case 252:
|
||
#line 793 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 254:
|
||
#line 799 "harbour.y"
|
||
{ (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;}
|
||
break;
|
||
|
||
case 255:
|
||
#line 800 "harbour.y"
|
||
{ (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;}
|
||
break;
|
||
|
||
case 256:
|
||
#line 801 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt == 0 )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_WITHOBJECT, NULL, NULL );
|
||
(yyval.asExpr) = ((yyvsp[(2) - (2)].asMessage).bMacro ? hb_compExprNewSend( NULL, NULL, (yyvsp[(2) - (2)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( NULL, (yyvsp[(2) - (2)].asMessage).value.string, NULL, HB_COMP_PARAM ));
|
||
;}
|
||
break;
|
||
|
||
case 257:
|
||
#line 807 "harbour.y"
|
||
{ (yyval.asMessage).value.string = (yyvsp[(1) - (1)].string); (yyval.asMessage).bMacro=FALSE; ;}
|
||
break;
|
||
|
||
case 258:
|
||
#line 808 "harbour.y"
|
||
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
|
||
break;
|
||
|
||
case 259:
|
||
#line 809 "harbour.y"
|
||
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
|
||
break;
|
||
|
||
case 260:
|
||
#line 812 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(3) - (4)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 262:
|
||
#line 820 "harbour.y"
|
||
{(yyval.bTrue)=HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 263:
|
||
#line 820 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMethodCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr) ); HB_COMP_PARAM->iPassByRef=(yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 272:
|
||
#line 839 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 273:
|
||
#line 839 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 283:
|
||
#line 849 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 284:
|
||
#line 849 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 287:
|
||
#line 852 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 288:
|
||
#line 852 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 290:
|
||
#line 854 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 291:
|
||
#line 854 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 303:
|
||
#line 868 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 304:
|
||
#line 868 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 305:
|
||
#line 869 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 306:
|
||
#line 869 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 308:
|
||
#line 873 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 310:
|
||
#line 877 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewEmpty( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 312:
|
||
#line 881 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 318:
|
||
#line 887 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprListStrip( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 340:
|
||
#line 920 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPostInc( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 341:
|
||
#line 921 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPostDec( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 342:
|
||
#line 924 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 343:
|
||
#line 927 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 344:
|
||
#line 928 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 345:
|
||
#line 931 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 346:
|
||
#line 932 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 347:
|
||
#line 933 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 348:
|
||
#line 936 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 349:
|
||
#line 937 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 350:
|
||
#line 938 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 351:
|
||
#line 939 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 352:
|
||
#line 940 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 353:
|
||
#line 941 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 354:
|
||
#line 942 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 355:
|
||
#line 943 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 356:
|
||
#line 944 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 357:
|
||
#line 945 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 358:
|
||
#line 946 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 359:
|
||
#line 947 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 360:
|
||
#line 948 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 361:
|
||
#line 949 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 362:
|
||
#line 950 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 363:
|
||
#line 951 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 364:
|
||
#line 952 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 365:
|
||
#line 953 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 366:
|
||
#line 954 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 367:
|
||
#line 955 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 368:
|
||
#line 956 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 369:
|
||
#line 959 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 370:
|
||
#line 962 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 371:
|
||
#line 965 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 372:
|
||
#line 968 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 373:
|
||
#line 971 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 374:
|
||
#line 974 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 375:
|
||
#line 977 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewExpEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 382:
|
||
#line 988 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 383:
|
||
#line 989 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 384:
|
||
#line 990 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMult( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 385:
|
||
#line 991 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDiv( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 386:
|
||
#line 992 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMod( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 387:
|
||
#line 993 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPower( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 388:
|
||
#line 996 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewAnd( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 389:
|
||
#line 997 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewOr( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 390:
|
||
#line 1000 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEQ( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 391:
|
||
#line 1001 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 392:
|
||
#line 1002 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 393:
|
||
#line 1003 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 394:
|
||
#line 1004 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 395:
|
||
#line 1005 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 396:
|
||
#line 1006 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 397:
|
||
#line 1007 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 398:
|
||
#line 1008 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEqual( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 400:
|
||
#line 1017 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(0) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 401:
|
||
#line 1018 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 402:
|
||
#line 1019 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 403:
|
||
#line 1022 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 404:
|
||
#line 1023 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 405:
|
||
#line 1026 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewCodeBlock( (yyvsp[(1) - (1)].asCodeblock).string, (yyvsp[(1) - (1)].asCodeblock).length, (yyvsp[(1) - (1)].asCodeblock).flags, HB_COMP_PARAM ); (yyvsp[(1) - (1)].asCodeblock).string = NULL; ;}
|
||
break;
|
||
|
||
case 406:
|
||
#line 1027 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (4)].asExpr); ;}
|
||
break;
|
||
|
||
case 407:
|
||
#line 1032 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 408:
|
||
#line 1033 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
|
||
break;
|
||
|
||
case 409:
|
||
#line 1034 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;}
|
||
break;
|
||
|
||
case 410:
|
||
#line 1035 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
|
||
break;
|
||
|
||
case 411:
|
||
#line 1038 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (2)].asExpr), (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 412:
|
||
#line 1039 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (4)].asExpr), (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 413:
|
||
#line 1042 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(0) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 414:
|
||
#line 1043 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(0) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 416:
|
||
#line 1048 "harbour.y"
|
||
{ /* 3 */
|
||
HB_CBVAR_PTR pVar;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compCodeBlockStart( HB_COMP_PARAM, TRUE );
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_EXTBLOCK;
|
||
HB_COMP_PARAM->functions.pLast->fVParams =
|
||
( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags & HB_BLOCK_VPARAMS ) != 0;
|
||
|
||
(yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_EXT;
|
||
if( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string )
|
||
{
|
||
hb_xfree( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string );
|
||
(yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string = NULL;
|
||
(yyvsp[(1) - (2)].asExpr)->ulLength = 0;
|
||
}
|
||
|
||
HB_COMP_PARAM->iVarScope = VS_PARAMETER;
|
||
pVar = (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.pLocals;
|
||
while( pVar )
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, pVar->bType );
|
||
pVar =pVar->pNext;
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 417:
|
||
#line 1073 "harbour.y"
|
||
{ /* 6 */
|
||
hb_compCodeBlockEnd( HB_COMP_PARAM );
|
||
(yyval.asExpr) = hb_compExprSetCodeblockBody( (yyvsp[(1) - (5)].asExpr),
|
||
HB_COMP_PARAM->functions.pLast->pCode + ( ULONG ) (yyvsp[(3) - (5)].lNumber),
|
||
HB_COMP_PARAM->functions.pLast->lPCodePos - ( ULONG ) (yyvsp[(3) - (5)].lNumber) );
|
||
HB_COMP_PARAM->functions.pLast->lPCodePos = ( ULONG ) (yyvsp[(3) - (5)].lNumber);
|
||
HB_COMP_PARAM->lastLinePos = 0;
|
||
;}
|
||
break;
|
||
|
||
case 418:
|
||
#line 1083 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 419:
|
||
#line 1084 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 420:
|
||
#line 1086 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (3)].asExpr) ;}
|
||
break;
|
||
|
||
case 422:
|
||
#line 1099 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewIIF( hb_compExprAddListExpr( hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(3) - (8)].asExpr), HB_COMP_PARAM ), (yyvsp[(5) - (8)].asExpr) ), (yyvsp[(7) - (8)].asExpr) ) ); ;}
|
||
break;
|
||
|
||
case 424:
|
||
#line 1105 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 425:
|
||
#line 1106 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 426:
|
||
#line 1107 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 427:
|
||
#line 1108 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 428:
|
||
#line 1109 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_TH_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 429:
|
||
#line 1110 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 430:
|
||
#line 1111 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_USES_LOCAL_PARAMS )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_PARAMETERS_NOT_ALLOWED, NULL, NULL );
|
||
else
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->wParamNum = 0;
|
||
HB_COMP_PARAM->iVarScope = ( VS_PRIVATE | VS_PARAMETER );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 431:
|
||
#line 1118 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 432:
|
||
#line 1121 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 433:
|
||
#line 1122 "harbour.y"
|
||
{ (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 434:
|
||
#line 1125 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 435:
|
||
#line 1126 "harbour.y"
|
||
{ (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 437:
|
||
#line 1136 "harbour.y"
|
||
{ hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ), FALSE ); ;}
|
||
break;
|
||
|
||
case 438:
|
||
#line 1138 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (4)].asExpr), HB_COMP_PARAM ), TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 439:
|
||
#line 1142 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 440:
|
||
#line 1148 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 441:
|
||
#line 1149 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->iVarScope & VS_STATIC )
|
||
{
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (3)].string) );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (3)].string), NULL, HB_COMP_PARAM ), FALSE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_LOCAL &&
|
||
( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 442:
|
||
#line 1165 "harbour.y"
|
||
{ (yyval.iNumber) = HB_COMP_PARAM->iVarScope;
|
||
hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType );
|
||
;}
|
||
break;
|
||
|
||
case 443:
|
||
#line 1168 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 444:
|
||
#line 1169 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
|
||
HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (6)].iNumber);
|
||
if( HB_COMP_PARAM->iVarScope & VS_STATIC )
|
||
{
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssignStatic( hb_compExprNewVar( (yyvsp[(1) - (6)].string), HB_COMP_PARAM ), (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (6)].string) );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (6)].string), NULL, HB_COMP_PARAM ), TRUE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_LOCAL &&
|
||
( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ) );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssign( hb_compExprNewVar( (yyvsp[(1) - (6)].string), HB_COMP_PARAM ), (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (6)].iNumber);
|
||
;}
|
||
break;
|
||
|
||
case 445:
|
||
#line 1196 "harbour.y"
|
||
{ hb_compVariableDim( (yyvsp[(1) - (3)].string), (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 447:
|
||
#line 1205 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 448:
|
||
#line 1206 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 449:
|
||
#line 1207 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 450:
|
||
#line 1210 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_FIELD; ;}
|
||
break;
|
||
|
||
case 451:
|
||
#line 1212 "harbour.y"
|
||
{
|
||
if( (yyvsp[(4) - (5)].string) ) hb_compFieldSetAlias( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), (yyvsp[(3) - (5)].iNumber) );
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
;}
|
||
break;
|
||
|
||
case 452:
|
||
#line 1218 "harbour.y"
|
||
{ (yyval.iNumber)=hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 453:
|
||
#line 1219 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 454:
|
||
#line 1222 "harbour.y"
|
||
{ (yyval.string) = NULL; ;}
|
||
break;
|
||
|
||
case 455:
|
||
#line 1223 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 456:
|
||
#line 1226 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_MEMVAR; ;}
|
||
break;
|
||
|
||
case 457:
|
||
#line 1226 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 458:
|
||
#line 1229 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 459:
|
||
#line 1230 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 460:
|
||
#line 1233 "harbour.y"
|
||
{ hb_compDeclaredAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->szDeclaredFun = (yyvsp[(2) - (3)].string); ;}
|
||
break;
|
||
|
||
case 461:
|
||
#line 1234 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastDeclared )
|
||
{
|
||
HB_COMP_PARAM->pLastDeclared->cType = HB_COMP_PARAM->cVarType;
|
||
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastDeclared->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass );
|
||
if( ! HB_COMP_PARAM->pLastDeclared->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastDeclared->szName );
|
||
HB_COMP_PARAM->pLastDeclared->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' );
|
||
}
|
||
|
||
/* Resetting */
|
||
HB_COMP_PARAM->szFromClass = NULL;
|
||
}
|
||
}
|
||
HB_COMP_PARAM->szDeclaredFun = NULL;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
;}
|
||
break;
|
||
|
||
case 462:
|
||
#line 1256 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].string), NULL ); ;}
|
||
break;
|
||
|
||
case 463:
|
||
#line 1256 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 464:
|
||
#line 1257 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), NULL ); HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 465:
|
||
#line 1258 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (4)].string), (yyvsp[(3) - (4)].string) ); HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 466:
|
||
#line 1259 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 467:
|
||
#line 1260 "harbour.y"
|
||
{ HB_COMP_PARAM->cDataListType = HB_COMP_PARAM->cVarType; ;}
|
||
break;
|
||
|
||
case 468:
|
||
#line 1260 "harbour.y"
|
||
{ HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 475:
|
||
#line 1273 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (2)].string) ); ;}
|
||
break;
|
||
|
||
case 476:
|
||
#line 1274 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastMethod )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType;
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass );
|
||
if( ! HB_COMP_PARAM->pLastMethod->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastMethod->szName );
|
||
HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' );
|
||
}
|
||
|
||
HB_COMP_PARAM->szFromClass = NULL;
|
||
}
|
||
}
|
||
HB_COMP_PARAM->pLastMethod = NULL;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
;}
|
||
break;
|
||
|
||
case 477:
|
||
#line 1295 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (1)].string) ); ;}
|
||
break;
|
||
|
||
case 478:
|
||
#line 1296 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastMethod )
|
||
{
|
||
PCOMCLASS pClass;
|
||
char szSetData[ HB_SYMBOL_NAME_LEN + 1 ];
|
||
int iLen;
|
||
|
||
/* List Type overrides if exists. */
|
||
if( HB_COMP_PARAM->cDataListType ) HB_COMP_PARAM->cVarType = HB_COMP_PARAM->cDataListType;
|
||
|
||
HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType;
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass );
|
||
HB_COMP_PARAM->pLastMethod->pClass = pClass;
|
||
if( ! HB_COMP_PARAM->pLastMethod->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastMethod->szName );
|
||
HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' :'o' );
|
||
}
|
||
}
|
||
else
|
||
pClass = NULL;
|
||
|
||
iLen = strlen( (yyvsp[(1) - (3)].string) );
|
||
if( iLen >= HB_SYMBOL_NAME_LEN )
|
||
iLen = HB_SYMBOL_NAME_LEN - 1;
|
||
szSetData[ 0 ] = '_';
|
||
memcpy( szSetData + 1, (yyvsp[(1) - (3)].string), iLen );
|
||
szSetData[ iLen + 1 ] = '\0';
|
||
|
||
HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass,
|
||
hb_compIdentifierNew( HB_COMP_PARAM, szSetData, HB_IDENT_COPY ) );
|
||
HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType;
|
||
HB_COMP_PARAM->pLastMethod->iParamCount = 1;
|
||
|
||
HB_COMP_PARAM->pLastMethod->cParamTypes = ( BYTE * ) hb_xgrab( 1 );
|
||
HB_COMP_PARAM->pLastMethod->pParamClasses = ( PCOMCLASS * ) hb_xgrab( sizeof( COMCLASS ) );
|
||
|
||
HB_COMP_PARAM->pLastMethod->cParamTypes[0] = HB_COMP_PARAM->cVarType;
|
||
HB_COMP_PARAM->pLastMethod->pParamClasses[0] = pClass;
|
||
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->pClass = pClass;
|
||
HB_COMP_PARAM->szFromClass = NULL;
|
||
}
|
||
}
|
||
|
||
HB_COMP_PARAM->pLastMethod = NULL;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
;}
|
||
break;
|
||
|
||
case 485:
|
||
#line 1360 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (1)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 486:
|
||
#line 1363 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType ) ); ;}
|
||
break;
|
||
|
||
case 487:
|
||
#line 1364 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 488:
|
||
#line 1365 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (5)].string), ( BYTE ) 'F' ); ;}
|
||
break;
|
||
|
||
case 489:
|
||
#line 1366 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType ) ); ;}
|
||
break;
|
||
|
||
case 490:
|
||
#line 1367 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 491:
|
||
#line 1368 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (7)].string), ( BYTE ) 'F' ); ;}
|
||
break;
|
||
|
||
case 492:
|
||
#line 1371 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ) ); ;}
|
||
break;
|
||
|
||
case 493:
|
||
#line 1372 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 494:
|
||
#line 1373 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (6)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 495:
|
||
#line 1374 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ) ); ;}
|
||
break;
|
||
|
||
case 496:
|
||
#line 1375 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (6)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 497:
|
||
#line 1376 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (8)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 506:
|
||
#line 1389 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (2)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 507:
|
||
#line 1390 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 508:
|
||
#line 1391 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 509:
|
||
#line 1392 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (4)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 510:
|
||
#line 1396 "harbour.y"
|
||
{ ++HB_COMP_PARAM->functions.pLast->wIfCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 511:
|
||
#line 1398 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (4)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 512:
|
||
#line 1400 "harbour.y"
|
||
{ (yyval.iNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 513:
|
||
#line 1403 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 515:
|
||
#line 1407 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 516:
|
||
#line 1409 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 517:
|
||
#line 1413 "harbour.y"
|
||
{ (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 518:
|
||
#line 1417 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 519:
|
||
#line 1419 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 520:
|
||
#line 1423 "harbour.y"
|
||
{ (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(6) - (7)].iNumber), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 521:
|
||
#line 1429 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->functions.pLast->wIfCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wIfCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 524:
|
||
#line 1442 "harbour.y"
|
||
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 527:
|
||
#line 1454 "harbour.y"
|
||
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 528:
|
||
#line 1458 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->wCaseCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wCaseCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 531:
|
||
#line 1468 "harbour.y"
|
||
{ ++HB_COMP_PARAM->functions.pLast->wCaseCounter; hb_compLinePushIfDebugger( HB_COMP_PARAM );;}
|
||
break;
|
||
|
||
case 534:
|
||
#line 1472 "harbour.y"
|
||
{
|
||
if( (yyvsp[(2) - (2)].lNumber) > 0 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 535:
|
||
#line 1480 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 536:
|
||
#line 1481 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 537:
|
||
#line 1486 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 538:
|
||
#line 1492 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 539:
|
||
#line 1493 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 540:
|
||
#line 1498 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(6) - (7)].iNumber), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 541:
|
||
#line 1505 "harbour.y"
|
||
{hb_compLinePushIfDebugger( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 542:
|
||
#line 1505 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 544:
|
||
#line 1507 "harbour.y"
|
||
{ hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL ); ;}
|
||
break;
|
||
|
||
case 546:
|
||
#line 1512 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 547:
|
||
#line 1517 "harbour.y"
|
||
{
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
hb_compGenJump( ( ULONG ) (yyvsp[(1) - (5)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 548:
|
||
#line 1522 "harbour.y"
|
||
{
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(4) - (7)].lNumber), HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->functions.pLast->wWhileCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wWhileCounter;
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 549:
|
||
#line 1532 "harbour.y"
|
||
{
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
++HB_COMP_PARAM->functions.pLast->wWhileCounter;
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 550:
|
||
#line 1541 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 553:
|
||
#line 1549 "harbour.y"
|
||
{ /* 5 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
(yyvsp[(1) - (4)].lNumber) = HB_COMP_PARAM->currLine;
|
||
hb_compDebugStart();
|
||
++HB_COMP_PARAM->functions.pLast->wForCounter;
|
||
(yyvsp[(2) - (4)].asExpr) = hb_compExprReduce( (yyvsp[(2) - (4)].asExpr), HB_COMP_PARAM );
|
||
(yyval.asExpr) = hb_compExprGenPush( hb_compExprAssign( (yyvsp[(2) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM );
|
||
if( hb_compExprAsSymbol( (yyvsp[(2) - (4)].asExpr) ) )
|
||
{
|
||
hb_compForStart( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (4)].asExpr) ), FALSE );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 554:
|
||
#line 1562 "harbour.y"
|
||
{ /* 9 */
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
(yyval.lNumber) = hb_compGenJump( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 555:
|
||
#line 1567 "harbour.y"
|
||
{ /* 11 */
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 556:
|
||
#line 1571 "harbour.y"
|
||
{
|
||
int iSign, iLine;
|
||
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
|
||
iLine = HB_COMP_PARAM->currLine;
|
||
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(1) - (12)].lNumber);
|
||
hb_compLinePush( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->currLine = iLine;
|
||
|
||
if( (yyvsp[(8) - (12)].asExpr) )
|
||
{
|
||
(yyvsp[(8) - (12)].asExpr) = hb_compExprReduce( (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM );
|
||
iSign = hb_compExprAsNumSign( (yyvsp[(8) - (12)].asExpr) );
|
||
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
else
|
||
{
|
||
iSign = 1;
|
||
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprNewPreInc( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (12)].lNumber), HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(7) - (12)].asExpr), HB_COMP_PARAM ) ); /* end */
|
||
if( iSign )
|
||
{
|
||
hb_compGenPCode1( ( BYTE ) ( iSign > 0 ? HB_P_GREATER : HB_P_LESS ), HB_COMP_PARAM );
|
||
if( (yyvsp[(8) - (12)].asExpr) )
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(8) - (12)].asExpr) );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ) ); /* step */
|
||
hb_compGenPCode1( HB_P_FORTEST, HB_COMP_PARAM );
|
||
}
|
||
|
||
hb_compGenJumpFalse( ( ULONG ) (yyvsp[(11) - (12)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
if( hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) )
|
||
hb_compForEnd( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(5) - (12)].asExpr) ); /* deletes $5, $2, $4 */
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 559:
|
||
#line 1619 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 560:
|
||
#line 1620 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprReduce( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 561:
|
||
#line 1624 "harbour.y"
|
||
{
|
||
hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->functions.pLast->wForCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wForCounter;
|
||
;}
|
||
break;
|
||
|
||
case 566:
|
||
#line 1637 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 567:
|
||
#line 1638 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 568:
|
||
#line 1641 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 569:
|
||
#line 1642 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 570:
|
||
#line 1645 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 572:
|
||
#line 1649 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 573:
|
||
#line 1650 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 574:
|
||
#line 1655 "harbour.y"
|
||
{
|
||
++HB_COMP_PARAM->functions.pLast->wForCounter; /* 5 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compDebugStart();
|
||
;}
|
||
break;
|
||
|
||
case 575:
|
||
#line 1661 "harbour.y"
|
||
{
|
||
/* 7
|
||
*/
|
||
(yyvsp[(2) - (6)].asExpr) = hb_compExprReduce( (yyvsp[(2) - (6)].asExpr), HB_COMP_PARAM );
|
||
(yyvsp[(4) - (6)].asExpr) = hb_compExprReduce( (yyvsp[(4) - (6)].asExpr), HB_COMP_PARAM );
|
||
hb_compEnumStart( HB_COMP_PARAM, (yyvsp[(2) - (6)].asExpr), (yyvsp[(4) - (6)].asExpr), (yyvsp[(6) - (6)].iNumber) );
|
||
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 576:
|
||
#line 1672 "harbour.y"
|
||
{
|
||
/* 9
|
||
*/
|
||
(yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 577:
|
||
#line 1678 "harbour.y"
|
||
{
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
hb_compEnumNext( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr), (yyvsp[(6) - (10)].iNumber) );
|
||
hb_compGenJump( ( ULONG ) (yyvsp[(7) - (10)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (10)].lNumber), HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
hb_compEnumEnd( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(2) - (10)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(4) - (10)].asExpr) );
|
||
;}
|
||
break;
|
||
|
||
case 578:
|
||
#line 1692 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 579:
|
||
#line 1693 "harbour.y"
|
||
{ (yyval.iNumber) = -1; ;}
|
||
break;
|
||
|
||
case 580:
|
||
#line 1697 "harbour.y"
|
||
{
|
||
hb_compLoopStart( HB_COMP_PARAM, FALSE );
|
||
hb_compSwitchStart( HB_COMP_PARAM );
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 581:
|
||
#line 1704 "harbour.y"
|
||
{
|
||
hb_compSwitchEnd( HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 582:
|
||
#line 1711 "harbour.y"
|
||
{
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 583:
|
||
#line 1717 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->functions.pLast->wSwitchCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSwitchCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 586:
|
||
#line 1729 "harbour.y"
|
||
{ ++HB_COMP_PARAM->functions.pLast->wSwitchCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 587:
|
||
#line 1733 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
;}
|
||
break;
|
||
|
||
case 589:
|
||
#line 1740 "harbour.y"
|
||
{
|
||
if( (yyvsp[(2) - (2)].lNumber) > 0 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 590:
|
||
#line 1748 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 592:
|
||
#line 1751 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 596:
|
||
#line 1759 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 597:
|
||
#line 1759 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 599:
|
||
#line 1764 "harbour.y"
|
||
{ /* 2 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
++HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
(yyval.lNumber) = hb_compSequenceBegin( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 600:
|
||
#line 1772 "harbour.y"
|
||
{ /* 6 */
|
||
/* Set jump address for HB_P_SEQBEGIN opcode - this address
|
||
* will be used in BREAK code if there is no RECOVER clause
|
||
*/
|
||
if( (yyvsp[(3) - (5)].lNumber) )
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(2) - (5)].lNumber), HB_COMP_PARAM );
|
||
(yyval.lNumber) = hb_compSequenceEnd( HB_COMP_PARAM );
|
||
(yyvsp[(4) - (5)].lNumber) = hb_compLoopCount( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 601:
|
||
#line 1783 "harbour.y"
|
||
{ /* 8 */
|
||
/* Replace END address with RECOVER address in
|
||
* HB_P_SEQBEGIN opcode if there is RECOVER clause
|
||
*/
|
||
if( (yyvsp[(7) - (7)].lNumber) )
|
||
hb_compGenJumpThere( ( ULONG ) (yyvsp[(2) - (7)].lNumber), ( ULONG ) (yyvsp[(7) - (7)].lNumber), HB_COMP_PARAM );
|
||
else if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
;}
|
||
break;
|
||
|
||
case 602:
|
||
#line 1793 "harbour.y"
|
||
{ /* 10 */
|
||
long lLoopCount = hb_compLoopCount( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
if( (yyvsp[(9) - (9)].lNumber) )
|
||
{
|
||
if( (yyvsp[(4) - (9)].lNumber) != lLoopCount )
|
||
{
|
||
/* ALWAYS statement after RECOVER with EXIT/LOOP statments */
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_ALWAYS_AFTER_EXIT, "EXIT/LOOP", NULL );
|
||
}
|
||
--HB_COMP_PARAM->functions.pLast->wAlwaysCounter;
|
||
/* replace END address with ALWAYS address in
|
||
HB_P_SEQEND opcode */
|
||
hb_compGenJumpThere( ( ULONG ) (yyvsp[(6) - (9)].lNumber), ( ULONG ) (yyvsp[(9) - (9)].lNumber), HB_COMP_PARAM );
|
||
/* Fix ALWAYS address in HB_P_SEQALWAYS opcode */
|
||
hb_compGenJumpThere( ( ULONG ) (yyvsp[(2) - (9)].lNumber) - 4, ( ULONG ) (yyvsp[(9) - (9)].lNumber), HB_COMP_PARAM );
|
||
/* Fix ALWAYSEND address in HB_P_ALWAYSBEGIN opcode */
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (9)].lNumber) + 1, HB_COMP_PARAM );
|
||
hb_compGenPCode1( HB_P_ALWAYSEND, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
/* Fix END address in HB_P_SEQEND opcode */
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(6) - (9)].lNumber), HB_COMP_PARAM );
|
||
}
|
||
hb_compSequenceFinish( HB_COMP_PARAM, ( ULONG ) (yyvsp[(2) - (9)].lNumber), ( ULONG ) (yyvsp[(6) - (9)].lNumber), ( ULONG ) (yyvsp[(9) - (9)].lNumber),
|
||
(yyvsp[(5) - (9)].lNumber) != 0, (yyvsp[(7) - (9)].lNumber) != 0, (yyvsp[(4) - (9)].lNumber) == lLoopCount );
|
||
;}
|
||
break;
|
||
|
||
case 606:
|
||
#line 1828 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 607:
|
||
#line 1830 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compGenPCode1( HB_P_SEQBLOCK, HB_COMP_PARAM );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 608:
|
||
#line 1837 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 610:
|
||
#line 1842 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
++HB_COMP_PARAM->functions.pLast->wAlwaysCounter;
|
||
hb_compSequenceAlways( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 611:
|
||
#line 1850 "harbour.y"
|
||
{ (yyval.lNumber) = 0; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 614:
|
||
#line 1856 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compGenPCode2( HB_P_SEQRECOVER, HB_P_POP, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 615:
|
||
#line 1867 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compGenPCode1( HB_P_SEQRECOVER, HB_COMP_PARAM );
|
||
hb_compGenPopVar( (yyvsp[(2) - (2)].string), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 618:
|
||
#line 1889 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;}
|
||
break;
|
||
|
||
case 619:
|
||
#line 1891 "harbour.y"
|
||
{
|
||
(yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(2) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM );
|
||
HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (4)].bTrue);
|
||
;}
|
||
break;
|
||
|
||
case 620:
|
||
#line 1896 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;}
|
||
break;
|
||
|
||
case 621:
|
||
#line 1898 "harbour.y"
|
||
{
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (3)].string) );
|
||
/* DOIDENT is the only one identifier which can be returned in lower letters */
|
||
(yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( (yyvsp[(1) - (3)].string) ) ), HB_IDENT_FREE ), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM );
|
||
HB_COMP_PARAM->iPassByRef = (yyvsp[(2) - (3)].bTrue);
|
||
;}
|
||
break;
|
||
|
||
case 622:
|
||
#line 1906 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 623:
|
||
#line 1907 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 624:
|
||
#line 1910 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 625:
|
||
#line 1911 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 626:
|
||
#line 1912 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 627:
|
||
#line 1913 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (2)].asExpr), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 628:
|
||
#line 1914 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 629:
|
||
#line 1917 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 634:
|
||
#line 1925 "harbour.y"
|
||
{
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compGenPCode1( HB_P_WITHOBJECTSTART, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->wWithObjectCnt++;
|
||
;}
|
||
break;
|
||
|
||
case 635:
|
||
#line 1934 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt )
|
||
--HB_COMP_PARAM->functions.pLast->wWithObjectCnt;
|
||
if( (yyvsp[(5) - (6)].lNumber) )
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
else
|
||
{
|
||
hb_compNOOPfill( HB_COMP_PARAM->functions.pLast,
|
||
( ULONG ) (yyvsp[(4) - (6)].lNumber), 1, FALSE, TRUE );
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 638:
|
||
#line 1951 "harbour.y"
|
||
{ HB_COMP_PARAM->fError = FALSE; ;}
|
||
break;
|
||
|
||
|
||
/* Line 1268 of yacc.c. */
|
||
#line 7088 "harboury.c"
|
||
default: break;
|
||
}
|
||
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
|
||
|
||
YYPOPSTACK (yylen);
|
||
yylen = 0;
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
|
||
*++yyvsp = yyval;
|
||
|
||
|
||
/* Now `shift' the result of the reduction. Determine what state
|
||
that goes to, based on the state we popped back to and the rule
|
||
number reduced by. */
|
||
|
||
yyn = yyr1[yyn];
|
||
|
||
yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
|
||
if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
|
||
yystate = yytable[yystate];
|
||
else
|
||
yystate = yydefgoto[yyn - YYNTOKENS];
|
||
|
||
goto yynewstate;
|
||
|
||
|
||
/*------------------------------------.
|
||
| yyerrlab -- here on detecting error |
|
||
`------------------------------------*/
|
||
yyerrlab:
|
||
/* If not already recovering from an error, report this error. */
|
||
if (!yyerrstatus)
|
||
{
|
||
++yynerrs;
|
||
YYUSE (yynerrs);
|
||
#if ! YYERROR_VERBOSE
|
||
yyerror (pComp, YY_("syntax error"));
|
||
#else
|
||
{
|
||
YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
|
||
if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
|
||
{
|
||
YYSIZE_T yyalloc = 2 * yysize;
|
||
if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
|
||
yyalloc = YYSTACK_ALLOC_MAXIMUM;
|
||
if (yymsg != yymsgbuf)
|
||
YYSTACK_FREE (yymsg);
|
||
yymsg = (char *) YYSTACK_ALLOC (yyalloc);
|
||
if (yymsg)
|
||
yymsg_alloc = yyalloc;
|
||
else
|
||
{
|
||
yymsg = yymsgbuf;
|
||
yymsg_alloc = sizeof yymsgbuf;
|
||
}
|
||
}
|
||
|
||
if (0 < yysize && yysize <= yymsg_alloc)
|
||
{
|
||
(void) yysyntax_error (yymsg, yystate, yychar);
|
||
yyerror (pComp, yymsg);
|
||
}
|
||
else
|
||
{
|
||
yyerror (pComp, YY_("syntax error"));
|
||
if (yysize != 0)
|
||
goto yyexhaustedlab;
|
||
}
|
||
}
|
||
#endif
|
||
}
|
||
|
||
|
||
|
||
if (yyerrstatus == 3)
|
||
{
|
||
/* If just tried and failed to reuse look-ahead token after an
|
||
error, discard it. */
|
||
|
||
if (yychar <= YYEOF)
|
||
{
|
||
/* Return failure if at end of input. */
|
||
if (yychar == YYEOF)
|
||
YYABORT;
|
||
}
|
||
else
|
||
{
|
||
yydestruct ("Error: discarding",
|
||
yytoken, &yylval, pComp);
|
||
yychar = YYEMPTY;
|
||
}
|
||
}
|
||
|
||
/* Else will try to reuse look-ahead token after shifting the error
|
||
token. */
|
||
goto yyerrlab1;
|
||
|
||
|
||
/*---------------------------------------------------.
|
||
| yyerrorlab -- error raised explicitly by YYERROR. |
|
||
`---------------------------------------------------*/
|
||
#ifndef NO_YYERROR
|
||
yyerrorlab:
|
||
|
||
/* Pacify compilers like GCC when the user code never invokes
|
||
YYERROR and the label yyerrorlab therefore never appears in user
|
||
code. */
|
||
#if ! defined( __BORLANDC__ ) && ! defined( __WATCOMC__ )
|
||
if (/*CONSTCOND*/ 0)
|
||
goto yyerrorlab;
|
||
#endif
|
||
|
||
/* Do not reclaim the symbols of the rule which action triggered
|
||
this YYERROR. */
|
||
YYPOPSTACK (yylen);
|
||
yylen = 0;
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
yystate = *yyssp;
|
||
goto yyerrlab1;
|
||
#endif /* NO_YYERROR */
|
||
|
||
|
||
/*-------------------------------------------------------------.
|
||
| yyerrlab1 -- common code for both syntax error and YYERROR. |
|
||
`-------------------------------------------------------------*/
|
||
yyerrlab1:
|
||
yyerrstatus = 3; /* Each real token shifted decrements this. */
|
||
|
||
for (;;)
|
||
{
|
||
yyn = yypact[yystate];
|
||
if (yyn != YYPACT_NINF)
|
||
{
|
||
yyn += YYTERROR;
|
||
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
|
||
{
|
||
yyn = yytable[yyn];
|
||
if (0 < yyn)
|
||
break;
|
||
}
|
||
}
|
||
|
||
/* Pop the current state because it cannot handle the error token. */
|
||
if (yyssp == yyss)
|
||
YYABORT;
|
||
|
||
|
||
yydestruct ("Error: popping",
|
||
yystos[yystate], yyvsp, pComp);
|
||
YYPOPSTACK (1);
|
||
yystate = *yyssp;
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
}
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
*++yyvsp = yylval;
|
||
|
||
|
||
/* Shift the error token. */
|
||
YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
|
||
|
||
yystate = yyn;
|
||
goto yynewstate;
|
||
|
||
|
||
/*-------------------------------------.
|
||
| yyacceptlab -- YYACCEPT comes here. |
|
||
`-------------------------------------*/
|
||
yyacceptlab:
|
||
yyresult = 0;
|
||
goto yyreturn;
|
||
|
||
/*-----------------------------------.
|
||
| yyabortlab -- YYABORT comes here. |
|
||
`-----------------------------------*/
|
||
yyabortlab:
|
||
yyresult = 1;
|
||
goto yyreturn;
|
||
|
||
#ifndef yyoverflow
|
||
/*-------------------------------------------------.
|
||
| yyexhaustedlab -- memory exhaustion comes here. |
|
||
`-------------------------------------------------*/
|
||
yyexhaustedlab:
|
||
yyerror (pComp, YY_("memory exhausted"));
|
||
yyresult = 2;
|
||
/* Fall through. */
|
||
#endif
|
||
|
||
yyreturn:
|
||
if (yychar != YYEOF && yychar != YYEMPTY)
|
||
yydestruct ("Cleanup: discarding lookahead",
|
||
yytoken, &yylval, pComp);
|
||
/* Do not reclaim the symbols of the rule which action triggered
|
||
this YYABORT or YYACCEPT. */
|
||
YYPOPSTACK (yylen);
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
while (yyssp != yyss)
|
||
{
|
||
yydestruct ("Cleanup: popping",
|
||
yystos[*yyssp], yyvsp, pComp);
|
||
YYPOPSTACK (1);
|
||
}
|
||
#ifndef yyoverflow
|
||
if (yyss != yyssa)
|
||
YYSTACK_FREE (yyss);
|
||
#endif
|
||
#if YYERROR_VERBOSE
|
||
if (yymsg != yymsgbuf)
|
||
YYSTACK_FREE (yymsg);
|
||
#endif
|
||
/* Make sure YYID is used. */
|
||
return YYID (yyresult);
|
||
}
|
||
|
||
|
||
#line 1955 "harbour.y"
|
||
|
||
|
||
/*
|
||
** ------------------------------------------------------------------------ **
|
||
*/
|
||
|
||
/*
|
||
* Avoid tracing in preprocessor/compiler.
|
||
*/
|
||
#if ! defined(HB_TRACE_UTILS)
|
||
#if defined(HB_TRACE_LEVEL)
|
||
#undef HB_TRACE_LEVEL
|
||
#endif
|
||
#endif
|
||
|
||
|
||
/* ************************************************************************* */
|
||
|
||
/*
|
||
* This function stores the position in pcode buffer where the FOR/WHILE
|
||
* loop starts. It will be used to fix any LOOP/EXIT statements
|
||
*/
|
||
static void hb_compLoopStart( HB_COMP_DECL, BOOL fCanLoop )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
if( pFunc->pLoops )
|
||
{
|
||
HB_LOOPEXIT_PTR pLast = pFunc->pLoops;
|
||
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
pLast->pNext = pLoop;
|
||
}
|
||
else
|
||
pFunc->pLoops = pLoop;
|
||
|
||
pLoop->ulOffset = pFunc->lPCodePos; /* store the start position */
|
||
pLoop->fCanLoop = fCanLoop; /* can we use LOOP inside */
|
||
pLoop->wSeqCounter = pFunc->wSeqCounter; /* store current SEQUENCE counter */
|
||
pLoop->wWithObjectCnt = pFunc->wWithObjectCnt; /* store current WITH OBJECT counter */
|
||
pLoop->wAlwaysCounter = pFunc->wAlwaysCounter; /* store current ALWAYS counter */
|
||
pLoop->pExitList = NULL;
|
||
pLoop->pLoopList = NULL;
|
||
pLoop->pNext = NULL;
|
||
}
|
||
|
||
/*
|
||
* return number of LOOP of EXIT statement in the top most structure
|
||
*/
|
||
static long hb_compLoopCount( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pLastLoop, pLastExit, pLoop;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
long lCount = 0;
|
||
|
||
pLastLoop = pLastExit = NULL;
|
||
pLoop = pFunc->pLoops;
|
||
while( pLoop )
|
||
{
|
||
if( pLoop->fCanLoop )
|
||
pLastLoop = pLoop;
|
||
pLastExit = pLoop;
|
||
pLoop = pLoop->pNext;
|
||
}
|
||
|
||
if( pLastLoop )
|
||
{
|
||
while( pLastLoop->pLoopList )
|
||
{
|
||
++lCount;
|
||
pLastLoop = pLastLoop->pLoopList;
|
||
}
|
||
}
|
||
if( pLastExit )
|
||
{
|
||
while( pLastExit->pExitList )
|
||
{
|
||
++lCount;
|
||
pLastExit = pLastExit->pExitList;
|
||
}
|
||
}
|
||
|
||
return lCount;
|
||
}
|
||
|
||
/*
|
||
* Stores the position of LOOP statement to fix it later at the end of loop
|
||
*/
|
||
static void hb_compLoopLoop( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pLast = NULL, pLoop;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pLoop = pFunc->pLoops;
|
||
while( pLoop )
|
||
{
|
||
if( pLoop->fCanLoop )
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pNext;
|
||
}
|
||
|
||
if( ! pLast )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "LOOP", NULL );
|
||
}
|
||
else
|
||
{
|
||
if( pLast->wSeqCounter != pFunc->wSeqCounter )
|
||
{
|
||
/* Attempt to LOOP from BEGIN/END sequence
|
||
* Current SEQUENCE counter is different then at the beginning of loop
|
||
* Notice that LOOP is allowed in RECOVER code when there is no
|
||
* ALWAYS block
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "LOOP", NULL );
|
||
}
|
||
else if( pLast->wAlwaysCounter != pFunc->wAlwaysCounter )
|
||
{
|
||
/* Attempt to LOOP from ALWAYS block of BEGIN/END sequence
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "LOOP", NULL );
|
||
}
|
||
else
|
||
{
|
||
USHORT wWithObjectCnt = pLast->wWithObjectCnt;
|
||
|
||
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
pLoop->pLoopList = NULL;
|
||
while( pLast->pLoopList )
|
||
pLast = pLast->pLoopList;
|
||
pLast->pLoopList = pLoop;
|
||
|
||
while( wWithObjectCnt < pFunc->wWithObjectCnt )
|
||
{
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
wWithObjectCnt++;
|
||
}
|
||
/* store the position to fix */
|
||
pLoop->ulOffset = pFunc->lPCodePos;
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Stores the position of EXIT statement to fix it later at the end of loop
|
||
*/
|
||
static void hb_compLoopExit( HB_COMP_DECL )
|
||
{
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
if( ! pFunc->pLoops )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "EXIT", NULL );
|
||
}
|
||
else
|
||
{
|
||
HB_LOOPEXIT_PTR pLast, pLoop;
|
||
|
||
pLast = pFunc->pLoops;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
|
||
if( pLast->wSeqCounter != pFunc->wSeqCounter )
|
||
{
|
||
/* Attempt to EXIT from BEGIN/END sequence
|
||
* Current SEQUENCE counter is different then at the beginning of loop
|
||
* Notice that EXIT is allowed in RECOVER code when there is no
|
||
* ALWAYS block
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "EXIT", NULL );
|
||
}
|
||
else if( pLast->wAlwaysCounter != pFunc->wAlwaysCounter )
|
||
{
|
||
/* Attempt to EXIT from ALWAYS block of BEGIN/END sequence
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "EXIT", NULL );
|
||
}
|
||
else
|
||
{
|
||
USHORT wWithObjectCnt = pLast->wWithObjectCnt;
|
||
|
||
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
pLoop->pExitList = NULL;
|
||
while( pLast->pExitList )
|
||
pLast = pLast->pExitList;
|
||
pLast->pExitList = pLoop;
|
||
|
||
while( wWithObjectCnt < pFunc->wWithObjectCnt )
|
||
{
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
wWithObjectCnt++;
|
||
}
|
||
/* store the position to fix */
|
||
pLoop->ulOffset = pFunc->lPCodePos;
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Fixes the LOOP statement
|
||
*/
|
||
static void hb_compLoopHere( HB_COMP_DECL )
|
||
{
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_LOOPEXIT_PTR pLoop = pFunc->pLoops, pFree, pLast;
|
||
|
||
if( pLoop )
|
||
{
|
||
while( pLoop->pNext )
|
||
pLoop = pLoop->pNext;
|
||
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pLoopList;
|
||
while( pLoop )
|
||
{
|
||
hb_compGenJumpHere( pLoop->ulOffset + 1, HB_COMP_PARAM );
|
||
pFree = pLoop;
|
||
pLoop = pLoop->pLoopList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
pLast->pLoopList = NULL;
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Fixes the EXIT statements and releases memory allocated for current loop
|
||
*/
|
||
static void hb_compLoopEnd( HB_COMP_DECL )
|
||
{
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_LOOPEXIT_PTR pLoop = pFunc->pLoops, pLast = pFunc->pLoops, pExit, pFree;
|
||
|
||
if( pLoop )
|
||
{
|
||
while( pLoop->pNext )
|
||
{
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pNext;
|
||
}
|
||
|
||
pExit = pLoop->pExitList;
|
||
while( pExit )
|
||
{
|
||
hb_compGenJumpHere( pExit->ulOffset + 1, HB_COMP_PARAM );
|
||
pFree = pExit;
|
||
pExit = pExit->pExitList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
|
||
pLast->pNext = NULL;
|
||
if( pLoop == pFunc->pLoops )
|
||
pFunc->pLoops = NULL;
|
||
hb_xfree( ( void * ) pLoop );
|
||
}
|
||
}
|
||
|
||
void hb_compLoopKill( PFUNCTION pFunc )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop, pFree;
|
||
|
||
while( pFunc->pLoops )
|
||
{
|
||
pLoop = pFunc->pLoops;
|
||
while( pLoop->pExitList )
|
||
{
|
||
pFree = pLoop->pExitList;
|
||
pLoop->pExitList = pFree->pExitList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
while( pLoop->pLoopList )
|
||
{
|
||
pFree = pLoop->pLoopList;
|
||
pLoop->pLoopList = pFree->pLoopList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
pFunc->pLoops = pLoop->pNext;
|
||
hb_xfree( ( void * ) pLoop );
|
||
}
|
||
}
|
||
|
||
static void * hb_compElseIfGen( HB_COMP_DECL, void * pFirst, ULONG ulOffset )
|
||
{
|
||
HB_ELSEIF_PTR pElseIf = ( HB_ELSEIF_PTR ) hb_xgrab( sizeof( HB_ELSEIF ) ), pLast;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pElseIf->ulOffset = ulOffset;
|
||
pElseIf->pPrev = NULL;
|
||
pElseIf->pElseif = NULL;
|
||
|
||
if( pFirst )
|
||
{
|
||
pLast = ( HB_ELSEIF_PTR ) pFirst;
|
||
while( pLast->pElseif )
|
||
pLast = pLast->pElseif;
|
||
pLast->pElseif = pElseIf;
|
||
}
|
||
else
|
||
{
|
||
if( pFunc->elseif )
|
||
{
|
||
pElseIf->pPrev = pFunc->elseif;
|
||
}
|
||
pFirst = pElseIf;
|
||
pFunc->elseif = pElseIf;
|
||
}
|
||
return pFirst;
|
||
}
|
||
|
||
|
||
static void hb_compElseIfFix( HB_COMP_DECL, void * pFixElseIfs )
|
||
{
|
||
HB_ELSEIF_PTR pFix = ( HB_ELSEIF_PTR ) pFixElseIfs;
|
||
HB_ELSEIF_PTR pDel;
|
||
|
||
HB_COMP_PARAM->functions.pLast->elseif = pFix->pPrev;
|
||
while( pFix )
|
||
{
|
||
hb_compGenJumpHere( pFix->ulOffset, HB_COMP_PARAM );
|
||
pDel = pFix;
|
||
pFix = pFix->pElseif;
|
||
hb_xfree( pDel );
|
||
}
|
||
}
|
||
|
||
void hb_compElseIfKill( PFUNCTION pFunc )
|
||
{
|
||
HB_ELSEIF_PTR pFix;
|
||
HB_ELSEIF_PTR pDel;
|
||
|
||
while( pFunc->elseif )
|
||
{
|
||
pFix = pFunc->elseif;
|
||
pFunc->elseif = pFix->pPrev;
|
||
while( pFix )
|
||
{
|
||
pDel = pFix;
|
||
pFix = pFix->pElseif;
|
||
hb_xfree( pDel );
|
||
}
|
||
}
|
||
}
|
||
|
||
static void hb_compRTVariableAdd( HB_COMP_DECL, HB_EXPR_PTR pVar, BOOL bPopInitValue )
|
||
{
|
||
HB_RTVAR_PTR pRTvar = ( HB_RTVAR_PTR ) hb_xgrab( sizeof( HB_RTVAR ) );
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pRTvar->pVar = pVar;
|
||
pRTvar->bPopValue = bPopInitValue;
|
||
pRTvar->pNext = NULL;
|
||
pRTvar->pPrev = NULL;
|
||
|
||
if( pFunc->rtvars )
|
||
{
|
||
HB_RTVAR_PTR pLast = pFunc->rtvars;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
pLast->pNext = pRTvar;
|
||
pRTvar->pPrev = pLast;
|
||
}
|
||
else
|
||
pFunc->rtvars = pRTvar;
|
||
}
|
||
|
||
static void hb_compRTVariableGen( HB_COMP_DECL, char * szCreateFun )
|
||
{
|
||
USHORT usCount = 0;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_RTVAR_PTR pVar = pFunc->rtvars;
|
||
HB_RTVAR_PTR pDel;
|
||
|
||
/* generate the function call frame */
|
||
hb_compGenPushFunCall( szCreateFun, HB_COMP_PARAM );
|
||
|
||
/* push variable names to create */
|
||
while( pVar->pNext )
|
||
{
|
||
pVar->pVar = hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
|
||
pVar = pVar->pNext;
|
||
++usCount;
|
||
}
|
||
pVar->pVar = hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
|
||
++usCount;
|
||
|
||
/* call function that will create either PUBLIC or PRIVATE variables */
|
||
if( usCount > 255 )
|
||
hb_compGenPCode3( HB_P_DO, HB_LOBYTE( usCount ), HB_HIBYTE( usCount ), HB_COMP_PARAM );
|
||
else
|
||
hb_compGenPCode2( HB_P_DOSHORT, ( BYTE ) usCount, HB_COMP_PARAM );
|
||
|
||
/* pop initial values */
|
||
while( pVar )
|
||
{
|
||
if( pVar->bPopValue )
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPop( pVar->pVar, HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_DELETE( pVar->pVar );
|
||
pDel = pVar;
|
||
pVar = pVar->pPrev;
|
||
hb_xfree( pDel );
|
||
}
|
||
pFunc->rtvars = NULL;
|
||
}
|
||
|
||
void hb_compRTVariableKill( HB_COMP_DECL, PFUNCTION pFunc )
|
||
{
|
||
HB_RTVAR_PTR pVar;
|
||
|
||
while( pFunc->rtvars )
|
||
{
|
||
pVar = pFunc->rtvars;
|
||
|
||
HB_COMP_EXPR_DELETE( pVar->pVar );
|
||
pFunc->rtvars = pVar->pPrev;
|
||
hb_xfree( pVar );
|
||
}
|
||
pFunc->rtvars = NULL;
|
||
}
|
||
|
||
static HB_EXPR_PTR hb_compArrayDimPush( HB_EXPR_PTR pInitValue, HB_COMP_DECL )
|
||
{
|
||
USHORT uCount = ( USHORT ) hb_compExprListLen( pInitValue );
|
||
|
||
if( uCount == 1 && hb_compExprIsInteger( pInitValue->value.asList.pExprList ) &&
|
||
hb_compExprAsInteger( pInitValue->value.asList.pExprList ) == 0 )
|
||
{
|
||
hb_compGenPCode3( HB_P_ARRAYGEN, 0, 0, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
pInitValue = hb_compExprGenPush( pInitValue, HB_COMP_PARAM );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
}
|
||
return pInitValue;
|
||
}
|
||
|
||
static void hb_compVariableDim( char * szName, HB_EXPR_PTR pInitValue, HB_COMP_DECL )
|
||
{
|
||
if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( pInitValue, HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( szName, NULL, HB_COMP_PARAM ), TRUE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope & VS_STATIC )
|
||
{
|
||
HB_EXPR_PTR pVar = hb_compExprNewVar( szName, HB_COMP_PARAM );
|
||
HB_EXPR_PTR pAssign;
|
||
|
||
/* create a static variable */
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
/* create an array */
|
||
pInitValue = hb_compArrayDimPush( pInitValue, HB_COMP_PARAM );
|
||
/* now pop an array */
|
||
pVar = hb_compExprGenPop( pVar, HB_COMP_PARAM );
|
||
/* check if valid initializers were used but don't generate any code */
|
||
pAssign = hb_compExprAssignStatic( pVar, pInitValue, HB_COMP_PARAM );
|
||
/* delete all used expressions */
|
||
HB_COMP_EXPR_DELETE( pAssign );
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, szName );
|
||
}
|
||
else
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( pInitValue, HB_COMP_PARAM ) );
|
||
if( HB_COMP_PARAM->iVarScope != VS_LOCAL ||
|
||
!( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPop( hb_compExprNewVar( szName, HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
}
|
||
}
|
||
|
||
static void hb_compForStart( HB_COMP_DECL, char *szVarName, BOOL bForEach )
|
||
{
|
||
HB_ENUMERATOR_PTR pEnumVar;
|
||
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( pEnumVar == NULL )
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->pEnum = (HB_ENUMERATOR_PTR) hb_xgrab( sizeof(HB_ENUMERATOR) );
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
}
|
||
else
|
||
{
|
||
BOOL bWarn = TRUE;
|
||
HB_ENUMERATOR_PTR pLast = pEnumVar;
|
||
|
||
while( pEnumVar )
|
||
{
|
||
if( strcmp( pEnumVar->szName, szVarName ) == 0 )
|
||
{
|
||
/* Enumerator variable exists already - throw warning */
|
||
if( bWarn )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_FORVAR_DUPL, szVarName, NULL );
|
||
bWarn = FALSE;
|
||
}
|
||
}
|
||
pLast = pEnumVar;
|
||
pEnumVar = pEnumVar->pNext;
|
||
}
|
||
pLast->pNext = (HB_ENUMERATOR_PTR) hb_xgrab( sizeof( HB_ENUMERATOR ) );
|
||
pEnumVar = pLast->pNext;
|
||
}
|
||
pEnumVar->szName = szVarName;
|
||
pEnumVar->bForEach = bForEach;
|
||
pEnumVar->pNext = NULL;
|
||
}
|
||
|
||
BOOL hb_compForEachVarError( HB_COMP_DECL, char *szVarName )
|
||
{
|
||
HB_ENUMERATOR_PTR pEnumVar;
|
||
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( pEnumVar )
|
||
{
|
||
while( pEnumVar )
|
||
{
|
||
if( strcmp( pEnumVar->szName, szVarName ) == 0 )
|
||
{
|
||
if( pEnumVar->bForEach )
|
||
{
|
||
/* only if it is FOR EACH enumerator
|
||
* generate warning if it is FOR/NEXT loop
|
||
*/
|
||
return FALSE;
|
||
}
|
||
}
|
||
pEnumVar = pEnumVar->pNext;
|
||
}
|
||
}
|
||
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_ENUM_INVALID, szVarName, NULL );
|
||
return TRUE;
|
||
}
|
||
|
||
static void hb_compForEnd( HB_COMP_DECL, char *szVar )
|
||
{
|
||
HB_ENUMERATOR_PTR * pEnumVar;
|
||
|
||
HB_SYMBOL_UNUSED( szVar );
|
||
|
||
pEnumVar = &HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( *pEnumVar )
|
||
{
|
||
while( ( *pEnumVar )->pNext )
|
||
pEnumVar = &( *pEnumVar )->pNext;
|
||
|
||
hb_xfree( *pEnumVar );
|
||
*pEnumVar = NULL;
|
||
}
|
||
}
|
||
|
||
static HB_CARGO2_FUNC( hb_compEnumEvalStart )
|
||
{
|
||
char * szName = hb_compExprAsSymbol( ( HB_EXPR_PTR ) cargo );
|
||
if( szName )
|
||
hb_compForStart( HB_COMP_PARAM, szName, TRUE );
|
||
|
||
hb_compExprGenPush( ( HB_EXPR_PTR ) dummy, HB_COMP_PARAM ); /* expression */
|
||
hb_compExprGenPush( ( HB_EXPR_PTR ) cargo, HB_COMP_PARAM ); /* variable */
|
||
}
|
||
|
||
static void hb_compEnumStart( HB_COMP_DECL, HB_EXPR_PTR pVars, HB_EXPR_PTR pExprs, int descend )
|
||
{
|
||
ULONG ulLen;
|
||
|
||
if( hb_compExprListLen(pVars) != hb_compExprListLen(pExprs) )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FORVAR_DIFF, NULL, NULL );
|
||
}
|
||
|
||
ulLen = hb_compExprListEval2( HB_COMP_PARAM, pVars, pExprs, hb_compEnumEvalStart );
|
||
|
||
if( ulLen > 255 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FORVAR_TOOMANY, NULL, NULL );
|
||
}
|
||
else
|
||
{
|
||
hb_compGenPCode3( HB_P_ENUMSTART, ( BYTE ) ( ulLen & 0xFF ), ( BYTE ) ( descend > 0 ? 1 : 0 ), HB_COMP_PARAM );
|
||
}
|
||
}
|
||
|
||
static void hb_compEnumNext( HB_COMP_DECL, HB_EXPR_PTR pExpr, int descend )
|
||
{
|
||
HB_SYMBOL_UNUSED( pExpr );
|
||
if( descend > 0 )
|
||
{
|
||
hb_compGenPCode1( HB_P_ENUMNEXT, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
hb_compGenPCode1( HB_P_ENUMPREV, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
|
||
static HB_CARGO_FUNC( hb_compEnumEvalEnd )
|
||
{
|
||
char * szName = hb_compExprAsSymbol( ( HB_EXPR_PTR ) cargo );
|
||
|
||
if( szName )
|
||
hb_compForEnd( HB_COMP_PARAM, szName );
|
||
}
|
||
|
||
static void hb_compEnumEnd( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
hb_compExprListEval( HB_COMP_PARAM, pExpr, hb_compEnumEvalEnd );
|
||
hb_compGenPCode1( HB_P_ENUMEND, HB_COMP_PARAM );
|
||
}
|
||
|
||
static void hb_compSwitchStart( HB_COMP_DECL )
|
||
{
|
||
HB_SWITCHCMD_PTR pSwitch = (HB_SWITCHCMD_PTR) hb_xgrab( sizeof( HB_SWITCHCMD ) );
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pSwitch->pCases = NULL;
|
||
pSwitch->pLast = NULL;
|
||
pSwitch->ulDefault = 0;
|
||
pSwitch->ulOffset = pFunc->lPCodePos;
|
||
pSwitch->iCount = 0;
|
||
pSwitch->pPrev = pFunc->pSwitch;
|
||
pFunc->pSwitch = pSwitch;
|
||
}
|
||
|
||
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
HB_SWITCHCASE_PTR pCase;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pFunc->bFlags &= ~FUN_BREAK_CODE;
|
||
|
||
if( pExpr )
|
||
{
|
||
/* normal CASE */
|
||
pCase = (HB_SWITCHCASE_PTR) hb_xgrab( sizeof( HB_SWITCHCASE ) );
|
||
pCase->ulOffset = pFunc->lPCodePos;
|
||
pCase->pNext = NULL;
|
||
pExpr = hb_compExprReduce( pExpr, HB_COMP_PARAM );
|
||
if( !(hb_compExprIsLong(pExpr) || hb_compExprIsString(pExpr)) )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_NOT_LITERAL_CASE, NULL, NULL );
|
||
}
|
||
pCase->pExpr = pExpr;
|
||
|
||
if( pFunc->pSwitch->pLast )
|
||
{
|
||
pFunc->pSwitch->pLast->pNext = pCase;
|
||
pFunc->pSwitch->pLast = pCase;
|
||
}
|
||
else
|
||
{
|
||
pFunc->pSwitch->pCases = pFunc->pSwitch->pLast = pCase;
|
||
}
|
||
pFunc->pSwitch->iCount++;
|
||
if( hb_compExprIsString( pExpr ) && hb_compExprAsStringLen(pExpr) > 255 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INVALID_STR, NULL, NULL );
|
||
}
|
||
}
|
||
else
|
||
{
|
||
/* DEFAULT */
|
||
if( pFunc->pSwitch->ulDefault )
|
||
{
|
||
/* more than one default clause */
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
|
||
}
|
||
else
|
||
{
|
||
pFunc->pSwitch->ulDefault = pFunc->lPCodePos;
|
||
pFunc->pSwitch->iCount++;
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
static void hb_compSwitchEnd( HB_COMP_DECL )
|
||
{
|
||
BOOL fLongOptimize = HB_COMP_PARAM->fLongOptimize;
|
||
BOOL fTextSubst = HB_COMP_PARAM->fTextSubst;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_SWITCHCASE_PTR pCase = pFunc->pSwitch->pCases;
|
||
HB_SWITCHCASE_PTR pTmp;
|
||
HB_SWITCHCMD_PTR pTmpSw;
|
||
ULONG ulExitPos;
|
||
|
||
/* skip switch pcode if there was no EXIT in the last CASE
|
||
* or in the DEFAULT case
|
||
*/
|
||
ulExitPos = hb_compGenJump( 0, HB_COMP_PARAM );
|
||
|
||
hb_compGenJumpHere( pFunc->pSwitch->ulOffset + 1, HB_COMP_PARAM );
|
||
hb_compGenPCode3( HB_P_SWITCH, HB_LOBYTE( pFunc->pSwitch->iCount ), HB_HIBYTE( pFunc->pSwitch->iCount ), HB_COMP_PARAM );
|
||
HB_COMP_PARAM->fLongOptimize = FALSE;
|
||
HB_COMP_PARAM->fTextSubst = FALSE;
|
||
while( pCase )
|
||
{
|
||
if( pCase->pExpr )
|
||
{
|
||
if( hb_compExprIsLong( pCase->pExpr ) || hb_compExprIsString( pCase->pExpr ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( pCase->pExpr, HB_COMP_PARAM ) );
|
||
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ), pCase->ulOffset, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_EXPR_DELETE( pCase->pExpr );
|
||
}
|
||
}
|
||
pCase = pCase->pNext;
|
||
}
|
||
|
||
if( pFunc->pSwitch->ulDefault )
|
||
{
|
||
hb_compGenPCode1( HB_P_PUSHNIL, HB_COMP_PARAM );
|
||
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
|
||
pFunc->pSwitch->ulDefault, HB_COMP_PARAM );
|
||
}
|
||
|
||
HB_COMP_PARAM->fLongOptimize = fLongOptimize;
|
||
HB_COMP_PARAM->fTextSubst = fTextSubst;
|
||
|
||
hb_compGenJumpHere( ulExitPos, HB_COMP_PARAM );
|
||
|
||
pCase = pFunc->pSwitch->pCases;
|
||
while( pCase )
|
||
{
|
||
pTmp = pCase->pNext;
|
||
hb_xfree( (void *)pCase );
|
||
pCase = pTmp;
|
||
}
|
||
pTmpSw = pFunc->pSwitch;
|
||
pFunc->pSwitch = pFunc->pSwitch->pPrev;
|
||
hb_xfree( pTmpSw );
|
||
}
|
||
|
||
/* Release all switch statements
|
||
*/
|
||
void hb_compSwitchKill( HB_COMP_DECL, PFUNCTION pFunc )
|
||
{
|
||
HB_SWITCHCASE_PTR pCase;
|
||
HB_SWITCHCMD_PTR pSwitch;
|
||
|
||
while( pFunc->pSwitch )
|
||
{
|
||
while( pFunc->pSwitch->pCases )
|
||
{
|
||
pCase = pFunc->pSwitch->pCases;
|
||
HB_COMP_EXPR_DELETE( pCase->pExpr );
|
||
pFunc->pSwitch->pCases = pCase->pNext;
|
||
hb_xfree( (void *) pCase );
|
||
}
|
||
pSwitch = pFunc->pSwitch;
|
||
pFunc->pSwitch = pSwitch->pPrev;
|
||
hb_xfree( (void *) pSwitch );
|
||
}
|
||
}
|
||
|
||
static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
if( pExpr->ExprType == HB_ET_FUNCALL )
|
||
{
|
||
if( hb_compExprParamListLen( pExpr->value.asFunCall.pParms ) == 0 )
|
||
{
|
||
HB_EXPR_PTR pDelExpr = pExpr;
|
||
if( pExpr->value.asFunCall.pFunName->ExprType == HB_ET_MACRO )
|
||
{
|
||
pExpr = pExpr->value.asFunCall.pFunName;
|
||
HB_COMP_EXPR_CLEAR( pDelExpr );
|
||
}
|
||
else
|
||
{
|
||
pExpr = hb_compExprNewFunRef( hb_compExprAsSymbol( pExpr ), HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( pDelExpr );
|
||
}
|
||
return pExpr;
|
||
}
|
||
else
|
||
{
|
||
const char * szDesc;
|
||
|
||
szDesc = hb_compExprAsSymbol( pExpr );
|
||
if( ! szDesc )
|
||
szDesc = hb_compExprDescription( pExpr );
|
||
|
||
return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc );
|
||
}
|
||
}
|
||
#if 0
|
||
else if( !( HB_COMP_PARAM->iPassByRef & ( HB_PASSBYREF_FUNCALL | HB_PASSBYREF_ARRAY ) ) )
|
||
{
|
||
const char * szDesc;
|
||
if( pExpr->ExprType == HB_ET_REFERENCE )
|
||
{
|
||
HB_EXPR_PTR pDelExpr = pExpr;
|
||
pExpr = pExpr->value.asReference;
|
||
HB_COMP_EXPR_CLEAR( pDelExpr );
|
||
}
|
||
|
||
szDesc = hb_compExprAsSymbol( pExpr );
|
||
if( ! szDesc )
|
||
szDesc = hb_compExprDescription( pExpr );
|
||
|
||
return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc );
|
||
}
|
||
#endif
|
||
return pExpr;
|
||
}
|
||
|
||
/* ************************************************************************* */
|
||
|
||
BOOL hb_compCheckUnclosedStru( HB_COMP_DECL, PFUNCTION pFunc )
|
||
{
|
||
BOOL fUnclosed = TRUE;
|
||
|
||
if( pFunc->wIfCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "IF", NULL );
|
||
pFunc->wIfCounter = 0;
|
||
}
|
||
else if( pFunc->wForCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "FOR", NULL );
|
||
pFunc->wForCounter = 0;
|
||
}
|
||
else if( pFunc->wWhileCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WHILE", NULL );
|
||
pFunc->wWhileCounter = 0;
|
||
}
|
||
else if( pFunc->wCaseCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "CASE", NULL );
|
||
pFunc->wCaseCounter = 0;
|
||
}
|
||
else if( pFunc->wSwitchCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "SWITCH", NULL );
|
||
pFunc->wSwitchCounter = 0;
|
||
}
|
||
else if( pFunc->wWithObjectCnt )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WITH OBJECT", NULL );
|
||
pFunc->wWithObjectCnt = 0;
|
||
}
|
||
else if( pFunc->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "BEGIN SEQUENCE", NULL );
|
||
pFunc->wSeqCounter = 0;
|
||
}
|
||
else if( pFunc->bFlags & FUN_EXTBLOCK )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "{||...}", NULL );
|
||
pFunc->bFlags &= ~FUN_EXTBLOCK;
|
||
}
|
||
else
|
||
fUnclosed = FALSE;
|
||
|
||
return fUnclosed;
|
||
}
|
||
|
||
void yyerror( HB_COMP_DECL, char * s )
|
||
{
|
||
if( !HB_COMP_PARAM->pLex->lasttok || HB_COMP_PARAM->pLex->lasttok[ 0 ] == '\n' )
|
||
{
|
||
if( HB_COMP_PARAM->iErrorCount == 0 || !hb_pp_eof( HB_COMP_PARAM->pLex->pPP ) )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INCOMPLETE_STMT, NULL, NULL );
|
||
}
|
||
else
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_YACC, s, HB_COMP_PARAM->pLex->lasttok );
|
||
}
|
||
|