forked from SWI-Prolog/swipl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpl-copyterm.c
652 lines (537 loc) · 14.1 KB
/
pl-copyterm.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
/* $Id$
Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: [email protected]
WWW: http://www.swi-prolog.org
Copyright (C): 1985-2011, University of Amsterdam
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*#define O_DEBUG 1*/
#include "pl-incl.h"
#define AC_TERM_WALK_LR 1
#include "pl-termwalk.c"
/*******************************
* COPY TERM *
*******************************/
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Copy-term uses the GC marks to mark the state of variables and terms:
MARK_MASK FIRST_MASK
0 0 Virgin
1 0 Visited
1 1 Visited twice (share in copy)
0 1 Ground (share with origin)
Places where we put marks:
- variables (virgin/visited/shared)
- value of attvar (virgin/visited/shared)
- definition of term (virgin/visited/shared/ground)
There are two marking algorithms: mark_for_duplicate() for
duplicate_term/2 that does not try to share with the original and a more
extensive mark_for_copy() that classifies terms as ground. The latter is
a bottom-up process and thus requires pushing the processed nodes on the
stack for re-visit. The algorithm is carefully designed to use only a
single cell on a segmented cell for each node processed. This means that
the required stack size is at most 1/2th of the size of the term being
copied.
mark_for_duplicate() could quite easily return the required stack-size,
avoiding stack-resizing during the actual copy. This is much harder for
mark_for_copy() and I doubt that this makes much difference in actual
applications.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#define VAR_MARK ((0x1<<LMASK_BITS)|TAG_VAR)
#define BOTH_MASK (MARK_MASK|FIRST_MASK)
#define visited(w) ((w) & BOTH_MASK)
#define visited_once(w) (((w) & BOTH_MASK) == MARK_MASK)
#define virgin(w) (!visited(w))
#define shared(w) (((w) & BOTH_MASK) == BOTH_MASK)
#define ground(w) (((w) & BOTH_MASK) == FIRST_MASK)
#define set_visited(w) (w |= MARK_MASK)
#define set_shared(w) (w |= BOTH_MASK)
#define set_ground(w) (w &= ~MARK_MASK, w |= FIRST_MASK)
#define COPY_SHARE 0x01 /* Share ground terms */
#define COPY_ATTRS 0x02 /* do copy attributes */
static int
mark_for_duplicate(Word p, int flags ARG_LD)
{ term_agenda agenda;
initTermAgenda(&agenda, 1, p);
while((p=nextTermAgenda(&agenda)))
{
again:
switch(tag(*p))
{ case TAG_ATTVAR:
{ if ( flags & COPY_ATTRS )
{ p = valPAttVar(*p);
goto again;
}
/*FALLTHROUGH*/
}
case TAG_VAR:
{ if ( virgin(*p) )
set_visited(*p);
else if ( visited_once(*p) )
set_shared(*p);
break;
}
case TAG_COMPOUND:
{ Functor t = valueTerm(*p);
int arity = arityFunctor(t->definition);
if ( virgin(t->definition) )
{ set_visited(t->definition);
} else
{ if ( visited_once(t->definition) )
set_shared(t->definition);
break;
}
if ( !pushWorkAgenda(&agenda, arity, t->arguments) )
return MEMORY_OVERFLOW;
continue;
}
}
}
clearTermAgenda(&agenda);
return TRUE;
}
/* unshare_attvar() ensures that even ground attvar structures are not
shared as ground. We assume that the att/3 structure is not shared
with anything else. The shared/unshared distinction is lost during
the ground marking.
*/
static void
unshare_attvar(Word p ARG_LD)
{ for(;;)
{ deRef(p);
if ( isTerm(*p) )
{ Functor t = valueTerm(*p);
word fd = (t->definition & ~BOTH_MASK);
if ( fd == FUNCTOR_att3 )
{ t->definition = fd | MARK_MASK;
p = &t->arguments[2];
}
} else
{ break;
}
}
}
static int
can_share(Word p ARG_LD)
{
again:
switch(tag(*p))
{ case TAG_VAR:
case TAG_ATTVAR:
return FALSE;
case TAG_REFERENCE:
p = unRef(*p);
goto again;
case TAG_COMPOUND:
{ Functor t = valueTerm(*p);
return ground(t->definition);
}
default:
return TRUE;
}
}
static void
update_ground(Word p ARG_LD)
{ Functor t = valueTerm(*p);
int arity = arityFunctor(t->definition);
Word a = &t->arguments[arity];
int ground = TRUE;
while(--a >= t->arguments)
{ if ( !can_share(a PASS_LD) )
{ ground = FALSE;
break;
}
}
if ( ground )
set_ground(t->definition);
}
static int
pushForMark(segstack *stack, Word p, int wr)
{ word w = ((word)p)|wr;
return pushSegStack(stack, w, word);
}
static void
popForMark(segstack *stack, Word *pp, int *wr)
{ word w = 0;
popSegStack(stack, &w, word);
*wr = w & (word)0x1;
*pp = (Word)(w & ~(word)0x1);
}
static int
mark_for_copy(Word p, int flags ARG_LD)
{ Word start = p;
int walk_ref = FALSE;
Word buf[1024];
segstack stack;
initSegStack(&stack, sizeof(Word), sizeof(buf), buf);
for(;;)
{ switch(tag(*p))
{ case TAG_ATTVAR:
{ if ( flags & COPY_ATTRS )
{ if ( !pushForMark(&stack, p, walk_ref) )
{ clearSegStack(&stack);
return MEMORY_OVERFLOW;
}
walk_ref = TRUE;
p = valPAttVar(*p);
continue;
}
/*FALLTHROUGH*/
}
case TAG_VAR:
{ if ( virgin(*p) )
set_visited(*p);
else if ( visited_once(*p) )
set_shared(*p);
break;
}
case TAG_REFERENCE:
{ if ( !pushForMark(&stack, p, walk_ref) )
{ clearSegStack(&stack);
return MEMORY_OVERFLOW;
}
walk_ref = TRUE;
deRef(p);
continue;
}
case TAG_COMPOUND:
{ Functor t = valueTerm(*p);
int arity = arityFunctor(t->definition);
if ( virgin(t->definition) )
{ set_visited(t->definition);
} else
{ if ( visited_once(t->definition) )
set_shared(t->definition);
break;
}
if ( arity >= 1 )
{ if ( !pushForMark(&stack, p, walk_ref) )
{ clearSegStack(&stack);
return MEMORY_OVERFLOW;
}
walk_ref = FALSE;
p = &t->arguments[arity-1]; /* last argument */
continue;
}
}
}
if ( p == start )
{ clearSegStack(&stack);
return TRUE;
}
while ( walk_ref )
{ popForMark(&stack, &p, &walk_ref);
if ( isAttVar(*p) )
{ Word ap = valPAttVar(*p);
unshare_attvar(ap PASS_LD);
}
if ( p == start )
{ clearSegStack(&stack);
return TRUE;
}
}
p--;
if ( tagex(*p) == (TAG_ATOM|STG_GLOBAL) )
{ popForMark(&stack, &p, &walk_ref);
update_ground(p PASS_LD);
}
}
}
/*******************************
* UNMARKING *
*******************************/
static void
cp_unmark(Word p, int flags ARG_LD)
{ term_agenda agenda;
initTermAgenda(&agenda, 1, p);
while((p=nextTermAgenda(&agenda)))
{ again:
switch(tag(*p))
{ case TAG_ATTVAR:
{ if ( flags & COPY_ATTRS )
{ p = valPAttVar(*p);
goto again;
}
}
case TAG_VAR:
{ *p &= ~BOTH_MASK;
continue;
}
case TAG_COMPOUND:
{ Functor f = valueTerm(*p);
if ( visited(f->definition) )
{ f->definition &= ~BOTH_MASK;
pushWorkAgenda(&agenda, arityFunctor(f->definition), f->arguments);
continue;
}
}
}
}
clearTermAgenda(&agenda);
}
static void
initCyclicCopy(ARG1_LD)
{ LD->cycle.lstack.unit_size = sizeof(Word);
}
static int
TrailCyclic(Word p ARG_LD)
{ return pushSegStack(&LD->cycle.lstack, p, Word);
}
static inline void
exitCyclicCopy(int flags ARG_LD)
{ Word p;
while(popSegStack(&LD->cycle.lstack, &p, Word))
{ if ( isRef(*p) )
{ Word p2 = unRef(*p);
if ( *p2 == VAR_MARK ) /* sharing variables */
{ setVar(*p2);
setVar(*p);
} else
{ *p = *p2 | MARK_MASK; /* cyclic terms */
}
} else
{ Word old;
popSegStack(&LD->cycle.lstack, &old, Word);
if ( !(flags©_ATTRS) )
{ Word p2 = valPAttVar(*p & ~BOTH_MASK);
assert(*p2 == VAR_MARK);
setVar(*p2);
}
*p = consPtr(old, STG_GLOBAL|TAG_ATTVAR);
}
}
}
static int
copy_term(Word from, Word to, int flags ARG_LD)
{ term_agendaLR agenda;
int rc = TRUE;
initTermAgendaLR(&agenda, 1, from, to);
while( nextTermAgendaLR(&agenda, &from, &to) )
{
again:
switch(tag(*from))
{ case TAG_REFERENCE:
{ Word p2 = unRef(*from);
if ( *p2 == VAR_MARK ) /* reference to a copied variable */
{ *to = makeRef(p2);
} else
{ from = p2; /* normal reference */
goto again;
}
continue;
}
case TAG_VAR:
{ if ( shared(*from) )
{ *to = VAR_MARK;
*from = makeRef(to);
TrailCyclic(from PASS_LD);
} else
{ setVar(*to);
}
continue;
}
case TAG_ATTVAR:
if ( flags©_ATTRS )
{ Word p = valPAttVar(*from);
if ( isAttVar(*p) ) /* already copied */
{ *to = makeRefG(p);
} else
{ Word attr;
if ( !(attr = alloc_attvar(PASS_LD1)) )
{ rc = GLOBAL_OVERFLOW;
goto out;
}
TrailCyclic(p PASS_LD);
TrailCyclic(from PASS_LD);
*from = consPtr(attr, STG_GLOBAL|TAG_ATTVAR);
*to = makeRefG(attr);
from = p;
to = &attr[1];
goto again;
}
} else
{ if ( shared(*from) )
{ Word p = valPAttVar(*from & ~BOTH_MASK);
if ( *p == VAR_MARK )
{ *to = makeRef(p);
} else
{ *to = VAR_MARK;
*from = consPtr(to, STG_GLOBAL|TAG_ATTVAR)|BOTH_MASK;
TrailCyclic(p PASS_LD);
TrailCyclic(from PASS_LD);
}
} else
{ setVar(*to);
}
}
continue;
case TAG_COMPOUND:
{ Functor ff = valueTerm(*from);
if ( isRef(ff->definition) )
{ *to = consPtr(unRef(ff->definition), TAG_COMPOUND|STG_GLOBAL);
continue;
}
if ( ground(ff->definition) )
{ *to = *from;
continue;
}
if ( shared(ff->definition) )
{ int arity = arityFunctor(ff->definition);
Functor ft;
if ( !(ft = (Functor)allocGlobalNoShift(arity+1)) )
{ rc = GLOBAL_OVERFLOW;
goto out;
}
ft->definition = ff->definition & ~BOTH_MASK;
ff->definition = makeRefG((Word)ft);
TrailCyclic(&ff->definition PASS_LD);
*to = consPtr(ft, TAG_COMPOUND|STG_GLOBAL);
if ( pushWorkAgendaLR(&agenda, arity, ff->arguments, ft->arguments) )
continue;
rc = MEMORY_OVERFLOW;
goto out;
} else /* unshared term */
{ int arity = arityFunctor(ff->definition);
Functor ft;
if ( !(ft = (Functor)allocGlobalNoShift(arity+1)) )
{ rc = GLOBAL_OVERFLOW;
goto out;
}
ft->definition = ff->definition & ~BOTH_MASK;
*to = consPtr(ft, TAG_COMPOUND|STG_GLOBAL);
if ( pushWorkAgendaLR(&agenda, arity, ff->arguments, ft->arguments) )
continue;
rc = MEMORY_OVERFLOW;
goto out;
}
}
default:
*to = *from;
continue;
}
}
out:
clearTermAgendaLR(&agenda);
return rc;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Both from and to point to locations on the global stack. From is
deferenced and to is a variable.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
static int
do_copy_term(Word from, Word to, int flags ARG_LD)
{ int rc;
again:
switch(tag(*from))
{ case TAG_VAR:
return TRUE;
case TAG_REFERENCE:
from = unRef(*from);
goto again;
case TAG_ATTVAR:
case TAG_COMPOUND:
break;
default:
*to = *from;
return TRUE;
}
if ( flags & COPY_SHARE )
{ DEBUG(0, { mark_for_copy(from, flags PASS_LD);
cp_unmark(from, flags PASS_LD);
checkData(from);
});
mark_for_copy(from, flags PASS_LD);
} else
{ mark_for_duplicate(from, flags PASS_LD);
}
initCyclicCopy(PASS_LD1);
rc = copy_term(from, to, flags PASS_LD);
exitCyclicCopy(flags PASS_LD);
cp_unmark(from, flags PASS_LD);
/*DEBUG(0, if ( rc == TRUE ) May lead to "Reference to higher address"
{ checkData(from);
checkData(to);
});
*/
return rc;
}
static int
copy_term_refs(term_t from, term_t to, int flags ARG_LD)
{ for(;;)
{ fid_t fid;
int rc;
Word dest, src;
if ( !(fid = PL_open_foreign_frame()) )
return FALSE; /* no space */
if ( !(dest = allocGlobal(1)) ) /* make a variable on the global */
return FALSE; /* stack */
setVar(*dest);
*valTermRef(to) = makeRef(dest);
src = valTermRef(from);
rc = do_copy_term(src, dest, flags PASS_LD);
if ( rc < 0 ) /* no space for copy */
{ PL_discard_foreign_frame(fid);
PL_put_variable(to); /* gc consistency */
if ( !makeMoreStackSpace(rc, ALLOW_SHIFT|ALLOW_GC) )
return FALSE;
} else
{ PL_close_foreign_frame(fid);
DEBUG(CHK_SECURE,
{ checkData(valTermRef(from));
checkData(valTermRef(to));
checkStacks(NULL);
});
return TRUE; /* if do_copy_term() == FALSE --> not-ground */
}
}
}
static
PRED_IMPL("copy_term", 2, copy_term, 0)
{ PRED_LD
term_t copy = PL_new_term_ref();
if ( copy_term_refs(A1, copy, COPY_SHARE|COPY_ATTRS PASS_LD) )
return PL_unify(copy, A2);
fail;
}
int
duplicate_term(term_t in, term_t copy ARG_LD)
{ return copy_term_refs(in, copy, COPY_ATTRS PASS_LD);
}
static
PRED_IMPL("duplicate_term", 2, duplicate_term, 0)
{ PRED_LD
if ( PL_is_atomic(A1) )
{ return PL_unify(A1, A2);
} else
{ term_t copy = PL_new_term_ref();
if ( duplicate_term(A1, copy PASS_LD) )
return PL_unify(copy, A2);
fail;
}
}
static
PRED_IMPL("copy_term_nat", 2, copy_term_nat, 0)
{ PRED_LD
term_t copy = PL_new_term_ref();
if ( copy_term_refs(A1, copy, COPY_SHARE PASS_LD) )
return PL_unify(copy, A2);
fail;
}
/*******************************
* PUBLISH PREDICATES *
*******************************/
BeginPredDefs(copyterm)
PRED_DEF("copy_term", 2, copy_term, PL_FA_ISO)
PRED_DEF("duplicate_term", 2, duplicate_term, 0)
PRED_DEF("copy_term_nat", 2, copy_term_nat, 0)
EndPredDefs