2007-10-25 16:27:34 -04:00
|
|
|
/*
|
|
|
|
* Ikarus Scheme -- A compiler for R6RS Scheme.
|
2008-01-29 00:34:34 -05:00
|
|
|
* Copyright (C) 2006,2007,2008 Abdulaziz Ghuloum
|
2007-10-25 16:27:34 -04:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 3 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2006-11-23 19:42:39 -05:00
|
|
|
|
2007-10-17 09:22:47 -04:00
|
|
|
#include "ikarus-data.h"
|
2006-11-23 19:42:39 -05:00
|
|
|
|
2007-12-23 13:37:48 -05:00
|
|
|
ikptr
|
|
|
|
ikrt_weak_cons(ikptr a, ikptr d, ikpcb* pcb){
|
|
|
|
ikptr ap = pcb->weak_pairs_ap;
|
|
|
|
ikptr nap = ap + pair_size;
|
|
|
|
ikptr p;
|
2006-11-23 19:42:39 -05:00
|
|
|
if(nap > pcb->weak_pairs_ep){
|
2007-12-23 13:37:48 -05:00
|
|
|
ikptr mem = ik_mmap_typed(pagesize, weak_pairs_mt, pcb);
|
2006-11-23 19:42:39 -05:00
|
|
|
pcb->weak_pairs_ap = mem + pair_size;
|
|
|
|
pcb->weak_pairs_ep = mem + pagesize;
|
|
|
|
p = mem + pair_tag;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pcb->weak_pairs_ap = nap;
|
|
|
|
p = ap + pair_tag;
|
|
|
|
}
|
|
|
|
ref(p, off_car) = a;
|
|
|
|
ref(p, off_cdr) = d;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2007-12-23 13:37:48 -05:00
|
|
|
ikptr
|
|
|
|
ikrt_is_weak_pair(ikptr x, ikpcb* pcb){
|
2006-11-23 19:42:39 -05:00
|
|
|
if(tagof(x) != pair_tag){
|
|
|
|
return false_object;
|
|
|
|
}
|
|
|
|
unsigned int t = pcb->segment_vector[page_index(x)];
|
|
|
|
if((t & type_mask) == weak_pairs_type){
|
|
|
|
return true_object;
|
|
|
|
} else {
|
|
|
|
return false_object;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|