2015-06-04 18:34:37 +00:00
/*
* $ Id $
*
2016-02-12 16:23:26 +00:00
Copyright ( c ) 2014 - 2016 Chung , Hyung - Hwan . All rights reserved .
2015-06-04 18:34:37 +00:00
Redistribution and use in source and binary forms , with or without
modification , are permitted provided that the following conditions
are met :
1. Redistributions of source code must retain the above copyright
notice , this list of conditions and the following disclaimer .
2. Redistributions in binary form must reproduce the above copyright
notice , this list of conditions and the following disclaimer in the
documentation and / or other materials provided with the distribution .
THIS SOFTWARE IS PROVIDED BY THE AUTHOR " AS IS " AND ANY EXPRESS OR
IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED WAfRRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED .
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT , INDIRECT ,
INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT
NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE ,
DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*/
# include "stix-prv.h"
2016-05-19 13:06:05 +00:00
/* TODO: remove these headers after having migrated system-dependent functions of of this file */
2016-05-12 05:53:35 +00:00
# if defined(_WIN32)
# include <windows.h>
2016-05-19 13:06:05 +00:00
# elif defined(__OS2__)
# define INCL_DOSMISC
# define INCL_DOSDATETIME
# define INCL_DOSERRORS
# include <os2.h>
# include <time.h>
2016-05-13 15:10:34 +00:00
# elif defined(__MSDOS__)
# include <time.h>
2016-05-19 03:49:23 +00:00
# elif defined(macintosh)
# include <Types.h>
# include <OSUtils.h>
# include <Timer.h>
2016-05-13 15:10:34 +00:00
# else
# if defined(HAVE_TIME_H)
# include <time.h>
# endif
# if defined(HAVE_SYS_TIME_H)
# include <sys / time.h>
# endif
2016-05-12 05:53:35 +00:00
# endif
2016-06-24 15:01:51 +00:00
# if defined(USE_DYNCALL)
/* TODO: defined dcAllocMem and dcFreeMeme before builing the dynload and dyncall library */
# include <dyncall.h> /* TODO: remove this. make dyXXXX calls to callbacks */
# endif
2016-03-22 14:18:07 +00:00
# define PROC_STATE_RUNNING 3
# define PROC_STATE_WAITING 2
# define PROC_STATE_RUNNABLE 1
# define PROC_STATE_SUSPENDED 0
# define PROC_STATE_TERMINATED -1
# define SEM_LIST_INC 256
# define SEM_HEAP_INC 256
# define SEM_LIST_MAX (SEM_LIST_INC * 1000)
# define SEM_HEAP_MAX (SEM_HEAP_INC * 1000)
# define SEM_HEAP_PARENT(x) (((x) - 1) / 2)
# define SEM_HEAP_LEFT(x) ((x) * 2 + 1)
# define SEM_HEAP_RIGHT(x) ((x) * 2 + 2)
# define SEM_HEAP_EARLIER_THAN(stx,x,y) ( \
( STIX_OOP_TO_SMOOI ( ( x ) - > heap_ftime_sec ) < STIX_OOP_TO_SMOOI ( ( y ) - > heap_ftime_sec ) ) | | \
( STIX_OOP_TO_SMOOI ( ( x ) - > heap_ftime_sec ) = = STIX_OOP_TO_SMOOI ( ( y ) - > heap_ftime_sec ) & & STIX_OOP_TO_SMOOI ( ( x ) - > heap_ftime_nsec ) < STIX_OOP_TO_SMOOI ( ( y ) - > heap_ftime_nsec ) ) \
)
2016-02-15 18:07:20 +00:00
2015-06-26 15:49:08 +00:00
2015-11-12 06:57:35 +00:00
# define LOAD_IP(stix, v_ctx) ((stix)->ip = STIX_OOP_TO_SMOOI((v_ctx)->ip))
# define STORE_IP(stix, v_ctx) ((v_ctx)->ip = STIX_SMOOI_TO_OOP((stix)->ip))
2015-06-12 13:52:30 +00:00
2015-11-12 06:57:35 +00:00
# define LOAD_SP(stix, v_ctx) ((stix)->sp = STIX_OOP_TO_SMOOI((v_ctx)->sp))
# define STORE_SP(stix, v_ctx) ((v_ctx)->sp = STIX_SMOOI_TO_OOP((stix)->sp))
2015-06-16 04:31:28 +00:00
2015-06-20 03:07:11 +00:00
# define LOAD_ACTIVE_IP(stix) LOAD_IP(stix, (stix)->active_context)
# define STORE_ACTIVE_IP(stix) STORE_IP(stix, (stix)->active_context)
2015-06-16 04:31:28 +00:00
2016-06-24 15:01:51 +00:00
# define LOAD_ACTIVE_SP(stix) LOAD_SP(stix, (stix)->processor->active)
# define STORE_ACTIVE_SP(stix) STORE_SP(stix, (stix)->processor->active)
2015-06-04 18:34:37 +00:00
2016-06-24 15:01:51 +00:00
# define SWITCH_ACTIVE_CONTEXT(stix,v_ctx) \
do \
{ \
STORE_ACTIVE_IP ( stix ) ; \
( stix ) - > active_context = ( v_ctx ) ; \
( stix ) - > active_method = ( stix_oop_method_t ) ( stix ) - > active_context - > origin - > method_or_nargs ; \
SET_ACTIVE_METHOD_CODE ( stix ) ; \
LOAD_ACTIVE_IP ( stix ) ; \
2016-07-04 15:36:10 +00:00
( stix ) - > processor - > active - > current_context = ( stix ) - > active_context ; \
2016-06-24 15:01:51 +00:00
} while ( 0 )
2015-06-20 03:07:11 +00:00
2015-07-01 15:01:39 +00:00
# define FETCH_BYTE_CODE(stix) ((stix)->active_code[(stix)->ip++])
# define FETCH_BYTE_CODE_TO(stix, v_ooi) (v_ooi = FETCH_BYTE_CODE(stix))
# if (STIX_BCODE_LONG_PARAM_SIZE == 2)
2016-02-12 16:23:26 +00:00
# define FETCH_PARAM_CODE_TO(stix, v_ooi) \
do { \
v_ooi = FETCH_BYTE_CODE ( stix ) ; \
v_ooi = ( v_ooi < < 8 ) | FETCH_BYTE_CODE ( stix ) ; \
} while ( 0 )
2015-07-01 15:01:39 +00:00
# else
2016-02-12 16:23:26 +00:00
# define FETCH_PARAM_CODE_TO(stix, v_ooi) (v_ooi = FETCH_BYTE_CODE(stix))
2015-07-01 15:01:39 +00:00
# endif
2016-06-05 18:01:35 +00:00
# if defined(STIX_DEBUG_VM_EXEC)
2016-06-13 15:52:09 +00:00
# define LOG_MASK_INST (STIX_LOG_IC | STIX_LOG_MNEMONIC)
2016-06-05 18:01:35 +00:00
2016-10-06 14:17:24 +00:00
/* TODO: for send_message, display the method name. or include the method name before 'ip' */
# define LOG_INST_0(stix,fmt) STIX_LOG1(stix, LOG_MASK_INST, " %06zd " fmt "\n", fetched_instruction_pointer)
# define LOG_INST_1(stix,fmt,a1) STIX_LOG2(stix, LOG_MASK_INST, " %06zd " fmt "\n",fetched_instruction_pointer, a1)
# define LOG_INST_2(stix,fmt,a1,a2) STIX_LOG3(stix, LOG_MASK_INST, " %06zd " fmt "\n", fetched_instruction_pointer, a1, a2)
# define LOG_INST_3(stix,fmt,a1,a2,a3) STIX_LOG4(stix, LOG_MASK_INST, " %06zd " fmt "\n", fetched_instruction_pointer, a1, a2, a3)
2015-10-08 14:26:04 +00:00
# else
2016-06-05 18:01:35 +00:00
# define LOG_INST_0(stix,fmt)
# define LOG_INST_1(stix,fmt,a1)
# define LOG_INST_2(stix,fmt,a1,a2)
# define LOG_INST_3(stix,fmt,a1,a2,a3)
2015-10-08 14:26:04 +00:00
# endif
2016-06-30 13:44:37 +00:00
# define __PRIMITIVE_NAME__ (&__FUNCTION__[4])
2016-06-26 15:03:12 +00:00
2016-05-12 05:53:35 +00:00
/* ------------------------------------------------------------------------- */
static STIX_INLINE void vm_gettime ( stix_t * stix , stix_ntime_t * now )
2016-03-24 14:58:47 +00:00
{
2016-05-19 13:06:05 +00:00
# if defined(_WIN32)
/* TODO: */
# elif defined(__OS2__)
ULONG out ;
/* TODO: handle overflow?? */
/* TODO: use DosTmrQueryTime() and DosTmrQueryFreq()? */
DosQuerySysInfo ( QSV_MS_COUNT , QSV_MS_COUNT , & out , STIX_SIZEOF ( out ) ) ; /* milliseconds */
/* it must return NO_ERROR */
STIX_INITNTIME ( now , STIX_MSEC_TO_SEC ( out ) , STIX_MSEC_TO_NSEC ( out ) ) ;
# elif defined(__MSDOS__) && defined(_INTELC32_)
2016-05-13 15:10:34 +00:00
clock_t c ;
/* TODO: handle overflow?? */
c = clock ( ) ;
now - > sec = c / CLOCKS_PER_SEC ;
# if (CLOCKS_PER_SEC == 1000)
now - > nsec = STIX_MSEC_TO_NSEC ( c % CLOCKS_PER_SEC ) ;
# elif (CLOCKS_PER_SEC == 1000000L)
now - > nsec = STIX_USEC_TO_NSEC ( c % CLOCKS_PER_SEC ) ;
# elif (CLOCKS_PER_SEC == 1000000000L)
now - > nsec = ( c % CLOCKS_PER_SEC ) ;
# else
# error UNSUPPORTED CLOCKS_PER_SEC
# endif
2016-05-19 03:49:23 +00:00
# elif defined(macintosh)
UnsignedWide tick ;
stix_uint64_t tick64 ;
Microseconds ( & tick ) ;
tick64 = * ( stix_uint64_t * ) & tick ;
STIX_INITNTIME ( now , STIX_USEC_TO_SEC ( tick64 ) , STIX_USEC_TO_NSEC ( tick64 ) ) ;
2016-05-13 15:10:34 +00:00
2016-06-24 15:53:00 +00:00
# elif defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC)
2016-03-24 14:58:47 +00:00
struct timespec ts ;
clock_gettime ( CLOCK_MONOTONIC , & ts ) ;
2016-06-24 15:53:00 +00:00
STIX_INITNTIME ( now , ts . tv_sec , ts . tv_nsec ) ;
# elif defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_REALTIME)
struct timespec ts ;
2016-04-30 15:48:08 +00:00
clock_gettime ( CLOCK_REALTIME , & ts ) ;
2016-03-24 14:58:47 +00:00
STIX_INITNTIME ( now , ts . tv_sec , ts . tv_nsec ) ;
2016-06-24 15:53:00 +00:00
STIX_SUBNTIME ( now , now , & stix - > vm_time_offset ) ; /* offset */
2016-04-30 15:48:08 +00:00
# else
struct timeval tv ;
gettimeofday ( & tv , STIX_NULL ) ;
STIX_INITNTIME ( now , tv . tv_sec , STIX_USEC_TO_NSEC ( tv . tv_usec ) ) ;
2016-06-24 15:53:00 +00:00
/* at the first call, vm_time_offset should be 0. so subtraction takes
* no effect . once it becomes non - zero , it offsets the actual time .
* this is to keep the returned time small enough to be held in a
* small integer on platforms where the small integer is not large enough */
STIX_SUBNTIME ( now , now , & stix - > vm_time_offset ) ;
2016-04-30 15:48:08 +00:00
# endif
2016-03-24 14:58:47 +00:00
}
2016-05-12 05:53:35 +00:00
static STIX_INLINE void vm_sleep ( stix_t * stix , const stix_ntime_t * dur )
2016-03-24 14:58:47 +00:00
{
2016-05-12 05:53:35 +00:00
# if defined(_WIN32)
if ( stix - > waitable_timer )
{
LARGE_INTEGER li ;
li . QuadPart = - STIX_SECNSEC_TO_NSEC ( dur - > sec , dur - > nsec ) ;
if ( SetWaitableTimer ( timer , & li , 0 , STIX_NULL , STIX_NULL , FALSE ) = = FALSE ) goto normal_sleep ;
WaitForSingleObject ( timer , INFINITE ) ;
}
else
{
normal_sleep :
/* fallback to normal Sleep() */
Sleep ( STIX_SECNSEC_TO_MSEC ( dur - > sec , dur - > nsec ) ) ;
}
2016-05-19 13:06:05 +00:00
# elif defined(__OS2__)
/* TODO: in gui mode, this is not a desirable method???
* this must be made event - driven coupled with the main event loop */
DosSleep ( STIX_SECNSEC_TO_MSEC ( dur - > sec , dur - > nsec ) ) ;
2016-05-12 05:53:35 +00:00
2016-05-19 03:49:23 +00:00
# elif defined(macintosh)
/* TODO: ... */
2016-05-13 15:10:34 +00:00
# elif defined(__MSDOS__) && defined(_INTELC32_)
clock_t c ;
c = clock ( ) ;
c + = dur - > sec * CLOCKS_PER_SEC ;
# if (CLOCKS_PER_SEC == 1000)
c + = STIX_NSEC_TO_MSEC ( dur - > nsec ) ;
# elif (CLOCKS_PER_SEC == 1000000L)
c + = STIX_NSEC_TO_USEC ( dur - > nsec ) ;
# elif (CLOCKS_PER_SEC == 1000000000L)
c + = dur - > nsec ;
# else
# error UNSUPPORTED CLOCKS_PER_SEC
# endif
/* TODO: handle clock overvlow */
/* TODO: check if there is abortion request or interrupt */
while ( c > clock ( ) ) ;
2016-05-12 05:53:35 +00:00
# else
2016-03-24 14:58:47 +00:00
struct timespec ts ;
ts . tv_sec = dur - > sec ;
ts . tv_nsec = dur - > nsec ;
nanosleep ( & ts , STIX_NULL ) ;
2016-05-12 05:53:35 +00:00
# endif
2016-03-24 14:58:47 +00:00
}
2016-06-24 15:53:00 +00:00
static void vm_startup ( stix_t * stix )
{
stix_ntime_t now ;
# if defined(_WIN32)
stix - > waitable_timer = CreateWaitableTimer ( STIX_NULL , TRUE , STIX_NULL ) ;
# endif
/* reset stix->vm_time_offset so that vm_gettime is not affected */
STIX_INITNTIME ( & stix - > vm_time_offset , 0 , 0 ) ;
vm_gettime ( stix , & now ) ;
stix - > vm_time_offset = now ;
}
static void vm_cleanup ( stix_t * stix )
{
# if defined(_WIN32)
if ( stix - > waitable_timer )
{
CloseHandle ( stix - > waitable_timer ) ;
stix - > waitable_timer = STIX_NULL ;
}
# endif
}
2016-05-12 05:53:35 +00:00
/* ------------------------------------------------------------------------- */
2015-10-18 15:06:17 +00:00
static stix_oop_process_t make_process ( stix_t * stix , stix_oop_context_t c )
{
stix_oop_process_t proc ;
2015-10-19 06:16:43 +00:00
stix_pushtmp ( stix , ( stix_oop_t * ) & c ) ;
2015-10-18 15:06:17 +00:00
proc = ( stix_oop_process_t ) stix_instantiate ( stix , stix - > _process , STIX_NULL , stix - > option . dfl_procstk_size ) ;
stix_poptmp ( stix ) ;
if ( ! proc ) return STIX_NULL ;
2016-03-22 14:18:07 +00:00
proc - > state = STIX_SMOOI_TO_OOP ( PROC_STATE_SUSPENDED ) ;
2015-10-19 06:16:43 +00:00
proc - > initial_context = c ;
2016-02-19 15:52:56 +00:00
proc - > current_context = c ;
2016-02-11 14:26:26 +00:00
proc - > sp = STIX_SMOOI_TO_OOP ( - 1 ) ;
2015-10-18 15:06:17 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) c - > sender = = stix - > _nil ) ;
2016-05-02 13:50:42 +00:00
2016-06-05 18:01:35 +00:00
# if defined(STIX_DEBUG_VM_PROCESSOR)
2016-10-04 17:58:28 +00:00
STIX_LOG2 ( stix , STIX_LOG_IC | STIX_LOG_DEBUG , " Processor - made process %O of size %zu \n " , proc , STIX_OBJ_GET_SIZE ( proc ) ) ;
2016-02-12 16:23:26 +00:00
# endif
2015-10-18 15:06:17 +00:00
return proc ;
}
2016-03-23 02:34:13 +00:00
static STIX_INLINE void sleep_active_process ( stix_t * stix , int state )
2015-10-19 06:16:43 +00:00
{
2016-06-05 18:01:35 +00:00
# if defined(STIX_DEBUG_VM_PROCESSOR)
2016-06-13 15:52:09 +00:00
STIX_LOG3 ( stix , STIX_LOG_IC | STIX_LOG_DEBUG , " Processor - put process %O context %O ip=%zd to sleep \n " , stix - > processor - > active , stix - > active_context , stix - > ip ) ;
2015-12-02 16:14:37 +00:00
# endif
2015-10-19 06:16:43 +00:00
2016-02-19 15:52:56 +00:00
STORE_ACTIVE_SP ( stix ) ;
2016-02-12 16:23:26 +00:00
2016-02-19 15:52:56 +00:00
/* store the current active context to the current process.
* it is the suspended context of the process to be suspended */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > active ! = stix - > nil_process ) ;
2016-02-19 15:52:56 +00:00
stix - > processor - > active - > current_context = stix - > active_context ;
2016-03-23 02:34:13 +00:00
stix - > processor - > active - > state = STIX_SMOOI_TO_OOP ( state ) ;
}
2016-02-12 16:23:26 +00:00
2016-03-23 02:34:13 +00:00
static STIX_INLINE void wake_new_process ( stix_t * stix , stix_oop_process_t proc )
{
2016-02-19 15:52:56 +00:00
/* activate the given process */
2016-03-22 14:18:07 +00:00
proc - > state = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNING ) ;
2016-02-19 15:52:56 +00:00
stix - > processor - > active = proc ;
2016-02-12 16:23:26 +00:00
2016-02-19 15:52:56 +00:00
LOAD_ACTIVE_SP ( stix ) ;
2015-10-19 06:16:43 +00:00
2016-02-19 15:52:56 +00:00
/* activate the suspended context of the new process */
SWITCH_ACTIVE_CONTEXT ( stix , proc - > current_context ) ;
2016-02-12 16:23:26 +00:00
2016-06-05 18:01:35 +00:00
# if defined(STIX_DEBUG_VM_PROCESSOR)
2016-06-13 15:52:09 +00:00
STIX_LOG3 ( stix , STIX_LOG_IC | STIX_LOG_DEBUG , " Processor - woke up process %O context %O ip=%zd \n " , stix - > processor - > active , stix - > active_context , stix - > ip ) ;
2015-12-02 16:14:37 +00:00
# endif
2016-03-23 02:34:13 +00:00
}
static void switch_to_process ( stix_t * stix , stix_oop_process_t proc , int new_state_for_old_active )
{
/* the new process must not be the currently active process */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > active ! = proc ) ;
2016-03-23 02:34:13 +00:00
/* the new process must be in the runnable state */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNABLE ) | |
2016-03-23 02:34:13 +00:00
proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_WAITING ) ) ;
sleep_active_process ( stix , new_state_for_old_active ) ;
wake_new_process ( stix , proc ) ;
2016-02-19 15:52:56 +00:00
stix - > proc_switched = 1 ;
2015-10-19 06:16:43 +00:00
}
2016-02-19 15:52:56 +00:00
static STIX_INLINE stix_oop_process_t find_next_runnable_process ( stix_t * stix )
2015-10-19 06:16:43 +00:00
{
2016-02-19 15:52:56 +00:00
stix_oop_process_t npr ;
2016-05-15 15:51:41 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > active - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNING ) ) ;
2016-03-16 02:27:18 +00:00
npr = stix - > processor - > active - > next ;
2016-02-29 17:26:40 +00:00
if ( ( stix_oop_t ) npr = = stix - > _nil ) npr = stix - > processor - > runnable_head ;
2016-02-19 15:52:56 +00:00
return npr ;
}
static STIX_INLINE void switch_to_next_runnable_process ( stix_t * stix )
{
stix_oop_process_t nrp ;
nrp = find_next_runnable_process ( stix ) ;
2016-03-22 14:18:07 +00:00
if ( nrp ! = stix - > processor - > active ) switch_to_process ( stix , nrp , PROC_STATE_RUNNABLE ) ;
2015-10-19 06:16:43 +00:00
}
2016-02-19 15:52:56 +00:00
static STIX_INLINE int chain_into_processor ( stix_t * stix , stix_oop_process_t proc )
2015-10-18 15:06:17 +00:00
{
2015-12-02 15:24:13 +00:00
/* the process is not scheduled at all.
* link it to the processor ' s process list . */
stix_ooi_t tally ;
2015-10-18 15:06:17 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) proc - > prev = = stix - > _nil ) ;
STIX_ASSERT ( stix , ( stix_oop_t ) proc - > next = = stix - > _nil ) ;
2016-02-15 18:07:20 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_SUSPENDED ) ) ;
2015-12-02 15:24:13 +00:00
tally = STIX_OOP_TO_SMOOI ( stix - > processor - > tally ) ;
2016-02-12 16:23:26 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , tally > = 0 ) ;
2016-02-19 15:52:56 +00:00
if ( tally > = STIX_SMOOI_MAX )
2015-12-02 15:24:13 +00:00
{
2016-06-05 18:01:35 +00:00
# if defined(STIX_DEBUG_VM_PROCESSOR)
2016-06-13 15:52:09 +00:00
STIX_LOG0 ( stix , STIX_LOG_IC | STIX_LOG_FATAL , " Processor - too many process \n " ) ;
2015-12-02 16:14:37 +00:00
# endif
2015-12-02 15:24:13 +00:00
stix - > errnum = STIX_EPFULL ;
return - 1 ;
}
2016-02-18 17:49:56 +00:00
2016-02-19 15:52:56 +00:00
/* append to the runnable list */
2016-02-29 17:26:40 +00:00
if ( tally > 0 )
{
2016-03-16 02:27:18 +00:00
proc - > prev = stix - > processor - > runnable_tail ;
stix - > processor - > runnable_tail - > next = proc ;
2016-02-29 17:26:40 +00:00
}
else
{
stix - > processor - > runnable_head = proc ;
}
stix - > processor - > runnable_tail = proc ;
2016-02-19 15:52:56 +00:00
2016-02-18 17:49:56 +00:00
tally + + ;
stix - > processor - > tally = STIX_SMOOI_TO_OOP ( tally ) ;
2015-10-18 15:06:17 +00:00
2015-12-02 15:24:13 +00:00
return 0 ;
}
2015-10-19 06:16:43 +00:00
2016-03-23 02:34:13 +00:00
static STIX_INLINE void unchain_from_processor ( stix_t * stix , stix_oop_process_t proc , int state )
2016-02-18 17:49:56 +00:00
{
stix_ooi_t tally ;
2016-03-23 12:58:30 +00:00
/* the processor's process chain must be composed of running/runnable
* processes only */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNING ) | |
2016-03-22 14:18:07 +00:00
proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNABLE ) ) ;
2016-02-18 17:49:56 +00:00
tally = STIX_OOP_TO_SMOOI ( stix - > processor - > tally ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , tally > 0 ) ;
2016-02-18 17:49:56 +00:00
2016-03-16 02:27:18 +00:00
if ( ( stix_oop_t ) proc - > prev ! = stix - > _nil ) proc - > prev - > next = proc - > next ;
else stix - > processor - > runnable_head = proc - > next ;
if ( ( stix_oop_t ) proc - > next ! = stix - > _nil ) proc - > next - > prev = proc - > prev ;
else stix - > processor - > runnable_tail = proc - > prev ;
2016-02-29 17:26:40 +00:00
2016-03-16 02:27:18 +00:00
proc - > prev = ( stix_oop_process_t ) stix - > _nil ;
proc - > next = ( stix_oop_process_t ) stix - > _nil ;
2016-03-23 02:34:13 +00:00
proc - > state = STIX_SMOOI_TO_OOP ( state ) ;
2016-02-18 17:49:56 +00:00
tally - - ;
2016-02-29 17:26:40 +00:00
if ( tally = = 0 ) stix - > processor - > active = stix - > nil_process ;
2016-02-18 17:49:56 +00:00
stix - > processor - > tally = STIX_SMOOI_TO_OOP ( tally ) ;
}
2016-02-29 17:26:40 +00:00
static STIX_INLINE void chain_into_semaphore ( stix_t * stix , stix_oop_process_t proc , stix_oop_semaphore_t sem )
{
/* append a process to the process list of a semaphore*/
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) proc - > sem = = stix - > _nil ) ;
STIX_ASSERT ( stix , ( stix_oop_t ) proc - > prev = = stix - > _nil ) ;
STIX_ASSERT ( stix , ( stix_oop_t ) proc - > next = = stix - > _nil ) ;
2016-02-29 17:26:40 +00:00
if ( ( stix_oop_t ) sem - > waiting_head = = stix - > _nil )
{
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) sem - > waiting_tail = = stix - > _nil ) ;
2016-02-29 17:26:40 +00:00
sem - > waiting_head = proc ;
}
else
{
2016-03-16 02:27:18 +00:00
proc - > prev = sem - > waiting_tail ;
sem - > waiting_tail - > next = proc ;
2016-02-29 17:26:40 +00:00
}
sem - > waiting_tail = proc ;
proc - > sem = sem ;
}
static STIX_INLINE void unchain_from_semaphore ( stix_t * stix , stix_oop_process_t proc )
{
stix_oop_semaphore_t sem ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) proc - > sem ! = stix - > _nil ) ;
2016-02-29 17:26:40 +00:00
sem = proc - > sem ;
2016-03-16 02:27:18 +00:00
if ( ( stix_oop_t ) proc - > prev ! = stix - > _nil ) proc - > prev - > next = proc - > next ;
else sem - > waiting_head = proc - > next ;
if ( ( stix_oop_t ) proc - > next ! = stix - > _nil ) proc - > next - > prev = proc - > prev ;
else sem - > waiting_tail = proc - > prev ;
2016-02-29 17:26:40 +00:00
2016-03-16 02:27:18 +00:00
proc - > prev = ( stix_oop_process_t ) stix - > _nil ;
proc - > next = ( stix_oop_process_t ) stix - > _nil ;
2016-03-22 14:18:07 +00:00
proc - > sem = ( stix_oop_semaphore_t ) stix - > _nil ;
2016-02-29 17:26:40 +00:00
}
2016-02-14 06:35:18 +00:00
static void terminate_process ( stix_t * stix , stix_oop_process_t proc )
2016-02-13 17:39:11 +00:00
{
2016-03-22 14:18:07 +00:00
if ( proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNING ) | |
proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNABLE ) )
2016-02-13 17:39:11 +00:00
{
2016-02-19 15:52:56 +00:00
/* RUNNING/RUNNABLE ---> TERMINATED */
2016-06-05 18:01:35 +00:00
# if defined(STIX_DEBUG_VM_PROCESSOR)
2016-06-13 15:52:09 +00:00
STIX_LOG1 ( stix , STIX_LOG_IC | STIX_LOG_DEBUG , " Processor - process %O RUNNING/RUNNABLE->TERMINATED \n " , proc ) ;
2016-06-05 18:01:35 +00:00
# endif
2016-02-19 15:52:56 +00:00
if ( proc = = stix - > processor - > active )
{
stix_oop_process_t nrp ;
2016-02-13 17:39:11 +00:00
2016-02-19 15:52:56 +00:00
nrp = find_next_runnable_process ( stix ) ;
2016-02-13 17:39:11 +00:00
2016-03-23 02:34:13 +00:00
unchain_from_processor ( stix , proc , PROC_STATE_TERMINATED ) ;
2016-02-19 15:52:56 +00:00
proc - > sp = STIX_SMOOI_TO_OOP ( - 1 ) ; /* invalidate the process stack */
proc - > current_context = proc - > initial_context ; /* not needed but just in case */
2016-02-13 17:39:11 +00:00
2016-02-29 17:26:40 +00:00
/* a runnable or running process must not be chanined to the
* process list of a semaphore */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) proc - > sem = = stix - > _nil ) ;
2016-02-13 17:39:11 +00:00
2016-02-19 15:52:56 +00:00
if ( nrp = = proc )
{
/* no runnable process after termination */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > active = = stix - > nil_process ) ;
2016-06-13 15:52:09 +00:00
STIX_LOG0 ( stix , STIX_LOG_IC | STIX_LOG_DEBUG , " No runnable process after process termination \n " ) ;
2016-02-19 15:52:56 +00:00
}
else
{
2016-03-22 14:18:07 +00:00
switch_to_process ( stix , nrp , PROC_STATE_TERMINATED ) ;
2016-02-19 15:52:56 +00:00
}
2016-02-13 17:39:11 +00:00
}
else
{
2016-03-23 02:34:13 +00:00
unchain_from_processor ( stix , proc , PROC_STATE_TERMINATED ) ;
2016-02-19 15:52:56 +00:00
proc - > sp = STIX_SMOOI_TO_OOP ( - 1 ) ; /* invalidate the process stack */
2016-02-13 17:39:11 +00:00
}
2016-02-19 15:52:56 +00:00
}
2016-03-22 14:18:07 +00:00
else if ( proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_SUSPENDED ) )
2016-02-19 15:52:56 +00:00
{
/* SUSPENDED ---> TERMINATED */
2016-06-05 18:01:35 +00:00
# if defined(STIX_DEBUG_VM_PROCESSOR)
2016-06-13 15:52:09 +00:00
STIX_LOG1 ( stix , STIX_LOG_IC | STIX_LOG_DEBUG , " Processor - process %O SUSPENDED->TERMINATED \n " , proc ) ;
2016-06-05 18:01:35 +00:00
# endif
2016-03-22 14:18:07 +00:00
proc - > state = STIX_SMOOI_TO_OOP ( PROC_STATE_TERMINATED ) ;
2016-02-29 17:26:40 +00:00
proc - > sp = STIX_SMOOI_TO_OOP ( - 1 ) ; /* invalidate the proce stack */
if ( ( stix_oop_t ) proc - > sem ! = stix - > _nil )
{
unchain_from_semaphore ( stix , proc ) ;
}
2016-02-19 15:52:56 +00:00
}
2016-03-22 14:18:07 +00:00
else if ( proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_WAITING ) )
2016-02-19 15:52:56 +00:00
{
/* WAITING ---> TERMINATED */
/* TODO: */
2016-02-13 17:39:11 +00:00
}
}
2016-02-19 15:52:56 +00:00
static void resume_process ( stix_t * stix , stix_oop_process_t proc )
2015-12-02 15:24:13 +00:00
{
2016-03-22 14:18:07 +00:00
if ( proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_SUSPENDED ) )
2016-02-13 17:39:11 +00:00
{
2016-02-19 15:52:56 +00:00
/* SUSPENED ---> RUNNING */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) proc - > prev = = stix - > _nil ) ;
STIX_ASSERT ( stix , ( stix_oop_t ) proc - > next = = stix - > _nil ) ;
2016-02-19 15:52:56 +00:00
2016-06-05 18:01:35 +00:00
# if defined(STIX_DEBUG_VM_PROCESSOR)
2016-06-13 15:52:09 +00:00
STIX_LOG1 ( stix , STIX_LOG_IC | STIX_LOG_DEBUG , " Processor - process %O SUSPENDED->RUNNING \n " , proc ) ;
2016-06-05 18:01:35 +00:00
# endif
2016-02-19 15:52:56 +00:00
chain_into_processor ( stix , proc ) ; /* TODO: error check */
2016-02-18 17:49:56 +00:00
2016-02-29 15:27:10 +00:00
/*proc->current_context = proc->initial_context;*/
2016-03-22 14:18:07 +00:00
proc - > state = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNABLE ) ;
2016-02-19 15:52:56 +00:00
2016-03-24 14:58:47 +00:00
/* don't switch to this process. just set the state to RUNNING */
2015-10-19 06:16:43 +00:00
}
2016-02-19 15:52:56 +00:00
#if 0
2016-03-22 14:18:07 +00:00
else if ( proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNABLE ) )
2015-10-19 06:16:43 +00:00
{
2016-02-19 15:52:56 +00:00
/* RUNNABLE ---> RUNNING */
/* TODO: should i allow this? */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > active ! = proc ) ;
2016-03-22 14:18:07 +00:00
switch_to_process ( stix , proc , PROC_STATE_RUNNABLE ) ;
2015-10-19 06:16:43 +00:00
}
2016-02-19 15:52:56 +00:00
# endif
2015-10-18 15:06:17 +00:00
}
2016-02-18 17:49:56 +00:00
static void suspend_process ( stix_t * stix , stix_oop_process_t proc )
{
2016-03-22 14:18:07 +00:00
if ( proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNING ) | |
proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNABLE ) )
2016-02-18 17:49:56 +00:00
{
2016-02-19 15:52:56 +00:00
/* RUNNING/RUNNABLE ---> SUSPENDED */
2016-06-05 18:01:35 +00:00
# if defined(STIX_DEBUG_VM_PROCESSOR)
2016-06-13 15:52:09 +00:00
STIX_LOG1 ( stix , STIX_LOG_IC | STIX_LOG_DEBUG , " Processor - process %O RUNNING/RUNNABLE->SUSPENDED \n " , proc ) ;
2016-06-05 18:01:35 +00:00
# endif
2016-02-19 15:52:56 +00:00
if ( proc = = stix - > processor - > active )
{
stix_oop_process_t nrp ;
nrp = find_next_runnable_process ( stix ) ;
if ( nrp = = proc )
{
/* no runnable process after suspension */
2016-03-23 02:34:13 +00:00
sleep_active_process ( stix , PROC_STATE_RUNNABLE ) ;
unchain_from_processor ( stix , proc , PROC_STATE_SUSPENDED ) ;
2016-02-29 15:27:10 +00:00
2016-03-23 12:58:30 +00:00
/* the last running/runnable process has been unchained
* from the processor and set to SUSPENDED . the active
2016-06-05 18:01:35 +00:00
* process must be the nil process */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > active = = stix - > nil_process ) ;
2016-02-19 15:52:56 +00:00
}
else
{
2016-03-23 02:34:13 +00:00
/* keep the unchained process at the runnable state for
* the immediate call to switch_to_process ( ) below */
unchain_from_processor ( stix , proc , PROC_STATE_RUNNABLE ) ;
/* unchain_from_processor() leaves the active process
* untouched unless the unchained process is the last
2016-03-23 12:58:30 +00:00
* running / runnable process . so calling switch_to_process ( )
* which expects the active process to be valid is safe */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > active ! = stix - > nil_process ) ;
2016-03-22 14:18:07 +00:00
switch_to_process ( stix , nrp , PROC_STATE_SUSPENDED ) ;
2016-02-19 15:52:56 +00:00
}
}
else
{
2016-03-23 02:34:13 +00:00
unchain_from_processor ( stix , proc , PROC_STATE_SUSPENDED ) ;
2016-02-19 15:52:56 +00:00
}
2016-02-18 17:49:56 +00:00
}
}
2016-02-19 15:52:56 +00:00
static void yield_process ( stix_t * stix , stix_oop_process_t proc )
2016-02-18 17:49:56 +00:00
{
2016-03-22 14:18:07 +00:00
if ( proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNING ) )
2016-02-19 15:52:56 +00:00
{
/* RUNNING --> RUNNABLE */
stix_oop_process_t nrp ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , proc = = stix - > processor - > active ) ;
2016-02-19 15:52:56 +00:00
nrp = find_next_runnable_process ( stix ) ;
/* if there are more than 1 runnable processes, the next
* runnable process must be different from proc */
2016-02-29 15:27:10 +00:00
if ( nrp ! = proc )
{
2016-06-05 18:01:35 +00:00
# if defined(STIX_DEBUG_VM_PROCESSOR)
2016-06-13 15:52:09 +00:00
STIX_LOG1 ( stix , STIX_LOG_IC | STIX_LOG_DEBUG , " Processor - process %O RUNNING->RUNNABLE \n " , proc ) ;
2016-06-05 18:01:35 +00:00
# endif
2016-03-22 14:18:07 +00:00
switch_to_process ( stix , nrp , PROC_STATE_RUNNABLE ) ;
2016-02-29 15:27:10 +00:00
}
}
}
static int async_signal_semaphore ( stix_t * stix , stix_oop_semaphore_t sem )
{
2016-03-22 14:18:07 +00:00
if ( stix - > sem_list_count > = SEM_LIST_MAX )
{
stix - > errnum = STIX_ESLFULL ;
return - 1 ;
}
2016-03-16 02:27:18 +00:00
if ( stix - > sem_list_count > = stix - > sem_list_capa )
2016-02-29 15:27:10 +00:00
{
2016-03-16 02:27:18 +00:00
stix_oow_t new_capa ;
stix_oop_semaphore_t * tmp ;
2016-03-22 14:18:07 +00:00
new_capa = stix - > sem_list_capa + SEM_LIST_INC ; /* TODO: overflow check.. */
2016-03-16 02:27:18 +00:00
tmp = stix_reallocmem ( stix , stix - > sem_list , STIX_SIZEOF ( stix_oop_semaphore_t ) * new_capa ) ;
if ( ! tmp ) return - 1 ;
stix - > sem_list = tmp ;
stix - > sem_list_capa = new_capa ;
2016-02-19 15:52:56 +00:00
}
2016-02-29 15:27:10 +00:00
2016-03-16 02:27:18 +00:00
stix - > sem_list [ stix - > sem_list_count ] = sem ;
stix - > sem_list_count + + ;
2016-02-29 15:27:10 +00:00
return 0 ;
2016-02-18 17:49:56 +00:00
}
2016-03-24 14:58:47 +00:00
static stix_oop_process_t signal_semaphore ( stix_t * stix , stix_oop_semaphore_t sem )
2016-02-18 17:49:56 +00:00
{
stix_oop_process_t proc ;
stix_ooi_t count ;
if ( ( stix_oop_t ) sem - > waiting_head = = stix - > _nil )
{
2016-02-29 15:27:10 +00:00
/* no process is waiting on this semaphore */
2016-02-18 17:49:56 +00:00
count = STIX_OOP_TO_SMOOI ( sem - > count ) ;
count + + ;
sem - > count = STIX_SMOOI_TO_OOP ( count ) ;
2016-03-24 14:58:47 +00:00
/* no process has been resumed */
2016-03-26 06:39:56 +00:00
return ( stix_oop_process_t ) stix - > _nil ;
2016-02-18 17:49:56 +00:00
}
else
{
proc = sem - > waiting_head ;
2016-03-24 14:58:47 +00:00
/* [NOTE] no GC must occur as 'proc' isn't protected with stix_pushtmp(). */
2016-02-29 17:26:40 +00:00
unchain_from_semaphore ( stix , proc ) ;
2016-02-19 15:52:56 +00:00
resume_process ( stix , proc ) ; /* TODO: error check */
2016-03-24 14:58:47 +00:00
/* return the resumed process */
return proc ;
2016-02-18 17:49:56 +00:00
}
}
static void await_semaphore ( stix_t * stix , stix_oop_semaphore_t sem )
{
stix_oop_process_t proc ;
stix_ooi_t count ;
count = STIX_OOP_TO_SMOOI ( sem - > count ) ;
if ( count > 0 )
{
2016-02-29 15:27:10 +00:00
/* it's already signalled */
2016-02-18 17:49:56 +00:00
count - - ;
sem - > count = STIX_SMOOI_TO_OOP ( count ) ;
}
else
{
2016-02-29 15:27:10 +00:00
/* not signaled. need to wait */
2016-02-18 17:49:56 +00:00
proc = stix - > processor - > active ;
2016-02-29 17:26:40 +00:00
/* suspend the active process */
suspend_process ( stix , proc ) ;
2016-03-24 14:58:47 +00:00
/* link the suspended process to the semaphore's process list */
2016-02-29 17:26:40 +00:00
chain_into_semaphore ( stix , proc , sem ) ;
2016-02-18 17:49:56 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , sem - > waiting_tail = = proc ) ;
2016-03-24 14:58:47 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > active ! = proc ) ;
2016-02-18 17:49:56 +00:00
}
}
2016-03-22 14:18:07 +00:00
static void sift_up_sem_heap ( stix_t * stix , stix_ooi_t index )
{
if ( index > 0 )
{
stix_ooi_t parent ;
stix_oop_semaphore_t sem , parsem ;
parent = SEM_HEAP_PARENT ( index ) ;
sem = stix - > sem_heap [ index ] ;
parsem = stix - > sem_heap [ parent ] ;
if ( SEM_HEAP_EARLIER_THAN ( stix , sem , parsem ) )
{
do
{
/* move down the parent to the current position */
parsem - > heap_index = STIX_SMOOI_TO_OOP ( index ) ;
stix - > sem_heap [ index ] = parsem ;
/* traverse up */
index = parent ;
if ( index < = 0 ) break ;
parent = SEM_HEAP_PARENT ( parent ) ;
parsem = stix - > sem_heap [ parent ] ;
}
while ( SEM_HEAP_EARLIER_THAN ( stix , sem , parsem ) ) ;
sem - > heap_index = STIX_SMOOI_TO_OOP ( index ) ;
stix - > sem_heap [ index ] = sem ;
}
}
}
static void sift_down_sem_heap ( stix_t * stix , stix_ooi_t index )
{
stix_ooi_t base = stix - > sem_heap_count / 2 ;
if ( index < base ) /* at least 1 child is under the 'index' position */
{
stix_ooi_t left , right , child ;
stix_oop_semaphore_t sem , chisem ;
sem = stix - > sem_heap [ index ] ;
do
{
left = SEM_HEAP_LEFT ( index ) ;
right = SEM_HEAP_RIGHT ( index ) ;
if ( right < stix - > sem_heap_count & & SEM_HEAP_EARLIER_THAN ( stix , stix - > sem_heap [ left ] , stix - > sem_heap [ right ] ) )
{
child = right ;
}
else
{
child = left ;
}
chisem = stix - > sem_heap [ child ] ;
if ( SEM_HEAP_EARLIER_THAN ( stix , sem , chisem ) ) break ;
chisem - > heap_index = STIX_SMOOI_TO_OOP ( index ) ;
stix - > sem_heap [ index ] = chisem ;
index = child ;
}
while ( index < base ) ;
sem - > heap_index = STIX_SMOOI_TO_OOP ( index ) ;
stix - > sem_heap [ index ] = sem ;
}
}
static int add_to_sem_heap ( stix_t * stix , stix_oop_semaphore_t sem )
{
stix_ooi_t index ;
if ( stix - > sem_heap_count > = SEM_HEAP_MAX )
{
stix - > errnum = STIX_ESHFULL ;
return - 1 ;
}
if ( stix - > sem_heap_count > = stix - > sem_heap_capa )
{
stix_oow_t new_capa ;
stix_oop_semaphore_t * tmp ;
/* no overflow check when calculating the new capacity
* owing to SEM_HEAP_MAX check above */
new_capa = stix - > sem_heap_capa + SEM_HEAP_INC ;
tmp = stix_reallocmem ( stix , stix - > sem_heap , STIX_SIZEOF ( stix_oop_semaphore_t ) * new_capa ) ;
if ( ! tmp ) return - 1 ;
stix - > sem_heap = tmp ;
stix - > sem_heap_capa = new_capa ;
}
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > sem_heap_count < = STIX_SMOOI_MAX ) ;
2016-03-22 14:18:07 +00:00
index = stix - > sem_heap_count ;
stix - > sem_heap [ index ] = sem ;
sem - > heap_index = STIX_SMOOI_TO_OOP ( index ) ;
stix - > sem_heap_count + + ;
sift_up_sem_heap ( stix , index ) ;
return 0 ;
}
static void delete_from_sem_heap ( stix_t * stix , stix_ooi_t index )
{
stix_oop_semaphore_t sem , lastsem ;
sem = stix - > sem_heap [ index ] ;
sem - > heap_index = STIX_SMOOI_TO_OOP ( - 1 ) ;
stix - > sem_heap_count - - ;
if ( stix - > sem_heap_count > 0 & & index ! = stix - > sem_heap_count )
{
/* move the last item to the deletion position */
lastsem = stix - > sem_heap [ stix - > sem_heap_count ] ;
lastsem - > heap_index = STIX_SMOOI_TO_OOP ( index ) ;
stix - > sem_heap [ index ] = lastsem ;
if ( SEM_HEAP_EARLIER_THAN ( stix , lastsem , sem ) )
sift_up_sem_heap ( stix , index ) ;
else
sift_down_sem_heap ( stix , index ) ;
}
}
static void update_sem_heap ( stix_t * stix , stix_ooi_t index , stix_oop_semaphore_t newsem )
{
stix_oop_semaphore_t sem ;
sem = stix - > sem_heap [ index ] ;
sem - > heap_index = STIX_SMOOI_TO_OOP ( - 1 ) ;
newsem - > heap_index = STIX_SMOOI_TO_OOP ( index ) ;
stix - > sem_heap [ index ] = newsem ;
if ( SEM_HEAP_EARLIER_THAN ( stix , newsem , sem ) )
sift_up_sem_heap ( stix , index ) ;
else
sift_down_sem_heap ( stix , index ) ;
}
2015-12-02 15:24:13 +00:00
static stix_oop_process_t start_initial_process ( stix_t * stix , stix_oop_context_t c )
{
stix_oop_process_t proc ;
2016-02-12 16:23:26 +00:00
/* there must be no active process when this function is called */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > tally = = STIX_SMOOI_TO_OOP ( 0 ) ) ;
STIX_ASSERT ( stix , stix - > processor - > active = = stix - > nil_process ) ;
2016-02-12 16:23:26 +00:00
2015-12-02 15:24:13 +00:00
proc = make_process ( stix , c ) ;
if ( ! proc ) return STIX_NULL ;
2015-10-18 15:06:17 +00:00
2016-02-19 15:52:56 +00:00
if ( chain_into_processor ( stix , proc ) < = - 1 ) return STIX_NULL ;
2016-03-22 14:18:07 +00:00
proc - > state = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNING ) ; /* skip RUNNABLE and go to RUNNING */
2016-02-12 16:23:26 +00:00
stix - > processor - > active = proc ;
2016-02-18 17:49:56 +00:00
/* do somthing that resume_process() would do with less overhead */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) proc - > current_context ! = stix - > _nil ) ;
STIX_ASSERT ( stix , proc - > current_context = = proc - > initial_context ) ;
2016-02-19 15:52:56 +00:00
SWITCH_ACTIVE_CONTEXT ( stix , proc - > current_context ) ;
2016-02-12 16:23:26 +00:00
2015-12-02 15:24:13 +00:00
return proc ;
}
2015-10-13 14:51:04 +00:00
2016-12-14 07:18:01 +00:00
static STIX_INLINE int activate_new_method ( stix_t * stix , stix_oop_method_t mth , stix_ooi_t actual_nargs )
2015-06-04 18:34:37 +00:00
{
stix_oop_context_t ctx ;
2016-12-14 07:18:01 +00:00
stix_ooi_t i , j ;
stix_ooi_t ntmprs , nargs , actual_ntmprs ;
2015-06-04 18:34:37 +00:00
2016-05-02 13:50:42 +00:00
ntmprs = STIX_OOP_TO_SMOOI ( mth - > tmpr_count ) ;
nargs = STIX_OOP_TO_SMOOI ( mth - > tmpr_nargs ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ntmprs > = 0 ) ;
STIX_ASSERT ( stix , nargs < = ntmprs ) ;
2015-06-04 18:34:37 +00:00
2016-12-14 07:18:01 +00:00
if ( actual_nargs > nargs )
{
/* more arguments than the method specification have been passed in.
* it must be a variadic unary method . othewise , the compiler is buggy */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_METHOD_GET_PREAMBLE_FLAGS ( STIX_OOP_TO_SMOOI ( mth - > preamble ) ) & STIX_METHOD_PREAMBLE_FLAG_VARIADIC ) ;
2016-12-14 07:18:01 +00:00
actual_ntmprs = ntmprs + ( actual_nargs - nargs ) ;
}
else actual_ntmprs = ntmprs ;
2015-06-26 15:49:08 +00:00
stix_pushtmp ( stix , ( stix_oop_t * ) & mth ) ;
2016-12-14 07:18:01 +00:00
ctx = ( stix_oop_context_t ) stix_instantiate ( stix , stix - > _method_context , STIX_NULL , actual_ntmprs ) ;
2015-06-26 15:49:08 +00:00
stix_poptmp ( stix ) ;
if ( ! ctx ) return - 1 ;
2016-02-15 18:07:20 +00:00
ctx - > sender = stix - > active_context ;
2015-11-12 06:57:35 +00:00
ctx - > ip = STIX_SMOOI_TO_OOP ( 0 ) ;
2016-05-02 13:50:42 +00:00
/* ctx->sp will be set further down */
2016-06-24 15:01:51 +00:00
/* A context is compose of a fixed part and a variable part.
2016-12-13 15:18:19 +00:00
* the variable part holds temporary varibles including arguments .
2015-06-06 07:24:35 +00:00
*
2016-06-24 15:01:51 +00:00
* Assuming a method context with 2 arguments and 3 local temporary
* variables , the context will look like this .
2015-06-06 07:24:35 +00:00
* + - - - - - - - - - - - - - - - - - - - - - +
* | fixed part |
* | |
* | |
* | |
* + - - - - - - - - - - - - - - - - - - - - - +
* | tmp1 ( arg1 ) | slot [ 0 ]
* | tmp2 ( arg2 ) | slot [ 1 ]
2016-06-24 15:01:51 +00:00
* | tmp3 | slot [ 2 ]
* | tmp4 | slot [ 3 ]
* | tmp5 | slot [ 4 ]
2015-06-06 07:24:35 +00:00
* + - - - - - - - - - - - - - - - - - - - - - +
*/
2016-06-24 15:01:51 +00:00
2015-11-12 06:57:35 +00:00
ctx - > ntmprs = STIX_SMOOI_TO_OOP ( ntmprs ) ;
2015-06-25 13:37:50 +00:00
ctx - > method_or_nargs = ( stix_oop_t ) mth ;
2015-06-26 15:49:08 +00:00
/* the 'home' field of a method context is always stix->_nil.
2015-06-25 13:37:50 +00:00
ctx - > home = stix - > _nil ; */
2015-06-21 14:45:45 +00:00
ctx - > origin = ctx ; /* point to self */
2015-06-04 18:34:37 +00:00
/*
2015-06-06 07:24:35 +00:00
* Assume this message sending expression :
2015-06-04 18:34:37 +00:00
* obj1 do : # this with : # that with : # it
*
2015-06-06 07:24:35 +00:00
* It would be compiled to these logical byte - code sequences shown below :
2015-06-04 18:34:37 +00:00
* push obj1
* push # this
* push # that
* push # it
* send # do : with :
*
* After three pushes , the stack looks like this .
*
* | # it | < - sp
* | # that | sp - 1
* | # this | sp - 2
* | obj1 | sp - nargs
*
* Since the number of arguments is 3 , stack [ sp - 3 ] points to
* the receiver . When the stack is empty , sp is - 1.
*/
2016-12-14 07:18:01 +00:00
if ( actual_nargs > = nargs )
2015-06-04 18:34:37 +00:00
{
2016-12-14 07:18:01 +00:00
for ( i = actual_nargs , j = ntmprs + ( actual_nargs - nargs ) ; i > nargs ; i - - )
{
/* place variadic arguments after local temporaries */
ctx - > slot [ - - j ] = STIX_STACK_GETTOP ( stix ) ;
STIX_STACK_POP ( stix ) ;
}
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , i = = nargs ) ;
2016-12-14 07:18:01 +00:00
while ( i > 0 )
{
/* place normal argument before local temporaries */
ctx - > slot [ - - i ] = STIX_STACK_GETTOP ( stix ) ;
STIX_STACK_POP ( stix ) ;
}
}
else
{
for ( i = actual_nargs ; i > 0 ; )
{
/* place normal argument before local temporaries */
ctx - > slot [ - - i ] = STIX_STACK_GETTOP ( stix ) ;
STIX_STACK_POP ( stix ) ;
}
2015-06-04 18:34:37 +00:00
}
2015-06-09 12:14:18 +00:00
/* copy receiver */
2016-05-27 15:01:54 +00:00
ctx - > receiver_or_source = STIX_STACK_GETTOP ( stix ) ;
STIX_STACK_POP ( stix ) ;
2015-06-04 18:34:37 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > sp > = - 1 ) ;
2015-06-04 18:34:37 +00:00
2016-06-24 15:01:51 +00:00
/* the stack pointer in a context is a stack pointer of a process
* before it is activated . this stack pointer is stored to the context
* so that it is used to restore the process stack pointer upon returning
* from a method context . */
2016-02-16 17:00:10 +00:00
ctx - > sp = STIX_SMOOI_TO_OOP ( stix - > sp ) ;
2016-06-24 15:01:51 +00:00
/* switch the active context to the newly instantiated one*/
2015-06-20 03:07:11 +00:00
SWITCH_ACTIVE_CONTEXT ( stix , ctx ) ;
2015-06-08 13:24:02 +00:00
2015-06-04 18:34:37 +00:00
return 0 ;
}
2015-10-28 14:58:58 +00:00
static stix_oop_method_t find_method ( stix_t * stix , stix_oop_t receiver , const stix_oocs_t * message , int super )
2015-06-04 18:34:37 +00:00
{
stix_oop_class_t cls ;
2015-06-06 07:24:35 +00:00
stix_oop_association_t ass ;
stix_oop_t c ;
stix_oop_set_t mthdic ;
int dic_no ;
2015-06-08 13:24:02 +00:00
/* TODO: implement method lookup cache */
2015-06-04 18:34:37 +00:00
2015-06-08 13:24:02 +00:00
cls = ( stix_oop_class_t ) STIX_CLASSOF ( stix , receiver ) ;
2015-06-06 07:24:35 +00:00
if ( ( stix_oop_t ) cls = = stix - > _class )
2015-06-04 18:34:37 +00:00
{
2016-05-03 10:10:28 +00:00
/* receiver is a class object (an instance of Class) */
2015-06-08 13:24:02 +00:00
c = receiver ;
2016-12-03 18:08:31 +00:00
dic_no = STIX_METHOD_CLASS ;
2015-06-08 13:24:02 +00:00
}
2015-06-04 18:34:37 +00:00
else
{
2016-11-21 13:56:20 +00:00
/* receiver is not a class object. so take its class */
2015-06-06 07:24:35 +00:00
c = ( stix_oop_t ) cls ;
2016-12-03 18:08:31 +00:00
dic_no = STIX_METHOD_INSTANCE ;
2015-06-06 07:24:35 +00:00
}
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , c ! = stix - > _nil ) ;
2016-11-21 13:56:20 +00:00
if ( super )
2015-06-06 07:24:35 +00:00
{
2016-11-21 13:56:20 +00:00
/*
stix_oop_method_t m ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , stix - > active_context - > origin ) = = stix - > _method_context ) ;
2016-11-21 13:56:20 +00:00
m = ( stix_oop_method_t ) stix - > active_context - > origin - > method_or_nargs ;
c = ( ( stix_oop_class_t ) m - > owner ) - > superclass ;
*/
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > active_method ) ;
STIX_ASSERT ( stix , stix - > active_method - > owner ) ;
2016-11-21 13:56:20 +00:00
c = ( ( stix_oop_class_t ) stix - > active_method - > owner ) - > superclass ;
if ( c = = stix - > _nil ) goto not_found ; /* reached the top of the hierarchy */
}
2015-06-06 07:24:35 +00:00
2016-11-21 13:56:20 +00:00
do
{
mthdic = ( ( stix_oop_class_t ) c ) - > mthdic [ dic_no ] ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) mthdic ! = stix - > _nil ) ;
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , mthdic ) = = stix - > _method_dictionary ) ;
2015-06-09 12:14:18 +00:00
2016-11-21 13:56:20 +00:00
ass = ( stix_oop_association_t ) stix_lookupdic ( stix , mthdic , message ) ;
if ( ass )
{
/* found the method */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , ass - > value ) = = stix - > _method ) ;
2016-11-21 13:56:20 +00:00
return ( stix_oop_method_t ) ass - > value ;
2015-06-06 07:24:35 +00:00
}
2016-11-21 13:56:20 +00:00
c = ( ( stix_oop_class_t ) c ) - > superclass ;
2015-06-04 18:34:37 +00:00
}
2016-11-21 13:56:20 +00:00
while ( c ! = stix - > _nil ) ;
2015-06-04 18:34:37 +00:00
2015-06-09 12:14:18 +00:00
not_found :
2016-05-03 10:10:28 +00:00
if ( ( stix_oop_t ) cls = = stix - > _class )
{
/* the object is an instance of Class. find the method
* in an instance method dictionary of Class also */
2016-12-03 18:08:31 +00:00
mthdic = ( ( stix_oop_class_t ) cls ) - > mthdic [ STIX_METHOD_INSTANCE ] ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) mthdic ! = stix - > _nil ) ;
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , mthdic ) = = stix - > _method_dictionary ) ;
2016-05-03 10:10:28 +00:00
ass = ( stix_oop_association_t ) stix_lookupdic ( stix , mthdic , message ) ;
if ( ass )
{
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , ass - > value ) = = stix - > _method ) ;
2016-05-03 10:10:28 +00:00
return ( stix_oop_method_t ) ass - > value ;
}
}
2016-11-21 13:56:20 +00:00
STIX_DEBUG3 ( stix , " Method [%.*S] not found for %O \n " , message - > len , message - > ptr , receiver ) ;
2015-06-04 18:34:37 +00:00
stix - > errnum = STIX_ENOENT ;
return STIX_NULL ;
}
2016-02-12 16:23:26 +00:00
static int start_initial_process_and_context ( stix_t * stix , const stix_oocs_t * objname , const stix_oocs_t * mthname )
2015-06-04 18:34:37 +00:00
{
2015-06-08 13:24:02 +00:00
/* the initial context is a fake context. if objname is 'Stix' and
* mthname is ' main ' , this function emulates message sending ' Stix main ' .
* it should emulate the following logical byte - code sequences :
*
* push Stix
* send # main
*/
2015-06-04 18:34:37 +00:00
stix_oop_context_t ctx ;
stix_oop_association_t ass ;
stix_oop_method_t mth ;
2015-10-18 15:06:17 +00:00
stix_oop_process_t proc ;
2015-06-08 13:24:02 +00:00
2016-06-24 15:01:51 +00:00
/* create a fake initial context. */
2016-05-02 13:50:42 +00:00
ctx = ( stix_oop_context_t ) stix_instantiate ( stix , stix - > _method_context , STIX_NULL , 0 ) ;
2015-06-08 13:24:02 +00:00
if ( ! ctx ) return - 1 ;
2015-06-04 18:34:37 +00:00
ass = stix_lookupsysdic ( stix , objname ) ;
if ( ! ass ) return - 1 ;
2015-06-09 12:14:18 +00:00
mth = find_method ( stix , ass - > value , mthname , 0 ) ;
2015-06-04 18:34:37 +00:00
if ( ! mth ) return - 1 ;
2015-11-12 06:57:35 +00:00
if ( STIX_OOP_TO_SMOOI ( mth - > tmpr_nargs ) > 0 )
2015-06-06 07:24:35 +00:00
{
/* this method expects more than 0 arguments.
* i can ' t use it as a start - up method .
TODO : overcome this problem
*/
stix - > errnum = STIX_EINVAL ;
return - 1 ;
}
2015-06-14 07:15:53 +00:00
/* TODO: handle preamble */
2015-06-06 07:24:35 +00:00
/* the initial context starts the life of the entire VM
* and is not really worked on except that it is used to call the
2016-02-11 14:26:26 +00:00
* initial method . so it doesn ' t really require any extra stack space . */
/* TODO: verify this theory of mine. */
2015-06-20 03:07:11 +00:00
stix - > ip = 0 ;
stix - > sp = - 1 ;
2015-06-25 13:37:50 +00:00
2016-02-12 16:23:26 +00:00
ctx - > ip = STIX_SMOOI_TO_OOP ( 0 ) ; /* point to the beginning */
ctx - > sp = STIX_SMOOI_TO_OOP ( - 1 ) ; /* pointer to -1 below the bottom */
2016-02-11 14:26:26 +00:00
ctx - > origin = ctx ; /* point to self */
2016-05-03 10:10:28 +00:00
ctx - > method_or_nargs = ( stix_oop_t ) mth ; /* fake. help SWITCH_ACTIVE_CONTEXT() not fail. TODO: create a static fake method and use it... instead of 'mth' */
2015-10-18 15:06:17 +00:00
/* [NOTE]
* the receiver field and the sender field of ctx are nils .
* especially , the fact that the sender field is nil is used by
* the main execution loop for breaking out of the loop */
2015-06-04 18:34:37 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > active_context = = STIX_NULL ) ;
STIX_ASSERT ( stix , stix - > active_method = = STIX_NULL ) ;
2015-06-20 03:07:11 +00:00
2016-02-12 16:23:26 +00:00
/* stix_gc() uses stix->processor when stix->active_context
* is not NULL . at this poinst , stix - > processor should point to
* an instance of ProcessScheduler . */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) stix - > processor ! = stix - > _nil ) ;
STIX_ASSERT ( stix , stix - > processor - > tally = = STIX_SMOOI_TO_OOP ( 0 ) ) ;
2015-06-16 04:31:28 +00:00
2016-02-12 16:23:26 +00:00
/* start_initial_process() calls the SWITCH_ACTIVE_CONTEXT() macro.
* the macro assumes a non - null value in stix - > active_context .
* let ' s force set active_context to ctx directly . */
stix - > active_context = ctx ;
stix_pushtmp ( stix , ( stix_oop_t * ) & ctx ) ;
2015-10-18 15:06:17 +00:00
stix_pushtmp ( stix , ( stix_oop_t * ) & mth ) ;
2016-02-12 16:23:26 +00:00
stix_pushtmp ( stix , ( stix_oop_t * ) & ass ) ;
2015-12-02 15:24:13 +00:00
proc = start_initial_process ( stix , ctx ) ;
2016-02-12 16:23:26 +00:00
stix_poptmps ( stix , 3 ) ;
2015-10-18 15:06:17 +00:00
if ( ! proc ) return - 1 ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , ass - > value ) ; /* push the receiver - the object referenced by 'objname' */
2016-02-12 16:23:26 +00:00
STORE_ACTIVE_SP ( stix ) ; /* stix->active_context->sp = STIX_SMOOI_TO_OOP(stix->sp) */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > active = = proc ) ;
STIX_ASSERT ( stix , stix - > processor - > active - > initial_context = = ctx ) ;
STIX_ASSERT ( stix , stix - > processor - > active - > current_context = = ctx ) ;
STIX_ASSERT ( stix , stix - > active_context = = ctx ) ;
2016-02-12 16:23:26 +00:00
/* emulate the message sending */
2016-12-14 07:18:01 +00:00
return activate_new_method ( stix , mth , 0 ) ;
2015-06-04 18:34:37 +00:00
}
2015-10-03 15:29:03 +00:00
/* ------------------------------------------------------------------------- */
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_dump ( stix_t * stix , stix_ooi_t nargs )
2015-06-11 09:11:18 +00:00
{
2015-06-14 07:15:53 +00:00
stix_ooi_t i ;
2015-06-11 09:11:18 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs > = 0 ) ;
2015-06-14 07:15:53 +00:00
2016-06-03 15:46:01 +00:00
stix_logbfmt ( stix , 0 , " RECEIVER: %O \n " , STIX_STACK_GET ( stix , stix - > sp - nargs ) ) ;
2015-06-14 07:15:53 +00:00
for ( i = nargs ; i > 0 ; )
2015-06-09 12:14:18 +00:00
{
2015-06-14 07:15:53 +00:00
- - i ;
2016-06-03 15:46:01 +00:00
stix_logbfmt ( stix , 0 , " ARGUMENT %zd: %O \n " , i , STIX_STACK_GET ( stix , stix - > sp - i ) ) ;
2015-06-14 07:15:53 +00:00
}
2015-06-11 09:11:18 +00:00
2016-08-13 06:46:14 +00:00
STIX_STACK_SETRETTORCV ( stix , nargs ) ; /* ^self */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-14 07:15:53 +00:00
}
2015-06-09 12:14:18 +00:00
2016-07-01 16:31:47 +00:00
static void log_char_object ( stix_t * stix , stix_oow_t mask , stix_oop_char_t msg )
{
stix_ooi_t n ;
stix_oow_t rem ;
const stix_ooch_t * ptr ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OBJ_GET_FLAGS_TYPE ( msg ) = = STIX_OBJ_TYPE_CHAR ) ;
2016-07-01 16:31:47 +00:00
rem = STIX_OBJ_GET_SIZE ( msg ) ;
ptr = msg - > slot ;
start_over :
while ( rem > 0 )
{
if ( * ptr = = ' \0 ' )
{
n = stix_logbfmt ( stix , mask , " %C " , * ptr ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , n = = 1 ) ;
2016-07-01 16:31:47 +00:00
rem - = n ;
ptr + = n ;
goto start_over ;
}
n = stix_logbfmt ( stix , mask , " %.*S " , rem , ptr ) ;
if ( n < = - 1 ) break ;
if ( n = = 0 )
{
/* to skip the unprinted character.
* actually , this check is not needed because of ' \0 ' skipping
* at the beginning of the loop */
n = stix_logbfmt ( stix , mask , " %C " , * ptr ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , n = = 1 ) ;
2016-07-01 16:31:47 +00:00
}
rem - = n ;
ptr + = n ;
}
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_log ( stix_t * stix , stix_ooi_t nargs )
2016-06-30 13:44:37 +00:00
{
stix_oop_t msg , level ;
2016-07-01 16:31:47 +00:00
stix_oow_t mask ;
stix_ooi_t k ;
2016-06-30 13:44:37 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs > = 2 ) ;
2016-06-30 13:44:37 +00:00
2016-10-06 17:50:27 +00:00
level = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2016-07-01 16:31:47 +00:00
if ( ! STIX_OOP_IS_SMOOI ( level ) ) mask = STIX_LOG_APP | STIX_LOG_INFO ;
else mask = STIX_LOG_APP | STIX_OOP_TO_SMOOI ( level ) ;
2016-06-30 13:44:37 +00:00
2016-10-06 17:50:27 +00:00
for ( k = 1 ; k < nargs ; k + + )
2016-06-30 13:44:37 +00:00
{
2016-10-06 17:50:27 +00:00
msg = STIX_STACK_GETARG ( stix , nargs , k ) ;
2016-06-30 13:44:37 +00:00
2016-07-01 16:31:47 +00:00
if ( msg = = stix - > _nil | | msg = = stix - > _true | | msg = = stix - > _false )
{
goto dump_object ;
}
else if ( STIX_OOP_IS_POINTER ( msg ) )
2016-06-30 13:44:37 +00:00
{
2016-07-01 16:31:47 +00:00
if ( STIX_OBJ_GET_FLAGS_TYPE ( msg ) = = STIX_OBJ_TYPE_CHAR )
2016-06-30 13:44:37 +00:00
{
2016-07-01 16:31:47 +00:00
log_char_object ( stix , mask , ( stix_oop_char_t ) msg ) ;
2016-06-30 13:44:37 +00:00
}
2016-07-01 16:31:47 +00:00
else if ( STIX_OBJ_GET_FLAGS_TYPE ( msg ) = = STIX_OBJ_TYPE_OOP )
2016-06-30 13:44:37 +00:00
{
2016-07-01 16:31:47 +00:00
/* visit only 1-level down into an array-like object */
2016-07-04 15:36:10 +00:00
stix_oop_t inner , _class ;
stix_oow_t i , spec ;
2016-07-01 16:31:47 +00:00
2016-07-04 15:36:10 +00:00
_class = STIX_CLASSOF ( stix , msg ) ;
spec = STIX_OOP_TO_SMOOI ( ( ( stix_oop_class_t ) _class ) - > spec ) ;
if ( STIX_CLASS_SPEC_NAMED_INSTVAR ( spec ) > 0 | | ! STIX_CLASS_SPEC_IS_INDEXED ( spec ) ) goto dump_object ;
2016-07-01 16:31:47 +00:00
for ( i = 0 ; i < STIX_OBJ_GET_SIZE ( msg ) ; i + + )
{
inner = ( ( stix_oop_oop_t ) msg ) - > slot [ i ] ;
2016-07-04 15:36:10 +00:00
if ( i > 0 ) stix_logbfmt ( stix , mask , " " ) ;
2016-07-01 16:31:47 +00:00
if ( STIX_OOP_IS_POINTER ( inner ) & &
STIX_OBJ_GET_FLAGS_TYPE ( inner ) = = STIX_OBJ_TYPE_CHAR )
{
log_char_object ( stix , mask , ( stix_oop_char_t ) inner ) ;
}
else
{
stix_logbfmt ( stix , mask , " %O " , inner ) ;
}
}
2016-06-30 13:44:37 +00:00
}
2016-07-01 16:31:47 +00:00
else goto dump_object ;
}
else
{
dump_object :
stix_logbfmt ( stix , mask , " %O " , msg ) ;
2016-06-30 13:44:37 +00:00
}
}
2016-08-13 06:46:14 +00:00
STIX_STACK_SETRETTORCV ( stix , nargs ) ; /* ^self */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-06-30 13:44:37 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_identical ( stix_t * stix , stix_ooi_t nargs )
2015-10-08 14:26:04 +00:00
{
stix_oop_t rcv , arg , b ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-10-08 14:26:04 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-10-08 14:26:04 +00:00
b = ( rcv = = arg ) ? stix - > _true : stix - > _false ;
2016-08-13 06:46:14 +00:00
STIX_STACK_SETRET ( stix , nargs , b ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-08 14:26:04 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_not_identical ( stix_t * stix , stix_ooi_t nargs )
2015-10-08 14:26:04 +00:00
{
stix_oop_t rcv , arg , b ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-10-08 14:26:04 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-10-08 14:26:04 +00:00
b = ( rcv ! = arg ) ? stix - > _true : stix - > _false ;
2016-08-13 06:46:14 +00:00
STIX_STACK_SETRET ( stix , nargs , b ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-08 14:26:04 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_equal ( stix_t * stix , stix_ooi_t nargs )
{
stix_oop_t rcv , arg , b ;
STIX_ASSERT ( stix , nargs = = 1 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
b = ( rcv = = arg ) ? stix - > _true : stix - > _false ;
STIX_STACK_SETRET ( stix , nargs , b ) ;
return STIX_PF_SUCCESS ;
}
static stix_pfrc_t pf_not_equal ( stix_t * stix , stix_ooi_t nargs )
{
stix_oop_t rcv , arg , b ;
STIX_ASSERT ( stix , nargs = = 1 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
b = ( rcv ! = arg ) ? stix - > _true : stix - > _false ;
STIX_STACK_SETRET ( stix , nargs , b ) ;
return STIX_PF_SUCCESS ;
}
static stix_pfrc_t pf_class ( stix_t * stix , stix_ooi_t nargs )
2015-10-08 14:26:04 +00:00
{
stix_oop_t rcv , c ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2016-08-13 06:46:14 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2015-10-08 14:26:04 +00:00
c = STIX_CLASSOF ( stix , rcv ) ;
2016-08-13 06:46:14 +00:00
STIX_STACK_SETRET ( stix , nargs , c ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-08 14:26:04 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_basic_new ( stix_t * stix , stix_ooi_t nargs )
2015-06-14 07:15:53 +00:00
{
stix_oop_t rcv , obj ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2015-06-14 07:15:53 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2015-06-14 07:15:53 +00:00
if ( STIX_CLASSOF ( stix , rcv ) ! = stix - > _class )
{
/* the receiver is not a class object */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-09 12:14:18 +00:00
}
2015-06-14 07:15:53 +00:00
obj = stix_instantiate ( stix , rcv , STIX_NULL , 0 ) ;
2017-01-06 09:53:40 +00:00
if ( ! obj ) return STIX_PF_HARD_FAILURE ;
2015-06-14 07:15:53 +00:00
2016-08-13 06:46:14 +00:00
STIX_STACK_SETRET ( stix , nargs , obj ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-14 07:15:53 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_basic_new_with_size ( stix_t * stix , stix_ooi_t nargs )
2015-06-14 07:15:53 +00:00
{
stix_oop_t rcv , szoop , obj ;
stix_oow_t size ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-06-14 07:15:53 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2015-06-14 07:15:53 +00:00
if ( STIX_CLASSOF ( stix , rcv ) ! = stix - > _class )
{
/* the receiver is not a class object */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-14 07:15:53 +00:00
}
2015-06-12 13:52:30 +00:00
2016-08-10 14:41:45 +00:00
szoop = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-12-27 18:02:59 +00:00
if ( stix_inttooow ( stix , szoop , & size ) < = 0 )
2015-06-14 07:15:53 +00:00
{
2015-12-27 18:02:59 +00:00
/* integer out of range or not integer */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-14 07:15:53 +00:00
}
2015-06-16 04:31:28 +00:00
/* stix_instantiate() ignores size if the instance specification
* disallows indexed ( variable ) parts . */
/* TODO: should i check the specification before calling
* stix_instantiate ( ) ? */
2015-06-14 07:15:53 +00:00
obj = stix_instantiate ( stix , rcv , STIX_NULL , size ) ;
2015-06-20 03:07:11 +00:00
if ( ! obj )
{
2017-01-06 09:53:40 +00:00
return STIX_PF_HARD_FAILURE ;
2015-06-20 03:07:11 +00:00
}
2015-06-14 07:15:53 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , obj ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-09 12:14:18 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_ngc_new ( stix_t * stix , stix_ooi_t nargs )
2015-12-27 18:02:59 +00:00
{
2017-01-06 09:53:40 +00:00
/* TODO: implement this.
* if NGC is allowed for non - OOP objects , GC issues get very simple .
*
* also allow NGC code in non - safe mode . in safe mode , ngc_new is same as normal new .
* ngc_dispose should not do anything in safe mode . */
return pf_basic_new ( stix , nargs ) ;
2015-12-27 18:02:59 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_ngc_new_with_size ( stix_t * stix , stix_ooi_t nargs )
2015-12-27 18:02:59 +00:00
{
2017-01-06 09:53:40 +00:00
return pf_basic_new_with_size ( stix , nargs ) ;
2015-12-27 18:02:59 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_ngc_dispose ( stix_t * stix , stix_ooi_t nargs )
2015-12-27 18:02:59 +00:00
{
stix_oop_t rcv ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2015-12-27 18:02:59 +00:00
stix_freemem ( stix , rcv ) ;
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , stix - > _nil ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-12-27 18:02:59 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_shallow_copy ( stix_t * stix , stix_ooi_t nargs )
2015-10-30 15:36:37 +00:00
{
stix_oop_t rcv , obj ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2015-10-30 15:36:37 +00:00
obj = stix_shallowcopy ( stix , rcv ) ;
2017-01-06 09:53:40 +00:00
if ( ! obj ) return STIX_PF_HARD_FAILURE ;
2015-10-30 15:36:37 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , obj ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-30 15:36:37 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_basic_size ( stix_t * stix , stix_ooi_t nargs )
2015-06-21 03:50:35 +00:00
{
2016-06-13 15:52:09 +00:00
/* return the number of indexable fields */
2015-12-27 18:02:59 +00:00
stix_oop_t rcv , sz ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2015-06-21 03:50:35 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2015-12-27 18:02:59 +00:00
2016-06-13 15:52:09 +00:00
if ( ! STIX_OOP_IS_POINTER ( rcv ) )
{
sz = STIX_SMOOI_TO_OOP ( 0 ) ;
}
else
{
sz = stix_oowtoint ( stix , STIX_OBJ_GET_SIZE ( rcv ) ) ;
2017-01-06 09:53:40 +00:00
if ( ! sz ) return STIX_PF_HARD_FAILURE ; /* hard failure */
2016-06-13 15:52:09 +00:00
}
2015-12-27 18:02:59 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , sz ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-21 03:50:35 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_basic_at ( stix_t * stix , stix_ooi_t nargs )
2015-06-21 03:50:35 +00:00
{
stix_oop_t rcv , pos , v ;
2015-12-27 18:02:59 +00:00
stix_oow_t idx ;
2015-06-21 03:50:35 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-06-21 03:50:35 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2015-06-21 03:50:35 +00:00
if ( ! STIX_OOP_IS_POINTER ( rcv ) )
{
/* the receiver is a special numeric object, not a normal pointer */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-21 03:50:35 +00:00
}
2016-08-10 14:41:45 +00:00
pos = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-12-27 18:02:59 +00:00
if ( stix_inttooow ( stix , pos , & idx ) < = 0 )
2015-06-21 03:50:35 +00:00
{
2016-03-16 14:05:34 +00:00
/* negative integer or not integer */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-21 03:50:35 +00:00
}
2016-03-16 14:05:34 +00:00
if ( idx > = STIX_OBJ_GET_SIZE ( rcv ) )
2015-06-21 03:50:35 +00:00
{
/* index out of range */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-21 03:50:35 +00:00
}
switch ( STIX_OBJ_GET_FLAGS_TYPE ( rcv ) )
{
case STIX_OBJ_TYPE_BYTE :
2015-11-12 06:57:35 +00:00
v = STIX_SMOOI_TO_OOP ( ( ( stix_oop_byte_t ) rcv ) - > slot [ idx ] ) ;
2015-06-21 03:50:35 +00:00
break ;
case STIX_OBJ_TYPE_CHAR :
2015-11-20 09:05:55 +00:00
v = STIX_CHAR_TO_OOP ( ( ( stix_oop_char_t ) rcv ) - > slot [ idx ] ) ;
2015-06-21 03:50:35 +00:00
break ;
2015-10-29 15:24:46 +00:00
case STIX_OBJ_TYPE_HALFWORD :
/* TODO: LargeInteger if the halfword is too large */
2015-11-12 06:57:35 +00:00
v = STIX_SMOOI_TO_OOP ( ( ( stix_oop_halfword_t ) rcv ) - > slot [ idx ] ) ;
2015-10-29 15:24:46 +00:00
break ;
2015-06-21 03:50:35 +00:00
case STIX_OBJ_TYPE_WORD :
2017-01-06 09:53:40 +00:00
v = stix_oowtoint ( stix , ( ( stix_oop_word_t ) rcv ) - > slot [ idx ] ) ;
if ( ! v ) return STIX_PF_HARD_FAILURE ;
2015-06-21 03:50:35 +00:00
break ;
case STIX_OBJ_TYPE_OOP :
v = ( ( stix_oop_oop_t ) rcv ) - > slot [ idx ] ;
break ;
default :
stix - > errnum = STIX_EINTERN ;
2017-01-06 09:53:40 +00:00
return STIX_PF_HARD_FAILURE ;
2015-06-21 03:50:35 +00:00
}
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , v ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-21 03:50:35 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_basic_at_put ( stix_t * stix , stix_ooi_t nargs )
2015-06-21 03:50:35 +00:00
{
stix_oop_t rcv , pos , val ;
2015-12-27 18:02:59 +00:00
stix_oow_t idx ;
2015-06-21 03:50:35 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 2 ) ;
2015-06-21 03:50:35 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2015-06-21 03:50:35 +00:00
if ( ! STIX_OOP_IS_POINTER ( rcv ) )
{
/* the receiver is a special numeric object, not a normal pointer */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-21 03:50:35 +00:00
}
2016-08-10 14:41:45 +00:00
pos = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
val = STIX_STACK_GETARG ( stix , nargs , 1 ) ;
2015-12-27 18:02:59 +00:00
if ( stix_inttooow ( stix , pos , & idx ) < = 0 )
2015-06-21 03:50:35 +00:00
{
2016-03-16 14:05:34 +00:00
/* negative integer or not integer */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-21 03:50:35 +00:00
}
2016-03-16 14:05:34 +00:00
if ( idx > = STIX_OBJ_GET_SIZE ( rcv ) )
2015-06-21 03:50:35 +00:00
{
/* index out of range */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-21 03:50:35 +00:00
}
2015-10-30 15:36:37 +00:00
if ( STIX_OBJ_GET_CLASS ( rcv ) = = stix - > _symbol )
{
/* TODO: disallow change of some key kernel objects???? */
/* TODO: is it better to introduct a read-only mark in the object header instead of this class check??? */
/* read-only object */ /* TODO: DEVISE A WAY TO PASS a proper error from the primitive handler to STIX */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-30 15:36:37 +00:00
}
2015-06-21 03:50:35 +00:00
switch ( STIX_OBJ_GET_FLAGS_TYPE ( rcv ) )
{
case STIX_OBJ_TYPE_BYTE :
2015-11-12 06:57:35 +00:00
if ( ! STIX_OOP_IS_SMOOI ( val ) )
2015-06-21 03:50:35 +00:00
{
/* the value is not a character */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-21 03:50:35 +00:00
}
/* TOOD: must I check the range of the value? */
2015-11-12 06:57:35 +00:00
( ( stix_oop_char_t ) rcv ) - > slot [ idx ] = STIX_OOP_TO_SMOOI ( val ) ;
2015-06-21 03:50:35 +00:00
break ;
case STIX_OBJ_TYPE_CHAR :
if ( ! STIX_OOP_IS_CHAR ( val ) )
{
/* the value is not a character */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-21 03:50:35 +00:00
}
( ( stix_oop_char_t ) rcv ) - > slot [ idx ] = STIX_OOP_TO_CHAR ( val ) ;
break ;
2015-10-29 15:24:46 +00:00
case STIX_OBJ_TYPE_HALFWORD :
2015-11-12 06:57:35 +00:00
if ( ! STIX_OOP_IS_SMOOI ( val ) )
2015-10-29 15:24:46 +00:00
{
/* the value is not a number */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-29 15:24:46 +00:00
}
/* if the small integer is too large, it will get truncated */
2015-11-12 06:57:35 +00:00
( ( stix_oop_halfword_t ) rcv ) - > slot [ idx ] = STIX_OOP_TO_SMOOI ( val ) ;
2015-10-29 15:24:46 +00:00
break ;
2015-06-21 03:50:35 +00:00
case STIX_OBJ_TYPE_WORD :
2017-01-06 09:53:40 +00:00
{
stix_oow_t w ;
if ( stix_inttooow ( stix , val , & w ) < = 0 )
2015-06-21 03:50:35 +00:00
{
2017-01-06 09:53:40 +00:00
/* the value is not a number, out of range, or negative */
return STIX_PF_FAILURE ;
2015-06-21 03:50:35 +00:00
}
2017-01-06 09:53:40 +00:00
( ( stix_oop_word_t ) rcv ) - > slot [ idx ] = w ;
2015-06-21 03:50:35 +00:00
break ;
2017-01-06 09:53:40 +00:00
}
2015-06-21 03:50:35 +00:00
case STIX_OBJ_TYPE_OOP :
( ( stix_oop_oop_t ) rcv ) - > slot [ idx ] = val ;
break ;
default :
stix - > errnum = STIX_EINTERN ;
2017-01-06 09:53:40 +00:00
return STIX_PF_HARD_FAILURE ;
2015-06-21 03:50:35 +00:00
}
/* TODO: return receiver or value? */
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , val ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-21 03:50:35 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_hash ( stix_t * stix , stix_ooi_t nargs )
2017-01-05 10:16:04 +00:00
{
stix_oop_t rcv ;
stix_oow_t hv ;
STIX_ASSERT ( stix , nargs = = 0 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
switch ( STIX_OOP_GET_TAG ( rcv ) )
{
case STIX_OOP_TAG_SMINT :
hv = STIX_OOP_TO_CHAR ( rcv ) ;
break ;
case STIX_OOP_TAG_CHAR :
hv = STIX_OOP_TO_CHAR ( rcv ) ;
break ;
case STIX_OOP_TAG_ERROR :
hv = STIX_OOP_TO_ERROR ( rcv ) ;
break ;
default :
{
int type ;
STIX_ASSERT ( stix , STIX_OOP_IS_POINTER ( rcv ) ) ;
type = STIX_OBJ_GET_FLAGS_TYPE ( rcv ) ;
switch ( type )
{
case STIX_OBJ_TYPE_BYTE :
hv = stix_hashbytes ( ( ( stix_oop_byte_t ) rcv ) - > slot , STIX_OBJ_GET_SIZE ( rcv ) ) ;
break ;
case STIX_OBJ_TYPE_CHAR :
hv = stix_hashoochars ( ( ( stix_oop_char_t ) rcv ) - > slot , STIX_OBJ_GET_SIZE ( rcv ) ) ;
break ;
case STIX_OBJ_TYPE_HALFWORD :
hv = stix_hashhalfwords ( ( ( stix_oop_halfword_t ) rcv ) - > slot , STIX_OBJ_GET_SIZE ( rcv ) ) ;
break ;
case STIX_OBJ_TYPE_WORD :
hv = stix_hashwords ( ( ( stix_oop_word_t ) rcv ) - > slot , STIX_OBJ_GET_SIZE ( rcv ) ) ;
break ;
default :
/* STIX_OBJ_TYPE_OOP, ... */
STIX_DEBUG1 ( stix , " <pf_hash> Cannot hash an object of type %d \n " , type ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2017-01-05 10:16:04 +00:00
}
break ;
}
}
hv % = STIX_SMOOI_MAX ;
STIX_STACK_SETRET ( stix , nargs , STIX_SMOOI_TO_OOP ( hv ) ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2017-01-05 10:16:04 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_exceptionize_error ( stix_t * stix , stix_ooi_t nargs )
2017-01-05 10:16:04 +00:00
{
stix_oop_t rcv ;
STIX_ASSERT ( stix , nargs = = 1 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
if ( ! STIX_OOP_IS_POINTER ( rcv ) )
{
/* the receiver is a special numeric object, not a normal pointer.
* excceptionization is not supported for small integers , characters , and errors .
* first of all , methods of these classes must not return errors */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2017-01-05 10:16:04 +00:00
}
// TODO: .......
// STIX_OBJ_SET_FLAGS_EXTRA (rcv, xxx);
STIX_STACK_SETRETTORCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2017-01-05 10:16:04 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_context_goto ( stix_t * stix , stix_ooi_t nargs )
2016-05-18 11:10:54 +00:00
{
stix_oop_t rcv ;
stix_oop_t pc ;
/* this primivie provides the similar functionality to MethodContext>>pc:
* except that it pops the receiver and arguments and doesn ' t push a
* return value . it ' s useful when you want to change the instruction
* pointer while maintaining the stack level before the call */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2016-05-18 11:10:54 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2016-05-18 11:10:54 +00:00
if ( STIX_CLASSOF ( stix , rcv ) ! = stix - > _method_context )
{
2016-06-26 15:03:12 +00:00
STIX_LOG2 ( stix , STIX_LOG_PRIMITIVE | STIX_LOG_ERROR ,
2016-06-30 13:44:37 +00:00
" Error(%hs) - invalid receiver, not a method context - %O \n " , __PRIMITIVE_NAME__ , rcv ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2016-05-18 11:10:54 +00:00
}
2016-08-10 14:41:45 +00:00
pc = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2016-05-18 11:10:54 +00:00
if ( ! STIX_OOP_IS_SMOOI ( pc ) | | STIX_OOP_TO_SMOOI ( pc ) < 0 )
{
2016-06-26 15:03:12 +00:00
STIX_LOG1 ( stix , STIX_LOG_PRIMITIVE | STIX_LOG_ERROR ,
" Error(%hs) - invalid pc \n " , __PRIMITIVE_NAME__ ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2016-05-18 11:10:54 +00:00
}
( ( stix_oop_context_t ) rcv ) - > ip = pc ;
LOAD_ACTIVE_IP ( stix ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs + 1 = = 2 ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , 2 ) ; /* pop both the argument and the receiver */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-05-18 11:10:54 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t __block_value ( stix_t * stix , stix_oop_context_t rcv_blkctx , stix_ooi_t nargs , stix_ooi_t num_first_arg_elems , stix_oop_context_t * pblkctx )
2015-06-17 13:46:16 +00:00
{
2016-02-11 14:26:26 +00:00
/* prepare a new block context for activation.
* the receiver must be a block context which becomes the base
* for a new block context . */
2016-08-10 14:41:45 +00:00
stix_oop_context_t blkctx ;
2015-06-22 14:21:46 +00:00
stix_ooi_t local_ntmprs , i ;
2015-10-22 02:47:25 +00:00
stix_ooi_t actual_arg_count ;
actual_arg_count = ( num_first_arg_elems > 0 ) ? num_first_arg_elems : nargs ;
2015-06-17 13:46:16 +00:00
2015-06-22 14:21:46 +00:00
/* TODO: find a better way to support a reentrant block context. */
2015-06-17 13:46:16 +00:00
2015-06-22 14:21:46 +00:00
/* | sum |
* sum : = [ : n | ( n < 2 ) ifTrue : [ 1 ] ifFalse : [ n + ( sum value : ( n - 1 ) ) ] ] .
* ( sum value : 10 ) .
*
* For the code above , sum is a block context and it is sent value : inside
* itself . Let me simply clone a block context to allow reentrancy like this
* while the block context is active
*/
2016-08-10 14:41:45 +00:00
/* the receiver must be a block context */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , rcv_blkctx ) = = stix - > _block_context ) ;
2016-03-26 06:39:56 +00:00
if ( rcv_blkctx - > receiver_or_source ! = stix - > _nil )
2015-06-25 13:37:50 +00:00
{
2015-06-26 15:49:08 +00:00
/* the 'source' field is not nil.
* this block context has already been activated once .
2015-06-25 13:37:50 +00:00
* you can ' t send ' value ' again to reactivate it .
2016-03-26 06:39:56 +00:00
* For example , [ thisContext value ] value . */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OBJ_GET_SIZE ( rcv_blkctx ) > STIX_CONTEXT_NAMED_INSTVARS ) ;
2016-06-26 15:03:12 +00:00
STIX_LOG2 ( stix , STIX_LOG_PRIMITIVE | STIX_LOG_ERROR ,
" Error(%hs) - re-valuing of a block context - %O \n " , __PRIMITIVE_NAME__ , rcv_blkctx ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-25 13:37:50 +00:00
}
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OBJ_GET_SIZE ( rcv_blkctx ) = = STIX_CONTEXT_NAMED_INSTVARS ) ;
2015-06-25 13:37:50 +00:00
2016-03-26 06:39:56 +00:00
if ( STIX_OOP_TO_SMOOI ( rcv_blkctx - > method_or_nargs ) ! = actual_arg_count /* nargs */ )
2015-06-17 13:46:16 +00:00
{
2016-06-26 15:03:12 +00:00
STIX_LOG4 ( stix , STIX_LOG_PRIMITIVE | STIX_LOG_ERROR ,
" Error(%hs) - wrong number of arguments to a block context %O - expecting %zd, got %zd \n " ,
__PRIMITIVE_NAME__ , rcv_blkctx , STIX_OOP_TO_SMOOI ( rcv_blkctx - > method_or_nargs ) , actual_arg_count ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-06-17 13:46:16 +00:00
}
2016-02-12 16:23:26 +00:00
/* the number of temporaries stored in the block context
* accumulates the number of temporaries starting from the origin .
* simple calculation is needed to find the number of local temporaries */
2016-03-26 06:39:56 +00:00
local_ntmprs = STIX_OOP_TO_SMOOI ( rcv_blkctx - > ntmprs ) -
STIX_OOP_TO_SMOOI ( ( ( stix_oop_context_t ) rcv_blkctx - > home ) - > ntmprs ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , local_ntmprs > = actual_arg_count ) ;
2016-02-12 16:23:26 +00:00
2016-03-26 06:39:56 +00:00
/* create a new block context to clone rcv_blkctx */
2016-08-10 14:41:45 +00:00
stix_pushtmp ( stix , ( stix_oop_t * ) & rcv_blkctx ) ;
2016-06-24 15:01:51 +00:00
blkctx = ( stix_oop_context_t ) stix_instantiate ( stix , stix - > _block_context , STIX_NULL , local_ntmprs ) ;
2016-08-10 14:41:45 +00:00
stix_poptmp ( stix ) ;
2017-01-06 09:53:40 +00:00
if ( ! blkctx ) return STIX_PF_HARD_FAILURE ;
2015-06-22 14:21:46 +00:00
2015-06-25 13:37:50 +00:00
#if 0
/* shallow-copy the named part including home, origin, etc. */
for ( i = 0 ; i < STIX_CONTEXT_NAMED_INSTVARS ; i + + )
2015-06-22 14:21:46 +00:00
{
2016-03-26 06:39:56 +00:00
( ( stix_oop_oop_t ) blkctx ) - > slot [ i ] = ( ( stix_oop_oop_t ) rcv_blkctx ) - > slot [ i ] ;
2015-06-22 14:21:46 +00:00
}
2015-06-25 13:37:50 +00:00
# else
2016-03-26 06:39:56 +00:00
blkctx - > ip = rcv_blkctx - > ip ;
blkctx - > ntmprs = rcv_blkctx - > ntmprs ;
blkctx - > method_or_nargs = rcv_blkctx - > method_or_nargs ;
blkctx - > receiver_or_source = ( stix_oop_t ) rcv_blkctx ;
blkctx - > home = rcv_blkctx - > home ;
blkctx - > origin = rcv_blkctx - > origin ;
2015-10-08 14:26:04 +00:00
# endif
2015-06-22 14:21:46 +00:00
/* TODO: check the stack size of a block context to see if it's large enough to hold arguments */
2015-10-22 02:47:25 +00:00
if ( num_first_arg_elems > 0 )
2015-06-22 14:21:46 +00:00
{
2016-01-29 04:04:39 +00:00
/* the first argument should be an array. this function is ordered
* to pass array elements to the new block */
2015-10-22 02:47:25 +00:00
stix_oop_oop_t xarg ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2016-05-27 15:01:54 +00:00
xarg = ( stix_oop_oop_t ) STIX_STACK_GETTOP ( stix ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_ISTYPEOF ( stix , xarg , STIX_OBJ_TYPE_OOP ) ) ;
STIX_ASSERT ( stix , STIX_OBJ_GET_SIZE ( xarg ) = = num_first_arg_elems ) ;
2015-10-22 02:47:25 +00:00
for ( i = 0 ; i < num_first_arg_elems ; i + + )
{
blkctx - > slot [ i ] = xarg - > slot [ i ] ;
}
}
else
{
/* copy the arguments to the stack */
for ( i = 0 ; i < nargs ; i + + )
{
2016-10-04 17:58:28 +00:00
blkctx - > slot [ i ] = STIX_STACK_GETARG ( stix , nargs , i ) ;
2015-10-22 02:47:25 +00:00
}
2015-06-22 14:21:46 +00:00
}
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , nargs + 1 ) ; /* pop arguments and receiver */
2015-06-22 14:21:46 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , blkctx - > home ! = stix - > _nil ) ;
2016-06-24 14:29:43 +00:00
blkctx - > sp = STIX_SMOOI_TO_OOP ( - 1 ) ; /* not important at all */
2016-02-15 18:07:20 +00:00
blkctx - > sender = stix - > active_context ;
2015-06-17 13:46:16 +00:00
2015-10-22 02:47:25 +00:00
* pblkctx = blkctx ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-22 02:47:25 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_block_value ( stix_t * stix , stix_ooi_t nargs )
2015-10-22 02:47:25 +00:00
{
2017-01-06 09:53:40 +00:00
stix_pfrc_t x ;
2016-08-10 14:41:45 +00:00
stix_oop_context_t rcv_blkctx , blkctx ;
2015-10-22 02:47:25 +00:00
2016-08-10 14:41:45 +00:00
rcv_blkctx = ( stix_oop_context_t ) STIX_STACK_GETRCV ( stix , nargs ) ;
if ( STIX_CLASSOF ( stix , rcv_blkctx ) ! = stix - > _block_context )
{
/* the receiver must be a block context */
STIX_LOG2 ( stix , STIX_LOG_PRIMITIVE | STIX_LOG_ERROR ,
" Error(%hs) - invalid receiver, not a block context - %O \n " , __PRIMITIVE_NAME__ , rcv_blkctx ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2016-08-10 14:41:45 +00:00
}
x = __block_value ( stix , rcv_blkctx , nargs , 0 , & blkctx ) ;
2017-01-06 09:53:40 +00:00
if ( x < = STIX_PF_FAILURE ) return x ; /* hard failure and soft failure */
2015-10-22 02:47:25 +00:00
2015-06-20 03:07:11 +00:00
SWITCH_ACTIVE_CONTEXT ( stix , ( stix_oop_context_t ) blkctx ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-17 13:46:16 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_block_new_process ( stix_t * stix , stix_ooi_t nargs )
2015-10-18 15:06:17 +00:00
{
2016-02-11 14:26:26 +00:00
/* create a new process from a block context.
* the receiver must be be a block .
* [ 1 + 2 ] newProcess .
* [ : a : b | a + b ] newProcess : # ( 1 2 )
*/
2015-10-22 02:47:25 +00:00
int x ;
2016-03-26 06:39:56 +00:00
stix_oop_context_t rcv_blkctx , blkctx ;
2015-10-22 02:47:25 +00:00
stix_oop_process_t proc ;
stix_ooi_t num_first_arg_elems = 0 ;
if ( nargs > 1 )
{
/* too many arguments */
/* TODO: proper error handling */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-22 02:47:25 +00:00
}
if ( nargs = = 1 )
{
2015-12-03 05:46:11 +00:00
stix_oop_t xarg ;
2015-10-22 02:47:25 +00:00
2016-08-10 14:41:45 +00:00
xarg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-10-22 02:47:25 +00:00
if ( ! STIX_ISTYPEOF ( stix , xarg , STIX_OBJ_TYPE_OOP ) )
{
2016-02-11 14:26:26 +00:00
/* the only optional argument must be an OOP-indexable
* object like an array */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-22 02:47:25 +00:00
}
num_first_arg_elems = STIX_OBJ_GET_SIZE ( xarg ) ;
}
2016-08-10 14:41:45 +00:00
rcv_blkctx = ( stix_oop_context_t ) STIX_STACK_GETRCV ( stix , nargs ) ;
2016-03-26 06:39:56 +00:00
if ( STIX_CLASSOF ( stix , rcv_blkctx ) ! = stix - > _block_context )
{
/* the receiver must be a block context */
2016-08-10 14:41:45 +00:00
STIX_LOG2 ( stix , STIX_LOG_PRIMITIVE | STIX_LOG_ERROR ,
" Error(%hs) - invalid receiver, not a block context - %O \n " , __PRIMITIVE_NAME__ , rcv_blkctx ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2016-03-26 06:39:56 +00:00
}
2015-10-22 02:47:25 +00:00
/* this primitive creates a new process with a block as if the block
* is sent the value message */
2016-08-10 14:41:45 +00:00
x = __block_value ( stix , rcv_blkctx , nargs , num_first_arg_elems , & blkctx ) ;
2016-02-11 14:26:26 +00:00
if ( x < = 0 ) return x ; /* both hard failure and soft failure */
2015-10-22 02:47:25 +00:00
2016-05-02 13:50:42 +00:00
/* reset the sender field to stix->_nil because this block context
* will be the initial context of a new process . you can simply
* inspect the sender field to see if a context is an initial
* context of a process . */
blkctx - > sender = ( stix_oop_context_t ) stix - > _nil ;
2015-10-22 02:47:25 +00:00
proc = make_process ( stix , blkctx ) ;
2017-01-06 09:53:40 +00:00
if ( ! proc ) return STIX_PF_HARD_FAILURE ; /* hard failure */ /* TOOD: can't this be treated as a soft failure? */
2015-10-22 02:47:25 +00:00
/* __block_value() has popped all arguments and the receiver.
* PUSH the return value instead of changing the stack top */
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , ( stix_oop_t ) proc ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-18 15:06:17 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_process_resume ( stix_t * stix , stix_ooi_t nargs )
2016-02-19 15:52:56 +00:00
{
stix_oop_t rcv ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2016-02-19 15:52:56 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( STIX_CLASSOF ( stix , rcv ) ! = stix - > _process ) return STIX_PF_FAILURE ;
2016-02-19 15:52:56 +00:00
resume_process ( stix , ( stix_oop_process_t ) rcv ) ; /* TODO: error check */
/* keep the receiver in the stack top */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-02-19 15:52:56 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_process_terminate ( stix_t * stix , stix_ooi_t nargs )
2016-02-14 06:35:18 +00:00
{
stix_oop_t rcv ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2016-02-14 06:35:18 +00:00
2016-06-30 13:44:37 +00:00
/* TODO: need to run ensure blocks here..
* when it ' s executed here . it does ' t have to be in Exception > > handleException when there is no exception handler */
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( STIX_CLASSOF ( stix , rcv ) ! = stix - > _process ) return STIX_PF_FAILURE ;
2016-02-14 06:35:18 +00:00
terminate_process ( stix , ( stix_oop_process_t ) rcv ) ;
/* keep the receiver in the stack top */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-02-14 06:35:18 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_process_yield ( stix_t * stix , stix_ooi_t nargs )
2016-02-19 15:52:56 +00:00
{
stix_oop_t rcv ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2016-02-19 15:52:56 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( STIX_CLASSOF ( stix , rcv ) ! = stix - > _process ) return STIX_PF_FAILURE ;
2016-02-19 15:52:56 +00:00
yield_process ( stix , ( stix_oop_process_t ) rcv ) ;
/* keep the receiver in the stack top */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-02-19 15:52:56 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_process_suspend ( stix_t * stix , stix_ooi_t nargs )
2016-07-04 15:36:10 +00:00
{
stix_oop_t rcv ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2016-07-04 15:36:10 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( STIX_CLASSOF ( stix , rcv ) ! = stix - > _process ) return STIX_PF_FAILURE ;
2016-07-04 15:36:10 +00:00
suspend_process ( stix , ( stix_oop_process_t ) rcv ) ;
/* keep the receiver in the stack top */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-07-04 15:36:10 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_semaphore_signal ( stix_t * stix , stix_ooi_t nargs )
2016-02-18 17:49:56 +00:00
{
stix_oop_t rcv ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2016-02-18 17:49:56 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( STIX_CLASSOF ( stix , rcv ) ! = stix - > _semaphore ) return STIX_PF_FAILURE ;
2016-02-18 17:49:56 +00:00
signal_semaphore ( stix , ( stix_oop_semaphore_t ) rcv ) ;
/* keep the receiver in the stack top */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-02-18 17:49:56 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_semaphore_wait ( stix_t * stix , stix_ooi_t nargs )
2016-02-18 17:49:56 +00:00
{
stix_oop_t rcv ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2016-02-18 17:49:56 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( STIX_CLASSOF ( stix , rcv ) ! = stix - > _semaphore ) return STIX_PF_FAILURE ;
2016-02-18 17:49:56 +00:00
await_semaphore ( stix , ( stix_oop_semaphore_t ) rcv ) ;
/* keep the receiver in the stack top */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-02-18 17:49:56 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_processor_schedule ( stix_t * stix , stix_ooi_t nargs )
2016-02-14 06:35:18 +00:00
{
stix_oop_t rcv , arg ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2016-02-14 06:35:18 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2016-02-14 06:35:18 +00:00
if ( rcv ! = ( stix_oop_t ) stix - > processor | | STIX_CLASSOF ( stix , arg ) ! = stix - > _process )
{
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2016-02-14 06:35:18 +00:00
}
2016-02-19 15:52:56 +00:00
resume_process ( stix , ( stix_oop_process_t ) arg ) ; /* TODO: error check */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-02-14 06:35:18 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_processor_add_timed_semaphore ( stix_t * stix , stix_ooi_t nargs )
2016-03-22 14:18:07 +00:00
{
stix_oop_t rcv , sec , nsec ;
stix_oop_semaphore_t sem ;
2016-03-24 14:58:47 +00:00
stix_ntime_t now , ft ;
2016-03-22 14:18:07 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs > = 2 | | nargs < = 3 ) ;
2016-03-22 14:18:07 +00:00
if ( nargs = = 3 )
{
2016-08-10 14:41:45 +00:00
nsec = STIX_STACK_GETARG ( stix , nargs , 2 ) ;
2017-01-06 09:53:40 +00:00
if ( ! STIX_OOP_IS_SMOOI ( nsec ) ) return STIX_PF_FAILURE ;
2016-03-22 14:18:07 +00:00
}
else nsec = STIX_SMOOI_TO_OOP ( 0 ) ;
2016-08-10 14:41:45 +00:00
sec = STIX_STACK_GETARG ( stix , nargs , 1 ) ;
sem = ( stix_oop_semaphore_t ) STIX_STACK_GETARG ( stix , nargs , 0 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2016-03-22 14:18:07 +00:00
2017-01-06 09:53:40 +00:00
if ( rcv ! = ( stix_oop_t ) stix - > processor ) return STIX_PF_FAILURE ;
if ( STIX_CLASSOF ( stix , sem ) ! = stix - > _semaphore ) return STIX_PF_FAILURE ;
if ( ! STIX_OOP_IS_SMOOI ( sec ) ) return STIX_PF_FAILURE ;
2016-03-22 14:18:07 +00:00
if ( STIX_OOP_IS_SMOOI ( sem - > heap_index ) & &
sem - > heap_index ! = STIX_SMOOI_TO_OOP ( - 1 ) )
{
delete_from_sem_heap ( stix , STIX_OOP_TO_SMOOI ( sem - > heap_index ) ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , sem - > heap_index = = STIX_SMOOI_TO_OOP ( - 1 ) ) ;
2016-03-22 14:18:07 +00:00
/*
Is this more desired ? ? ?
2016-08-13 06:46:14 +00:00
STIX_STACK_SETRET ( stix , nargs , stix - > _false ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-03-22 14:18:07 +00:00
*/
}
/* TODO: make clock_gettime to be platform independent
*
* this code assumes that the monotonic clock returns a small value
2016-06-24 15:53:00 +00:00
* that can fit into a SmallInteger , even after some additions . . . */
2016-05-12 05:53:35 +00:00
vm_gettime ( stix , & now ) ;
2016-03-24 14:58:47 +00:00
STIX_ADDNTIMESNS ( & ft , & now , STIX_OOP_TO_SMOOI ( sec ) , STIX_OOP_TO_SMOOI ( nsec ) ) ;
if ( ft . sec < 0 | | ft . sec > STIX_SMOOI_MAX )
2016-03-22 14:18:07 +00:00
{
2016-06-24 15:53:00 +00:00
/* soft error - cannot represent the expiry time in
2016-03-22 14:18:07 +00:00
* a small integer . */
2016-06-26 15:03:12 +00:00
STIX_LOG3 ( stix , STIX_LOG_PRIMITIVE | STIX_LOG_ERROR ,
" Error(%hs) - time (%ld) out of range(0 - %zd) when adding a timed semaphore \n " ,
__PRIMITIVE_NAME__ , ( unsigned long int ) ft . sec , ( stix_ooi_t ) STIX_SMOOI_MAX ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2016-03-22 14:18:07 +00:00
}
2016-03-24 14:58:47 +00:00
sem - > heap_ftime_sec = STIX_SMOOI_TO_OOP ( ft . sec ) ;
sem - > heap_ftime_nsec = STIX_SMOOI_TO_OOP ( ft . nsec ) ;
2016-03-22 14:18:07 +00:00
2017-01-06 09:53:40 +00:00
if ( add_to_sem_heap ( stix , sem ) < = - 1 ) return STIX_PF_HARD_FAILURE ;
2016-03-22 14:18:07 +00:00
2016-08-13 06:46:14 +00:00
STIX_STACK_SETRETTORCV ( stix , nargs ) ; /* ^self */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-03-22 14:18:07 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_processor_remove_semaphore ( stix_t * stix , stix_ooi_t nargs )
2016-03-22 14:18:07 +00:00
{
2016-03-24 14:58:47 +00:00
/* remove a semaphore from processor's signal scheduling */
2016-03-22 14:18:07 +00:00
stix_oop_t rcv ;
stix_oop_semaphore_t sem ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2016-03-22 14:18:07 +00:00
2016-08-10 14:41:45 +00:00
sem = ( stix_oop_semaphore_t ) STIX_STACK_GETARG ( stix , nargs , 0 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2016-03-24 14:58:47 +00:00
/* TODO: remove a semaphore from IO handler if it's registered...
* remove a semaphore from XXXXXXXXXXXXXX */
2016-03-22 14:18:07 +00:00
2017-01-06 09:53:40 +00:00
if ( rcv ! = ( stix_oop_t ) stix - > processor ) return STIX_PF_FAILURE ;
if ( STIX_CLASSOF ( stix , sem ) ! = stix - > _semaphore ) return STIX_PF_FAILURE ;
2016-03-22 14:18:07 +00:00
if ( STIX_OOP_IS_SMOOI ( sem - > heap_index ) & &
sem - > heap_index ! = STIX_SMOOI_TO_OOP ( - 1 ) )
{
2016-03-24 14:58:47 +00:00
/* the semaphore is in the timed semaphore heap */
delete_from_sem_heap ( stix , STIX_OOP_TO_SMOOI ( sem - > heap_index ) ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , sem - > heap_index = = STIX_SMOOI_TO_OOP ( - 1 ) ) ;
2016-03-22 14:18:07 +00:00
}
2016-08-13 06:46:14 +00:00
STIX_STACK_SETRETTORCV ( stix , nargs ) ; /* ^self */
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-03-22 14:18:07 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_processor_return_to ( stix_t * stix , stix_ooi_t nargs )
2016-03-28 13:25:36 +00:00
{
stix_oop_t rcv , ret , ctx ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 2 ) ;
2016-03-28 13:25:36 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
ret = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
ctx = STIX_STACK_GETARG ( stix , nargs , 1 ) ;
2016-03-28 13:25:36 +00:00
2017-01-06 09:53:40 +00:00
if ( rcv ! = ( stix_oop_t ) stix - > processor ) return STIX_PF_FAILURE ;
2016-03-28 13:25:36 +00:00
2016-05-01 13:49:36 +00:00
if ( STIX_CLASSOF ( stix , ctx ) ! = stix - > _block_context & &
2017-01-06 09:53:40 +00:00
STIX_CLASSOF ( stix , ctx ) ! = stix - > _method_context ) return STIX_PF_FAILURE ;
2016-04-30 05:56:35 +00:00
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , nargs + 1 ) ; /* pop arguments and receiver */
2016-06-24 14:29:43 +00:00
/* TODO: verify if this is correct? does't it correct restore the stack pointer?
* test complex chains of method contexts and block contexts */
if ( STIX_CLASSOF ( stix , ctx ) = = stix - > _method_context )
{
/* when returning to a method context, load the sp register with
* the value stored in the context */
stix - > sp = STIX_OOP_TO_SMOOI ( ( ( stix_oop_context_t ) ctx ) - > sp ) ;
}
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , ret ) ;
2016-05-02 13:50:42 +00:00
SWITCH_ACTIVE_CONTEXT ( stix , ( stix_oop_context_t ) ctx ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-05-02 13:50:42 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_add ( stix_t * stix , stix_ooi_t nargs )
2015-06-20 03:07:11 +00:00
{
2015-10-30 15:36:37 +00:00
stix_oop_t rcv , arg , res ;
2015-06-20 03:07:11 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-06-20 03:07:11 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-06-20 03:07:11 +00:00
2015-10-30 15:36:37 +00:00
res = stix_addints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-10-30 15:36:37 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-22 14:21:46 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_sub ( stix_t * stix , stix_ooi_t nargs )
2015-06-22 14:21:46 +00:00
{
2015-10-30 15:36:37 +00:00
stix_oop_t rcv , arg , res ;
2015-06-22 14:21:46 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-06-22 14:21:46 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-06-22 14:21:46 +00:00
2015-10-30 15:36:37 +00:00
res = stix_subints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-10-30 15:36:37 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-22 14:21:46 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_mul ( stix_t * stix , stix_ooi_t nargs )
2015-07-01 07:21:54 +00:00
{
2015-11-11 13:31:05 +00:00
stix_oop_t rcv , arg , res ;
2015-07-01 07:21:54 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-07-01 07:21:54 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-07-01 07:21:54 +00:00
2015-11-22 13:32:06 +00:00
res = stix_mulints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-11-11 13:31:05 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-11-22 13:32:06 +00:00
}
2015-07-01 07:21:54 +00:00
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_quo ( stix_t * stix , stix_ooi_t nargs )
2015-11-22 13:32:06 +00:00
{
stix_oop_t rcv , arg , quo ;
2015-07-01 07:21:54 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-11-22 13:32:06 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-11-22 13:32:06 +00:00
2015-11-22 14:48:09 +00:00
quo = stix_divints ( stix , rcv , arg , 0 , STIX_NULL ) ;
2017-01-06 09:53:40 +00:00
if ( ! quo ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-02 16:14:37 +00:00
/* TODO: STIX_EDIVBY0 soft or hard failure? */
2015-11-11 13:31:05 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , quo ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-11-22 13:32:06 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_rem ( stix_t * stix , stix_ooi_t nargs )
2015-11-22 13:32:06 +00:00
{
stix_oop_t rcv , arg , quo , rem ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-11-22 13:32:06 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-11-22 13:32:06 +00:00
2015-11-22 14:48:09 +00:00
quo = stix_divints ( stix , rcv , arg , 0 , & rem ) ;
2017-01-06 09:53:40 +00:00
if ( ! quo ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-02 16:14:37 +00:00
/* TODO: STIX_EDIVBY0 soft or hard failure? */
2015-11-22 14:48:09 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , rem ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-11-22 14:48:09 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_quo2 ( stix_t * stix , stix_ooi_t nargs )
2015-11-22 14:48:09 +00:00
{
stix_oop_t rcv , arg , quo ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-11-22 14:48:09 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-11-22 14:48:09 +00:00
quo = stix_divints ( stix , rcv , arg , 1 , STIX_NULL ) ;
2017-01-06 09:53:40 +00:00
if ( ! quo ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-02 16:14:37 +00:00
/* TODO: STIX_EDIVBY0 soft or hard failure? */
2015-11-22 14:48:09 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , quo ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-11-22 14:48:09 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_rem2 ( stix_t * stix , stix_ooi_t nargs )
2015-11-22 14:48:09 +00:00
{
stix_oop_t rcv , arg , quo , rem ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-11-22 14:48:09 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-11-22 14:48:09 +00:00
quo = stix_divints ( stix , rcv , arg , 1 , & rem ) ;
2017-01-06 09:53:40 +00:00
if ( ! quo ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-02 16:14:37 +00:00
/* TODO: STIX_EDIVBY0 soft or hard failure? */
2015-11-22 13:32:06 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , rem ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-07-01 07:21:54 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_negated ( stix_t * stix , stix_ooi_t nargs )
2015-12-25 05:09:17 +00:00
{
stix_oop_t rcv , res ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2015-12-25 05:09:17 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2015-12-25 05:09:17 +00:00
res = stix_negateint ( stix , rcv ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-25 05:09:17 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-12-25 05:09:17 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_bitat ( stix_t * stix , stix_ooi_t nargs )
2015-12-25 05:09:17 +00:00
{
stix_oop_t rcv , arg , res ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-12-25 05:09:17 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-12-25 05:09:17 +00:00
res = stix_bitatint ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-25 05:09:17 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-12-25 05:09:17 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_bitand ( stix_t * stix , stix_ooi_t nargs )
2015-12-10 14:23:09 +00:00
{
stix_oop_t rcv , arg , res ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-12-10 14:23:09 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-12-10 14:23:09 +00:00
res = stix_bitandints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-10 14:23:09 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-12-10 14:23:09 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_bitor ( stix_t * stix , stix_ooi_t nargs )
2015-12-10 14:23:09 +00:00
{
stix_oop_t rcv , arg , res ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-12-10 14:23:09 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-12-10 14:23:09 +00:00
res = stix_bitorints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-10 14:23:09 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-12-10 14:23:09 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_bitxor ( stix_t * stix , stix_ooi_t nargs )
2015-12-10 14:23:09 +00:00
{
stix_oop_t rcv , arg , res ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-12-10 14:23:09 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-12-10 14:23:09 +00:00
res = stix_bitxorints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-10 14:23:09 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-12-10 14:23:09 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_bitinv ( stix_t * stix , stix_ooi_t nargs )
2015-12-17 16:37:26 +00:00
{
stix_oop_t rcv , res ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
2015-12-17 16:37:26 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2015-12-17 16:37:26 +00:00
res = stix_bitinvint ( stix , rcv ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-17 16:37:26 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-12-17 16:37:26 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_bitshift ( stix_t * stix , stix_ooi_t nargs )
2015-12-18 15:58:45 +00:00
{
stix_oop_t rcv , arg , res ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-12-18 15:58:45 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-12-18 15:58:45 +00:00
res = stix_bitshiftint ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-12-18 15:58:45 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-12-18 15:58:45 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_eq ( stix_t * stix , stix_ooi_t nargs )
2015-07-01 07:21:54 +00:00
{
2015-12-27 18:02:59 +00:00
stix_oop_t rcv , arg , res ;
2015-07-01 07:21:54 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-07-01 07:21:54 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-07-01 07:21:54 +00:00
2015-12-27 18:02:59 +00:00
res = stix_eqints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-07-01 07:21:54 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-07-01 07:21:54 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_ne ( stix_t * stix , stix_ooi_t nargs )
2015-10-04 16:21:31 +00:00
{
2015-12-27 18:02:59 +00:00
stix_oop_t rcv , arg , res ;
2015-10-04 16:21:31 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-10-04 16:21:31 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-10-04 16:21:31 +00:00
2015-12-27 18:02:59 +00:00
res = stix_neints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-10-04 16:21:31 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-04 16:21:31 +00:00
}
2015-12-27 18:02:59 +00:00
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_lt ( stix_t * stix , stix_ooi_t nargs )
2015-06-22 14:21:46 +00:00
{
2015-12-27 18:02:59 +00:00
stix_oop_t rcv , arg , res ;
2015-06-22 14:21:46 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-06-22 14:21:46 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-06-22 14:21:46 +00:00
2015-12-27 18:02:59 +00:00
res = stix_ltints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-06-20 03:07:11 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-20 03:07:11 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_gt ( stix_t * stix , stix_ooi_t nargs )
2015-06-22 14:21:46 +00:00
{
2015-12-27 18:02:59 +00:00
stix_oop_t rcv , arg , res ;
2015-06-22 14:21:46 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-06-22 14:21:46 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-06-22 14:21:46 +00:00
2015-12-27 18:02:59 +00:00
res = stix_gtints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-06-22 14:21:46 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-06-22 14:21:46 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_le ( stix_t * stix , stix_ooi_t nargs )
2015-10-04 16:21:31 +00:00
{
2015-12-27 18:02:59 +00:00
stix_oop_t rcv , arg , res ;
2015-10-04 16:21:31 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-10-04 16:21:31 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-10-04 16:21:31 +00:00
2015-12-27 18:02:59 +00:00
res = stix_leints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-10-04 16:21:31 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-04 16:21:31 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_ge ( stix_t * stix , stix_ooi_t nargs )
2015-10-04 16:21:31 +00:00
{
2015-12-27 18:02:59 +00:00
stix_oop_t rcv , arg , res ;
2015-10-04 16:21:31 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-10-04 16:21:31 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-10-04 16:21:31 +00:00
2015-12-27 18:02:59 +00:00
res = stix_geints ( stix , rcv , arg ) ;
2017-01-06 09:53:40 +00:00
if ( ! res ) return ( stix - > errnum = = STIX_EINVAL ? STIX_PF_FAILURE : STIX_PF_HARD_FAILURE ) ;
2015-10-04 16:21:31 +00:00
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , res ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-04 16:21:31 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_integer_inttostr ( stix_t * stix , stix_ooi_t nargs )
2015-12-02 15:24:13 +00:00
{
2015-12-13 16:08:05 +00:00
stix_oop_t rcv , arg , str ;
stix_ooi_t radix ;
2015-12-02 15:24:13 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-12-13 16:08:05 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-12-02 15:24:13 +00:00
2017-01-06 09:53:40 +00:00
if ( ! STIX_OOP_IS_SMOOI ( arg ) ) return STIX_PF_FAILURE ;
2015-12-13 16:08:05 +00:00
radix = STIX_OOP_TO_SMOOI ( arg ) ;
2015-12-02 15:24:13 +00:00
2017-01-06 09:53:40 +00:00
if ( radix < 2 | | radix > 36 ) return STIX_PF_FAILURE ;
2015-12-13 16:08:05 +00:00
str = stix_inttostr ( stix , rcv , radix ) ;
2015-12-02 15:24:13 +00:00
if ( ! str ) return ( stix - > errnum = = STIX_EINVAL ? 0 : - 1 ) ;
2016-08-10 14:41:45 +00:00
STIX_STACK_SETRET ( stix , nargs , str ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-12-02 15:24:13 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_smooi_as_character ( stix_t * stix , stix_ooi_t nargs )
2016-12-28 19:12:14 +00:00
{
stix_oop_t rcv ;
stix_ooi_t ec ;
STIX_ASSERT ( stix , nargs = = 0 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( ! STIX_OOP_IS_SMOOI ( rcv ) ) return STIX_PF_FAILURE ;
2016-12-28 19:12:14 +00:00
ec = STIX_OOP_TO_SMOOI ( rcv ) ;
if ( ec < 0 ) ec = 0 ;
STIX_STACK_SETRET ( stix , nargs , STIX_CHAR_TO_OOP ( ec ) ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-12-28 19:12:14 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_smooi_as_error ( stix_t * stix , stix_ooi_t nargs )
2016-12-28 19:12:14 +00:00
{
stix_oop_t rcv ;
stix_ooi_t ec ;
STIX_ASSERT ( stix , nargs = = 0 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( ! STIX_OOP_IS_SMOOI ( rcv ) ) return STIX_PF_FAILURE ;
2016-12-28 19:12:14 +00:00
ec = STIX_OOP_TO_SMOOI ( rcv ) ;
if ( ec < 0 ) ec = 0 ;
STIX_STACK_SETRET ( stix , nargs , STIX_ERROR_TO_OOP ( ec ) ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-12-28 19:12:14 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_error_as_character ( stix_t * stix , stix_ooi_t nargs )
2016-12-28 13:42:12 +00:00
{
stix_oop_t rcv ;
stix_ooi_t ec ;
STIX_ASSERT ( stix , nargs = = 0 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( ! STIX_OOP_IS_ERROR ( rcv ) ) return STIX_PF_FAILURE ;
2016-12-28 13:42:12 +00:00
ec = STIX_OOP_TO_ERROR ( rcv ) ;
STIX_ASSERT ( stix , STIX_IN_SMOOI_RANGE ( ec ) ) ;
STIX_STACK_SETRET ( stix , nargs , STIX_CHAR_TO_OOP ( ec ) ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-12-28 13:42:12 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_error_as_integer ( stix_t * stix , stix_ooi_t nargs )
2016-12-26 18:44:47 +00:00
{
2016-12-27 18:15:35 +00:00
stix_oop_t rcv ;
stix_ooi_t ec ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( ! STIX_OOP_IS_ERROR ( rcv ) ) return STIX_PF_FAILURE ;
2016-12-26 18:44:47 +00:00
2016-12-27 18:15:35 +00:00
ec = STIX_OOP_TO_ERROR ( rcv ) ;
STIX_ASSERT ( stix , STIX_IN_SMOOI_RANGE ( ec ) ) ;
STIX_STACK_SETRET ( stix , nargs , STIX_SMOOI_TO_OOP ( ec ) ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-12-26 18:44:47 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_error_as_string ( stix_t * stix , stix_ooi_t nargs )
2016-12-26 18:44:47 +00:00
{
2016-12-27 18:15:35 +00:00
stix_oop_t rcv , ss ;
stix_ooi_t ec ;
const stix_ooch_t * s ;
2016-12-26 18:44:47 +00:00
2016-12-27 18:15:35 +00:00
STIX_ASSERT ( stix , nargs = = 0 ) ;
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
2017-01-06 09:53:40 +00:00
if ( ! STIX_OOP_IS_ERROR ( rcv ) ) return STIX_PF_FAILURE ;
2016-12-27 18:15:35 +00:00
ec = STIX_OOP_TO_ERROR ( rcv ) ;
STIX_ASSERT ( stix , STIX_IN_SMOOI_RANGE ( ec ) ) ;
/* TODO: error string will be mostly the same.. do i really have to call makestring every time? */
s = stix_errnumtoerrstr ( ec ) ;
ss = stix_makestring ( stix , s , stix_countoocstr ( s ) ) ;
2017-01-06 09:53:40 +00:00
if ( ! ss ) return STIX_PF_HARD_FAILURE ;
2016-12-27 18:15:35 +00:00
STIX_STACK_SETRET ( stix , nargs , ss ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2016-12-26 18:44:47 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_ffi_open ( stix_t * stix , stix_ooi_t nargs )
2015-10-03 15:29:03 +00:00
{
stix_oop_t rcv , arg ;
void * handle ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-10-03 15:29:03 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-10-03 15:29:03 +00:00
2015-10-04 16:21:31 +00:00
if ( ! STIX_ISTYPEOF ( stix , arg , STIX_OBJ_TYPE_CHAR ) )
2015-10-03 15:29:03 +00:00
{
/* TODO: more info on error */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-03 15:29:03 +00:00
}
2016-11-27 15:37:14 +00:00
if ( ! stix - > vmprim . dl_open )
2015-10-03 15:29:03 +00:00
{
/* TODO: more info on error */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-03 15:29:03 +00:00
}
2015-10-14 13:25:36 +00:00
2015-10-13 14:51:04 +00:00
/* TODO: check null-termination... */
2016-11-27 15:37:14 +00:00
handle = stix - > vmprim . dl_open ( stix , ( ( stix_oop_char_t ) arg ) - > slot ) ;
2015-10-13 14:51:04 +00:00
if ( ! handle )
2015-10-03 15:29:03 +00:00
{
/* TODO: more info on error */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-03 15:29:03 +00:00
}
2016-05-27 15:01:54 +00:00
STIX_STACK_POP ( stix ) ;
2015-12-03 05:46:11 +00:00
/* TODO: how to hold an address? as an integer???? or a byte array? fix this not to loose accuracy*/
2016-05-27 15:01:54 +00:00
STIX_STACK_SETTOP ( stix , STIX_SMOOI_TO_OOP ( handle ) ) ;
2015-10-03 15:29:03 +00:00
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-03 15:29:03 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_ffi_close ( stix_t * stix , stix_ooi_t nargs )
2015-10-03 15:29:03 +00:00
{
stix_oop_t rcv , arg ;
void * handle ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 1 ) ;
2015-10-03 15:29:03 +00:00
2016-08-10 14:41:45 +00:00
rcv = STIX_STACK_GETRCV ( stix , nargs ) ;
arg = STIX_STACK_GETARG ( stix , nargs , 0 ) ;
2015-10-03 15:29:03 +00:00
2015-11-12 06:57:35 +00:00
if ( ! STIX_OOP_IS_SMOOI ( arg ) )
2015-10-03 15:29:03 +00:00
{
/* TODO: more info on error */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-03 15:29:03 +00:00
}
2016-05-27 15:01:54 +00:00
STIX_STACK_POP ( stix ) ;
2015-10-03 15:29:03 +00:00
2015-12-03 05:46:11 +00:00
handle = ( void * ) STIX_OOP_TO_SMOOI ( arg ) ; /* TODO: how to store void* ???. fix this not to loose accuracy */
2016-11-27 15:37:14 +00:00
if ( stix - > vmprim . dl_close ) stix - > vmprim . dl_close ( stix , handle ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-03 15:29:03 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_ffi_call ( stix_t * stix , stix_ooi_t nargs )
2015-10-03 15:29:03 +00:00
{
2015-11-03 14:58:19 +00:00
# if defined(USE_DYNCALL)
2015-10-04 16:21:31 +00:00
stix_oop_t rcv , fun , sig , args ;
2015-10-03 15:29:03 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 3 ) ;
2015-10-03 15:29:03 +00:00
2016-05-27 15:01:54 +00:00
rcv = STIX_STACK_GET ( stix , stix - > sp - 3 ) ;
fun = STIX_STACK_GET ( stix , stix - > sp - 2 ) ;
sig = STIX_STACK_GET ( stix , stix - > sp - 1 ) ;
args = STIX_STACK_GET ( stix , stix - > sp ) ;
2015-10-03 15:29:03 +00:00
2015-11-12 06:57:35 +00:00
if ( ! STIX_OOP_IS_SMOOI ( fun ) ) /* TODO: how to store pointer */
2015-10-03 15:29:03 +00:00
{
/* TODO: more info on error */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-03 15:29:03 +00:00
}
2015-10-04 16:21:31 +00:00
if ( ! STIX_ISTYPEOF ( stix , sig , STIX_OBJ_TYPE_CHAR ) | | STIX_OBJ_GET_SIZE ( sig ) < = 0 )
{
2016-06-22 03:23:14 +00:00
STIX_DEBUG0 ( stix , " FFI: wrong signature... \n " ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-04 16:21:31 +00:00
}
if ( STIX_CLASSOF ( stix , args ) ! = stix - > _array ) /* TODO: check if arr is a kind of array??? or check if it's indexed */
2015-10-03 15:29:03 +00:00
{
/* TODO: more info on error */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-03 15:29:03 +00:00
}
2015-10-04 16:21:31 +00:00
{
stix_oow_t i ;
DCCallVM * dc ;
void * f ;
stix_oop_oop_t arr ;
int mode_set ;
2015-11-12 06:57:35 +00:00
f = STIX_OOP_TO_SMOOI ( fun ) ; /* TODO: decode pointer properly */
2015-10-04 16:21:31 +00:00
arr = ( stix_oop_oop_t ) args ;
dc = dcNewCallVM ( 4096 ) ;
2017-01-06 09:53:40 +00:00
if ( ! dc ) return STIX_PF_HARD_FAILURE ; /* TODO: proper error handling */
2015-10-04 16:21:31 +00:00
2016-06-22 03:23:14 +00:00
STIX_DEBUG1 ( stix , " FFI: CALLING............%p \n " , f ) ;
2015-10-14 09:06:44 +00:00
/*dcMode (dc, DC_CALL_C_DEFAULT);
dcReset ( dc ) ; */
2015-10-04 16:21:31 +00:00
/*for (i = 2; i < STIX_OBJ_GET_SIZE(sig); i++)
{
if ( ( ( stix_oop_char_t ) sig ) - > slot [ i ] = = ' | ' )
{
dcMode ( dc , DC_CALL_C_ELLIPSIS ) ;
2016-06-22 03:23:14 +00:00
STIX_DEBUG0 ( stix , " CALL MODE 111 ERROR %d %d \n " , dcGetError ( dc ) , DC_ERROR_UNSUPPORTED_MODE ) ;
2015-10-04 16:21:31 +00:00
mode_set = 1 ;
break ;
}
}
if ( ! mode_set ) */ dcMode ( dc , DC_CALL_C_DEFAULT ) ;
for ( i = 2 ; i < STIX_OBJ_GET_SIZE ( sig ) ; i + + )
{
2016-06-22 03:23:14 +00:00
STIX_DEBUG1 ( stix , " FFI: CALLING ARG %c \n " , ( ( stix_oop_char_t ) sig ) - > slot [ i ] ) ;
2015-10-04 16:21:31 +00:00
switch ( ( ( stix_oop_char_t ) sig ) - > slot [ i ] )
{
/* TODO: support more types... */
/*
case ' | ' :
dcMode ( dc , DC_CALL_C_ELLIPSIS_VARARGS ) ;
2016-06-22 03:23:14 +00:00
STIX_DEBUG2 ( stix , " CALL MODE 222 ERROR %d %d \n " , dcGetError ( dc ) , DC_ERROR_UNSUPPORTED_MODE ) ;
2015-10-04 16:21:31 +00:00
break ;
*/
case ' c ' :
/* TODO: sanity check on the argument type */
dcArgChar ( dc , STIX_OOP_TO_CHAR ( arr - > slot [ i - 2 ] ) ) ;
break ;
case ' i ' :
2015-11-12 06:57:35 +00:00
dcArgInt ( dc , STIX_OOP_TO_SMOOI ( arr - > slot [ i - 2 ] ) ) ;
2015-10-04 16:21:31 +00:00
break ;
case ' l ' :
2015-11-12 06:57:35 +00:00
dcArgLong ( dc , STIX_OOP_TO_SMOOI ( arr - > slot [ i - 2 ] ) ) ;
2015-10-04 16:21:31 +00:00
break ;
case ' L ' :
2015-11-12 06:57:35 +00:00
dcArgLongLong ( dc , STIX_OOP_TO_SMOOI ( arr - > slot [ i - 2 ] ) ) ;
2015-10-04 16:21:31 +00:00
break ;
case ' s ' :
{
2015-12-17 16:11:10 +00:00
stix_oow_t bcslen , ucslen ;
2015-10-04 16:21:31 +00:00
stix_bch_t bcs [ 1024 ] ;
ucslen = STIX_OBJ_GET_SIZE ( arr - > slot [ i - 2 ] ) ;
2016-12-27 18:15:35 +00:00
stix_convootobchars ( stix , ( ( stix_oop_char_t ) arr - > slot [ i - 2 ] ) - > slot , & ucslen , bcs , & bcslen ) ; /* proper string conversion */
2015-10-04 16:21:31 +00:00
bcs [ bcslen ] = ' \0 ' ;
dcArgPointer ( dc , bcs ) ;
break ;
}
default :
/* TODO: ERROR HANDLING */
break ;
}
}
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , nargs ) ;
2015-10-04 16:21:31 +00:00
switch ( ( ( stix_oop_char_t ) sig ) - > slot [ 0 ] )
{
/* TODO: support more types... */
/* TODO: proper return value conversion */
case ' c ' :
{
char r = dcCallChar ( dc , f ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_SETTOP ( stix , STIX_CHAR_TO_OOP ( r ) ) ;
2015-10-04 16:21:31 +00:00
break ;
}
case ' i ' :
{
int r = dcCallInt ( dc , f ) ;
2016-06-22 03:23:14 +00:00
STIX_DEBUG1 ( stix , " CALLED... %d \n " , r ) ;
STIX_DEBUG2 ( stix , " CALL ERROR %d %d \n " , dcGetError ( dc ) , DC_ERROR_UNSUPPORTED_MODE ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_SETTOP ( stix , STIX_SMOOI_TO_OOP ( r ) ) ;
2015-10-04 16:21:31 +00:00
break ;
}
case ' l ' :
{
long r = dcCallLong ( dc , f ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_SETTOP ( stix , STIX_SMOOI_TO_OOP ( r ) ) ;
2015-10-04 16:21:31 +00:00
break ;
}
case ' L ' :
{
long long r = dcCallLongLong ( dc , f ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_SETTOP ( stix , STIX_SMOOI_TO_OOP ( r ) ) ;
2015-10-04 16:21:31 +00:00
break ;
}
case ' s ' :
{
2015-12-17 16:11:10 +00:00
stix_oow_t bcslen , ucslen ;
2015-12-02 15:24:13 +00:00
stix_ooch_t ucs [ 1024 ] ;
stix_oop_t s ;
2015-10-04 16:21:31 +00:00
char * r = dcCallPointer ( dc , f ) ;
2016-11-27 15:37:14 +00:00
2015-10-04 16:21:31 +00:00
bcslen = strlen ( r ) ;
2016-12-27 18:15:35 +00:00
stix_convbtooochars ( stix , r , & bcslen , ucs , & ucslen ) ; /* proper string conversion */
2015-10-04 16:21:31 +00:00
2015-12-02 15:24:13 +00:00
s = stix_makestring ( stix , ucs , ucslen )
if ( ! s )
{
dcFree ( dc ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_HARD_FAILURE ; /* TODO: proper error h andling */
2015-12-02 15:24:13 +00:00
}
2016-05-27 15:01:54 +00:00
STIX_STACK_SETTOP ( stix , s ) ;
2015-10-04 16:21:31 +00:00
break ;
}
default :
/* TOOD: ERROR HANDLING */
break ;
}
dcFree ( dc ) ;
}
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-11-03 14:58:19 +00:00
# else
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-11-03 14:58:19 +00:00
# endif
2015-10-03 15:29:03 +00:00
}
2017-01-06 09:53:40 +00:00
static stix_pfrc_t pf_ffi_getsym ( stix_t * stix , stix_ooi_t nargs )
2015-10-03 15:29:03 +00:00
{
2015-10-04 16:21:31 +00:00
stix_oop_t rcv , hnd , fun ;
void * sym ;
2015-10-03 15:29:03 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs = = 2 ) ;
2015-10-03 15:29:03 +00:00
2016-05-27 15:01:54 +00:00
rcv = STIX_STACK_GET ( stix , stix - > sp - 2 ) ;
fun = STIX_STACK_GET ( stix , stix - > sp - 1 ) ;
hnd = STIX_STACK_GET ( stix , stix - > sp ) ;
2015-10-03 15:29:03 +00:00
2015-11-12 06:57:35 +00:00
if ( ! STIX_OOP_IS_SMOOI ( hnd ) ) /* TODO: how to store pointer */
2015-10-03 15:29:03 +00:00
{
/* TODO: more info on error */
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-03 15:29:03 +00:00
}
2015-10-04 16:21:31 +00:00
if ( ! STIX_ISTYPEOF ( stix , fun , STIX_OBJ_TYPE_CHAR ) )
2015-10-03 15:29:03 +00:00
{
2016-06-22 03:23:14 +00:00
STIX_DEBUG0 ( stix , " wrong function name... \n " ) ;
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-03 15:29:03 +00:00
}
2016-11-27 15:37:14 +00:00
if ( ! stix - > vmprim . dl_getsym )
2015-10-03 15:29:03 +00:00
{
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-03 15:29:03 +00:00
}
2016-11-27 15:37:14 +00:00
sym = stix - > vmprim . dl_getsym ( stix , ( void * ) STIX_OOP_TO_SMOOI ( hnd ) , ( ( stix_oop_char_t ) fun ) - > slot ) ;
2015-10-13 14:51:04 +00:00
if ( ! sym )
2015-10-03 15:29:03 +00:00
{
2017-01-06 09:53:40 +00:00
return STIX_PF_FAILURE ;
2015-10-03 15:29:03 +00:00
}
/* TODO: how to hold an address? as an integer???? or a byte array? */
2016-08-13 06:46:14 +00:00
STIX_STACK_SETRET ( stix , nargs , STIX_SMOOI_TO_OOP ( sym ) ) ;
2015-10-03 15:29:03 +00:00
2017-01-06 09:53:40 +00:00
return STIX_PF_SUCCESS ;
2015-10-03 15:29:03 +00:00
}
2015-06-22 14:21:46 +00:00
2016-03-22 14:18:07 +00:00
# define MAX_NARGS STIX_TYPE_MAX(stix_ooi_t)
2016-11-29 05:25:08 +00:00
struct pf_t
2015-06-14 07:15:53 +00:00
{
2016-11-29 05:25:08 +00:00
stix_ooi_t min_nargs ; /* expected number of arguments */
stix_ooi_t max_nargs ; /* expected number of arguments */
stix_pfimpl_t handler ;
const char * name ; /* the name is supposed to be 7-bit ascii only */
2015-06-14 07:15:53 +00:00
} ;
2016-11-29 05:25:08 +00:00
typedef struct pf_t pf_t ;
static pf_t pftab [ ] =
{
{ 0 , MAX_NARGS , pf_dump , " _dump " } ,
{ 2 , MAX_NARGS , pf_log , " _log " } ,
{ 1 , 1 , pf_identical , " _identical " } ,
{ 1 , 1 , pf_not_identical , " _not_identical " } ,
2017-01-06 09:53:40 +00:00
{ 1 , 1 , pf_equal , " _equal " } ,
{ 1 , 1 , pf_not_equal , " _not_equal " } ,
2016-11-29 05:25:08 +00:00
{ 0 , 0 , pf_class , " _class " } ,
{ 0 , 0 , pf_basic_new , " _basic_new " } ,
{ 1 , 1 , pf_basic_new_with_size , " _basic_new_with_size " } ,
{ 0 , 0 , pf_ngc_new , " _ngc_new " } ,
{ 1 , 1 , pf_ngc_new_with_size , " _ngc_new_with_size " } ,
{ 0 , 0 , pf_ngc_dispose , " _ngc_dispose " } ,
{ 0 , 0 , pf_shallow_copy , " _shallow_copy " } ,
{ 0 , 0 , pf_basic_size , " _basic_size " } ,
{ 1 , 1 , pf_basic_at , " _basic_at " } ,
{ 2 , 2 , pf_basic_at_put , " _basic_at_put " } ,
2017-01-05 10:16:04 +00:00
{ 0 , 0 , pf_hash , " _hash " } ,
{ 1 , 1 , pf_exceptionize_error , " _exceptionize_error " } ,
2016-11-29 05:25:08 +00:00
{ 1 , 1 , pf_context_goto , " _context_goto " } ,
{ 0 , MAX_NARGS , pf_block_value , " _block_value " } ,
{ 0 , MAX_NARGS , pf_block_new_process , " _block_new_process " } ,
{ 0 , 0 , pf_process_resume , " _process_resume " } ,
{ 0 , 0 , pf_process_terminate , " _process_terminate " } ,
{ 0 , 0 , pf_process_yield , " _process_yield " } ,
{ 0 , 0 , pf_process_suspend , " _process_suspend " } ,
{ 0 , 0 , pf_semaphore_signal , " _semaphore_signal " } ,
{ 0 , 0 , pf_semaphore_wait , " _semaphore_wait " } ,
{ 1 , 1 , pf_processor_schedule , " _processor_schedule " } ,
{ 2 , 3 , pf_processor_add_timed_semaphore , " _processor_add_timed_semaphore " } ,
{ 1 , 1 , pf_processor_remove_semaphore , " _processor_remove_semaphore " } ,
{ 2 , 2 , pf_processor_return_to , " _processor_return_to " } ,
{ 1 , 1 , pf_integer_add , " _integer_add " } ,
{ 1 , 1 , pf_integer_sub , " _integer_sub " } ,
{ 1 , 1 , pf_integer_mul , " _integer_mul " } ,
{ 1 , 1 , pf_integer_quo , " _integer_quo " } ,
{ 1 , 1 , pf_integer_rem , " _integer_rem " } ,
{ 1 , 1 , pf_integer_quo2 , " _integer_quo2 " } ,
{ 1 , 1 , pf_integer_rem2 , " _integer_rem2 " } ,
{ 0 , 0 , pf_integer_negated , " _integer_negated " } ,
{ 1 , 1 , pf_integer_bitat , " _integer_bitat " } ,
{ 1 , 1 , pf_integer_bitand , " _integer_bitand " } ,
{ 1 , 1 , pf_integer_bitor , " _integer_bitor " } ,
{ 1 , 1 , pf_integer_bitxor , " _integer_bitxor " } ,
{ 0 , 0 , pf_integer_bitinv , " _integer_bitinv " } ,
{ 1 , 1 , pf_integer_bitshift , " _integer_bitshift " } ,
{ 1 , 1 , pf_integer_eq , " _integer_eq " } ,
{ 1 , 1 , pf_integer_ne , " _integer_ne " } ,
{ 1 , 1 , pf_integer_lt , " _integer_lt " } ,
{ 1 , 1 , pf_integer_gt , " _integer_gt " } ,
{ 1 , 1 , pf_integer_le , " _integer_le " } ,
{ 1 , 1 , pf_integer_ge , " _integer_ge " } ,
{ 1 , 1 , pf_integer_inttostr , " _integer_inttostr " } ,
2016-12-28 19:12:14 +00:00
{ 0 , 0 , pf_smooi_as_character , " _smooi_as_character " } ,
{ 0 , 0 , pf_smooi_as_error , " _smooi_as_error " } ,
2016-12-28 13:42:12 +00:00
{ 0 , 0 , pf_error_as_character , " _error_as_character " } ,
2016-12-27 18:15:35 +00:00
{ 0 , 0 , pf_error_as_integer , " _error_as_integer " } ,
2016-12-26 18:44:47 +00:00
{ 0 , 0 , pf_error_as_string , " _error_as_string " } ,
2016-12-27 18:15:35 +00:00
2016-11-29 05:25:08 +00:00
{ 1 , 1 , pf_ffi_open , " _ffi_open " } ,
{ 1 , 1 , pf_ffi_close , " _ffi_close " } ,
{ 2 , 2 , pf_ffi_getsym , " _ffi_getsym " } ,
{ 3 , 3 , pf_ffi_call , " _ffi_call " }
2015-10-13 14:51:04 +00:00
2015-06-14 07:15:53 +00:00
} ;
2015-06-11 09:11:18 +00:00
2016-11-29 05:25:08 +00:00
int stix_getpfnum ( stix_t * stix , const stix_ooch_t * ptr , stix_oow_t len )
2015-10-03 15:29:03 +00:00
{
int i ;
2016-11-29 05:25:08 +00:00
for ( i = 0 ; i < STIX_COUNTOF ( pftab ) ; i + + )
2015-10-03 15:29:03 +00:00
{
2016-12-31 17:19:40 +00:00
if ( stix_compoocharsbcstr ( ptr , len , pftab [ i ] . name ) = = 0 )
2015-10-03 15:29:03 +00:00
{
return i ;
}
}
stix - > errnum = STIX_ENOENT ;
return - 1 ;
}
2015-12-27 10:19:36 +00:00
/* ------------------------------------------------------------------------- */
2016-06-20 15:42:51 +00:00
static int start_method ( stix_t * stix , stix_oop_method_t method , stix_oow_t nargs )
2015-12-27 10:19:36 +00:00
{
stix_ooi_t preamble , preamble_code ;
2016-10-06 14:17:24 +00:00
# if defined(STIX_DEBUG_VM_EXEC)
stix_ooi_t fetched_instruction_pointer = 0 ; /* set it to a fake value */
# endif
2016-12-14 07:18:01 +00:00
preamble = STIX_OOP_TO_SMOOI ( method - > preamble ) ;
2016-12-13 15:18:19 +00:00
if ( nargs ! = STIX_OOP_TO_SMOOI ( method - > tmpr_nargs ) )
{
2016-12-14 07:18:01 +00:00
stix_ooi_t preamble_flags ;
preamble_flags = STIX_METHOD_GET_PREAMBLE_FLAGS ( preamble ) ;
if ( ! ( preamble_flags & STIX_METHOD_PREAMBLE_FLAG_VARIADIC ) )
{
/* TODO: better to throw a stix exception so that the caller can catch it??? */
STIX_LOG3 ( stix , STIX_LOG_IC | STIX_LOG_FATAL ,
" Fatal error - Argument count mismatch for a non-variadic method [%O] - %zd expected, %zu given \n " ,
method - > name , STIX_OOP_TO_SMOOI ( method - > tmpr_nargs ) , nargs ) ;
stix - > errnum = STIX_EINVAL ;
return - 1 ;
}
2016-12-13 15:18:19 +00:00
}
2015-12-27 10:19:36 +00:00
preamble_code = STIX_METHOD_GET_PREAMBLE_CODE ( preamble ) ;
switch ( preamble_code )
{
case STIX_METHOD_PREAMBLE_RETURN_RECEIVER :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " preamble_return_receiver " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , nargs ) ; /* pop arguments only*/
2015-12-27 10:19:36 +00:00
break ;
case STIX_METHOD_PREAMBLE_RETURN_NIL :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " preamble_return_nil " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , nargs ) ;
STIX_STACK_SETTOP ( stix , stix - > _nil ) ;
2015-12-27 10:19:36 +00:00
break ;
case STIX_METHOD_PREAMBLE_RETURN_TRUE :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " preamble_return_true " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , nargs ) ;
STIX_STACK_SETTOP ( stix , stix - > _true ) ;
2015-12-27 10:19:36 +00:00
break ;
case STIX_METHOD_PREAMBLE_RETURN_FALSE :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " preamble_return_false " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , nargs ) ;
STIX_STACK_SETTOP ( stix , stix - > _false ) ;
2015-12-27 10:19:36 +00:00
break ;
2016-06-05 18:01:35 +00:00
case STIX_METHOD_PREAMBLE_RETURN_INDEX :
/* preamble_index field is used to store a positive integer */
LOG_INST_1 ( stix , " preamble_return_index %zd " , STIX_METHOD_GET_PREAMBLE_INDEX ( preamble ) ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , nargs ) ;
STIX_STACK_SETTOP ( stix , STIX_SMOOI_TO_OOP ( STIX_METHOD_GET_PREAMBLE_INDEX ( preamble ) ) ) ;
2015-12-27 10:19:36 +00:00
break ;
case STIX_METHOD_PREAMBLE_RETURN_NEGINDEX :
2016-06-05 18:01:35 +00:00
/* preamble_index field is used to store a negative integer */
LOG_INST_1 ( stix , " preamble_return_negindex %zd " , STIX_METHOD_GET_PREAMBLE_INDEX ( preamble ) ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , nargs ) ;
STIX_STACK_SETTOP ( stix , STIX_SMOOI_TO_OOP ( - STIX_METHOD_GET_PREAMBLE_INDEX ( preamble ) ) ) ;
2015-12-27 10:19:36 +00:00
break ;
case STIX_METHOD_PREAMBLE_RETURN_INSTVAR :
{
stix_oop_oop_t rcv ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POPS ( stix , nargs ) ; /* pop arguments only */
2015-12-27 10:19:36 +00:00
2016-06-05 18:01:35 +00:00
LOG_INST_1 ( stix , " preamble_return_instvar %zd " , STIX_METHOD_GET_PREAMBLE_INDEX ( preamble ) ) ;
2015-12-27 10:19:36 +00:00
/* replace the receiver by an instance variable of the receiver */
2016-05-27 15:01:54 +00:00
rcv = ( stix_oop_oop_t ) STIX_STACK_GETTOP ( stix ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OBJ_GET_FLAGS_TYPE ( rcv ) = = STIX_OBJ_TYPE_OOP ) ;
STIX_ASSERT ( stix , STIX_OBJ_GET_SIZE ( rcv ) > STIX_METHOD_GET_PREAMBLE_INDEX ( preamble ) ) ;
2015-12-27 10:19:36 +00:00
if ( rcv = = ( stix_oop_oop_t ) stix - > active_context )
{
/* the active context object doesn't keep
* the most up - to - date information in the
* ' ip ' and ' sp ' field . commit these fields
* when the object to be accessed is
* the active context . this manual commit
* is required because this premable handling
* skips activation of a new method context
* that would commit these fields .
*/
STORE_ACTIVE_IP ( stix ) ;
STORE_ACTIVE_SP ( stix ) ;
}
/* this accesses the instance variable of the receiver */
2016-05-27 15:01:54 +00:00
STIX_STACK_SET ( stix , stix - > sp , rcv - > slot [ STIX_METHOD_GET_PREAMBLE_INDEX ( preamble ) ] ) ;
2015-12-27 10:19:36 +00:00
break ;
}
case STIX_METHOD_PREAMBLE_PRIMITIVE :
{
2016-11-29 05:25:08 +00:00
stix_ooi_t pfnum ;
2015-12-27 10:19:36 +00:00
2016-11-29 05:25:08 +00:00
pfnum = STIX_METHOD_GET_PREAMBLE_INDEX ( preamble ) ;
LOG_INST_1 ( stix , " preamble_primitive %zd " , pf_no ) ;
2015-12-27 10:19:36 +00:00
2016-11-29 05:25:08 +00:00
if ( pfnum > = 0 & & pfnum < STIX_COUNTOF ( pftab ) & &
( nargs > = pftab [ pfnum ] . min_nargs & & nargs < = pftab [ pfnum ] . max_nargs ) )
2015-12-27 10:19:36 +00:00
{
int n ;
stix_pushtmp ( stix , ( stix_oop_t * ) & method ) ;
2016-11-29 05:25:08 +00:00
n = pftab [ pfnum ] . handler ( stix , nargs ) ;
2015-12-27 10:19:36 +00:00
stix_poptmp ( stix ) ;
2017-01-06 09:53:40 +00:00
if ( n < = STIX_PF_HARD_FAILURE ) return - 1 ;
if ( n > = STIX_PF_SUCCESS ) break ;
2015-12-27 10:19:36 +00:00
}
/* soft primitive failure */
2016-12-14 07:18:01 +00:00
if ( activate_new_method ( stix , method , nargs ) < = - 1 ) return - 1 ;
2015-12-27 10:19:36 +00:00
break ;
}
case STIX_METHOD_PREAMBLE_NAMED_PRIMITIVE :
{
2016-11-29 05:25:08 +00:00
stix_ooi_t pf_name_index ;
2015-12-27 10:19:36 +00:00
stix_oop_t name ;
2016-11-29 05:25:08 +00:00
stix_pfimpl_t handler ;
2016-11-12 03:02:12 +00:00
stix_oow_t w ;
2016-12-14 09:40:41 +00:00
stix_ooi_t /*sp,*/ sb ;
2016-11-12 03:02:12 +00:00
2016-11-29 05:25:08 +00:00
/*sp = stix->sp;*/
2016-11-12 03:02:12 +00:00
sb = stix - > sp - nargs - 1 ; /* stack base before receiver and arguments */
2015-12-27 10:19:36 +00:00
2016-11-29 05:25:08 +00:00
pf_name_index = STIX_METHOD_GET_PREAMBLE_INDEX ( preamble ) ;
LOG_INST_1 ( stix , " preamble_named_primitive %zd " , pf_name_index ) ;
2015-12-27 10:19:36 +00:00
/* merge two SmallIntegers to get a full pointer */
w = ( stix_oow_t ) STIX_OOP_TO_SMOOI ( method - > preamble_data [ 0 ] ) < < ( STIX_OOW_BITS / 2 ) |
2016-11-12 03:02:12 +00:00
( stix_oow_t ) STIX_OOP_TO_SMOOI ( method - > preamble_data [ 1 ] ) ;
2016-11-29 05:25:08 +00:00
handler = ( stix_pfimpl_t ) w ;
2016-11-12 03:02:12 +00:00
if ( handler ) goto exec_handler ;
else
{
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , pf_name_index > = 0 ) ;
2016-11-29 05:25:08 +00:00
name = method - > slot [ pf_name_index ] ;
2016-11-12 03:02:12 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_ISTYPEOF ( stix , name , STIX_OBJ_TYPE_CHAR ) ) ;
STIX_ASSERT ( stix , STIX_OBJ_GET_FLAGS_EXTRA ( name ) ) ;
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , name ) = = stix - > _symbol ) ;
2016-11-12 03:02:12 +00:00
2016-12-03 18:08:31 +00:00
handler = stix_querymod ( stix , ( ( stix_oop_char_t ) name ) - > slot , STIX_OBJ_GET_SIZE ( name ) ) ;
2016-11-12 03:02:12 +00:00
}
2015-12-27 10:19:36 +00:00
if ( handler )
{
int n ;
/* split a pointer to two OOP fields as SmallIntegers for storing. */
method - > preamble_data [ 0 ] = STIX_SMOOI_TO_OOP ( ( stix_oow_t ) handler > > ( STIX_OOW_BITS / 2 ) ) ;
method - > preamble_data [ 1 ] = STIX_SMOOI_TO_OOP ( ( stix_oow_t ) handler & STIX_LBMASK ( stix_oow_t , STIX_OOW_BITS / 2 ) ) ;
2016-11-12 03:02:12 +00:00
exec_handler :
2015-12-27 10:19:36 +00:00
stix_pushtmp ( stix , ( stix_oop_t * ) & method ) ;
2016-12-14 07:18:01 +00:00
/* the primitive handler is executed without activating the method itself.
* one major difference between the primitive function and the normal method
* invocation is that the primitive function handler should access arguments
* directly in the stack unlik a normal activated method context where the
* arguments are copied to the back . */
2016-12-14 09:40:41 +00:00
2015-12-27 10:19:36 +00:00
n = handler ( stix , nargs ) ;
2016-12-13 15:18:19 +00:00
2015-12-27 10:19:36 +00:00
stix_poptmp ( stix ) ;
2017-01-06 09:53:40 +00:00
if ( n < = STIX_PF_HARD_FAILURE )
2016-11-12 03:02:12 +00:00
{
STIX_DEBUG2 ( stix , " Hard failure indicated by primitive function %p - return code %d \n " , handler , n ) ;
return - 1 ; /* hard primitive failure */
}
2017-01-06 09:53:40 +00:00
if ( n > = STIX_PF_SUCCESS ) break ; /* primitive ok*/
2015-12-27 10:19:36 +00:00
2016-12-03 18:08:31 +00:00
/* soft primitive failure */
STIX_DEBUG1 ( stix , " Soft failure indicated by primitive function %p \n " , handler ) ;
}
else
{
/* no handler found */
STIX_DEBUG0 ( stix , " Soft failure for non-existent primitive function \n " ) ;
}
2016-11-12 03:02:12 +00:00
# if defined(STIX_USE_OBJECT_TRAILER)
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OBJ_GET_FLAGS_TRAILER ( method ) ) ;
2016-12-03 18:08:31 +00:00
if ( STIX_METHOD_GET_CODE_SIZE ( method ) = = 0 ) /* this trailer size field not a small integer */
2016-11-12 03:02:12 +00:00
# else
if ( method - > code = = stix - > _nil )
# endif
{
/* no byte code to execute */
/* TODO: what is the best tactics? emulate "self primitiveFailed"? */
/* force restore stack pointers */
stix - > sp = sb ;
STIX_STACK_PUSH ( stix , stix - > _nil ) ;
return - 1 ;
}
else
{
2016-12-14 07:18:01 +00:00
if ( activate_new_method ( stix , method , nargs ) < = - 1 ) return - 1 ;
2016-11-12 03:02:12 +00:00
}
2015-12-27 10:19:36 +00:00
break ;
}
default :
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , preamble_code = = STIX_METHOD_PREAMBLE_NONE | |
2016-06-22 03:23:14 +00:00
preamble_code = = STIX_METHOD_PREAMBLE_EXCEPTION | |
preamble_code = = STIX_METHOD_PREAMBLE_ENSURE ) ;
2016-12-14 07:18:01 +00:00
if ( activate_new_method ( stix , method , nargs ) < = - 1 ) return - 1 ;
2015-12-27 10:19:36 +00:00
break ;
}
return 0 ;
}
2016-06-20 15:42:51 +00:00
static int send_message ( stix_t * stix , stix_oop_char_t selector , int to_super , stix_ooi_t nargs )
{
stix_oocs_t mthname ;
stix_oop_t receiver ;
stix_oop_method_t method ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OOP_IS_POINTER ( selector ) ) ;
STIX_ASSERT ( stix , STIX_OBJ_GET_FLAGS_TYPE ( selector ) = = STIX_OBJ_TYPE_CHAR ) ;
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , selector ) = = stix - > _symbol ) ;
2016-06-20 15:42:51 +00:00
receiver = STIX_STACK_GET ( stix , stix - > sp - nargs ) ;
mthname . ptr = selector - > slot ;
mthname . len = STIX_OBJ_GET_SIZE ( selector ) ;
method = find_method ( stix , receiver , & mthname , to_super ) ;
if ( ! method )
{
static stix_ooch_t fbm [ ] = {
' d ' , ' o ' , ' e ' , ' s ' ,
' N ' , ' o ' , ' t ' ,
' U ' , ' n ' , ' d ' , ' e ' , ' r ' , ' s ' , ' t ' , ' a ' , ' n ' , ' d ' , ' : '
} ;
mthname . ptr = fbm ;
mthname . len = 18 ;
method = find_method ( stix , receiver , & mthname , 0 ) ;
if ( ! method )
{
/* this must not happen as long as doesNotUnderstand: is implemented under Apex.
* this check should indicate a very serious internal problem */
STIX_LOG4 ( stix , STIX_LOG_IC | STIX_LOG_FATAL ,
" Fatal error - receiver [%O] of class [%O] does not understand a message [%.*S] \n " ,
receiver , STIX_CLASSOF ( stix , receiver ) , mthname . len , mthname . ptr ) ;
stix - > errnum = STIX_EMSGSND ;
return - 1 ;
}
else
{
2016-08-13 06:46:14 +00:00
/* manipulate the stack as if 'receier doesNotUnderstand: selector'
2016-06-20 15:42:51 +00:00
* has been called . */
2016-08-13 06:46:14 +00:00
/* TODO: if i manipulate the stack this way here, the stack trace for the last call is kind of lost.
2016-06-20 15:42:51 +00:00
* how can i preserve it gracefully ? */
STIX_STACK_POPS ( stix , nargs ) ;
nargs = 1 ;
STIX_STACK_PUSH ( stix , ( stix_oop_t ) selector ) ;
}
}
return start_method ( stix , method , nargs ) ;
}
static int send_private_message ( stix_t * stix , const stix_ooch_t * nameptr , stix_oow_t namelen , int to_super , stix_ooi_t nargs )
{
stix_oocs_t mthname ;
stix_oop_t receiver ;
stix_oop_method_t method ;
receiver = STIX_STACK_GET ( stix , stix - > sp - nargs ) ;
mthname . ptr = ( stix_ooch_t * ) nameptr ;
mthname . len = namelen ;
method = find_method ( stix , receiver , & mthname , to_super ) ;
if ( ! method )
{
STIX_LOG4 ( stix , STIX_LOG_IC | STIX_LOG_FATAL ,
" Fatal error - receiver [%O] of class [%O] does not understand a private message [%.*S] \n " ,
receiver , STIX_CLASSOF ( stix , receiver ) , mthname . len , mthname . ptr ) ;
stix - > errnum = STIX_EMSGSND ;
return - 1 ;
}
return start_method ( stix , method , nargs ) ;
}
2015-10-03 15:29:03 +00:00
/* ------------------------------------------------------------------------- */
2015-06-04 18:34:37 +00:00
int stix_execute ( stix_t * stix )
{
2015-10-29 15:24:46 +00:00
stix_oob_t bcode ;
2016-10-04 17:58:28 +00:00
stix_oow_t b1 , b2 ;
2015-06-29 13:52:40 +00:00
stix_oop_t return_value ;
2016-06-20 15:42:51 +00:00
int unwind_protect ;
stix_oop_context_t unwind_start ;
stix_oop_context_t unwind_stop ;
2015-06-06 07:24:35 +00:00
2016-06-05 18:01:35 +00:00
# if defined(STIX_PROFILE_VM)
stix_uintmax_t inst_counter = 0 ;
2015-10-08 14:26:04 +00:00
# endif
2015-06-24 11:53:19 +00:00
2016-10-06 14:17:24 +00:00
# if defined(STIX_DEBUG_VM_EXEC)
stix_ooi_t fetched_instruction_pointer ;
# endif
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > active_context ! = STIX_NULL ) ;
2015-06-11 09:11:18 +00:00
2016-05-12 05:53:35 +00:00
vm_startup ( stix ) ;
2016-02-19 15:52:56 +00:00
stix - > proc_switched = 0 ;
2015-06-04 18:34:37 +00:00
while ( 1 )
{
2016-03-23 12:58:30 +00:00
if ( stix - > sem_heap_count > 0 )
{
2016-03-24 14:58:47 +00:00
stix_ntime_t ft , now ;
2016-05-12 05:53:35 +00:00
vm_gettime ( stix , & now ) ;
2016-03-22 14:18:07 +00:00
2016-03-23 12:58:30 +00:00
do
2016-03-22 14:18:07 +00:00
{
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OOP_IS_SMOOI ( stix - > sem_heap [ 0 ] - > heap_ftime_sec ) ) ;
STIX_ASSERT ( stix , STIX_OOP_IS_SMOOI ( stix - > sem_heap [ 0 ] - > heap_ftime_nsec ) ) ;
2016-03-22 14:18:07 +00:00
2016-03-24 14:58:47 +00:00
STIX_INITNTIME ( & ft ,
STIX_OOP_TO_SMOOI ( stix - > sem_heap [ 0 ] - > heap_ftime_sec ) ,
STIX_OOP_TO_SMOOI ( stix - > sem_heap [ 0 ] - > heap_ftime_nsec )
) ;
2016-03-22 14:18:07 +00:00
2016-03-24 14:58:47 +00:00
if ( STIX_CMPNTIME ( & ft , ( stix_ntime_t * ) & now ) < = 0 )
2016-03-22 14:18:07 +00:00
{
2016-03-23 12:58:30 +00:00
stix_oop_process_t proc ;
2016-03-22 14:18:07 +00:00
2016-03-24 14:58:47 +00:00
/* waited long enough. signal the semaphore */
2016-03-22 14:18:07 +00:00
2016-03-24 14:58:47 +00:00
proc = signal_semaphore ( stix , stix - > sem_heap [ 0 ] ) ;
/* [NOTE] no stix_pushtmp() on proc. no GC must occur
* in the following line until it ' s used for
* wake_new_process ( ) below . */
2016-03-23 12:58:30 +00:00
delete_from_sem_heap ( stix , 0 ) ;
2016-03-23 02:34:13 +00:00
2016-03-24 14:58:47 +00:00
/* if no process is waiting on the semaphore,
* signal_semaphore ( ) returns stix - > _nil . */
if ( stix - > processor - > active = = stix - > nil_process & & ( stix_oop_t ) proc ! = stix - > _nil )
2016-03-23 12:58:30 +00:00
{
2016-03-24 14:58:47 +00:00
/* this is the only runnable process.
* switch the process to the running state .
* it uses wake_new_process ( ) instead of
* switch_to_process ( ) as there is no running
* process at this moment */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , proc - > state = = STIX_SMOOI_TO_OOP ( PROC_STATE_RUNNABLE ) ) ;
STIX_ASSERT ( stix , proc = = stix - > processor - > runnable_head ) ;
2016-03-23 02:34:13 +00:00
wake_new_process ( stix , proc ) ;
stix - > proc_switched = 1 ;
2016-03-22 14:18:07 +00:00
}
2016-03-23 12:58:30 +00:00
}
else if ( stix - > processor - > active = = stix - > nil_process )
{
2016-03-24 14:58:47 +00:00
STIX_SUBNTIME ( & ft , & ft , ( stix_ntime_t * ) & now ) ;
2016-05-12 05:53:35 +00:00
vm_sleep ( stix , & ft ) ; /* TODO: change this to i/o multiplexer??? */
vm_gettime ( stix , & now ) ;
2016-03-23 12:58:30 +00:00
}
else
{
break ;
}
}
while ( stix - > sem_heap_count > 0 ) ;
}
2016-05-15 15:51:41 +00:00
if ( stix - > processor - > active = = stix - > nil_process )
2016-03-23 12:58:30 +00:00
{
/* no more waiting semaphore and no more process */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > processor - > tally = STIX_SMOOI_TO_OOP ( 0 ) ) ;
2016-06-13 15:52:09 +00:00
STIX_LOG0 ( stix , STIX_LOG_IC | STIX_LOG_DEBUG , " No more runnable process \n " ) ;
2016-05-18 11:10:54 +00:00
2016-10-06 14:17:24 +00:00
#if 0
if ( there is semaphore awaited . . . . )
{
/* DO SOMETHING */
}
# endif
2016-05-18 11:10:54 +00:00
2016-02-15 18:07:20 +00:00
break ;
}
2016-03-22 14:18:07 +00:00
2016-03-16 02:27:18 +00:00
while ( stix - > sem_list_count > 0 )
2016-02-29 15:27:10 +00:00
{
2016-03-22 14:18:07 +00:00
/* handle async signals */
2016-03-16 02:27:18 +00:00
- - stix - > sem_list_count ;
signal_semaphore ( stix , stix - > sem_list [ stix - > sem_list_count ] ) ;
2016-02-29 15:27:10 +00:00
}
2016-03-22 14:18:07 +00:00
/*
if ( semaphore heap has pending request )
{
signal them . . .
} */
2016-02-29 15:27:10 +00:00
2016-02-19 15:52:56 +00:00
/* TODO: implement different process switching scheme - time-slice or clock based??? */
2016-05-17 15:12:27 +00:00
# if defined(STIX_EXTERNAL_PROCESS_SWITCH)
if ( ! stix - > proc_switched & & stix - > switch_proc ) { switch_to_next_runnable_process ( stix ) ; }
stix - > switch_proc = 0 ;
# else
2016-02-19 15:52:56 +00:00
if ( ! stix - > proc_switched ) { switch_to_next_runnable_process ( stix ) ; }
2016-05-17 15:12:27 +00:00
# endif
2016-02-19 15:52:56 +00:00
stix - > proc_switched = 0 ;
2015-10-19 06:16:43 +00:00
2016-10-06 14:17:24 +00:00
# if defined(STIX_DEBUG_VM_EXEC)
fetched_instruction_pointer = stix - > ip ;
# endif
2015-06-29 13:52:40 +00:00
FETCH_BYTE_CODE_TO ( stix , bcode ) ;
/*while (bcode == BCODE_NOOP) FETCH_BYTE_CODE_TO (stix, bcode);*/
2015-06-07 14:36:26 +00:00
2016-06-05 18:01:35 +00:00
# if defined(STIX_PROFILE_VM)
2015-10-08 14:26:04 +00:00
inst_counter + + ;
# endif
2015-06-06 07:24:35 +00:00
2015-06-29 13:52:40 +00:00
switch ( bcode )
{
/* ------------------------------------------------- */
case BCODE_PUSH_INSTVAR_X :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
goto push_instvar ;
case BCODE_PUSH_INSTVAR_0 :
case BCODE_PUSH_INSTVAR_1 :
case BCODE_PUSH_INSTVAR_2 :
case BCODE_PUSH_INSTVAR_3 :
case BCODE_PUSH_INSTVAR_4 :
case BCODE_PUSH_INSTVAR_5 :
case BCODE_PUSH_INSTVAR_6 :
case BCODE_PUSH_INSTVAR_7 :
b1 = bcode & 0x7 ; /* low 3 bits */
push_instvar :
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " push_instvar %zu " , b1 ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OBJ_GET_FLAGS_TYPE ( stix - > active_context - > origin - > receiver_or_source ) = = STIX_OBJ_TYPE_OOP ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , ( ( stix_oop_oop_t ) stix - > active_context - > origin - > receiver_or_source ) - > slot [ b1 ] ) ;
2015-06-07 14:36:26 +00:00
break ;
2015-06-29 13:52:40 +00:00
/* ------------------------------------------------- */
case BCODE_STORE_INTO_INSTVAR_X :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
goto store_instvar ;
case BCODE_STORE_INTO_INSTVAR_0 :
case BCODE_STORE_INTO_INSTVAR_1 :
case BCODE_STORE_INTO_INSTVAR_2 :
case BCODE_STORE_INTO_INSTVAR_3 :
case BCODE_STORE_INTO_INSTVAR_4 :
case BCODE_STORE_INTO_INSTVAR_5 :
case BCODE_STORE_INTO_INSTVAR_6 :
case BCODE_STORE_INTO_INSTVAR_7 :
b1 = bcode & 0x7 ; /* low 3 bits */
store_instvar :
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " store_into_instvar %zu " , b1 ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OBJ_GET_FLAGS_TYPE ( stix - > active_context - > receiver_or_source ) = = STIX_OBJ_TYPE_OOP ) ;
2016-05-27 15:01:54 +00:00
( ( stix_oop_oop_t ) stix - > active_context - > origin - > receiver_or_source ) - > slot [ b1 ] = STIX_STACK_GETTOP ( stix ) ;
2015-06-29 13:52:40 +00:00
break ;
/* ------------------------------------------------- */
case BCODE_POP_INTO_INSTVAR_X :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
goto pop_into_instvar ;
case BCODE_POP_INTO_INSTVAR_0 :
case BCODE_POP_INTO_INSTVAR_1 :
case BCODE_POP_INTO_INSTVAR_2 :
case BCODE_POP_INTO_INSTVAR_3 :
case BCODE_POP_INTO_INSTVAR_4 :
case BCODE_POP_INTO_INSTVAR_5 :
case BCODE_POP_INTO_INSTVAR_6 :
case BCODE_POP_INTO_INSTVAR_7 :
b1 = bcode & 0x7 ; /* low 3 bits */
pop_into_instvar :
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " pop_into_instvar %zu " , b1 ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OBJ_GET_FLAGS_TYPE ( stix - > active_context - > receiver_or_source ) = = STIX_OBJ_TYPE_OOP ) ;
2016-05-27 15:01:54 +00:00
( ( stix_oop_oop_t ) stix - > active_context - > origin - > receiver_or_source ) - > slot [ b1 ] = STIX_STACK_GETTOP ( stix ) ;
STIX_STACK_POP ( stix ) ;
2015-06-29 13:52:40 +00:00
break ;
/* ------------------------------------------------- */
case BCODE_PUSH_TEMPVAR_X :
case BCODE_STORE_INTO_TEMPVAR_X :
case BCODE_POP_INTO_TEMPVAR_X :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
goto handle_tempvar ;
case BCODE_PUSH_TEMPVAR_0 :
case BCODE_PUSH_TEMPVAR_1 :
case BCODE_PUSH_TEMPVAR_2 :
case BCODE_PUSH_TEMPVAR_3 :
case BCODE_PUSH_TEMPVAR_4 :
case BCODE_PUSH_TEMPVAR_5 :
case BCODE_PUSH_TEMPVAR_6 :
case BCODE_PUSH_TEMPVAR_7 :
case BCODE_STORE_INTO_TEMPVAR_0 :
case BCODE_STORE_INTO_TEMPVAR_1 :
case BCODE_STORE_INTO_TEMPVAR_2 :
case BCODE_STORE_INTO_TEMPVAR_3 :
case BCODE_STORE_INTO_TEMPVAR_4 :
case BCODE_STORE_INTO_TEMPVAR_5 :
case BCODE_STORE_INTO_TEMPVAR_6 :
case BCODE_STORE_INTO_TEMPVAR_7 :
case BCODE_POP_INTO_TEMPVAR_0 :
case BCODE_POP_INTO_TEMPVAR_1 :
case BCODE_POP_INTO_TEMPVAR_2 :
case BCODE_POP_INTO_TEMPVAR_3 :
case BCODE_POP_INTO_TEMPVAR_4 :
case BCODE_POP_INTO_TEMPVAR_5 :
case BCODE_POP_INTO_TEMPVAR_6 :
case BCODE_POP_INTO_TEMPVAR_7 :
2015-06-30 14:47:39 +00:00
{
stix_oop_context_t ctx ;
2015-06-30 15:12:37 +00:00
stix_ooi_t bx ;
2015-06-30 14:47:39 +00:00
2015-06-29 13:52:40 +00:00
b1 = bcode & 0x7 ; /* low 3 bits */
handle_tempvar :
2015-06-30 15:12:37 +00:00
# if defined(STIX_USE_CTXTEMPVAR)
2016-01-29 04:04:39 +00:00
/* when CTXTEMPVAR inststructions are used, the above
* instructions are used only for temporary access
* outside a block . i can assume that the temporary
* variable index is pointing to one of temporaries
* in the relevant method context */
2015-06-30 15:12:37 +00:00
ctx = stix - > active_context - > origin ;
bx = b1 ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , ctx ) = = stix - > _method_context ) ;
2015-06-30 15:12:37 +00:00
# else
2016-01-29 04:04:39 +00:00
/* otherwise, the index may point to a temporaries
* declared inside a block */
2015-06-22 14:21:46 +00:00
if ( stix - > active_context - > home ! = stix - > _nil )
{
2015-06-23 14:00:26 +00:00
/* this code assumes that the method context and
* the block context place some key fields in the
2015-06-22 14:21:46 +00:00
* same offset . such fields include ' home ' , ' ntmprs ' */
stix_oop_t home ;
stix_ooi_t home_ntmprs ;
ctx = stix - > active_context ;
home = ctx - > home ;
do
{
2016-02-11 14:26:26 +00:00
/* ntmprs contains the number of defined temporaries
* including those defined in the home context */
2015-11-12 06:57:35 +00:00
home_ntmprs = STIX_OOP_TO_SMOOI ( ( ( stix_oop_context_t ) home ) - > ntmprs ) ;
2015-06-22 14:21:46 +00:00
if ( b1 > = home_ntmprs ) break ;
ctx = ( stix_oop_context_t ) home ;
home = ( ( stix_oop_context_t ) home ) - > home ;
if ( home = = stix - > _nil )
{
home_ntmprs = 0 ;
break ;
}
}
while ( 1 ) ;
2016-02-11 14:26:26 +00:00
/* bx is the actual index within the actual context
* containing the temporary */
2015-06-29 13:52:40 +00:00
bx = b1 - home_ntmprs ;
}
else
{
ctx = stix - > active_context ;
bx = b1 ;
}
2015-06-30 15:12:37 +00:00
# endif
2015-06-22 14:21:46 +00:00
2015-06-29 13:52:40 +00:00
if ( ( bcode > > 4 ) & 1 )
{
2016-02-11 14:26:26 +00:00
/* push - bit 4 on */
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " push_tempvar %zu " , b1 ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , ctx - > slot [ bx ] ) ;
2015-06-22 14:21:46 +00:00
}
else
{
2015-06-29 13:52:40 +00:00
/* store or pop - bit 5 off */
2016-05-27 15:01:54 +00:00
ctx - > slot [ bx ] = STIX_STACK_GETTOP ( stix ) ;
2015-06-22 14:21:46 +00:00
2015-06-29 13:52:40 +00:00
if ( ( bcode > > 3 ) & 1 )
{
/* pop - bit 3 on */
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " pop_into_tempvar %zu " , b1 ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POP ( stix ) ;
2015-06-29 13:52:40 +00:00
}
2015-10-08 14:26:04 +00:00
else
{
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " store_into_tempvar %zu " , b1 ) ;
2015-10-08 14:26:04 +00:00
}
2015-06-22 14:21:46 +00:00
}
2016-06-05 18:01:35 +00:00
2015-06-07 14:36:26 +00:00
break ;
2015-06-30 14:47:39 +00:00
}
2015-06-07 14:36:26 +00:00
2015-06-29 13:52:40 +00:00
/* ------------------------------------------------- */
case BCODE_PUSH_LITERAL_X :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
goto push_literal ;
case BCODE_PUSH_LITERAL_0 :
case BCODE_PUSH_LITERAL_1 :
case BCODE_PUSH_LITERAL_2 :
case BCODE_PUSH_LITERAL_3 :
case BCODE_PUSH_LITERAL_4 :
case BCODE_PUSH_LITERAL_5 :
case BCODE_PUSH_LITERAL_6 :
case BCODE_PUSH_LITERAL_7 :
b1 = bcode & 0x7 ; /* low 3 bits */
push_literal :
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " push_literal @%zu " , b1 ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , stix - > active_method - > slot [ b1 ] ) ;
2015-06-07 14:36:26 +00:00
break ;
2015-06-29 13:52:40 +00:00
/* ------------------------------------------------- */
case BCODE_PUSH_OBJECT_X :
case BCODE_STORE_INTO_OBJECT_X :
case BCODE_POP_INTO_OBJECT_X :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
goto handle_object ;
case BCODE_PUSH_OBJECT_0 :
case BCODE_PUSH_OBJECT_1 :
case BCODE_PUSH_OBJECT_2 :
case BCODE_PUSH_OBJECT_3 :
case BCODE_STORE_INTO_OBJECT_0 :
case BCODE_STORE_INTO_OBJECT_1 :
case BCODE_STORE_INTO_OBJECT_2 :
case BCODE_STORE_INTO_OBJECT_3 :
case BCODE_POP_INTO_OBJECT_0 :
case BCODE_POP_INTO_OBJECT_1 :
case BCODE_POP_INTO_OBJECT_2 :
case BCODE_POP_INTO_OBJECT_3 :
2015-06-30 14:47:39 +00:00
{
stix_oop_association_t ass ;
2015-06-29 13:52:40 +00:00
b1 = bcode & 0x3 ; /* low 2 bits */
handle_object :
2015-06-30 14:47:39 +00:00
ass = ( stix_oop_association_t ) stix - > active_method - > slot [ b1 ] ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , ass ) = = stix - > _association ) ;
2015-06-30 14:47:39 +00:00
2015-06-29 13:52:40 +00:00
if ( ( bcode > > 3 ) & 1 )
2015-06-22 14:21:46 +00:00
{
2015-06-29 13:52:40 +00:00
/* store or pop */
2016-05-27 15:01:54 +00:00
ass - > value = STIX_STACK_GETTOP ( stix ) ;
2015-06-30 14:47:39 +00:00
2015-06-29 13:52:40 +00:00
if ( ( bcode > > 2 ) & 1 )
2015-06-22 14:21:46 +00:00
{
2015-06-29 13:52:40 +00:00
/* pop */
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " pop_into_object @%zu " , b1 ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POP ( stix ) ;
2015-06-22 14:21:46 +00:00
}
2015-10-08 14:26:04 +00:00
else
{
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " store_into_object @%zu " , b1 ) ;
2015-10-08 14:26:04 +00:00
}
2015-06-22 14:21:46 +00:00
}
else
{
2015-06-29 13:52:40 +00:00
/* push */
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " push_object @%zu " , b1 ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , ass - > value ) ;
2015-06-22 14:21:46 +00:00
}
2015-06-07 14:36:26 +00:00
break ;
2015-06-30 14:47:39 +00:00
}
2015-06-07 14:36:26 +00:00
2015-06-29 13:52:40 +00:00
/* -------------------------------------------------------- */
2015-06-16 04:31:28 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_JUMP_FORWARD_X :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " jump_forward %zu " , b1 ) ;
2015-06-20 03:07:11 +00:00
stix - > ip + = b1 ;
2015-06-16 04:31:28 +00:00
break ;
2015-06-07 14:36:26 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_JUMP_FORWARD_0 :
case BCODE_JUMP_FORWARD_1 :
case BCODE_JUMP_FORWARD_2 :
case BCODE_JUMP_FORWARD_3 :
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " jump_forward %zu " , ( stix_oow_t ) ( bcode & 0x3 ) ) ;
2015-06-29 13:52:40 +00:00
stix - > ip + = ( bcode & 0x3 ) ; /* low 2 bits */
break ;
2015-06-09 12:14:18 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_JUMP_BACKWARD_X :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " jump_backward %zu " , b1 ) ;
2015-06-29 13:52:40 +00:00
stix - > ip + = b1 ;
break ;
case BCODE_JUMP_BACKWARD_0 :
case BCODE_JUMP_BACKWARD_1 :
case BCODE_JUMP_BACKWARD_2 :
case BCODE_JUMP_BACKWARD_3 :
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " jump_backward %zu " , ( stix_oow_t ) ( bcode & 0x3 ) ) ;
2015-06-29 13:52:40 +00:00
stix - > ip - = ( bcode & 0x3 ) ; /* low 2 bits */
break ;
case BCODE_JUMP_IF_TRUE_X :
case BCODE_JUMP_IF_FALSE_X :
case BCODE_JUMP_IF_TRUE_0 :
case BCODE_JUMP_IF_TRUE_1 :
case BCODE_JUMP_IF_TRUE_2 :
case BCODE_JUMP_IF_TRUE_3 :
case BCODE_JUMP_IF_FALSE_0 :
case BCODE_JUMP_IF_FALSE_1 :
case BCODE_JUMP_IF_FALSE_2 :
case BCODE_JUMP_IF_FALSE_3 :
2016-06-13 15:52:09 +00:00
STIX_LOG0 ( stix , STIX_LOG_IC | STIX_LOG_FATAL , " <<<<<<<<<<<<<< JUMP NOT IMPLEMENTED YET >>>>>>>>>>>> \n " ) ;
2015-06-29 13:52:40 +00:00
stix - > errnum = STIX_ENOIMPL ;
return - 1 ;
2015-07-01 07:21:54 +00:00
case BCODE_JUMP2_FORWARD :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " jump2_forward %zu " , b1 ) ;
2015-07-01 07:21:54 +00:00
stix - > ip + = MAX_CODE_JUMP + b1 ;
break ;
case BCODE_JUMP2_BACKWARD :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " jump2_backward %zu " , b1 ) ;
2015-07-01 07:21:54 +00:00
stix - > ip - = MAX_CODE_JUMP + b1 ;
2015-06-29 13:52:40 +00:00
break ;
/* -------------------------------------------------------- */
case BCODE_PUSH_CTXTEMPVAR_X :
case BCODE_STORE_INTO_CTXTEMPVAR_X :
case BCODE_POP_INTO_CTXTEMPVAR_X :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
FETCH_PARAM_CODE_TO ( stix , b2 ) ;
goto handle_ctxtempvar ;
case BCODE_PUSH_CTXTEMPVAR_0 :
case BCODE_PUSH_CTXTEMPVAR_1 :
case BCODE_PUSH_CTXTEMPVAR_2 :
case BCODE_PUSH_CTXTEMPVAR_3 :
case BCODE_STORE_INTO_CTXTEMPVAR_0 :
case BCODE_STORE_INTO_CTXTEMPVAR_1 :
case BCODE_STORE_INTO_CTXTEMPVAR_2 :
case BCODE_STORE_INTO_CTXTEMPVAR_3 :
case BCODE_POP_INTO_CTXTEMPVAR_0 :
case BCODE_POP_INTO_CTXTEMPVAR_1 :
case BCODE_POP_INTO_CTXTEMPVAR_2 :
case BCODE_POP_INTO_CTXTEMPVAR_3 :
2015-06-30 14:47:39 +00:00
{
stix_ooi_t i ;
stix_oop_context_t ctx ;
2015-06-29 13:52:40 +00:00
b1 = bcode & 0x3 ; /* low 2 bits */
FETCH_BYTE_CODE_TO ( stix , b2 ) ;
2015-06-30 14:47:39 +00:00
2015-06-29 13:52:40 +00:00
handle_ctxtempvar :
2015-06-30 14:47:39 +00:00
ctx = stix - > active_context ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) ctx ! = stix - > _nil ) ;
2015-06-30 14:47:39 +00:00
for ( i = 0 ; i < b1 ; i + + )
{
ctx = ( stix_oop_context_t ) ctx - > home ;
}
2015-06-29 13:52:40 +00:00
if ( ( bcode > > 3 ) & 1 )
{
/* store or pop */
2016-05-27 15:01:54 +00:00
ctx - > slot [ b2 ] = STIX_STACK_GETTOP ( stix ) ;
2015-06-30 14:47:39 +00:00
2015-06-29 13:52:40 +00:00
if ( ( bcode > > 2 ) & 1 )
{
/* pop */
2016-05-27 15:01:54 +00:00
STIX_STACK_POP ( stix ) ;
2016-10-04 17:58:28 +00:00
LOG_INST_2 ( stix , " pop_into_ctxtempvar %zu %zu " , b1 , b2 ) ;
2015-10-08 14:26:04 +00:00
}
else
{
2016-10-04 17:58:28 +00:00
LOG_INST_2 ( stix , " store_into_ctxtempvar %zu %zu " , b1 , b2 ) ;
2015-06-29 13:52:40 +00:00
}
}
else
{
/* push */
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , ctx - > slot [ b2 ] ) ;
2016-10-04 17:58:28 +00:00
LOG_INST_2 ( stix , " push_ctxtempvar %zu %zu " , b1 , b2 ) ;
2015-06-29 13:52:40 +00:00
}
2015-10-08 14:26:04 +00:00
2015-06-29 13:52:40 +00:00
break ;
2015-06-30 14:47:39 +00:00
}
2015-06-29 13:52:40 +00:00
/* -------------------------------------------------------- */
case BCODE_PUSH_OBJVAR_X :
case BCODE_STORE_INTO_OBJVAR_X :
case BCODE_POP_INTO_OBJVAR_X :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
FETCH_PARAM_CODE_TO ( stix , b2 ) ;
goto handle_objvar ;
case BCODE_PUSH_OBJVAR_0 :
case BCODE_PUSH_OBJVAR_1 :
case BCODE_PUSH_OBJVAR_2 :
case BCODE_PUSH_OBJVAR_3 :
case BCODE_STORE_INTO_OBJVAR_0 :
case BCODE_STORE_INTO_OBJVAR_1 :
case BCODE_STORE_INTO_OBJVAR_2 :
case BCODE_STORE_INTO_OBJVAR_3 :
case BCODE_POP_INTO_OBJVAR_0 :
case BCODE_POP_INTO_OBJVAR_1 :
case BCODE_POP_INTO_OBJVAR_2 :
case BCODE_POP_INTO_OBJVAR_3 :
2015-06-30 14:47:39 +00:00
{
stix_oop_oop_t t ;
2015-06-23 14:00:26 +00:00
/* b1 -> variable index to the object indicated by b2.
* b2 - > object index stored in the literal frame . */
2015-06-29 13:52:40 +00:00
b1 = bcode & 0x3 ; /* low 2 bits */
FETCH_BYTE_CODE_TO ( stix , b2 ) ;
2015-06-12 13:52:30 +00:00
2015-06-29 13:52:40 +00:00
handle_objvar :
2015-06-30 14:47:39 +00:00
t = ( stix_oop_oop_t ) stix - > active_method - > slot [ b2 ] ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_OBJ_GET_FLAGS_TYPE ( t ) = = STIX_OBJ_TYPE_OOP ) ;
STIX_ASSERT ( stix , b1 < STIX_OBJ_GET_SIZE ( t ) ) ;
2015-06-23 14:00:26 +00:00
2015-06-29 13:52:40 +00:00
if ( ( bcode > > 3 ) & 1 )
{
/* store or pop */
2015-06-12 13:52:30 +00:00
2016-05-27 15:01:54 +00:00
t - > slot [ b1 ] = STIX_STACK_GETTOP ( stix ) ;
2015-06-23 14:00:26 +00:00
2015-06-29 13:52:40 +00:00
if ( ( bcode > > 2 ) & 1 )
{
/* pop */
2016-05-27 15:01:54 +00:00
STIX_STACK_POP ( stix ) ;
2016-10-04 17:58:28 +00:00
LOG_INST_2 ( stix , " pop_into_objvar %zu %zu " , b1 , b2 ) ;
2015-10-08 14:26:04 +00:00
}
else
{
2016-10-04 17:58:28 +00:00
LOG_INST_2 ( stix , " store_into_objvar %zu %zu " , b1 , b2 ) ;
2015-06-29 13:52:40 +00:00
}
}
else
{
/* push */
2016-10-04 17:58:28 +00:00
LOG_INST_2 ( stix , " push_objvar %zu %zu " , b1 , b2 ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , t - > slot [ b1 ] ) ;
2015-06-29 13:52:40 +00:00
}
2015-06-12 13:52:30 +00:00
break ;
2015-06-30 14:47:39 +00:00
}
2015-06-12 13:52:30 +00:00
2015-06-29 13:52:40 +00:00
/* -------------------------------------------------------- */
case BCODE_SEND_MESSAGE_X :
case BCODE_SEND_MESSAGE_TO_SUPER_X :
2015-12-27 10:19:36 +00:00
/* b1 -> number of arguments
* b2 - > selector index stored in the literal frame */
2015-06-29 13:52:40 +00:00
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
FETCH_PARAM_CODE_TO ( stix , b2 ) ;
goto handle_send_message ;
case BCODE_SEND_MESSAGE_0 :
case BCODE_SEND_MESSAGE_1 :
case BCODE_SEND_MESSAGE_2 :
case BCODE_SEND_MESSAGE_3 :
case BCODE_SEND_MESSAGE_TO_SUPER_0 :
case BCODE_SEND_MESSAGE_TO_SUPER_1 :
case BCODE_SEND_MESSAGE_TO_SUPER_2 :
case BCODE_SEND_MESSAGE_TO_SUPER_3 :
2015-06-08 13:24:02 +00:00
{
stix_oop_char_t selector ;
2015-06-29 13:52:40 +00:00
b1 = bcode & 0x3 ; /* low 2 bits */
FETCH_BYTE_CODE_TO ( stix , b2 ) ;
2015-06-08 13:24:02 +00:00
2015-12-27 10:19:36 +00:00
handle_send_message :
2015-06-08 13:24:02 +00:00
/* get the selector from the literal frame */
2015-06-25 13:37:50 +00:00
selector = ( stix_oop_char_t ) stix - > active_method - > slot [ b2 ] ;
2015-06-08 13:24:02 +00:00
2016-10-04 17:58:28 +00:00
LOG_INST_3 ( stix , " send_message%hs %zu @%zu " , ( ( ( bcode > > 2 ) & 1 ) ? " _to_super " : " " ) , b1 , b2 ) ;
2016-06-05 18:01:35 +00:00
2015-12-27 10:19:36 +00:00
if ( send_message ( stix , selector , ( ( bcode > > 2 ) & 1 ) , b1 ) < = - 1 ) goto oops ;
2015-06-09 12:14:18 +00:00
break ; /* CMD_SEND_MESSAGE */
}
2015-06-29 13:52:40 +00:00
/* -------------------------------------------------------- */
2015-06-07 14:36:26 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_PUSH_RECEIVER :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " push_receiver " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , stix - > active_context - > origin - > receiver_or_source ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-07 14:36:26 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_PUSH_NIL :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " push_nil " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , stix - > _nil ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-07 14:36:26 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_PUSH_TRUE :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " push_true " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , stix - > _true ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-07 14:36:26 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_PUSH_FALSE :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " push_false " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , stix - > _false ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-09 12:14:18 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_PUSH_CONTEXT :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " push_context " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , ( stix_oop_t ) stix - > active_context ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-16 04:31:28 +00:00
2016-07-05 15:22:29 +00:00
case BCODE_PUSH_PROCESS :
LOG_INST_0 ( stix , " push_process " ) ;
STIX_STACK_PUSH ( stix , ( stix_oop_t ) stix - > processor - > active ) ;
break ;
2015-06-29 13:52:40 +00:00
case BCODE_PUSH_NEGONE :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " push_negone " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , STIX_SMOOI_TO_OOP ( - 1 ) ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-16 04:31:28 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_PUSH_ZERO :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " push_zero " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , STIX_SMOOI_TO_OOP ( 0 ) ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-16 04:31:28 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_PUSH_ONE :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " push_one " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , STIX_SMOOI_TO_OOP ( 1 ) ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-09 12:14:18 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_PUSH_TWO :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " push_two " ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , STIX_SMOOI_TO_OOP ( 2 ) ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-07 14:36:26 +00:00
2015-07-02 15:45:48 +00:00
case BCODE_PUSH_INTLIT :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " push_intlit %zu " , b1 ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , STIX_SMOOI_TO_OOP ( b1 ) ) ;
2015-07-02 15:45:48 +00:00
break ;
case BCODE_PUSH_NEGINTLIT :
2016-10-04 17:58:28 +00:00
{
stix_ooi_t num ;
2015-07-02 15:45:48 +00:00
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
2016-10-04 17:58:28 +00:00
num = b1 ;
LOG_INST_1 ( stix , " push_negintlit %zu " , b1 ) ;
STIX_STACK_PUSH ( stix , STIX_SMOOI_TO_OOP ( - num ) ) ;
2015-07-02 15:45:48 +00:00
break ;
2016-10-04 17:58:28 +00:00
}
2015-07-02 15:45:48 +00:00
2016-09-14 04:56:00 +00:00
case BCODE_PUSH_CHARLIT :
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
2016-10-04 17:58:28 +00:00
LOG_INST_1 ( stix , " push_charlit %zu " , b1 ) ;
2016-09-14 04:56:00 +00:00
STIX_STACK_PUSH ( stix , STIX_CHAR_TO_OOP ( b1 ) ) ;
break ;
2015-06-29 13:52:40 +00:00
/* -------------------------------------------------------- */
2015-06-09 12:14:18 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_DUP_STACKTOP :
{
stix_oop_t t ;
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " dup_stacktop " ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ! STIX_STACK_ISEMPTY ( stix ) ) ;
2016-05-27 15:01:54 +00:00
t = STIX_STACK_GETTOP ( stix ) ;
STIX_STACK_PUSH ( stix , t ) ;
2015-06-29 13:52:40 +00:00
break ;
}
2015-06-22 14:21:46 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_POP_STACKTOP :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " pop_stacktop " ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ! STIX_STACK_ISEMPTY ( stix ) ) ;
2016-05-27 15:01:54 +00:00
STIX_STACK_POP ( stix ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-08 13:24:02 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_RETURN_STACKTOP :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " return_stacktop " ) ;
2016-05-27 15:01:54 +00:00
return_value = STIX_STACK_GETTOP ( stix ) ;
STIX_STACK_POP ( stix ) ;
2015-06-29 13:52:40 +00:00
goto handle_return ;
2015-06-08 13:24:02 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_RETURN_RECEIVER :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " return_receiver " ) ;
2015-06-29 13:52:40 +00:00
return_value = stix - > active_context - > origin - > receiver_or_source ;
2015-10-08 14:26:04 +00:00
2015-06-29 13:52:40 +00:00
handle_return :
2016-02-15 18:07:20 +00:00
#if 0
2015-06-29 13:52:40 +00:00
/* put the instruction pointer back to the return
* instruction ( RETURN_RECEIVER or RETURN_RECEIVER )
* if a context returns into this context again ,
* it ' ll be able to return as well again .
*
* Consider a program like this :
*
* # class MyObject ( Object )
* {
* # declare ( # classinst ) t1 t2 .
* # method ( # class ) xxxx
* {
* | g1 g2 |
* t1 dump .
* t2 : = [ g1 : = 50. g2 : = 100. ^ g1 + g2 ] .
* ( t1 < 100 ) ifFalse : [ ^ self ] .
* t1 : = t1 + 1.
* ^ self xxxx .
* }
* # method ( # class ) main
* {
* t1 : = 1.
* self xxxx .
* t2 : = t2 value .
* t2 dump .
* }
* }
*
* the ' xxxx ' method invoked by ' self xxxx ' has
* returned even before ' t2 value ' is executed .
* the ' ^ ' operator makes the active context to
* switch to its ' origin - > sender ' which is the
* method context of ' xxxx ' itself . placing its
* instruction pointer at the ' return ' instruction
* helps execute another return when the switching
* occurs .
*
* TODO : verify if this really works
*
*/
stix - > ip - - ;
2016-02-15 18:07:20 +00:00
# else
2016-06-20 15:42:51 +00:00
if ( stix - > active_context - > origin = = stix - > processor - > active - > initial_context - > origin )
2015-10-19 06:16:43 +00:00
{
2016-02-15 18:07:20 +00:00
/* method return from a processified block
*
* # method ( # class ) main
* {
* [ ^ 100 ] newProcess resume .
* ' 1111 ' dump .
* ' 1111 ' dump .
* ' 1111 ' dump .
* ^ 300.
* }
*
* ^ 100 doesn ' t terminate a main process as the block
* has been processified . on the other hand , ^ 100
* in the following program causes main to exit .
*
* # method ( # class ) main
* {
* [ ^ 100 ] value .
* ' 1111 ' dump .
* ' 1111 ' dump .
* ' 1111 ' dump .
* ^ 300.
* }
*/
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , stix - > active_context ) = = stix - > _block_context ) ;
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , stix - > processor - > active - > initial_context ) = = stix - > _block_context ) ;
2016-02-15 18:07:20 +00:00
2016-06-20 15:42:51 +00:00
/* decrement the instruction pointer back to the return instruction.
2016-02-15 18:07:20 +00:00
* even if the context is reentered , it will just return .
* stix - > ip - - ; */
2016-06-20 15:42:51 +00:00
2016-02-14 06:35:18 +00:00
terminate_process ( stix , stix - > processor - > active ) ;
2015-10-19 06:16:43 +00:00
}
2016-02-15 18:07:20 +00:00
else
2015-10-19 06:16:43 +00:00
{
2016-06-20 15:42:51 +00:00
unwind_protect = 0 ;
2016-02-15 18:07:20 +00:00
/* set the instruction pointer to an invalid value.
* this is stored into the current method context
* before context switching and marks a dead context */
if ( stix - > active_context - > origin = = stix - > active_context )
{
/* returning from a method */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , stix - > active_context ) = = stix - > _method_context ) ;
2016-06-23 15:35:28 +00:00
stix - > ip = - 1 ;
2016-02-15 18:07:20 +00:00
}
else
{
2016-06-20 15:42:51 +00:00
stix_oop_context_t ctx ;
2016-02-15 18:07:20 +00:00
/* method return from within a block(including a non-local return) */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , stix - > active_context ) = = stix - > _block_context ) ;
2016-06-20 15:42:51 +00:00
ctx = stix - > active_context ;
while ( ( stix_oop_t ) ctx ! = stix - > _nil )
{
2016-06-22 03:23:14 +00:00
if ( STIX_CLASSOF ( stix , ctx ) = = stix - > _method_context )
{
stix_ooi_t preamble ;
preamble = STIX_OOP_TO_SMOOI ( ( ( stix_oop_method_t ) ctx - > method_or_nargs ) - > preamble ) ;
if ( STIX_METHOD_GET_PREAMBLE_CODE ( preamble ) = = STIX_METHOD_PREAMBLE_ENSURE )
{
if ( ! unwind_protect )
{
unwind_protect = 1 ;
unwind_start = ctx ;
}
unwind_stop = ctx ;
}
}
2016-06-20 15:42:51 +00:00
if ( ctx = = stix - > active_context - > origin ) goto non_local_return_ok ;
ctx = ctx - > sender ;
}
/* cannot return from a method that has returned already */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , stix - > active_context - > origin ) = = stix - > _method_context ) ;
STIX_ASSERT ( stix , stix - > active_context - > origin - > ip = = STIX_SMOOI_TO_OOP ( - 1 ) ) ;
2016-06-22 03:23:14 +00:00
2016-06-20 15:42:51 +00:00
STIX_LOG0 ( stix , STIX_LOG_IC | STIX_LOG_ERROR , " Error - cannot return from dead context \n " ) ;
stix - > errnum = STIX_EINTERN ; /* TODO: can i make this error catchable at the stix level? */
return - 1 ;
non_local_return_ok :
2016-06-22 03:23:14 +00:00
/*STIX_DEBUG2 (stix, "NON_LOCAL RETURN OK TO... %p %p\n", stix->active_context->origin, stix->active_context->origin->sender);*/
2016-06-23 15:35:28 +00:00
stix - > active_context - > origin - > ip = STIX_SMOOI_TO_OOP ( - 1 ) ;
2016-02-15 18:07:20 +00:00
}
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , stix - > active_context - > origin ) = = stix - > _method_context ) ;
2016-02-16 17:00:10 +00:00
/* restore the stack pointer */
stix - > sp = STIX_OOP_TO_SMOOI ( stix - > active_context - > origin - > sp ) ;
2016-02-15 18:07:20 +00:00
SWITCH_ACTIVE_CONTEXT ( stix , stix - > active_context - > origin - > sender ) ;
2015-06-08 13:24:02 +00:00
2016-06-20 15:42:51 +00:00
if ( unwind_protect )
{
static stix_ooch_t fbm [ ] = {
' u ' , ' n ' , ' w ' , ' i ' , ' n ' , ' d ' , ' T ' , ' o ' , ' : ' ,
' r ' , ' e ' , ' t ' , ' u ' , ' r ' , ' n ' , ' : '
} ;
STIX_STACK_PUSH ( stix , ( stix_oop_t ) unwind_start ) ;
STIX_STACK_PUSH ( stix , ( stix_oop_t ) unwind_stop ) ;
STIX_STACK_PUSH ( stix , ( stix_oop_t ) return_value ) ;
2015-06-20 03:07:11 +00:00
2016-06-20 15:42:51 +00:00
if ( send_private_message ( stix , fbm , 16 , 0 , 2 ) < = - 1 ) return - 1 ;
}
else
2015-10-19 06:16:43 +00:00
{
2016-06-20 15:42:51 +00:00
/* push the return value to the stack of the new active context */
STIX_STACK_PUSH ( stix , return_value ) ;
if ( stix - > active_context = = stix - > initial_context )
{
/* the new active context is the fake initial context.
* this context can ' t get executed further . */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) stix - > active_context - > sender = = stix - > _nil ) ;
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , stix - > active_context ) = = stix - > _method_context ) ;
STIX_ASSERT ( stix , stix - > active_context - > receiver_or_source = = stix - > _nil ) ;
STIX_ASSERT ( stix , stix - > active_context = = stix - > processor - > active - > initial_context ) ;
STIX_ASSERT ( stix , stix - > active_context - > origin = = stix - > processor - > active - > initial_context - > origin ) ;
STIX_ASSERT ( stix , stix - > active_context - > origin = = stix - > active_context ) ;
2016-06-20 15:42:51 +00:00
/* NOTE: this condition is true for the processified block context also.
* stix - > active_context - > origin = = stix - > processor - > active - > initial_context - > origin
* however , the check here is done after context switching and the
* processified block check has been done against the context before switching */
/* the stack contains the final return value so the stack pointer must be 0. */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > sp = = 0 ) ;
2016-06-20 15:42:51 +00:00
if ( stix - > option . trait & STIX_AWAIT_PROCS )
terminate_process ( stix , stix - > processor - > active ) ;
else
goto done ;
/* TODO: store the return value to the VM register.
* the caller to stix_execute ( ) can fetch it to return it to the system */
}
2015-10-19 06:16:43 +00:00
}
2015-06-29 13:52:40 +00:00
}
2016-05-15 15:51:41 +00:00
2016-02-15 18:07:20 +00:00
# endif
2015-06-20 03:07:11 +00:00
2015-06-29 13:52:40 +00:00
break ;
2015-06-25 13:37:50 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_RETURN_FROM_BLOCK :
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " return_from_block " ) ;
2015-10-08 14:26:04 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , stix - > active_context ) = = stix - > _block_context ) ;
2015-06-25 13:37:50 +00:00
2015-10-22 02:47:25 +00:00
if ( stix - > active_context = = stix - > processor - > active - > initial_context )
2015-10-19 06:16:43 +00:00
{
2016-06-05 18:01:35 +00:00
/* the active context to return from is an initial context of
* the active process . this process must have been created
* over a block using the newProcess method . let ' s terminate
* the process . */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , ( stix_oop_t ) stix - > active_context - > sender = = stix - > _nil ) ;
2016-02-14 06:35:18 +00:00
terminate_process ( stix , stix - > processor - > active ) ;
2015-10-19 06:16:43 +00:00
}
else
{
2016-06-05 18:01:35 +00:00
/* it is a normal block return as the active block context
* is not the initial context of a process */
2016-02-12 16:23:26 +00:00
/* the process stack is shared. the return value
* doesn ' t need to get moved . */
SWITCH_ACTIVE_CONTEXT ( stix , ( stix_oop_context_t ) stix - > active_context - > sender ) ;
2015-10-19 06:16:43 +00:00
}
2015-06-29 13:52:40 +00:00
break ;
2015-06-17 13:46:16 +00:00
2015-07-03 13:06:01 +00:00
case BCODE_MAKE_BLOCK :
{
stix_oop_context_t blkctx ;
/* b1 - number of block arguments
* b2 - number of block temporaries */
FETCH_PARAM_CODE_TO ( stix , b1 ) ;
FETCH_PARAM_CODE_TO ( stix , b2 ) ;
2016-10-04 17:58:28 +00:00
LOG_INST_2 ( stix , " make_block %zu %zu " , b1 , b2 ) ;
2015-07-03 13:06:01 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , b1 > = 0 ) ;
STIX_ASSERT ( stix , b2 > = b1 ) ;
2015-07-03 13:06:01 +00:00
2016-02-11 14:26:26 +00:00
/* the block context object created here is used as a base
2016-11-29 05:25:08 +00:00
* object for block context activation . pf_block_value ( )
2016-02-11 14:26:26 +00:00
* clones a block context and activates the cloned context .
* this base block context is created with no stack for
* this reason */
2015-07-03 13:06:01 +00:00
blkctx = ( stix_oop_context_t ) stix_instantiate ( stix , stix - > _block_context , STIX_NULL , 0 ) ;
if ( ! blkctx ) return - 1 ;
/* the long forward jump instruction has the format of
* 11000100 KKKKKKKK or 11000100 KKKKKKKK KKKKKKKK
* depending on STIX_BCODE_LONG_PARAM_SIZE . change ' ip ' to point to
* the instruction after the jump . */
2015-11-12 06:57:35 +00:00
blkctx - > ip = STIX_SMOOI_TO_OOP ( stix - > ip + STIX_BCODE_LONG_PARAM_SIZE + 1 ) ;
2016-02-11 14:26:26 +00:00
/* stack pointer below the bottom. this base block context
* has an empty stack anyway . */
2015-11-12 06:57:35 +00:00
blkctx - > sp = STIX_SMOOI_TO_OOP ( - 1 ) ;
2015-07-03 13:06:01 +00:00
/* the number of arguments for a block context is local to the block */
2015-11-12 06:57:35 +00:00
blkctx - > method_or_nargs = STIX_SMOOI_TO_OOP ( b1 ) ;
2015-07-03 13:06:01 +00:00
/* the number of temporaries here is an accumulated count including
* the number of temporaries of a home context */
2015-11-12 06:57:35 +00:00
blkctx - > ntmprs = STIX_SMOOI_TO_OOP ( b2 ) ;
2015-07-03 13:06:01 +00:00
2016-02-11 14:26:26 +00:00
/* set the home context where it's defined */
blkctx - > home = ( stix_oop_t ) stix - > active_context ;
/* no source for a base block context. */
blkctx - > receiver_or_source = stix - > _nil ;
2015-07-03 13:06:01 +00:00
blkctx - > origin = stix - > active_context - > origin ;
2016-02-11 14:26:26 +00:00
/* push the new block context to the stack of the active context */
2016-05-27 15:01:54 +00:00
STIX_STACK_PUSH ( stix , ( stix_oop_t ) blkctx ) ;
2015-07-03 13:06:01 +00:00
break ;
}
2015-06-29 13:52:40 +00:00
case BCODE_SEND_BLOCK_COPY :
{
stix_ooi_t nargs , ntmprs ;
stix_oop_context_t rctx ;
stix_oop_context_t blkctx ;
2015-10-08 14:26:04 +00:00
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " send_block_copy " ) ;
2015-10-08 14:26:04 +00:00
2015-06-29 13:52:40 +00:00
/* it emulates thisContext blockCopy: nargs ofTmprCount: ntmprs */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > sp > = 2 ) ;
2015-06-29 13:52:40 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , STIX_STACK_GETTOP ( stix ) ) = = stix - > _small_integer ) ;
2016-05-27 15:01:54 +00:00
ntmprs = STIX_OOP_TO_SMOOI ( STIX_STACK_GETTOP ( stix ) ) ;
STIX_STACK_POP ( stix ) ;
2015-06-29 13:52:40 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , STIX_STACK_GETTOP ( stix ) ) = = stix - > _small_integer ) ;
2016-05-27 15:01:54 +00:00
nargs = STIX_OOP_TO_SMOOI ( STIX_STACK_GETTOP ( stix ) ) ;
STIX_STACK_POP ( stix ) ;
2015-06-29 13:52:40 +00:00
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , nargs > = 0 ) ;
STIX_ASSERT ( stix , ntmprs > = nargs ) ;
2015-06-29 13:52:40 +00:00
/* the block context object created here is used
* as a base object for block context activation .
2016-11-29 05:25:08 +00:00
* pf_block_value ( ) clones a block
2015-06-29 13:52:40 +00:00
* context and activates the cloned context .
* this base block context is created with no
* stack for this reason . */
blkctx = ( stix_oop_context_t ) stix_instantiate ( stix , stix - > _block_context , STIX_NULL , 0 ) ;
if ( ! blkctx ) return - 1 ;
/* get the receiver to the block copy message after block context instantiation
* not to get affected by potential GC */
2016-05-27 15:01:54 +00:00
rctx = ( stix_oop_context_t ) STIX_STACK_GETTOP ( stix ) ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , rctx = = stix - > active_context ) ;
2015-06-29 13:52:40 +00:00
/* [NOTE]
2016-01-29 04:04:39 +00:00
* blkctx - > sender is left to nil . it is set to the
2015-06-29 13:52:40 +00:00
* active context before it gets activated . see
2016-11-29 05:25:08 +00:00
* pf_block_value ( ) .
2015-06-29 13:52:40 +00:00
*
* blkctx - > home is set here to the active context .
* it ' s redundant to have them pushed to the stack
* though it is to emulate the message sending of
2016-01-29 04:04:39 +00:00
* blockCopy : withNtmprs : . BCODE_MAKE_BLOCK has been
* added to replace BCODE_SEND_BLOCK_COPY and pusing
* arguments to the stack .
2015-06-29 13:52:40 +00:00
*
* blkctx - > origin is set here by copying the origin
* of the active context .
*/
2015-06-17 13:46:16 +00:00
2015-06-29 13:52:40 +00:00
/* the extended jump instruction has the format of
* 0000 XXXX KKKKKKKK or 0000 XXXX KKKKKKKK KKKKKKKK
* depending on STIX_BCODE_LONG_PARAM_SIZE . change ' ip ' to point to
* the instruction after the jump . */
2015-11-12 06:57:35 +00:00
blkctx - > ip = STIX_SMOOI_TO_OOP ( stix - > ip + STIX_BCODE_LONG_PARAM_SIZE + 1 ) ;
blkctx - > sp = STIX_SMOOI_TO_OOP ( - 1 ) ;
2015-06-29 13:52:40 +00:00
/* the number of arguments for a block context is local to the block */
2015-11-12 06:57:35 +00:00
blkctx - > method_or_nargs = STIX_SMOOI_TO_OOP ( nargs ) ;
2015-06-29 13:52:40 +00:00
/* the number of temporaries here is an accumulated count including
* the number of temporaries of a home context */
2015-11-12 06:57:35 +00:00
blkctx - > ntmprs = STIX_SMOOI_TO_OOP ( ntmprs ) ;
2015-06-29 13:52:40 +00:00
blkctx - > home = ( stix_oop_t ) rctx ;
blkctx - > receiver_or_source = stix - > _nil ;
2015-06-07 14:36:26 +00:00
2015-06-29 13:52:40 +00:00
#if 0
if ( rctx - > home = = stix - > _nil )
{
/* the context that receives the blockCopy message is a method context */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , rctx ) = = stix - > _method_context ) ;
STIX_ASSERT ( stix , rctx = = ( stix_oop_t ) stix - > active_context ) ;
2015-06-29 13:52:40 +00:00
blkctx - > origin = ( stix_oop_context_t ) rctx ;
}
else
{
/* a block context is active */
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , STIX_CLASSOF ( stix , rctx ) = = stix - > _block_context ) ;
2015-06-29 13:52:40 +00:00
blkctx - > origin = ( ( stix_oop_block_context_t ) rctx ) - > origin ;
}
# else
2015-06-08 13:24:02 +00:00
2015-06-29 13:52:40 +00:00
/* [NOTE]
* the origin of a method context is set to itself
* when it ' s created . so it ' s safe to simply copy
* the origin field this way .
*/
blkctx - > origin = rctx - > origin ;
# endif
2015-06-28 14:20:37 +00:00
2016-05-27 15:01:54 +00:00
STIX_STACK_SETTOP ( stix , ( stix_oop_t ) blkctx ) ;
2015-06-29 13:52:40 +00:00
break ;
}
2015-06-28 14:20:37 +00:00
2015-06-29 13:52:40 +00:00
case BCODE_NOOP :
/* do nothing */
2016-06-05 18:01:35 +00:00
LOG_INST_0 ( stix , " noop " ) ;
2015-06-29 13:52:40 +00:00
break ;
2015-06-25 13:37:50 +00:00
2015-06-08 13:24:02 +00:00
2015-06-29 13:52:40 +00:00
default :
2016-06-13 15:52:09 +00:00
STIX_LOG1 ( stix , STIX_LOG_IC | STIX_LOG_FATAL , " Fatal error - unknown byte code 0x%zx \n " , bcode ) ;
2015-06-29 13:52:40 +00:00
stix - > errnum = STIX_EINTERN ;
2016-10-04 17:58:28 +00:00
goto oops ;
2015-06-07 14:36:26 +00:00
}
2015-06-04 18:34:37 +00:00
}
2015-06-07 14:36:26 +00:00
done :
2015-10-08 14:26:04 +00:00
2016-05-12 05:53:35 +00:00
vm_cleanup ( stix ) ;
2016-06-05 18:01:35 +00:00
# if defined(STIX_PROFILE_VM)
2016-06-13 15:52:09 +00:00
STIX_LOG1 ( stix , STIX_LOG_IC | STIX_LOG_INFO , " TOTAL_INST_COUTNER = %zu \n " , inst_counter ) ;
2015-10-08 14:26:04 +00:00
# endif
2015-06-07 14:36:26 +00:00
return 0 ;
2015-06-11 09:11:18 +00:00
oops :
2015-06-21 14:45:45 +00:00
/* TODO: anything to do here? */
2015-06-11 09:11:18 +00:00
return - 1 ;
2015-06-04 18:34:37 +00:00
}
2015-10-28 14:58:58 +00:00
int stix_invoke ( stix_t * stix , const stix_oocs_t * objname , const stix_oocs_t * mthname )
2015-06-04 18:34:37 +00:00
{
2016-05-15 15:51:41 +00:00
int n ;
2016-12-26 18:44:47 +00:00
STIX_ASSERT ( stix , stix - > initial_context = = STIX_NULL ) ;
STIX_ASSERT ( stix , stix - > active_context = = STIX_NULL ) ;
STIX_ASSERT ( stix , stix - > active_method = = STIX_NULL ) ;
2016-05-15 15:51:41 +00:00
2016-02-12 16:23:26 +00:00
if ( start_initial_process_and_context ( stix , objname , mthname ) < = - 1 ) return - 1 ;
2016-05-15 15:51:41 +00:00
stix - > initial_context = stix - > processor - > active - > initial_context ;
n = stix_execute ( stix ) ;
/* TODO: reset processor fields. set processor->tally to zero. processor->active to nil_process... */
stix - > initial_context = STIX_NULL ;
stix - > active_context = STIX_NULL ;
stix - > active_method = STIX_NULL ;
return n ;
2015-06-04 18:34:37 +00:00
}
2015-10-08 14:26:04 +00:00