| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * $Id$ | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-07 14:13:13 +00:00
										 |  |  |     Copyright (c) 2016-2018 Chung, Hyung-Hwan. All rights reserved. | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +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 WARRANTIES | 
					
						
							|  |  |  |     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 "hcl-prv.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | struct pf_t | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oow_t minargs; | 
					
						
							|  |  |  | 	hcl_oow_t maxargs; | 
					
						
							| 
									
										
										
										
											2018-02-09 04:24:50 +00:00
										 |  |  | 	hcl_pfimpl_t impl; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hcl_oow_t namelen; | 
					
						
							| 
									
										
										
										
											2018-04-05 04:56:52 +00:00
										 |  |  | 	hcl_ooch_t name[32]; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | typedef struct pf_t pf_t; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 04:52:01 +00:00
										 |  |  | hcl_oop_t hcl_makeprim (hcl_t* hcl, hcl_pfimpl_t primimpl, hcl_oow_t minargs, hcl_oow_t maxargs, hcl_mod_t* mod) | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-03 14:50:51 +00:00
										 |  |  | 	hcl_oop_prim_t obj; /* in principle, hcl_oop_word_t with HCL_PRIM_NUM_WORDS elements */ | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-03 14:50:51 +00:00
										 |  |  | 	obj = (hcl_oop_prim_t)hcl_allocwordobj(hcl, HCL_BRAND_PRIM, HCL_NULL, HCL_PRIM_NUM_WORDS); | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 	if (obj) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2021-02-03 14:50:51 +00:00
										 |  |  | 		obj->impl = (hcl_oow_t)primimpl; | 
					
						
							|  |  |  | 		obj->min_nargs = minargs; | 
					
						
							|  |  |  | 		obj->max_nargs = maxargs; | 
					
						
							|  |  |  | 		obj->mod = (hcl_oow_t)mod; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (hcl_oop_t)obj; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static void log_char_object (hcl_t* hcl, hcl_bitmask_t mask, hcl_oop_char_t msg) | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_ooi_t n; | 
					
						
							|  |  |  | 	hcl_oow_t rem; | 
					
						
							|  |  |  | 	const hcl_ooch_t* ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	HCL_ASSERT (hcl, HCL_OBJ_GET_FLAGS_TYPE(msg) == HCL_OBJ_TYPE_CHAR); | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	rem = HCL_OBJ_GET_SIZE(msg); | 
					
						
							|  |  |  | 	ptr = msg->slot; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | start_over: | 
					
						
							|  |  |  | 	while (rem > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (*ptr == '\0')  | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2018-02-21 13:13:25 +00:00
										 |  |  | 			n = hcl_logbfmt (hcl, mask, "%jc", *ptr); | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 			HCL_ASSERT (hcl, n == 1); | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 			rem -= n; | 
					
						
							|  |  |  | 			ptr += n; | 
					
						
							|  |  |  | 			goto start_over; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 13:13:25 +00:00
										 |  |  | 		n = hcl_logbfmt (hcl, mask, "%.*js", rem, ptr); | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 		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 */ | 
					
						
							| 
									
										
										
										
											2018-02-21 13:13:25 +00:00
										 |  |  | 			n = hcl_logbfmt (hcl, mask, "%jc", *ptr); | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 			HCL_ASSERT (hcl, n == 1); | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		rem -= n; | 
					
						
							|  |  |  | 		ptr += n; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 04:52:01 +00:00
										 |  |  | static hcl_pfrc_t pf_log (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | { | 
					
						
							|  |  |  | /* TODO: accept log level */ | 
					
						
							| 
									
										
										
										
											2018-02-15 15:36:15 +00:00
										 |  |  | 	hcl_oop_t msg; | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | 	hcl_bitmask_t mask; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 	hcl_ooi_t k; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*level = HCL_STACK_GET(hcl, hcl->sp - nargs + 1);
 | 
					
						
							|  |  |  | 	if (!HCL_OOP_IS_SMOOI(level)) mask = HCL_LOG_APP | HCL_LOG_INFO;  | 
					
						
							|  |  |  | 	else mask = HCL_LOG_APP | HCL_OOP_TO_SMOOI(level);*/ | 
					
						
							| 
									
										
										
										
											2018-02-06 10:16:01 +00:00
										 |  |  | 	mask = HCL_LOG_APP | HCL_LOG_FATAL; /* TODO: accept logging level .. */ | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (k = 0; k < nargs; k++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		msg = HCL_STACK_GETARG (hcl, nargs, k); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (msg == hcl->_nil || msg == hcl->_true || msg == hcl->_false)  | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			goto dump_object; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-21 13:13:25 +00:00
										 |  |  | 		else if (HCL_OOP_IS_CHAR(msg)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			hcl_logbfmt (hcl, mask, "%jc", HCL_OOP_TO_CHAR(msg)); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 		else if (HCL_OOP_IS_POINTER(msg)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			if (HCL_OBJ_GET_FLAGS_TYPE(msg) == HCL_OBJ_TYPE_CHAR) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				log_char_object (hcl, mask, (hcl_oop_char_t)msg); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else if (HCL_OBJ_GET_FLAGS_TYPE(msg) == HCL_OBJ_TYPE_OOP) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				/* visit only 1-level down into an array-like object */ | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 				hcl_oop_t inner; | 
					
						
							|  |  |  | 				hcl_oow_t i; | 
					
						
							|  |  |  | 				int brand; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 				brand = HCL_OBJ_GET_FLAGS_BRAND(msg); | 
					
						
							|  |  |  | 				if (brand != HCL_BRAND_ARRAY) goto dump_object; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				for (i = 0; i < HCL_OBJ_GET_SIZE(msg); i++) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					inner = ((hcl_oop_oop_t)msg)->slot[i]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if (i > 0) hcl_logbfmt (hcl, mask, " "); | 
					
						
							| 
									
										
										
										
											2018-02-21 13:13:25 +00:00
										 |  |  | 					if (HCL_OOP_IS_CHAR(inner)) | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						hcl_logbfmt (hcl, mask, "%jc", HCL_OOP_TO_CHAR(inner)); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					else if (HCL_OOP_IS_POINTER(inner) && HCL_OBJ_GET_FLAGS_TYPE(inner) == HCL_OBJ_TYPE_CHAR) | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 					{ | 
					
						
							|  |  |  | 						log_char_object (hcl, mask, (hcl_oop_char_t)inner); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					else | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						hcl_logbfmt (hcl, mask, "%O", inner); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else goto dump_object; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		dump_object: | 
					
						
							|  |  |  | 			hcl_logbfmt (hcl, mask, "%O", msg); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, hcl->_nil); | 
					
						
							| 
									
										
										
										
											2018-02-08 07:40:27 +00:00
										 |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | static hcl_pfrc_t pf_logf (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-31 10:54:13 +00:00
										 |  |  | 	if (hcl_logfmtcallstack(hcl, nargs) <= -1) | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		HCL_STACK_SETRETTOERRNUM (hcl, nargs); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | /* TODO: better return code? */ | 
					
						
							|  |  |  | 		HCL_STACK_SETRET (hcl, nargs, hcl->_nil); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_printf (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-31 10:54:13 +00:00
										 |  |  | 	if (hcl_prfmtcallstack(hcl, nargs) <= -1) | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		HCL_STACK_SETRETTOERRNUM (hcl, nargs); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | /* TODO: better return code? */ | 
					
						
							|  |  |  | 		HCL_STACK_SETRET (hcl, nargs, hcl->_nil); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | static hcl_pfrc_t pf_sprintf (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-31 10:54:13 +00:00
										 |  |  | 	if (hcl_strfmtcallstack(hcl, nargs) <= -1) | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		HCL_STACK_SETRETTOERRNUM (hcl, nargs); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hcl_oop_t str; | 
					
						
							|  |  |  | 		str = hcl_makestring (hcl, hcl->sprintf.xbuf.ptr, hcl->sprintf.xbuf.len, 0); | 
					
						
							|  |  |  | 		if (!str) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		HCL_STACK_SETRET (hcl, nargs, str); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 04:52:01 +00:00
										 |  |  | static hcl_pfrc_t pf_gc (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-18 15:02:57 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-31 17:48:47 +00:00
										 |  |  | 	hcl_gc (hcl, 1); | 
					
						
							| 
									
										
										
										
											2018-02-18 15:02:57 +00:00
										 |  |  | 	HCL_STACK_SETRET (hcl, nargs, hcl->_nil); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-24 04:01:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 07:40:27 +00:00
										 |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							| 
									
										
										
										
											2018-04-07 04:43:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 04:52:01 +00:00
										 |  |  | static hcl_pfrc_t pf_eqv (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-08 07:40:27 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t a0, a1, rv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	a0 = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	a1 = HCL_STACK_GETARG(hcl, nargs, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rv = (a0 == a1? hcl->_true: hcl->_false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 04:52:01 +00:00
										 |  |  | static hcl_pfrc_t pf_eql (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-08 07:40:27 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int n; | 
					
						
							|  |  |  | 	n = hcl_equalobjs(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							|  |  |  | 	if (n <= -1) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, (n? hcl->_true: hcl->_false)); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 04:52:01 +00:00
										 |  |  | static hcl_pfrc_t pf_eqk (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-23 07:17:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* equal kind? */ | 
					
						
							|  |  |  | 	hcl_oop_t a0, a1, rv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	a0 = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	a1 = HCL_STACK_GETARG(hcl, nargs, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rv = (HCL_BRANDOF(hcl, a0) == HCL_BRANDOF(hcl, a1)? hcl->_true: hcl->_false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | static hcl_pfrc_t pf_nqv (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t a0, a1, rv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	a0 = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	a1 = HCL_STACK_GETARG(hcl, nargs, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rv = (a0 != a1? hcl->_true: hcl->_false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_nql (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int n; | 
					
						
							|  |  |  | 	n = hcl_equalobjs(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							|  |  |  | 	if (n <= -1) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, (!n? hcl->_true: hcl->_false)); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_nqk (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* not equal kind? */ | 
					
						
							|  |  |  | 	hcl_oop_t a0, a1, rv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	a0 = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	a1 = HCL_STACK_GETARG(hcl, nargs, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rv = (HCL_BRANDOF(hcl, a0) != HCL_BRANDOF(hcl, a1)? hcl->_true: hcl->_false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-07 04:43:56 +00:00
										 |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_null (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv; | 
					
						
							|  |  |  | 	rv = (HCL_STACK_GETARG(hcl, nargs, 0) == hcl->_nil)? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_boolean (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (HCL_IS_TRUE(hcl, x) || HCL_IS_FALSE(hcl, x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_character (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (HCL_OOP_IS_CHAR(x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_error (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (HCL_OOP_IS_ERROR(x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_smptr (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (HCL_OOP_IS_SMPTR(x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_integer (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (hcl_isint(hcl, x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_numeric(hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (hcl_isint(hcl, x) || HCL_IS_FPDEC(hcl, x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_string (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (HCL_IS_STRING(hcl, x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_array (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (HCL_IS_ARRAY(hcl, x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_bytearray (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (HCL_IS_BYTEARRAY(hcl, x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_dictionary (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (HCL_IS_DIC(hcl, x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-04-07 15:21:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_is_lambda (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t rv, x; | 
					
						
							|  |  |  | 	x = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	rv = (HCL_IS_CONTEXT(hcl, x))? hcl->_true: hcl->_false; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-07 04:43:56 +00:00
										 |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 04:52:01 +00:00
										 |  |  | static hcl_pfrc_t pf_not (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-08 07:40:27 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t arg, rv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	arg = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	if (arg == hcl->_true) rv = hcl->_false; | 
					
						
							|  |  |  | 	else if (arg == hcl->_false) rv = hcl->_true; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hcl_seterrbfmt (hcl, HCL_EINVAL, "boolean parameter expected - %O", arg); | 
					
						
							|  |  |  | 		return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 04:52:01 +00:00
										 |  |  | static hcl_pfrc_t pf_and (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t arg, rv; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 	hcl_ooi_t i; | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	rv = hcl->_true; | 
					
						
							|  |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							|  |  |  | 		if (arg == hcl->_true) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			/* do nothing */ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (arg == hcl->_false)  | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			rv = hcl->_false; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			hcl_seterrbfmt (hcl, HCL_EINVAL, "boolean parameter expected - %O", arg); | 
					
						
							|  |  |  | 			return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 04:52:01 +00:00
										 |  |  | static hcl_pfrc_t pf_or (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t arg, rv; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 	hcl_ooi_t i; | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	rv = hcl->_false; | 
					
						
							|  |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-02-21 13:13:25 +00:00
										 |  |  | 			arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 		if (arg == hcl->_true) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			rv = hcl->_true; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (arg == hcl->_false)  | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			/* do nothing */ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			hcl_seterrbfmt (hcl, HCL_EINVAL, "boolean parameter expected - %O", arg); | 
					
						
							|  |  |  | 			return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, rv); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:52:10 +00:00
										 |  |  | static hcl_pfrc_t pf_number_add (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2016-10-25 13:44:38 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 	hcl_ooi_t i; | 
					
						
							| 
									
										
										
										
											2016-10-25 13:44:38 +00:00
										 |  |  | 	hcl_oop_t arg, ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 	ret = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							| 
									
										
										
										
											2016-10-25 13:44:38 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							| 
									
										
										
										
											2018-03-28 16:40:42 +00:00
										 |  |  | 		/*ret = hcl_addints(hcl, ret, arg);*/ | 
					
						
							|  |  |  | 		ret = hcl_addnums(hcl, ret, arg); | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 		if (!ret) return HCL_PF_FAILURE; | 
					
						
							| 
									
										
										
										
											2016-10-25 13:44:38 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 07:40:27 +00:00
										 |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							| 
									
										
										
										
											2016-10-25 13:44:38 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:52:10 +00:00
										 |  |  | static hcl_pfrc_t pf_number_sub (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 	hcl_ooi_t i; | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	hcl_oop_t arg, ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 	ret = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							| 
									
										
										
										
											2018-03-28 16:40:42 +00:00
										 |  |  | 		/*ret = hcl_subints(hcl, ret, arg);*/ | 
					
						
							|  |  |  | 		ret = hcl_subnums(hcl, ret, arg); | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 		if (!ret) return HCL_PF_FAILURE; | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:52:10 +00:00
										 |  |  | static hcl_pfrc_t pf_number_mul (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 	hcl_ooi_t i; | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	hcl_oop_t arg, ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 	ret = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							| 
									
										
										
										
											2018-03-30 15:43:09 +00:00
										 |  |  | 		/*ret = hcl_mulints(hcl, ret, arg);*/ | 
					
						
							|  |  |  | 		ret = hcl_mulnums(hcl, ret, arg); | 
					
						
							|  |  |  | 		if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:52:10 +00:00
										 |  |  | static hcl_pfrc_t pf_number_mlt (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_ooi_t i; | 
					
						
							|  |  |  | 	hcl_oop_t arg, ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							|  |  |  | 		ret = hcl_mltnums(hcl, ret, arg); | 
					
						
							|  |  |  | 		if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_number_div (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-03-30 15:43:09 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_ooi_t i; | 
					
						
							|  |  |  | 	hcl_oop_t arg, ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							|  |  |  | 		ret = hcl_divnums(hcl, ret, arg); | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 		if (!ret) return HCL_PF_FAILURE; | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-08 17:56:25 +00:00
										 |  |  | static hcl_pfrc_t pf_integer_quo (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 	hcl_ooi_t i; | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	hcl_oop_t arg, ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 	ret = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 		ret = hcl_divints(hcl, ret, arg, 0, HCL_NULL); | 
					
						
							|  |  |  | 		if (!ret) return HCL_PF_FAILURE; | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-08 17:56:25 +00:00
										 |  |  | static hcl_pfrc_t pf_integer_rem (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2016-10-25 13:44:38 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 	hcl_ooi_t i; | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 	hcl_oop_t arg, ret, rem; | 
					
						
							| 
									
										
										
										
											2016-10-25 13:44:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 	ret = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							| 
									
										
										
										
											2016-10-25 13:44:38 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-02-12 10:50:44 +00:00
										 |  |  | 		arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | 		ret = hcl_divints(hcl, ret, arg, 0, &rem); | 
					
						
							|  |  |  | 		if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 		ret = rem; | 
					
						
							| 
									
										
										
										
											2016-10-25 13:44:38 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 07:40:27 +00:00
										 |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							| 
									
										
										
										
											2016-10-25 13:44:38 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-08 17:56:25 +00:00
										 |  |  | static hcl_pfrc_t pf_integer_mquo (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_ooi_t i; | 
					
						
							|  |  |  | 	hcl_oop_t arg, ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							|  |  |  | 		ret = hcl_divints(hcl, ret, arg, 1, HCL_NULL); | 
					
						
							|  |  |  | 		if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-04-08 17:35:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-08 17:56:25 +00:00
										 |  |  | static hcl_pfrc_t pf_integer_mod (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-04-08 17:35:21 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_ooi_t i; | 
					
						
							|  |  |  | 	hcl_oop_t arg, ret, rem; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	for (i = 1; i < nargs; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							|  |  |  | 		ret = hcl_divints(hcl, ret, arg, 1, &rem); | 
					
						
							|  |  |  | 		if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 		ret = rem; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-03 14:02:40 +00:00
										 |  |  | static hcl_pfrc_t pf_number_sqrt (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							| 
									
										
										
										
											2018-04-07 02:28:38 +00:00
										 |  |  | 	ret = hcl_sqrtnum(hcl, HCL_STACK_GETARG(hcl, nargs, 0)); | 
					
						
							|  |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_number_abs (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							|  |  |  | 	ret = hcl_absnum(hcl, HCL_STACK_GETARG(hcl, nargs, 0));  | 
					
						
							| 
									
										
										
										
											2018-04-03 14:02:40 +00:00
										 |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:52:10 +00:00
										 |  |  | static hcl_pfrc_t pf_number_gt (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:28:09 +00:00
										 |  |  | 	ret = hcl_gtnums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:52:10 +00:00
										 |  |  | static hcl_pfrc_t pf_number_ge (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:28:09 +00:00
										 |  |  | 	ret = hcl_genums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:52:10 +00:00
										 |  |  | static hcl_pfrc_t pf_number_lt (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:28:09 +00:00
										 |  |  | 	ret = hcl_ltnums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-04-02 12:52:10 +00:00
										 |  |  | static hcl_pfrc_t pf_number_le (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:28:09 +00:00
										 |  |  | 	ret = hcl_lenums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-04-02 12:52:10 +00:00
										 |  |  | static hcl_pfrc_t pf_number_eq (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:28:09 +00:00
										 |  |  | 	ret = hcl_eqnums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-04-02 12:52:10 +00:00
										 |  |  | static hcl_pfrc_t pf_number_ne (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:28:09 +00:00
										 |  |  | 	ret = hcl_nenums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							| 
									
										
										
										
											2018-03-28 03:15:20 +00:00
										 |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-04-05 04:56:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_integer_band (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							|  |  |  | 	ret = hcl_bitandints(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							|  |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_integer_bor (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							|  |  |  | 	ret = hcl_bitorints(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							|  |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static hcl_pfrc_t pf_integer_bxor (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							|  |  |  | 	ret = hcl_bitxorints(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							|  |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static hcl_pfrc_t pf_integer_bnot (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							|  |  |  | 	ret = hcl_bitinvint(hcl, HCL_STACK_GETARG(hcl, nargs, 0)); | 
					
						
							|  |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static hcl_pfrc_t pf_integer_bshift (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							|  |  |  | 	ret = hcl_bitshiftint(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1)); | 
					
						
							|  |  |  | 	if (!ret) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ret); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-16 10:32:27 +00:00
										 |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | static hcl_pfrc_t pf_va_context (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, hcl->active_context); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_va_count (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_context_t* ctx; | 
					
						
							|  |  |  | 	hcl_ooi_t tmpr_mask, va, fixed_nargs, nrvars, nlvars, nvaargs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (nargs >= 1)  | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		ctx = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 		if (!HCL_IS_CONTEXT(hcl, ctx)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			hcl_seterrbfmt (hcl, HCL_EINVAL, "not a proper va context - %O", ctx); | 
					
						
							|  |  |  | 			return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		ctx = hcl->active_context; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tmpr_mask = HCL_OOP_TO_SMOOI(ctx->tmpr_mask); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va = GET_BLKTMPR_MASK_VA(tmpr_mask); | 
					
						
							|  |  |  | 	fixed_nargs = GET_BLKTMPR_MASK_NARGS(tmpr_mask); | 
					
						
							|  |  |  | 	nrvars = GET_BLKTMPR_MASK_NRVARS(tmpr_mask); | 
					
						
							|  |  |  | 	nlvars = GET_BLKTMPR_MASK_NLVARS(tmpr_mask); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/*if (!va) TODO: need this check?
 | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 	}*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nvaargs = HCL_OBJ_GET_SIZE(ctx) - fixed_nargs - nrvars - nlvars - HCL_CONTEXT_NAMED_INSTVARS; | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, HCL_SMOOI_TO_OOP(nvaargs)); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static hcl_pfrc_t pf_va_get (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oop_t ret; | 
					
						
							|  |  |  | 	hcl_context_t* ctx; | 
					
						
							|  |  |  | 	hcl_ooi_t tmpr_mask, va, fixed_nargs, nrvars, nlvars, nvaargs; | 
					
						
							|  |  |  | 	hcl_oow_t index; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (nargs >= 2)  | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		ctx = HCL_STACK_GETARG(hcl, nargs, 1); | 
					
						
							|  |  |  | 		if (!HCL_IS_CONTEXT(hcl, ctx)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			hcl_seterrbfmt (hcl, HCL_EINVAL, "not a proper va context - %O", ctx); | 
					
						
							|  |  |  | 			return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		ctx = hcl->active_context; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	tmpr_mask = HCL_OOP_TO_SMOOI(ctx->tmpr_mask); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va = GET_BLKTMPR_MASK_VA(tmpr_mask); | 
					
						
							|  |  |  | 	fixed_nargs = GET_BLKTMPR_MASK_NARGS(tmpr_mask); | 
					
						
							|  |  |  | 	nrvars = GET_BLKTMPR_MASK_NRVARS(tmpr_mask); | 
					
						
							|  |  |  | 	nlvars = GET_BLKTMPR_MASK_NLVARS(tmpr_mask); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hcl_inttooow(hcl, HCL_STACK_GETARG(hcl, nargs, 0), &index) == 0)  | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	if (!va) TODO: need this check? | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 	}*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nvaargs = HCL_OBJ_GET_SIZE(ctx) - fixed_nargs - nrvars - nlvars - HCL_CONTEXT_NAMED_INSTVARS; | 
					
						
							|  |  |  | 	if (index >= nvaargs) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hcl_seterrbfmt (hcl, HCL_EINVAL, "va index(%zu) out of bounds for va of size %zd", index, nvaargs); | 
					
						
							|  |  |  | 		return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, ctx->slot[fixed_nargs + nrvars + nlvars + index]); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-26 14:55:50 +00:00
										 |  |  | static hcl_pfrc_t pf_object_new (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | /* TODO: accept the object size if the class is variable-sized. */ | 
					
						
							|  |  |  | 	hcl_oop_t obj; | 
					
						
							|  |  |  | 	hcl_oop_t class_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	class_ = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	if (!HCL_IS_CLASS(hcl, class_)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hcl_seterrbfmt (hcl, HCL_EINVAL, "not a class - %O", class_); | 
					
						
							|  |  |  | 		return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	obj = hcl_instantiate(hcl, class_, HCL_NULL, 0); | 
					
						
							|  |  |  | 	if (HCL_UNLIKELY(!obj)) return HCL_PF_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_STACK_SETRET (hcl, nargs, obj); | 
					
						
							|  |  |  | 	return HCL_PF_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-24 04:01:19 +00:00
										 |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 16:10:41 +00:00
										 |  |  | static pf_t builtin_prims[] = | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-04-05 04:56:52 +00:00
										 |  |  | 	{ 0, HCL_TYPE_MAX(hcl_oow_t), pf_log,             3,  { 'l','o','g' } }, | 
					
						
							|  |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_logf,            4,  { 'l','o','g','f' } }, | 
					
						
							|  |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_printf,          6,  { 'p','r','i','n','t','f' } }, | 
					
						
							|  |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_sprintf,         7,  { 's','p','r','i','n','t','f' } }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ 0, 0,                       pf_gc,              2,  { 'g','c' } }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ 1, 1,                       pf_not,             3,  { 'n','o','t' } },  | 
					
						
							|  |  |  | 	/* this is a long-circuit logical and the short-curcuit 'and' is treated as a special form */ | 
					
						
							|  |  |  | 	{ 2, HCL_TYPE_MAX(hcl_oow_t), pf_and,             4,  { '_','a','n','d' } }, | 
					
						
							|  |  |  | 	/* this is a long-cirtuit logical or. the short-circuit 'or' is treated as a special form */ | 
					
						
							|  |  |  | 	{ 2, HCL_TYPE_MAX(hcl_oow_t), pf_or,              3,  { '_','o','r' } }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_eqv,             4,  { 'e','q','v','?' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_eql,             4,  { 'e','q','l','?' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_eqk,             4,  { 'e','q','k','?' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_nqv,             4,  { 'n','q','v','?' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_nql,             4,  { 'n','q','l','?' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_nqk,             4,  { 'n','q','k','?' } }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-22 14:43:47 +00:00
										 |  |  | 	{ 1, 1,                       pf_is_null,         5,  { 'n','u','l','l','?' } }, | 
					
						
							| 
									
										
										
										
											2018-04-07 04:43:56 +00:00
										 |  |  | 	{ 1, 1,                       pf_is_boolean,      8,  { 'b','o','o','l','e','a','n','?' } }, | 
					
						
							|  |  |  | 	{ 1, 1,                       pf_is_character,   10,  { 'c','h','a','r','a','c','t','e','r','?' } }, | 
					
						
							|  |  |  | 	{ 1, 1,                       pf_is_error,        6,  { 'e','r','r','o','r','?' } }, | 
					
						
							|  |  |  | 	{ 1, 1,                       pf_is_smptr,        6,  { 's','m','p','t','r','?' } }, | 
					
						
							| 
									
										
										
										
											2018-04-07 02:28:38 +00:00
										 |  |  | 	{ 1, 1,                       pf_is_integer,      8,  { 'i','n','t','e','g','e','r','?' } }, | 
					
						
							| 
									
										
										
										
											2018-04-07 04:43:56 +00:00
										 |  |  | 	{ 1, 1,                       pf_is_numeric,      8,  { 'n','u','m','e','r','i','c','?' } }, | 
					
						
							| 
									
										
										
										
											2018-04-07 02:28:38 +00:00
										 |  |  | 	{ 1, 1,                       pf_is_string,       7,  { 's','t','r','i','n','g','?' } }, | 
					
						
							| 
									
										
										
										
											2018-04-07 04:43:56 +00:00
										 |  |  | 	{ 1, 1,                       pf_is_array,        6,  { 'a','r','r','a','y','?' } }, | 
					
						
							|  |  |  | 	{ 1, 1,                       pf_is_bytearray,   10,  { 'b','y','t','e','a','r','r','a','y','?' } }, | 
					
						
							|  |  |  | 	{ 1, 1,                       pf_is_dictionary,  11,  { 'd','i','c','t','i','o','n','a','r','y','?' } }, | 
					
						
							| 
									
										
										
										
											2018-04-07 15:21:05 +00:00
										 |  |  | 	{ 1, 1,                       pf_is_lambda,       7,  { 'l','a','m','b','d','a','?' } }, | 
					
						
							| 
									
										
										
										
											2018-04-07 04:43:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-07 02:28:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-05 04:56:52 +00:00
										 |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_number_add,      1,  { '+' } }, | 
					
						
							|  |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_number_sub,      1,  { '-' } }, | 
					
						
							|  |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_number_mul,      1,  { '*' } }, | 
					
						
							|  |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_number_mlt,      3,  { 'm','l','t' } }, | 
					
						
							|  |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_number_div,      1,  { '/' } }, | 
					
						
							|  |  |  | 	{ 1, 1,                       pf_number_sqrt,     4,  { 's','q','r','t' } }, | 
					
						
							| 
									
										
										
										
											2018-04-07 02:28:38 +00:00
										 |  |  | 	{ 1, 1,                       pf_number_abs,      3,  { 'a','b','s' } }, | 
					
						
							| 
									
										
										
										
											2018-04-05 04:56:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_number_gt,       1,  { '>' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_number_ge,       2,  { '>','=' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_number_lt,       1,  { '<' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_number_le,       2,  { '<','=' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_number_eq,       1,  { '=' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_number_ne,       2,  { '/','=' } }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* bitwise operations are supported for integers only */ | 
					
						
							| 
									
										
										
										
											2018-04-05 07:11:21 +00:00
										 |  |  | 	{ 2, 2,                       pf_integer_band,    7,  { 'b','i','t','-','a','n','d' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_integer_bor,     6,  { 'b','i','t','-','o','r' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_integer_bxor,    7,  { 'b','i','t','-','x','o','r' } }, | 
					
						
							|  |  |  | 	{ 1, 1,                       pf_integer_bnot,    7,  { 'b','i','t','-','n','o','t' } }, | 
					
						
							|  |  |  | 	{ 2, 2,                       pf_integer_bshift,  9,  { 'b','i','t','-','s','h','i','f','t'  } }, | 
					
						
							| 
									
										
										
										
											2018-04-08 17:56:25 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2021-05-16 10:32:27 +00:00
										 |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_integer_quo,     3,  { 'd','i','v' } }, | 
					
						
							|  |  |  | 	{ 2, HCL_TYPE_MAX(hcl_oow_t), pf_integer_rem,     3,  { 'r','e','m' } }, | 
					
						
							|  |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_integer_mquo,    4,  { 'm','d','i','v' } }, | 
					
						
							|  |  |  | 	{ 2, HCL_TYPE_MAX(hcl_oow_t), pf_integer_mod,     3,  { 'm','o','d' } }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ 0, 0,                       pf_va_context,      10, { 'v','a','-','c','o','n','t','e','x','t' } }, | 
					
						
							|  |  |  | 	{ 0, 1,                       pf_va_count,        8,  { 'v','a','-','c','o','u','n','t' } }, | 
					
						
							|  |  |  | 	{ 1, 2,                       pf_va_get,          6,  { 'v','a','-','g','e','t' } }, | 
					
						
							| 
									
										
										
										
											2021-02-01 13:20:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-26 14:55:50 +00:00
										 |  |  | 	{ 1, 1,                       pf_object_new,                           10, { 'o','b','j','e','c','t','-','n','e','w' } }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ 0, 0,                       hcl_pf_process_current,                  15, { 'c','u','r','r','e','n','t','-','p','r','o','c','e','s','s'} }, | 
					
						
							|  |  |  | 	{ 1, HCL_TYPE_MAX(hcl_oow_t), hcl_pf_process_fork,                      4,  { 'f','o','r','k'} }, | 
					
						
							|  |  |  | 	{ 1, 1,                       hcl_pf_process_resume,                    6,  { 'r','e','s','u','m','e' } }, | 
					
						
							|  |  |  | 	{ 0, 1,                       hcl_pf_process_suspend,                   7,  { 's','u','s','p','e','n','d' } }, | 
					
						
							|  |  |  | 	{ 0, 1,                       hcl_pf_process_terminate,                 9,  { 't','e','r','m','i','n','a','t','e' } }, | 
					
						
							|  |  |  | 	{ 0, 0,                       hcl_pf_process_terminate_all,            13,  { 't','e','r','m','i','n','a','t','e','-','a','l','l' } }, | 
					
						
							|  |  |  | 	{ 0, 0,                       hcl_pf_process_yield,                     5,  { 'y','i','e','l','d'} }, | 
					
						
							| 
									
										
										
										
											2021-02-05 15:22:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-26 14:55:50 +00:00
										 |  |  | 	{ 0, 0,                       hcl_pf_semaphore_new,                     7,  { 's','e','m','-','n','e','w'} }, | 
					
						
							|  |  |  | 	{ 1, 1,                       hcl_pf_semaphore_wait,                    8,  { 's','e','m','-','w','a','i','t'} }, | 
					
						
							|  |  |  | 	{ 1, 3,                       hcl_pf_semaphore_signal,                 10, { 's','e','m','-','s','i','g','n','a','l'} }, | 
					
						
							|  |  |  | 	{ 2, 2,                       hcl_pf_semaphore_signal_on_input,        19, { 's','e','m','-','s','i','g','n','a','l','-','o','n','-','i','n','p','u','t'} }, | 
					
						
							|  |  |  | 	{ 2, 2,                       hcl_pf_semaphore_signal_on_output,       20, { 's','e','m','-','s','i','g','n','a','l','-','o','n','-','o','u','t','p','u','t'} }, | 
					
						
							|  |  |  | 	{ 1, 1,                       hcl_pf_semaphore_unsignal,               12, { 's','e','m','-','u','n','s','i','g','n','a','l'} }, | 
					
						
							| 
									
										
										
										
											2021-02-05 15:22:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-26 14:55:50 +00:00
										 |  |  | 	{ 0, 0,                       hcl_pf_semaphore_group_new,               9, { 's','e','m','g','r','-','n','e','w'} }, | 
					
						
							|  |  |  | 	{ 1, 2,                       hcl_pf_semaphore_group_add_semaphore,     9, { 's','e','m','g','r','-','a','d','d'} }, | 
					
						
							| 
									
										
										
										
											2021-02-05 15:22:39 +00:00
										 |  |  | 	{ 1, 2,                       hcl_pf_semaphore_group_remove_semaphore, 12, { 's','e','m','g','r','-','r','e','m','o','v','e'} }, | 
					
						
							| 
									
										
										
										
											2021-11-26 14:55:50 +00:00
										 |  |  | 	{ 1, 1,                       hcl_pf_semaphore_group_wait,             10, { 's','e','m','g','r','-','w','a','i','t'} } | 
					
						
							| 
									
										
										
										
											2021-02-05 15:22:39 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | int hcl_addbuiltinprims (hcl_t* hcl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oow_t i; | 
					
						
							|  |  |  | 	hcl_oop_t prim, name; | 
					
						
							| 
									
										
										
										
											2018-02-15 01:39:00 +00:00
										 |  |  | 	hcl_oop_cons_t cons; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < HCL_COUNTOF(builtin_prims); i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-02-28 04:52:01 +00:00
										 |  |  | 		prim = hcl_makeprim(hcl, builtin_prims[i].impl, builtin_prims[i].minargs, builtin_prims[i].maxargs, HCL_NULL); | 
					
						
							| 
									
										
										
										
											2020-12-31 17:48:47 +00:00
										 |  |  | 		if (HCL_UNLIKELY(!prim)) return -1; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-31 17:48:47 +00:00
										 |  |  | 		hcl_pushvolat (hcl, &prim); | 
					
						
							| 
									
										
										
										
											2018-02-08 07:40:27 +00:00
										 |  |  | 		name = hcl_makesymbol(hcl, builtin_prims[i].name, builtin_prims[i].namelen); | 
					
						
							| 
									
										
										
										
											2020-12-31 17:48:47 +00:00
										 |  |  | 		hcl_popvolat (hcl); | 
					
						
							|  |  |  | 		if (HCL_UNLIKELY(!name)) return -1; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-31 17:48:47 +00:00
										 |  |  | 		hcl_pushvolat (hcl, &name); | 
					
						
							| 
									
										
										
										
											2018-02-15 01:39:00 +00:00
										 |  |  | 		cons = hcl_putatsysdic(hcl, name, prim); | 
					
						
							| 
									
										
										
										
											2020-12-31 17:48:47 +00:00
										 |  |  | 		hcl_popvolat (hcl); | 
					
						
							|  |  |  | 		if (HCL_UNLIKELY(!cons)) return -1; | 
					
						
							| 
									
										
										
										
											2018-02-15 01:39:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* turn on the kernel bit in the symbol associated with a primitive 
 | 
					
						
							|  |  |  | 		 * function. 'set' prevents this symbol from being used as a variable | 
					
						
							|  |  |  | 		 * name */  | 
					
						
							| 
									
										
										
										
											2018-03-08 14:18:30 +00:00
										 |  |  | 		HCL_OBJ_SET_FLAGS_KERNEL (name, 2); | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-12 16:51:38 +00:00
										 |  |  | 
 |