mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-24 13:31:58 -08:00
These two function are the same. Here is my understanding: FEprogram_error_noreturn was introduced with the noreturn function attribute in commit7d9fb8bbbecause FEprogram_error did not have this attribute. However, FEprogram_error got the noreturn function attribute in commit790d466c. 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.
171 lines
5.3 KiB
C
171 lines
5.3 KiB
C
/* -*- Mode: C; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
|
/* vim: set filetype=c tabstop=2 shiftwidth=2 expandtab: */
|
|
|
|
/*
|
|
* mapfun.d - mapping
|
|
*
|
|
* Copyright (c) 1993 Giuseppe Attardi
|
|
* Copyright (c) 2001 Juan Jose Garcia Ripoll
|
|
*
|
|
* See file 'LICENSE' for the copyright details.
|
|
*
|
|
*/
|
|
|
|
#include <ecl/ecl.h>
|
|
#include <ecl/internal.h>
|
|
#include <string.h>
|
|
|
|
#define PREPARE_MAP(env, list, cdrs_frame, cars_frame, narg) \
|
|
struct ecl_stack_frame frames_aux[2]; \
|
|
const cl_object cdrs_frame = (cl_object)frames_aux; \
|
|
const cl_object cars_frame = (cl_object)(frames_aux+1); \
|
|
ECL_STACK_FRAME_FROM_VA_LIST(env,cdrs_frame,list); \
|
|
ECL_STACK_FRAME_COPY(cars_frame, cdrs_frame); \
|
|
narg = cars_frame->frame.size; \
|
|
if (ecl_unlikely(narg == 0)) { \
|
|
FEprogram_error("MAP*: Too few arguments", 0); \
|
|
}
|
|
|
|
@(defun mapcar (fun &rest lists)
|
|
cl_object res, *val = &res;
|
|
@ {
|
|
PREPARE_MAP(the_env, lists, cdrs_frame, cars_frame, narg);
|
|
res = ECL_NIL;
|
|
while (TRUE) {
|
|
cl_index i;
|
|
for (i = 0; i < narg; i++) {
|
|
cl_object cdr = ECL_STACK_FRAME_REF(cdrs_frame, i);
|
|
if (ecl_unlikely(!LISTP(cdr)))
|
|
FEwrong_type_nth_arg(@[mapcar], i+2, cdr, @[list]);
|
|
if (Null(cdr)) {
|
|
ecl_stack_frame_close(cars_frame);
|
|
ecl_stack_frame_close(cdrs_frame);
|
|
@(return res)
|
|
}
|
|
ECL_STACK_FRAME_SET(cars_frame, i, ECL_CONS_CAR(cdr));
|
|
ECL_STACK_FRAME_SET(cdrs_frame, i, ECL_CONS_CDR(cdr));
|
|
}
|
|
*val = ecl_list1(ecl_apply_from_stack_frame(cars_frame, fun));
|
|
val = &ECL_CONS_CDR(*val);
|
|
}
|
|
} @)
|
|
|
|
@(defun maplist (fun &rest lists)
|
|
cl_object res, *val = &res;
|
|
@ {
|
|
PREPARE_MAP(the_env, lists, cdrs_frame, cars_frame, narg);
|
|
res = ECL_NIL;
|
|
while (TRUE) {
|
|
cl_index i;
|
|
for (i = 0; i < narg; i++) {
|
|
cl_object cdr = ECL_STACK_FRAME_REF(cdrs_frame, i);
|
|
if (ecl_unlikely(!LISTP(cdr)))
|
|
FEwrong_type_nth_arg(@[maplist], i+2, cdr, @[list]);
|
|
if (Null(cdr)) {
|
|
ecl_stack_frame_close(cars_frame);
|
|
ecl_stack_frame_close(cdrs_frame);
|
|
@(return res)
|
|
}
|
|
ECL_STACK_FRAME_SET(cars_frame, i, cdr);
|
|
ECL_STACK_FRAME_SET(cdrs_frame, i, ECL_CONS_CDR(cdr));
|
|
}
|
|
*val = ecl_list1(ecl_apply_from_stack_frame(cars_frame, fun));
|
|
val = &ECL_CONS_CDR(*val);
|
|
}
|
|
} @)
|
|
|
|
@(defun mapc (fun &rest lists)
|
|
cl_object onelist;
|
|
@ {
|
|
PREPARE_MAP(the_env, lists, cdrs_frame, cars_frame, narg);
|
|
onelist = ECL_STACK_FRAME_REF(cdrs_frame, 0);
|
|
while (TRUE) {
|
|
cl_index i;
|
|
for (i = 0; i < narg; i++) {
|
|
cl_object cdr = ECL_STACK_FRAME_REF(cdrs_frame, i);
|
|
if (ecl_unlikely(!LISTP(cdr)))
|
|
FEwrong_type_nth_arg(@[mapc], i+2, cdr, @[list]);
|
|
if (Null(cdr)) {
|
|
ecl_stack_frame_close(cars_frame);
|
|
ecl_stack_frame_close(cdrs_frame);
|
|
@(return onelist)
|
|
}
|
|
ECL_STACK_FRAME_SET(cars_frame, i, ECL_CONS_CAR(cdr));
|
|
ECL_STACK_FRAME_SET(cdrs_frame, i, ECL_CONS_CDR(cdr));
|
|
}
|
|
ecl_apply_from_stack_frame(cars_frame, fun);
|
|
}
|
|
} @)
|
|
|
|
@(defun mapl (fun &rest lists)
|
|
cl_object onelist;
|
|
@ {
|
|
PREPARE_MAP(the_env, lists, cdrs_frame, cars_frame, narg);
|
|
onelist = ECL_STACK_FRAME_REF(cdrs_frame, 0);
|
|
while (TRUE) {
|
|
cl_index i;
|
|
for (i = 0; i < narg; i++) {
|
|
cl_object cdr = ECL_STACK_FRAME_REF(cdrs_frame, i);
|
|
if (ecl_unlikely(!LISTP(cdr)))
|
|
FEwrong_type_nth_arg(@[mapl], i+2, cdr, @[list]);
|
|
if (Null(cdr)) {
|
|
ecl_stack_frame_close(cars_frame);
|
|
ecl_stack_frame_close(cdrs_frame);
|
|
@(return onelist)
|
|
}
|
|
ECL_STACK_FRAME_SET(cars_frame, i, cdr);
|
|
ECL_STACK_FRAME_SET(cdrs_frame, i, ECL_CONS_CDR(cdr));
|
|
}
|
|
ecl_apply_from_stack_frame(cars_frame, fun);
|
|
}
|
|
} @)
|
|
|
|
@(defun mapcan (fun &rest lists)
|
|
cl_object res, *val = &res;
|
|
@ {
|
|
PREPARE_MAP(the_env, lists, cdrs_frame, cars_frame, narg);
|
|
res = ECL_NIL;
|
|
while (TRUE) {
|
|
cl_index i;
|
|
for (i = 0; i < narg; i++) {
|
|
cl_object cdr = ECL_STACK_FRAME_REF(cdrs_frame, i);
|
|
if (ecl_unlikely(!LISTP(cdr)))
|
|
FEwrong_type_nth_arg(@[mapcan], i+2, cdr, @[list]);
|
|
if (Null(cdr)) {
|
|
ecl_stack_frame_close(cars_frame);
|
|
ecl_stack_frame_close(cdrs_frame);
|
|
@(return res)
|
|
}
|
|
ECL_STACK_FRAME_SET(cars_frame, i, ECL_CONS_CAR(cdr));
|
|
ECL_STACK_FRAME_SET(cdrs_frame, i, ECL_CONS_CDR(cdr));
|
|
}
|
|
*val = ecl_apply_from_stack_frame(cars_frame, fun);
|
|
while (CONSP(*val))
|
|
val = &ECL_CONS_CDR(*val);
|
|
}
|
|
} @)
|
|
|
|
@(defun mapcon (fun &rest lists)
|
|
cl_object res, *val = &res;
|
|
@ {
|
|
PREPARE_MAP(the_env, lists, cdrs_frame, cars_frame, narg);
|
|
res = ECL_NIL;
|
|
while (TRUE) {
|
|
cl_index i;
|
|
for (i = 0; i < narg; i++) {
|
|
cl_object cdr = ECL_STACK_FRAME_REF(cdrs_frame, i);
|
|
if (ecl_unlikely(!LISTP(cdr)))
|
|
FEwrong_type_nth_arg(@[mapcon], i+2, cdr, @[list]);
|
|
if (Null(cdr)) {
|
|
ecl_stack_frame_close(cars_frame);
|
|
ecl_stack_frame_close(cdrs_frame);
|
|
@(return res)
|
|
}
|
|
ECL_STACK_FRAME_SET(cars_frame, i, cdr);
|
|
ECL_STACK_FRAME_SET(cdrs_frame, i, ECL_CONS_CDR(cdr));
|
|
}
|
|
*val = ecl_apply_from_stack_frame(cars_frame, fun);
|
|
while (CONSP(*val))
|
|
val = &ECL_CONS_CDR(*val);
|
|
}
|
|
} @)
|