ecl/src/c/cmpaux.d
Kris Katterjohn 028ab410b2 Remove FEprogram_error_noreturn and replace uses with FEprogram_error
These two function are the same.

Here is my understanding: FEprogram_error_noreturn was introduced with
the noreturn function attribute in commit 7d9fb8bb because
FEprogram_error did not have this attribute.  However, FEprogram_error
got the noreturn function attribute in commit 790d466c.  Now there is
no reason to have both of these.

This removes FEprogram_error_noreturn and changes all calls to it
with calls to FEprogram_error instead.
2017-06-29 17:24:54 -05:00

225 lines
5.6 KiB
C

/* -*- Mode: C; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/* vim: set filetype=c tabstop=2 shiftwidth=2 expandtab: */
/*
* cmpaux.d - auxiliaries used in compiled Lisp code
*
* Copyright (c) 1984 Taiichi Yuasa and Masami Hagiya
* Copyright (c) 1990 Giuseppe Attardi
* Copyright (c) 2001 Juan Jose Garcia Ripoll
*
* See file 'LICENSE' for the copyright details.
*
*/
#include <limits.h>
#include <ecl/ecl.h>
#include <ecl/ecl-inl.h>
cl_object
si_specialp(cl_object sym)
{
@(return ((ecl_symbol_type(sym) & ecl_stp_special)? ECL_T : ECL_NIL))
}
cl_fixnum
ecl_ifloor(cl_fixnum x, cl_fixnum y)
{
if (y == 0)
FEerror("Zero divizor", 0);
else if (y > 0)
if (x >= 0)
return(x/y);
else
return(-((-x+y-1))/y);
else
if (x >= 0)
return(-((x-y-1)/(-y)));
else
return((-x)/(-y));
}
cl_fixnum
ecl_imod(cl_fixnum x, cl_fixnum y)
{
return(x - ecl_ifloor(x, y)*y);
}
/*
* ----------------------------------------------------------------------
* Conversions to C
* ----------------------------------------------------------------------
*/
char
ecl_to_char(cl_object x)
{
switch (ecl_t_of(x)) {
case t_fixnum:
return ecl_fixnum(x);
case t_character:
return ECL_CHAR_CODE(x);
default:
FEerror("~S cannot be coerced to a C char.", 1, x);
}
}
cl_fixnum
ecl_to_fixnum(cl_object x)
{
switch (ecl_t_of(x)) {
case t_fixnum:
case t_bignum:
return fixint(x);
/* case t_character: return (cl_fixnum)ECL_CHAR_CODE(x); */
case t_ratio:
return (cl_fixnum)ecl_to_double(x);
case t_singlefloat:
return (cl_fixnum)ecl_single_float(x);
case t_doublefloat:
return (cl_fixnum)ecl_double_float(x);
#ifdef ECL_LONG_FLOAT
case t_longfloat:
return (cl_fixnum)ecl_long_float(x);
#endif
default:
FEerror("~S cannot be coerced to a C int.", 1, x);
}
}
cl_index
ecl_to_unsigned_integer(cl_object x)
{
switch (ecl_t_of(x)) {
case t_fixnum:
case t_bignum:
return fixnnint(x);
case t_ratio:
return (cl_index)ecl_to_double(x);
case t_singlefloat:
return (cl_index)ecl_single_float(x);
case t_doublefloat:
return (cl_index)ecl_double_float(x);
#ifdef ECL_LONG_FLOAT
case t_longfloat:
return (cl_index)ecl_long_float(x);
#endif
default:
FEerror("~S cannot be coerced to a C unsigned int.", 1, x);
}
}
int
ecl_aref_bv(cl_object x, cl_index index)
{
index += x->vector.offset;
return ((x->vector.self.bit[index/CHAR_BIT] & (0200>>index%CHAR_BIT)) != 0);
}
int
ecl_aset_bv(cl_object x, cl_index index, int value)
{
index += x->vector.offset;
if (value == 0)
x->vector.self.bit[index/CHAR_BIT] &= ~(0200>>index%CHAR_BIT);
else
x->vector.self.bit[index/CHAR_BIT] |= 0200>>index%CHAR_BIT;
return value;
}
void
cl_throw(cl_object tag)
{
ecl_frame_ptr fr = frs_sch(tag);
if (fr == NULL)
FEcontrol_error("THROW: The catch ~S is undefined.", 1, tag);
ecl_unwind(ecl_process_env(), fr);
}
void
cl_return_from(cl_object block_id, cl_object block_name)
{
ecl_frame_ptr fr = frs_sch(block_id);
if (fr == NULL)
FEcontrol_error("RETURN-FROM: The block ~S with id ~S is missing.",
2, block_name, block_id);
ecl_unwind(ecl_process_env(), fr);
}
void
cl_go(cl_object tag_id, cl_object label)
{
const cl_env_ptr the_env = ecl_process_env();
ecl_frame_ptr fr = frs_sch(tag_id);
if (fr == NULL)
FEcontrol_error("GO: The tagbody ~S is missing.", 1, tag_id);
the_env->values[0] = label;
the_env->nvalues = 1;
ecl_unwind(the_env, fr);
}
cl_object
cl_grab_rest_args(ecl_va_list args)
{
cl_object rest = ECL_NIL;
cl_object *r = &rest;
while (args[0].narg) {
*r = ecl_list1(ecl_va_arg(args));
r = &ECL_CONS_CDR(*r);
}
return rest;
}
void
cl_parse_key(
ecl_va_list args, /* actual args */
int nkey, /* number of keywords */
cl_object *keys, /* keywords for the function */
cl_object *vars, /* where to put values (vars[0..nkey-1])
and suppliedp (vars[nkey..2*nkey-1]) */
cl_object *rest, /* if rest != NULL, where to collect rest values */
bool allow_other_keys) /* whether other key are allowed */
{
int i;
cl_object supplied_allow_other_keys = OBJNULL;
cl_object unknown_keyword = OBJNULL;
if (rest != NULL) *rest = ECL_NIL;
for (i = 0; i < 2*nkey; i++)
vars[i] = ECL_NIL; /* default values: NIL, supplied: NIL */
if (args[0].narg <= 0) return;
for (; args[0].narg > 1; ) {
cl_object keyword = ecl_va_arg(args);
cl_object value = ecl_va_arg(args);
if (ecl_unlikely(!ECL_SYMBOLP(keyword)))
FEprogram_error("LAMBDA: Keyword expected, got ~S.", 1, keyword);
if (rest != NULL) {
rest = &ECL_CONS_CDR(*rest = ecl_list1(keyword));
rest = &ECL_CONS_CDR(*rest = ecl_list1(value));
}
for (i = 0; i < nkey; i++) {
if (keys[i] == keyword) {
if (vars[nkey+i] == ECL_NIL) {
vars[i] = value;
vars[nkey+i] = ECL_T;
}
goto goon;
}
}
/* the key is a new one */
if (keyword == @':allow-other-keys') {
if (supplied_allow_other_keys == OBJNULL)
supplied_allow_other_keys = value;
} else if (unknown_keyword == OBJNULL)
unknown_keyword = keyword;
goon:;
}
if (ecl_unlikely(args[0].narg != 0))
FEprogram_error("Odd number of keys", 0);
if (ecl_unlikely(unknown_keyword != OBJNULL && !allow_other_keys &&
(supplied_allow_other_keys == ECL_NIL ||
supplied_allow_other_keys == OBJNULL)))
FEprogram_error("Unknown keyword ~S", 1, unknown_keyword);
}