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 653 654 655 656 657 658 659 660 661
|
/*-----------------------------------------------------------------------
File : cto_ocb.c
Author: Stephan Schulz
Contents
Functions for describing orderings, precedences and so on.
Copyright 1998, 1999, 2019 by the author.
This code is released under the GNU General Public Licence and
the GNU Lesser General Public License.
See the file COPYING in the main E directory for details..
Run "eprover -h" for contact information.
Created: Thu Apr 30 03:11:31 MET DST 1998
-----------------------------------------------------------------------*/
#include "cto_ocb.h"
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
char* TONames[]=
{
"NoOrdering",
"Auto",
"AutoCASC",
"AutoDev",
"AutoSched0",
"AutoSched1",
"AutoSched2",
"AutoSched3",
"AutoSched4",
"AutoSched5",
"AutoSched6",
"AutoSched7",
"AutoSched8",
"AutoSched9",
"Optimize",
"KBO",
"KBO6",
"LPO",
"LPOCopy",
"LPO4",
"LPO4Copy",
"RPO",
"Empty",
NULL
};
/*---------------------------------------------------------------------*/
/* Forward Declarations */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Internal Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: ocb_trans_compute()
//
// Given the relations between f1 and f2, and f2 and f3, compute the
// relation between f1 and f3. Return true, if it can be set, false
// otherwise.
//
// Global Variables: -
//
// Side Effects : Changes ocb->precedences
//
/----------------------------------------------------------------------*/
bool ocb_trans_compute(OCB_p ocb, FunCode f1, FunCode f2, FunCode f3)
{
CompareResult rel12, rel23;
bool res = true;
rel12 = OCBFunCompare(ocb, f1, f2);
rel23 = OCBFunCompare(ocb, f2, f3);
switch(rel12)
{
case to_uncomparable:
break;
case to_equal:
if(rel23 != to_uncomparable)
{
res = OCBPrecedenceAddTuple(ocb, f1, f3, rel23);
}
break;
case to_greater:
if(rel23 == to_equal || rel23 == to_greater)
{
res = OCBPrecedenceAddTuple(ocb, f1, f3, to_greater);
}
break;
case to_lesser:
if(rel23 == to_equal || rel23 == to_lesser)
{
res = OCBPrecedenceAddTuple(ocb, f1, f3, to_lesser);
}
break;
default:
assert(false);
break;
}
return res;
}
/*-----------------------------------------------------------------------
//
// Function: alloc_precedence()
//
// Initialize handle->precedence or handle->prec_weights according
// to the value of prec_by_weight.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
static void alloc_precedence(OCB_p handle, bool prec_by_weight)
{
if(prec_by_weight)
{
handle->precedence = NULL;
handle->prec_weights =
SizeMalloc(sizeof(long)*(handle->sig_size+1));
}
else
{
handle->precedence = SizeMalloc(sizeof(CompareResult)
*handle->sig_size
*handle->sig_size);
handle->prec_weights = NULL;
}
}
/*---------------------------------------------------------------------*/
/* Exported Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: OCBAlloc()
//
// Allocate an initialized order control block.
//
// Global Variables: -
//
// Side Effects : Memory management
//
/----------------------------------------------------------------------*/
OCB_p OCBAlloc(TermOrdering type, bool prec_by_weight, Sig_p sig)
{
OCB_p handle;
int i,j;
handle = OCBCellAlloc();
handle->type = type;
handle->sig = sig;
handle->min_constants = PDIntArrayAlloc(16,0);
handle->weights = NULL;
handle->sig_size = sig->f_count;
handle->statestack = PStackAlloc();
handle->var_weight = 1;
handle->lit_cmp = LCNormal;
handle->rewrite_strong_rhs_inst = false;
handle->wb = 0;
handle->pos_bal = 0;
handle->neg_bal = 0;
handle->max_var = 0;
handle->vb_size = 64;
handle->vb = SizeMalloc(handle->vb_size*sizeof(int));
for(size_t i=0; i<handle->vb_size; i++)
{
handle->vb[i] = 0;
}
switch(type)
{
case KBO:
case KBO6:
handle->weights = SizeMalloc(sizeof(long)*(handle->sig_size+1));
alloc_precedence(handle, prec_by_weight);
break;
case LPO:
case LPOCopy:
case LPO4:
case LPO4Copy:
alloc_precedence(handle, prec_by_weight);
break;
case RPO:
alloc_precedence(handle, prec_by_weight);
break;
case EMPTY:
break;
default:
assert(false);
break;
}
if(handle->weights)
{
for(size_t i=0; i<=handle->sig_size; i++)
{
*OCBFunWeightPos(handle,i) = 1;
}
}
if(handle->precedence)
{
for(i=1; i<=handle->sig_size; i++)
{
for(j=1; j<=handle->sig_size; j++)
{
*OCBFunComparePos(handle, i,j) =
((i==j) ? to_equal : to_uncomparable);
}
}
}
return handle;
}
/*-----------------------------------------------------------------------
//
// Function: OCBFree()
//
// Free the memory taken by an order control block. Note: The
// signature is not considered part of the ocb and is not free'd.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void OCBFree(OCB_p junk)
{
assert(junk);
if(junk->weights)
{
assert(junk->type == KBO || junk->type==KBO6);
SizeFree(junk->weights, sizeof(long)*(junk->sig_size+1));
junk->weights = NULL;
}
if(junk->precedence)
{
assert(!junk->prec_weights);
assert(junk->type == KBO ||
junk->type == KBO6 ||
junk->type == LPO ||
junk->type == LPOCopy ||
junk->type == LPO4 ||
junk->type == LPO4Copy ||
junk->type == RPO);
SizeFree(junk->precedence, sizeof(CompareResult)
* junk->sig_size * junk->sig_size);
junk->precedence = NULL;
}
if(junk->prec_weights)
{
assert(!junk->precedence);
assert(junk->type == KBO ||
junk->type == KBO6 ||
junk->type == LPO ||
junk->type == LPOCopy ||
junk->type == LPO4 ||
junk->type == LPO4Copy ||
junk->type == RPO);
SizeFree(junk->prec_weights, sizeof(long)*(junk->sig_size+1));
junk->prec_weights = NULL;
}
PDArrayFree(junk->min_constants);
assert(junk);
assert(junk->vb_size > 0);
assert(junk->vb);
SizeFree(junk->vb, junk->vb_size*sizeof(int));
PStackFree(junk->statestack);
OCBCellFree(junk);
}
/*-----------------------------------------------------------------------
//
// Function: OCBDebugPrint()
//
// Print an OCB in debug-friendly form (not suitable for
// re-parsing, revealing a lot of internal information).
//
// Global Variables: -
//
// Side Effects : Output
//
/----------------------------------------------------------------------*/
void OCBDebugPrint(FILE* out, OCB_p ocb)
{
long i,j;
fprintf(out, "# ==============OCB-Debug-Information============\n");
fprintf(out, "# ===============================================\n");
if(ocb->sig)
{
SigPrint(out, ocb->sig);
}
else
{
fprintf(out, "# No sig!\n");
}
fprintf(out, "# -----------------------------------------------\n");
if(ocb->weights)
{
fprintf(out, "# Weights:");
for(i=1; i<=ocb->sig_size;i++)
{
if(!((i-1)%8))
{
fprintf(out, "\n# ");
}
if(ocb->sig)
{
fprintf(out, " (%s = %ld) ", SigFindName(ocb->sig,i), OCBFunWeight(ocb, i));
}
else
{
fprintf(out, " (%ld = %ld) ", i, OCBFunWeight(ocb, i));
}
}
fprintf(out, "\n\n");
}
else
{
fprintf(out, "# No weights!\n");
}
fprintf(out, "# -----------------------------------------------\n");
if(ocb->precedence)
{
fprintf(out, "# Precedence Matrix:\n# ");
for(j=1; j<=ocb->sig_size; j++)
{
fprintf(out, " %2ld ", j);
}
fprintf(out, "\n");
for(i=1; i<=ocb->sig_size; i++)
{
fprintf(out, "# %2ld | ", i);
fflush(stdout);
for(j=1; j<=ocb->sig_size; j++)
{
char* symb;
symb = POCompareSymbol[OCBFunCompare(ocb, i, j)];
fprintf(out, " %s", symb);
fflush(stdout);
}
fprintf(out, "\n");
}
}
else
{
fprintf(out, "# No precedence!\n");
}
fprintf(out, "# ===============================================\n");
}
/*-----------------------------------------------------------------------
//
// Function: OCBPrecedenceAddTuple()
//
// Add a new binary relation to the precedence stored in the ocb and
// compute the new transitive closure of the to_greater, to_smaller
// and to_equal. Store updated cell in ocb->statestackcell. Return
// the new stackpointer if everything went fine, undo all changes
// and return 0 otherwise.
//
// Global Variables:
//
// Side Effects :
//
/----------------------------------------------------------------------*/
PStackPointer OCBPrecedenceAddTuple(OCB_p ocb, FunCode f1, FunCode f2,
CompareResult relation)
{
FunCode i;
PStackPointer res = 0, old;
assert(ocb);
assert(ocb->precedence);
assert(f1<=ocb->sig_size);
assert(f2<=ocb->sig_size);
assert(relation!=to_uncomparable);
old = PStackGetSP(ocb->statestack);
if(OCBFunCompare(ocb, f1, f2)==relation)
{
res = old;
}
else if(OCBFunCompare(ocb, f1, f2)!=to_uncomparable)
{
res = 0;
}
else
{
PStackPushInt(ocb->statestack, f1);
PStackPushInt(ocb->statestack, f2);
*OCBFunComparePos(ocb, f1, f2) = relation;
*OCBFunComparePos(ocb, f2, f1) = POInverseRelation(relation);
for(i=1; i<=ocb->sig_size; i++)
{
res = ocb_trans_compute(ocb, f1, f2, i);
if(!res)
{
break;
}
res = ocb_trans_compute(ocb, i, f1, f2);
if(!res)
{
break;
}
}
if(!res)
{ /* Error case, undo changes */
f2 = PStackPopInt(ocb->statestack);
f1 = PStackPopInt(ocb->statestack);
*OCBFunComparePos(ocb, f1, f2) = to_uncomparable;
*OCBFunComparePos(ocb, f2, f1) = to_uncomparable;
}
}
return res;
}
/*-----------------------------------------------------------------------
//
// Function: OCBPrecedenceBacktrack()
//
// Backtrack the precedence matrix to a given state. Return true if
// the stack is non-empty afterwards, false otherwise.
//
// Global Variables: -
//
// Side Effects : Changes the matrix
//
/----------------------------------------------------------------------*/
bool OCBPrecedenceBacktrack(OCB_p ocb, PStackPointer state)
{
FunCode f1,f2;
while(state!=PStackGetSP(ocb->statestack))
{
assert(!PStackEmpty(ocb->statestack));
f2 = PStackPopInt(ocb->statestack);
assert(!PStackEmpty(ocb->statestack));
f1 = PStackPopInt(ocb->statestack);
assert(OCBFunCompare(ocb, f1, f2) != to_uncomparable);
*OCBFunComparePos(ocb, f1, f2) = to_uncomparable;
assert(OCBFunCompare(ocb, f2, f1) != to_uncomparable);
*OCBFunComparePos(ocb, f2, f1) = to_uncomparable;
}
return !PStackEmpty(ocb->statestack);
}
/*-----------------------------------------------------------------------
//
// Function: OCBMinConst()
//
// Return mininmal constant for type (if already fixed). Return 0
// otherwise.
//
// Global Variables:
//
// Side Effects :
//
/----------------------------------------------------------------------*/
FunCode OCBMinConst(OCB_p ocb, Type_p type)
{
long sort = GetReturnSort(type)->type_uid;
FunCode cand;
cand = PDArrayElementInt(ocb->min_constants, sort);
return cand;
}
/*-----------------------------------------------------------------------
//
// Function: OCBCondSetMinConst()
//
// Set mininmal constant for type (if not already fixed).
//
// Global Variables:
//
// Side Effects :
//
/----------------------------------------------------------------------*/
void OCBCondSetMinConst(OCB_p ocb, Type_p type, FunCode cand)
{
long sort = GetReturnSort(type)->type_uid;
if(!OCBMinConst(ocb, type))
{
PDArrayAssignInt(ocb->min_constants, sort, cand);
}
}
/*-----------------------------------------------------------------------
//
// Function: OCBFindMinConst()
//
// Find a minimal (by precedence) function symbol constant in
// ocb->sig. Store it in ocb->min_constant. If no constant
// exists, create one.
//
// Global Variables:
//
// Side Effects :
//
/----------------------------------------------------------------------*/
FunCode OCBFindMinConst(OCB_p ocb, Type_p type)
{
FunCode i, cand=0;
assert(ocb && ocb->sig);
cand = OCBMinConst(ocb, type);
if(!cand)
{
for(i=ocb->sig->internal_symbols+1; i<=ocb->sig->f_count; i++)
{
if(SigIsFunConst(ocb->sig, i) &&
!SigIsSpecial(ocb->sig, i) &&
(SigGetType(ocb->sig,i) == type) &&
(!cand || (OCBFunCompare(ocb, i, cand)==to_greater)))
{
cand = i;
}
}
if(!cand)
{
cand = SigGetNewSkolemCode(ocb->sig, 0);
SigDeclareFinalType(ocb->sig, cand, type);
}
OCBCondSetMinConst(ocb, type, cand);
}
return cand;
}
/*-----------------------------------------------------------------------
//
// Function: OCBTermMaxFunCode()
//
// Return the (or rather a) maximal function symbol (according to
// ocb->precedence) from term. Follows bindings exactly once
// (i.e. assumes that substitutions are matches).
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
FunCode OCBTermMaxFunCode(OCB_p ocb, Term_p term)
{
int i;
FunCode res = 0, tmp ;
DerefType deref = DEREF_ONCE;
assert(ocb->precedence||ocb->prec_weights);
// it follows all bindings once, so there is no need
// to change anything -- normal deref behaves the same ways
term = TermDeref(term, &deref);
if(TermIsVar(term))
{
return res;
}
res = term->f_code;
for(i=1; i<term->arity; i++)
{
tmp = OCBTermMaxFunCode(ocb, term->args[i]);
if(OCBFunCompare(ocb, tmp, res) == to_greater)
{
res = tmp;
}
}
return res;
}
/*-----------------------------------------------------------------------
//
// Function: OCBFunCompareMatrix()
//
// Return comparison result of two symbols in precedence via the
// full precedence matrix. Symbols
// not covered by the ocb are smaller than all others. Equal symbols
// are not allowed (captured at OCBFunCompare).
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
CompareResult OCBFunCompareMatrix(OCB_p ocb, FunCode f1, FunCode f2)
{
assert(ocb->precedence);
assert(f1!=f2);
if(f1<=ocb->sig_size)
{
if(f2<=ocb->sig_size)
{
return *(OCBFunComparePos(ocb, f1, f2));
}
return to_greater;
}
if(f2<=ocb->sig_size)
{
return to_lesser;
}
assert((f1>ocb->sig_size) && (f1>ocb->sig_size));
return Q_TO_PART(f2-f1);
}
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|