1 /* Source code for an implementation of the Omega test, an integer
2 programming algorithm for dependence analysis, by William Pugh,
3 appeared in Supercomputing '91 and CACM Aug 92.
5 This code has no license restrictions, and is considered public
8 Changes copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation,
10 Contributed by Sebastian Pop <sebastian.pop@inria.fr>
12 This file is part of GCC.
14 GCC is free software; you can redistribute it and/or modify it under
15 the terms of the GNU General Public License as published by the Free
16 Software Foundation; either version 3, or (at your option) any later
19 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
20 WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 You should have received a copy of the GNU General Public License
25 along with GCC; see the file COPYING3. If not see
26 <http://www.gnu.org/licenses/>. */
28 /* For a detailed description, see "Constraint-Based Array Dependence
29 Analysis" William Pugh, David Wonnacott, TOPLAS'98 and David
31 ftp://ftp.cs.umd.edu/pub/omega/davewThesis/davewThesis.ps.gz
36 #include "coretypes.h"
41 #include "diagnostic.h"
43 #include "tree-pass.h"
46 /* When set to true, keep substitution variables. When set to false,
47 resurrect substitution variables (convert substitutions back to EQs). */
48 static bool omega_reduce_with_subs
= true;
50 /* When set to true, omega_simplify_problem checks for problem with no
51 solutions, calling verify_omega_pb. */
52 static bool omega_verify_simplification
= false;
54 /* When set to true, only produce a single simplified result. */
55 static bool omega_single_result
= false;
57 /* Set return_single_result to 1 when omega_single_result is true. */
58 static int return_single_result
= 0;
60 /* Hash table for equations generated by the solver. */
61 #define HASH_TABLE_SIZE PARAM_VALUE (PARAM_OMEGA_HASH_TABLE_SIZE)
62 #define MAX_KEYS PARAM_VALUE (PARAM_OMEGA_MAX_KEYS)
63 static eqn hash_master
;
65 static int hash_version
= 0;
67 /* Set to true for making the solver enter in approximation mode. */
68 static bool in_approximate_mode
= false;
70 /* When set to zero, the solver is allowed to add new equalities to
71 the problem to be solved. */
72 static int conservative
= 0;
74 /* Set to omega_true when the problem was successfully reduced, set to
75 omega_unknown when the solver is unable to determine an answer. */
76 static enum omega_result omega_found_reduction
;
78 /* Set to true when the solver is allowed to add omega_red equations. */
79 static bool create_color
= false;
81 /* Set to nonzero when the problem to be solved can be reduced. */
82 static int may_be_red
= 0;
84 /* When false, there should be no substitution equations in the
85 simplified problem. */
86 static int please_no_equalities_in_simplified_problems
= 0;
88 /* Variables names for pretty printing. */
89 static char wild_name
[200][40];
91 /* Pointer to the void problem. */
92 static omega_pb no_problem
= (omega_pb
) 0;
94 /* Pointer to the problem to be solved. */
95 static omega_pb original_problem
= (omega_pb
) 0;
98 /* Return the integer A divided by B. */
101 int_div (int a
, int b
)
106 return -((-a
+ b
- 1)/b
);
109 /* Return the integer A modulo B. */
112 int_mod (int a
, int b
)
114 return a
- b
* int_div (a
, b
);
117 /* For X and Y positive integers, return X multiplied by Y and check
118 that the result does not overflow. */
121 check_pos_mul (int x
, int y
)
124 gcc_assert ((INT_MAX
) / x
> y
);
129 /* Return X multiplied by Y and check that the result does not
133 check_mul (int x
, int y
)
138 return check_pos_mul (x
, y
);
140 return -check_pos_mul (x
, -y
);
143 return -check_pos_mul (-x
, y
);
145 return check_pos_mul (-x
, -y
);
148 /* Test whether equation E is red. */
151 omega_eqn_is_red (eqn e
, int desired_res
)
153 return (desired_res
== omega_simplify
&& e
->color
== omega_red
);
156 /* Return a string for VARIABLE. */
159 omega_var_to_str (int variable
)
161 if (0 <= variable
&& variable
<= 20)
162 return wild_name
[variable
];
164 if (-20 < variable
&& variable
< 0)
165 return wild_name
[40 + variable
];
167 /* Collapse all the entries that would have overflowed. */
168 return wild_name
[21];
171 /* Return a string for variable I in problem PB. */
174 omega_variable_to_str (omega_pb pb
, int i
)
176 return omega_var_to_str (pb
->var
[i
]);
179 /* Do nothing function: used for default initializations. */
182 omega_no_procedure (omega_pb pb ATTRIBUTE_UNUSED
)
186 void (*omega_when_reduced
) (omega_pb
) = omega_no_procedure
;
188 /* Compute the greatest common divisor of A and B. */
206 /* Print to FILE from PB equation E with all its coefficients
210 omega_print_term (FILE *file
, omega_pb pb
, eqn e
, int c
)
214 int n
= pb
->num_vars
;
217 for (i
= 1; i
<= n
; i
++)
218 if (c
* e
->coef
[i
] > 0)
223 if (c
* e
->coef
[i
] == 1)
224 fprintf (file
, "%s", omega_variable_to_str (pb
, i
));
226 fprintf (file
, "%d * %s", c
* e
->coef
[i
],
227 omega_variable_to_str (pb
, i
));
231 for (i
= 1; i
<= n
; i
++)
232 if (i
!= went_first
&& c
* e
->coef
[i
] != 0)
234 if (!first
&& c
* e
->coef
[i
] > 0)
235 fprintf (file
, " + ");
239 if (c
* e
->coef
[i
] == 1)
240 fprintf (file
, "%s", omega_variable_to_str (pb
, i
));
241 else if (c
* e
->coef
[i
] == -1)
242 fprintf (file
, " - %s", omega_variable_to_str (pb
, i
));
244 fprintf (file
, "%d * %s", c
* e
->coef
[i
],
245 omega_variable_to_str (pb
, i
));
248 if (!first
&& c
* e
->coef
[0] > 0)
249 fprintf (file
, " + ");
251 if (first
|| c
* e
->coef
[0] != 0)
252 fprintf (file
, "%d", c
* e
->coef
[0]);
255 /* Print to FILE the equation E of problem PB. */
258 omega_print_eqn (FILE *file
, omega_pb pb
, eqn e
, bool test
, int extra
)
261 int n
= pb
->num_vars
+ extra
;
262 bool is_lt
= test
&& e
->coef
[0] == -1;
270 else if (e
->key
!= 0)
271 fprintf (file
, "%d: ", e
->key
);
274 if (e
->color
== omega_red
)
279 for (i
= is_lt
? 1 : 0; i
<= n
; i
++)
283 fprintf (file
, " + ");
288 fprintf (file
, "%d", -e
->coef
[i
]);
289 else if (e
->coef
[i
] == -1)
290 fprintf (file
, "%s", omega_variable_to_str (pb
, i
));
292 fprintf (file
, "%d * %s", -e
->coef
[i
],
293 omega_variable_to_str (pb
, i
));
308 fprintf (file
, " = ");
310 fprintf (file
, " < ");
312 fprintf (file
, " <= ");
316 for (i
= 0; i
<= n
; i
++)
320 fprintf (file
, " + ");
325 fprintf (file
, "%d", e
->coef
[i
]);
326 else if (e
->coef
[i
] == 1)
327 fprintf (file
, "%s", omega_variable_to_str (pb
, i
));
329 fprintf (file
, "%d * %s", e
->coef
[i
],
330 omega_variable_to_str (pb
, i
));
336 if (e
->color
== omega_red
)
340 /* Print to FILE all the variables of problem PB. */
343 omega_print_vars (FILE *file
, omega_pb pb
)
347 fprintf (file
, "variables = ");
349 if (pb
->safe_vars
> 0)
350 fprintf (file
, "protected (");
352 for (i
= 1; i
<= pb
->num_vars
; i
++)
354 fprintf (file
, "%s", omega_variable_to_str (pb
, i
));
356 if (i
== pb
->safe_vars
)
359 if (i
< pb
->num_vars
)
360 fprintf (file
, ", ");
363 fprintf (file
, "\n");
366 /* Debug problem PB. */
369 debug_omega_problem (omega_pb pb
)
371 omega_print_problem (stderr
, pb
);
374 /* Print to FILE problem PB. */
377 omega_print_problem (FILE *file
, omega_pb pb
)
381 if (!pb
->variables_initialized
)
382 omega_initialize_variables (pb
);
384 omega_print_vars (file
, pb
);
386 for (e
= 0; e
< pb
->num_eqs
; e
++)
388 omega_print_eq (file
, pb
, &pb
->eqs
[e
]);
389 fprintf (file
, "\n");
392 fprintf (file
, "Done with EQ\n");
394 for (e
= 0; e
< pb
->num_geqs
; e
++)
396 omega_print_geq (file
, pb
, &pb
->geqs
[e
]);
397 fprintf (file
, "\n");
400 fprintf (file
, "Done with GEQ\n");
402 for (e
= 0; e
< pb
->num_subs
; e
++)
404 eqn eq
= &pb
->subs
[e
];
406 if (eq
->color
== omega_red
)
410 fprintf (file
, "%s := ", omega_var_to_str (eq
->key
));
412 fprintf (file
, "#%d := ", eq
->key
);
414 omega_print_term (file
, pb
, eq
, 1);
416 if (eq
->color
== omega_red
)
419 fprintf (file
, "\n");
423 /* Return the number of equations in PB tagged omega_red. */
426 omega_count_red_equations (omega_pb pb
)
431 for (e
= 0; e
< pb
->num_eqs
; e
++)
432 if (pb
->eqs
[e
].color
== omega_red
)
434 for (i
= pb
->num_vars
; i
> 0; i
--)
435 if (pb
->geqs
[e
].coef
[i
])
438 if (i
== 0 && pb
->geqs
[e
].coef
[0] == 1)
444 for (e
= 0; e
< pb
->num_geqs
; e
++)
445 if (pb
->geqs
[e
].color
== omega_red
)
448 for (e
= 0; e
< pb
->num_subs
; e
++)
449 if (pb
->subs
[e
].color
== omega_red
)
455 /* Print to FILE all the equations in PB that are tagged omega_red. */
458 omega_print_red_equations (FILE *file
, omega_pb pb
)
462 if (!pb
->variables_initialized
)
463 omega_initialize_variables (pb
);
465 omega_print_vars (file
, pb
);
467 for (e
= 0; e
< pb
->num_eqs
; e
++)
468 if (pb
->eqs
[e
].color
== omega_red
)
470 omega_print_eq (file
, pb
, &pb
->eqs
[e
]);
471 fprintf (file
, "\n");
474 for (e
= 0; e
< pb
->num_geqs
; e
++)
475 if (pb
->geqs
[e
].color
== omega_red
)
477 omega_print_geq (file
, pb
, &pb
->geqs
[e
]);
478 fprintf (file
, "\n");
481 for (e
= 0; e
< pb
->num_subs
; e
++)
482 if (pb
->subs
[e
].color
== omega_red
)
484 eqn eq
= &pb
->subs
[e
];
488 fprintf (file
, "%s := ", omega_var_to_str (eq
->key
));
490 fprintf (file
, "#%d := ", eq
->key
);
492 omega_print_term (file
, pb
, eq
, 1);
493 fprintf (file
, "]\n");
497 /* Pretty print PB to FILE. */
500 omega_pretty_print_problem (FILE *file
, omega_pb pb
)
502 int e
, v
, v1
, v2
, v3
, t
;
503 bool *live
= XNEWVEC (bool, OMEGA_MAX_GEQS
);
504 int stuffPrinted
= 0;
509 } partial_order_type
;
511 partial_order_type
**po
= XNEWVEC (partial_order_type
*,
512 OMEGA_MAX_VARS
* OMEGA_MAX_VARS
);
513 int **po_eq
= XNEWVEC (int *, OMEGA_MAX_VARS
* OMEGA_MAX_VARS
);
514 int *last_links
= XNEWVEC (int, OMEGA_MAX_VARS
);
515 int *first_links
= XNEWVEC (int, OMEGA_MAX_VARS
);
516 int *chain_length
= XNEWVEC (int, OMEGA_MAX_VARS
);
517 int *chain
= XNEWVEC (int, OMEGA_MAX_VARS
);
521 if (!pb
->variables_initialized
)
522 omega_initialize_variables (pb
);
524 if (pb
->num_vars
> 0)
526 omega_eliminate_redundant (pb
, false);
528 for (e
= 0; e
< pb
->num_eqs
; e
++)
531 fprintf (file
, "; ");
534 omega_print_eq (file
, pb
, &pb
->eqs
[e
]);
537 for (e
= 0; e
< pb
->num_geqs
; e
++)
542 for (v
= 1; v
<= pb
->num_vars
; v
++)
544 last_links
[v
] = first_links
[v
] = 0;
547 for (v2
= 1; v2
<= pb
->num_vars
; v2
++)
551 for (e
= 0; e
< pb
->num_geqs
; e
++)
554 for (v
= 1; v
<= pb
->num_vars
; v
++)
555 if (pb
->geqs
[e
].coef
[v
] == 1)
557 else if (pb
->geqs
[e
].coef
[v
] == -1)
562 while (v1
> 0 && pb
->geqs
[e
].coef
[v1
] == 0)
567 while (v2
> 0 && pb
->geqs
[e
].coef
[v2
] == 0)
572 while (v3
> 0 && pb
->geqs
[e
].coef
[v3
] == 0)
575 if (pb
->geqs
[e
].coef
[0] > 0 || pb
->geqs
[e
].coef
[0] < -1
577 || pb
->geqs
[e
].coef
[v1
] * pb
->geqs
[e
].coef
[v2
] != -1)
579 /* Not a partial order relation. */
583 if (pb
->geqs
[e
].coef
[v1
] == 1)
590 /* Relation is v1 <= v2 or v1 < v2. */
591 po
[v1
][v2
] = ((pb
->geqs
[e
].coef
[0] == 0) ? le
: lt
);
595 for (v
= 1; v
<= pb
->num_vars
; v
++)
596 chain_length
[v
] = last_links
[v
];
598 /* Just in case pb->num_vars <= 0. */
600 for (t
= 0; t
< pb
->num_vars
; t
++)
604 for (v1
= 1; v1
<= pb
->num_vars
; v1
++)
605 for (v2
= 1; v2
<= pb
->num_vars
; v2
++)
606 if (po
[v1
][v2
] != none
&&
607 chain_length
[v1
] <= chain_length
[v2
])
609 chain_length
[v1
] = chain_length
[v2
] + 1;
614 /* Caught in cycle. */
615 gcc_assert (!change
);
617 for (v1
= 1; v1
<= pb
->num_vars
; v1
++)
618 if (chain_length
[v1
] == 0)
623 for (v1
= 2; v1
<= pb
->num_vars
; v1
++)
624 if (chain_length
[v1
] + first_links
[v1
] >
625 chain_length
[v
] + first_links
[v
])
628 if (chain_length
[v
] + first_links
[v
] == 0)
632 fprintf (file
, "; ");
636 /* Chain starts at v. */
641 for (e
= 0; e
< pb
->num_geqs
; e
++)
642 if (live
[e
] && pb
->geqs
[e
].coef
[v
] == 1)
645 fprintf (file
, ", ");
647 tmp
= pb
->geqs
[e
].coef
[v
];
648 pb
->geqs
[e
].coef
[v
] = 0;
649 omega_print_term (file
, pb
, &pb
->geqs
[e
], -1);
650 pb
->geqs
[e
].coef
[v
] = tmp
;
656 fprintf (file
, " <= ");
665 for (v2
= 1; v2
<= pb
->num_vars
; v2
++)
666 if (po
[v
][v2
] && chain_length
[v
] == 1 + chain_length
[v2
])
669 if (v2
> pb
->num_vars
)
676 fprintf (file
, "%s", omega_variable_to_str (pb
, chain
[0]));
678 for (multiprint
= false, i
= 1; i
< m
; i
++)
684 fprintf (file
, " <= ");
686 fprintf (file
, " < ");
688 fprintf (file
, "%s", omega_variable_to_str (pb
, v2
));
689 live
[po_eq
[v
][v2
]] = false;
691 if (!multiprint
&& i
< m
- 1)
692 for (v3
= 1; v3
<= pb
->num_vars
; v3
++)
694 if (v
== v3
|| v2
== v3
695 || po
[v
][v2
] != po
[v
][v3
]
696 || po
[v2
][chain
[i
+ 1]] != po
[v3
][chain
[i
+ 1]])
699 fprintf (file
, ",%s", omega_variable_to_str (pb
, v3
));
700 live
[po_eq
[v
][v3
]] = false;
701 live
[po_eq
[v3
][chain
[i
+ 1]]] = false;
709 /* Print last_links. */
714 for (e
= 0; e
< pb
->num_geqs
; e
++)
715 if (live
[e
] && pb
->geqs
[e
].coef
[v
] == -1)
718 fprintf (file
, ", ");
720 fprintf (file
, " <= ");
722 tmp
= pb
->geqs
[e
].coef
[v
];
723 pb
->geqs
[e
].coef
[v
] = 0;
724 omega_print_term (file
, pb
, &pb
->geqs
[e
], 1);
725 pb
->geqs
[e
].coef
[v
] = tmp
;
732 for (e
= 0; e
< pb
->num_geqs
; e
++)
736 fprintf (file
, "; ");
738 omega_print_geq (file
, pb
, &pb
->geqs
[e
]);
741 for (e
= 0; e
< pb
->num_subs
; e
++)
743 eqn eq
= &pb
->subs
[e
];
746 fprintf (file
, "; ");
751 fprintf (file
, "%s := ", omega_var_to_str (eq
->key
));
753 fprintf (file
, "#%d := ", eq
->key
);
755 omega_print_term (file
, pb
, eq
, 1);
768 /* Assign to variable I in PB the next wildcard name. The name of a
769 wildcard is a negative number. */
770 static int next_wild_card
= 0;
773 omega_name_wild_card (omega_pb pb
, int i
)
776 if (next_wild_card
< -PARAM_VALUE (PARAM_OMEGA_MAX_WILD_CARDS
))
778 pb
->var
[i
] = next_wild_card
;
781 /* Return the index of the last protected (or safe) variable in PB,
782 after having added a new wildcard variable. */
785 omega_add_new_wild_card (omega_pb pb
)
788 int i
= ++pb
->safe_vars
;
791 /* Make a free place in the protected (safe) variables, by moving
792 the non protected variable pointed by "I" at the end, ie. at
793 offset pb->num_vars. */
794 if (pb
->num_vars
!= i
)
796 /* Move "I" for all the inequalities. */
797 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
799 if (pb
->geqs
[e
].coef
[i
])
800 pb
->geqs
[e
].touched
= 1;
802 pb
->geqs
[e
].coef
[pb
->num_vars
] = pb
->geqs
[e
].coef
[i
];
805 /* Move "I" for all the equalities. */
806 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
807 pb
->eqs
[e
].coef
[pb
->num_vars
] = pb
->eqs
[e
].coef
[i
];
809 /* Move "I" for all the substitutions. */
810 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
811 pb
->subs
[e
].coef
[pb
->num_vars
] = pb
->subs
[e
].coef
[i
];
813 /* Move the identifier. */
814 pb
->var
[pb
->num_vars
] = pb
->var
[i
];
817 /* Initialize at zero all the coefficients */
818 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
819 pb
->geqs
[e
].coef
[i
] = 0;
821 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
822 pb
->eqs
[e
].coef
[i
] = 0;
824 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
825 pb
->subs
[e
].coef
[i
] = 0;
827 /* And give it a name. */
828 omega_name_wild_card (pb
, i
);
832 /* Delete inequality E from problem PB that has N_VARS variables. */
835 omega_delete_geq (omega_pb pb
, int e
, int n_vars
)
837 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
839 fprintf (dump_file
, "Deleting %d (last:%d): ", e
, pb
->num_geqs
- 1);
840 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e
]);
841 fprintf (dump_file
, "\n");
844 if (e
< pb
->num_geqs
- 1)
845 omega_copy_eqn (&pb
->geqs
[e
], &pb
->geqs
[pb
->num_geqs
- 1], n_vars
);
850 /* Delete extra inequality E from problem PB that has N_VARS
854 omega_delete_geq_extra (omega_pb pb
, int e
, int n_vars
)
856 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
858 fprintf (dump_file
, "Deleting %d: ",e
);
859 omega_print_geq_extra (dump_file
, pb
, &pb
->geqs
[e
]);
860 fprintf (dump_file
, "\n");
863 if (e
< pb
->num_geqs
- 1)
864 omega_copy_eqn (&pb
->geqs
[e
], &pb
->geqs
[pb
->num_geqs
- 1], n_vars
);
870 /* Remove variable I from problem PB. */
873 omega_delete_variable (omega_pb pb
, int i
)
875 int n_vars
= pb
->num_vars
;
878 if (omega_safe_var_p (pb
, i
))
880 int j
= pb
->safe_vars
;
882 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
884 pb
->geqs
[e
].touched
= 1;
885 pb
->geqs
[e
].coef
[i
] = pb
->geqs
[e
].coef
[j
];
886 pb
->geqs
[e
].coef
[j
] = pb
->geqs
[e
].coef
[n_vars
];
889 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
891 pb
->eqs
[e
].coef
[i
] = pb
->eqs
[e
].coef
[j
];
892 pb
->eqs
[e
].coef
[j
] = pb
->eqs
[e
].coef
[n_vars
];
895 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
897 pb
->subs
[e
].coef
[i
] = pb
->subs
[e
].coef
[j
];
898 pb
->subs
[e
].coef
[j
] = pb
->subs
[e
].coef
[n_vars
];
901 pb
->var
[i
] = pb
->var
[j
];
902 pb
->var
[j
] = pb
->var
[n_vars
];
906 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
907 if (pb
->geqs
[e
].coef
[n_vars
])
909 pb
->geqs
[e
].coef
[i
] = pb
->geqs
[e
].coef
[n_vars
];
910 pb
->geqs
[e
].touched
= 1;
913 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
914 pb
->eqs
[e
].coef
[i
] = pb
->eqs
[e
].coef
[n_vars
];
916 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
917 pb
->subs
[e
].coef
[i
] = pb
->subs
[e
].coef
[n_vars
];
919 pb
->var
[i
] = pb
->var
[n_vars
];
922 if (omega_safe_var_p (pb
, i
))
928 /* Because the coefficients of an equation are sparse, PACKING records
929 indices for non null coefficients. */
932 /* Set up the coefficients of PACKING, following the coefficients of
933 equation EQN that has NUM_VARS variables. */
936 setup_packing (eqn eqn
, int num_vars
)
941 for (k
= num_vars
; k
>= 0; k
--)
948 /* Computes a linear combination of EQ and SUB at VAR with coefficient
949 C, such that EQ->coef[VAR] is set to 0. TOP_VAR is the number of
950 non null indices of SUB stored in PACKING. */
953 omega_substitute_red_1 (eqn eq
, eqn sub
, int var
, int c
, bool *found_black
,
956 if (eq
->coef
[var
] != 0)
958 if (eq
->color
== omega_black
)
962 int j
, k
= eq
->coef
[var
];
966 for (j
= top_var
; j
>= 0; j
--)
967 eq
->coef
[packing
[j
]] -= sub
->coef
[packing
[j
]] * k
* c
;
972 /* Substitute in PB variable VAR with "C * SUB". */
975 omega_substitute_red (omega_pb pb
, eqn sub
, int var
, int c
, bool *found_black
)
977 int e
, top_var
= setup_packing (sub
, pb
->num_vars
);
979 *found_black
= false;
981 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
983 if (sub
->color
== omega_red
)
984 fprintf (dump_file
, "[");
986 fprintf (dump_file
, "substituting using %s := ",
987 omega_variable_to_str (pb
, var
));
988 omega_print_term (dump_file
, pb
, sub
, -c
);
990 if (sub
->color
== omega_red
)
991 fprintf (dump_file
, "]");
993 fprintf (dump_file
, "\n");
994 omega_print_vars (dump_file
, pb
);
997 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
999 eqn eqn
= &(pb
->eqs
[e
]);
1001 omega_substitute_red_1 (eqn
, sub
, var
, c
, found_black
, top_var
);
1003 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1005 omega_print_eq (dump_file
, pb
, eqn
);
1006 fprintf (dump_file
, "\n");
1010 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
1012 eqn eqn
= &(pb
->geqs
[e
]);
1014 omega_substitute_red_1 (eqn
, sub
, var
, c
, found_black
, top_var
);
1016 if (eqn
->coef
[var
] && eqn
->color
== omega_red
)
1019 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1021 omega_print_geq (dump_file
, pb
, eqn
);
1022 fprintf (dump_file
, "\n");
1026 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
1028 eqn eqn
= &(pb
->subs
[e
]);
1030 omega_substitute_red_1 (eqn
, sub
, var
, c
, found_black
, top_var
);
1032 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1034 fprintf (dump_file
, "%s := ", omega_var_to_str (eqn
->key
));
1035 omega_print_term (dump_file
, pb
, eqn
, 1);
1036 fprintf (dump_file
, "\n");
1040 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1041 fprintf (dump_file
, "---\n\n");
1043 if (omega_safe_var_p (pb
, var
) && !omega_wildcard_p (pb
, var
))
1044 *found_black
= true;
1047 /* Substitute in PB variable VAR with "C * SUB". */
1050 omega_substitute (omega_pb pb
, eqn sub
, int var
, int c
)
1053 int top_var
= setup_packing (sub
, pb
->num_vars
);
1055 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1057 fprintf (dump_file
, "substituting using %s := ",
1058 omega_variable_to_str (pb
, var
));
1059 omega_print_term (dump_file
, pb
, sub
, -c
);
1060 fprintf (dump_file
, "\n");
1061 omega_print_vars (dump_file
, pb
);
1066 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
1067 pb
->eqs
[e
].coef
[var
] = 0;
1069 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
1070 if (pb
->geqs
[e
].coef
[var
] != 0)
1072 pb
->geqs
[e
].touched
= 1;
1073 pb
->geqs
[e
].coef
[var
] = 0;
1076 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
1077 pb
->subs
[e
].coef
[var
] = 0;
1079 if (omega_safe_var_p (pb
, var
) && !omega_wildcard_p (pb
, var
))
1082 eqn eqn
= &(pb
->subs
[pb
->num_subs
++]);
1084 for (k
= pb
->num_vars
; k
>= 0; k
--)
1087 eqn
->key
= pb
->var
[var
];
1088 eqn
->color
= omega_black
;
1091 else if (top_var
== 0 && packing
[0] == 0)
1093 c
= -sub
->coef
[0] * c
;
1095 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
1097 pb
->eqs
[e
].coef
[0] += pb
->eqs
[e
].coef
[var
] * c
;
1098 pb
->eqs
[e
].coef
[var
] = 0;
1101 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
1102 if (pb
->geqs
[e
].coef
[var
] != 0)
1104 pb
->geqs
[e
].coef
[0] += pb
->geqs
[e
].coef
[var
] * c
;
1105 pb
->geqs
[e
].coef
[var
] = 0;
1106 pb
->geqs
[e
].touched
= 1;
1109 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
1111 pb
->subs
[e
].coef
[0] += pb
->subs
[e
].coef
[var
] * c
;
1112 pb
->subs
[e
].coef
[var
] = 0;
1115 if (omega_safe_var_p (pb
, var
) && !omega_wildcard_p (pb
, var
))
1118 eqn eqn
= &(pb
->subs
[pb
->num_subs
++]);
1120 for (k
= pb
->num_vars
; k
>= 1; k
--)
1124 eqn
->key
= pb
->var
[var
];
1125 eqn
->color
= omega_black
;
1128 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1130 fprintf (dump_file
, "---\n\n");
1131 omega_print_problem (dump_file
, pb
);
1132 fprintf (dump_file
, "===\n\n");
1137 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
1139 eqn eqn
= &(pb
->eqs
[e
]);
1140 int k
= eqn
->coef
[var
];
1147 for (j
= top_var
; j
>= 0; j
--)
1150 eqn
->coef
[j0
] -= sub
->coef
[j0
] * k
;
1154 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1156 omega_print_eq (dump_file
, pb
, eqn
);
1157 fprintf (dump_file
, "\n");
1161 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
1163 eqn eqn
= &(pb
->geqs
[e
]);
1164 int k
= eqn
->coef
[var
];
1172 for (j
= top_var
; j
>= 0; j
--)
1175 eqn
->coef
[j0
] -= sub
->coef
[j0
] * k
;
1179 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1181 omega_print_geq (dump_file
, pb
, eqn
);
1182 fprintf (dump_file
, "\n");
1186 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
1188 eqn eqn
= &(pb
->subs
[e
]);
1189 int k
= eqn
->coef
[var
];
1196 for (j
= top_var
; j
>= 0; j
--)
1199 eqn
->coef
[j0
] -= sub
->coef
[j0
] * k
;
1203 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1205 fprintf (dump_file
, "%s := ", omega_var_to_str (eqn
->key
));
1206 omega_print_term (dump_file
, pb
, eqn
, 1);
1207 fprintf (dump_file
, "\n");
1211 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1213 fprintf (dump_file
, "---\n\n");
1214 omega_print_problem (dump_file
, pb
);
1215 fprintf (dump_file
, "===\n\n");
1218 if (omega_safe_var_p (pb
, var
) && !omega_wildcard_p (pb
, var
))
1221 eqn eqn
= &(pb
->subs
[pb
->num_subs
++]);
1224 for (k
= pb
->num_vars
; k
>= 0; k
--)
1225 eqn
->coef
[k
] = c
* (sub
->coef
[k
]);
1227 eqn
->key
= pb
->var
[var
];
1228 eqn
->color
= sub
->color
;
1233 /* Solve e = factor alpha for x_j and substitute. */
1236 omega_do_mod (omega_pb pb
, int factor
, int e
, int j
)
1239 eqn eq
= omega_alloc_eqns (0, 1);
1241 bool kill_j
= false;
1243 omega_copy_eqn (eq
, &pb
->eqs
[e
], pb
->num_vars
);
1245 for (k
= pb
->num_vars
; k
>= 0; k
--)
1247 eq
->coef
[k
] = int_mod (eq
->coef
[k
], factor
);
1249 if (2 * eq
->coef
[k
] >= factor
)
1250 eq
->coef
[k
] -= factor
;
1253 nfactor
= eq
->coef
[j
];
1255 if (omega_safe_var_p (pb
, j
) && !omega_wildcard_p (pb
, j
))
1257 i
= omega_add_new_wild_card (pb
);
1258 eq
->coef
[pb
->num_vars
] = eq
->coef
[i
];
1260 eq
->coef
[i
] = -factor
;
1265 eq
->coef
[j
] = -factor
;
1266 if (!omega_wildcard_p (pb
, j
))
1267 omega_name_wild_card (pb
, j
);
1270 omega_substitute (pb
, eq
, j
, nfactor
);
1272 for (k
= pb
->num_vars
; k
>= 0; k
--)
1273 pb
->eqs
[e
].coef
[k
] = pb
->eqs
[e
].coef
[k
] / factor
;
1276 omega_delete_variable (pb
, j
);
1278 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1280 fprintf (dump_file
, "Mod-ing and normalizing produces:\n");
1281 omega_print_problem (dump_file
, pb
);
1284 omega_free_eqns (eq
, 1);
1287 /* Multiplies by -1 inequality E. */
1290 omega_negate_geq (omega_pb pb
, int e
)
1294 for (i
= pb
->num_vars
; i
>= 0; i
--)
1295 pb
->geqs
[e
].coef
[i
] *= -1;
1297 pb
->geqs
[e
].coef
[0]--;
1298 pb
->geqs
[e
].touched
= 1;
1301 /* Returns OMEGA_TRUE when problem PB has a solution. */
1303 static enum omega_result
1304 verify_omega_pb (omega_pb pb
)
1306 enum omega_result result
;
1308 bool any_color
= false;
1309 omega_pb tmp_problem
= XNEW (struct omega_pb
);
1311 omega_copy_problem (tmp_problem
, pb
);
1312 tmp_problem
->safe_vars
= 0;
1313 tmp_problem
->num_subs
= 0;
1315 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
1316 if (pb
->geqs
[e
].color
== omega_red
)
1322 if (please_no_equalities_in_simplified_problems
)
1326 original_problem
= no_problem
;
1328 original_problem
= pb
;
1330 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1332 fprintf (dump_file
, "verifying problem");
1335 fprintf (dump_file
, " (color mode)");
1337 fprintf (dump_file
, " :\n");
1338 omega_print_problem (dump_file
, pb
);
1341 result
= omega_solve_problem (tmp_problem
, omega_unknown
);
1342 original_problem
= no_problem
;
1345 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1347 if (result
!= omega_false
)
1348 fprintf (dump_file
, "verified problem\n");
1350 fprintf (dump_file
, "disproved problem\n");
1351 omega_print_problem (dump_file
, pb
);
1357 /* Add a new equality to problem PB at last position E. */
1360 adding_equality_constraint (omega_pb pb
, int e
)
1362 if (original_problem
!= no_problem
1363 && original_problem
!= pb
1367 int e2
= original_problem
->num_eqs
++;
1369 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1371 "adding equality constraint %d to outer problem\n", e2
);
1372 omega_init_eqn_zero (&original_problem
->eqs
[e2
],
1373 original_problem
->num_vars
);
1375 for (i
= pb
->num_vars
; i
>= 1; i
--)
1377 for (j
= original_problem
->num_vars
; j
>= 1; j
--)
1378 if (original_problem
->var
[j
] == pb
->var
[i
])
1383 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1384 fprintf (dump_file
, "retracting\n");
1385 original_problem
->num_eqs
--;
1388 original_problem
->eqs
[e2
].coef
[j
] = pb
->eqs
[e
].coef
[i
];
1391 original_problem
->eqs
[e2
].coef
[0] = pb
->eqs
[e
].coef
[0];
1393 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1394 omega_print_problem (dump_file
, original_problem
);
1398 static int *fast_lookup
;
1399 static int *fast_lookup_red
;
1403 normalize_uncoupled
,
1405 } normalize_return_type
;
1407 /* Normalizes PB by removing redundant constraints. Returns
1408 normalize_false when the constraints system has no solution,
1409 otherwise returns normalize_coupled or normalize_uncoupled. */
1411 static normalize_return_type
1412 normalize_omega_problem (omega_pb pb
)
1414 int e
, i
, j
, k
, n_vars
;
1415 int coupled_subscripts
= 0;
1417 n_vars
= pb
->num_vars
;
1419 for (e
= 0; e
< pb
->num_geqs
; e
++)
1421 if (!pb
->geqs
[e
].touched
)
1423 if (!single_var_geq (&pb
->geqs
[e
], n_vars
))
1424 coupled_subscripts
= 1;
1428 int g
, top_var
, i0
, hashCode
;
1429 int *p
= &packing
[0];
1431 for (k
= 1; k
<= n_vars
; k
++)
1432 if (pb
->geqs
[e
].coef
[k
])
1435 top_var
= (p
- &packing
[0]) - 1;
1439 if (pb
->geqs
[e
].coef
[0] < 0)
1441 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1443 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e
]);
1444 fprintf (dump_file
, "\nequations have no solution \n");
1446 return normalize_false
;
1449 omega_delete_geq (pb
, e
, n_vars
);
1453 else if (top_var
== 0)
1455 int singlevar
= packing
[0];
1457 g
= pb
->geqs
[e
].coef
[singlevar
];
1461 pb
->geqs
[e
].coef
[singlevar
] = 1;
1462 pb
->geqs
[e
].key
= singlevar
;
1467 pb
->geqs
[e
].coef
[singlevar
] = -1;
1468 pb
->geqs
[e
].key
= -singlevar
;
1472 pb
->geqs
[e
].coef
[0] = int_div (pb
->geqs
[e
].coef
[0], g
);
1477 int hash_key_multiplier
= 31;
1479 coupled_subscripts
= 1;
1482 g
= pb
->geqs
[e
].coef
[i
];
1483 hashCode
= g
* (i
+ 3);
1488 for (; i0
>= 0; i0
--)
1493 x
= pb
->geqs
[e
].coef
[i
];
1494 hashCode
= hashCode
* hash_key_multiplier
* (i
+ 3) + x
;
1509 for (; i0
>= 0; i0
--)
1513 x
= pb
->geqs
[e
].coef
[i
];
1514 hashCode
= hashCode
* hash_key_multiplier
* (i
+ 3) + x
;
1519 pb
->geqs
[e
].coef
[0] = int_div (pb
->geqs
[e
].coef
[0], g
);
1522 pb
->geqs
[e
].coef
[i
] = pb
->geqs
[e
].coef
[i
] / g
;
1523 hashCode
= pb
->geqs
[e
].coef
[i
] * (i
+ 3);
1525 for (; i0
>= 0; i0
--)
1528 pb
->geqs
[e
].coef
[i
] = pb
->geqs
[e
].coef
[i
] / g
;
1529 hashCode
= hashCode
* hash_key_multiplier
* (i
+ 3)
1530 + pb
->geqs
[e
].coef
[i
];
1534 g2
= abs (hashCode
);
1536 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1538 fprintf (dump_file
, "Hash code = %d, eqn = ", hashCode
);
1539 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e
]);
1540 fprintf (dump_file
, "\n");
1543 j
= g2
% HASH_TABLE_SIZE
;
1546 eqn proto
= &(hash_master
[j
]);
1548 if (proto
->touched
== g2
)
1550 if (proto
->coef
[0] == top_var
)
1553 for (i0
= top_var
; i0
>= 0; i0
--)
1557 if (pb
->geqs
[e
].coef
[i
] != proto
->coef
[i
])
1561 for (i0
= top_var
; i0
>= 0; i0
--)
1565 if (pb
->geqs
[e
].coef
[i
] != -proto
->coef
[i
])
1572 pb
->geqs
[e
].key
= proto
->key
;
1574 pb
->geqs
[e
].key
= -proto
->key
;
1579 else if (proto
->touched
< 0)
1581 omega_init_eqn_zero (proto
, pb
->num_vars
);
1583 for (i0
= top_var
; i0
>= 0; i0
--)
1586 proto
->coef
[i
] = pb
->geqs
[e
].coef
[i
];
1589 for (i0
= top_var
; i0
>= 0; i0
--)
1592 proto
->coef
[i
] = -pb
->geqs
[e
].coef
[i
];
1595 proto
->coef
[0] = top_var
;
1596 proto
->touched
= g2
;
1598 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1599 fprintf (dump_file
, " constraint key = %d\n",
1602 proto
->key
= next_key
++;
1604 /* Too many hash keys generated. */
1605 gcc_assert (proto
->key
<= MAX_KEYS
);
1608 pb
->geqs
[e
].key
= proto
->key
;
1610 pb
->geqs
[e
].key
= -proto
->key
;
1615 j
= (j
+ 1) % HASH_TABLE_SIZE
;
1619 pb
->geqs
[e
].touched
= 0;
1623 int eKey
= pb
->geqs
[e
].key
;
1627 int cTerm
= pb
->geqs
[e
].coef
[0];
1628 e2
= fast_lookup
[MAX_KEYS
- eKey
];
1630 if (e2
< e
&& pb
->geqs
[e2
].key
== -eKey
1631 && pb
->geqs
[e2
].color
== omega_black
)
1633 if (pb
->geqs
[e2
].coef
[0] < -cTerm
)
1635 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1637 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e
]);
1638 fprintf (dump_file
, "\n");
1639 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e2
]);
1641 "\nequations have no solution \n");
1643 return normalize_false
;
1646 if (pb
->geqs
[e2
].coef
[0] == -cTerm
1648 || pb
->geqs
[e
].color
== omega_black
))
1650 omega_copy_eqn (&pb
->eqs
[pb
->num_eqs
], &pb
->geqs
[e
],
1652 if (pb
->geqs
[e
].color
== omega_black
)
1653 adding_equality_constraint (pb
, pb
->num_eqs
);
1655 gcc_assert (pb
->num_eqs
<= OMEGA_MAX_EQS
);
1659 e2
= fast_lookup_red
[MAX_KEYS
- eKey
];
1661 if (e2
< e
&& pb
->geqs
[e2
].key
== -eKey
1662 && pb
->geqs
[e2
].color
== omega_red
)
1664 if (pb
->geqs
[e2
].coef
[0] < -cTerm
)
1666 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1668 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e
]);
1669 fprintf (dump_file
, "\n");
1670 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e2
]);
1672 "\nequations have no solution \n");
1674 return normalize_false
;
1677 if (pb
->geqs
[e2
].coef
[0] == -cTerm
&& create_color
)
1679 omega_copy_eqn (&pb
->eqs
[pb
->num_eqs
], &pb
->geqs
[e
],
1681 pb
->eqs
[pb
->num_eqs
].color
= omega_red
;
1683 gcc_assert (pb
->num_eqs
<= OMEGA_MAX_EQS
);
1687 e2
= fast_lookup
[MAX_KEYS
+ eKey
];
1689 if (e2
< e
&& pb
->geqs
[e2
].key
== eKey
1690 && pb
->geqs
[e2
].color
== omega_black
)
1692 if (pb
->geqs
[e2
].coef
[0] > cTerm
)
1694 if (pb
->geqs
[e
].color
== omega_black
)
1696 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1699 "Removing Redundant Equation: ");
1700 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e2
]));
1701 fprintf (dump_file
, "\n");
1703 "[a] Made Redundant by: ");
1704 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e
]));
1705 fprintf (dump_file
, "\n");
1707 pb
->geqs
[e2
].coef
[0] = cTerm
;
1708 omega_delete_geq (pb
, e
, n_vars
);
1715 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1717 fprintf (dump_file
, "Removing Redundant Equation: ");
1718 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e
]));
1719 fprintf (dump_file
, "\n");
1720 fprintf (dump_file
, "[b] Made Redundant by: ");
1721 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e2
]));
1722 fprintf (dump_file
, "\n");
1724 omega_delete_geq (pb
, e
, n_vars
);
1730 e2
= fast_lookup_red
[MAX_KEYS
+ eKey
];
1732 if (e2
< e
&& pb
->geqs
[e2
].key
== eKey
1733 && pb
->geqs
[e2
].color
== omega_red
)
1735 if (pb
->geqs
[e2
].coef
[0] >= cTerm
)
1737 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1739 fprintf (dump_file
, "Removing Redundant Equation: ");
1740 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e2
]));
1741 fprintf (dump_file
, "\n");
1742 fprintf (dump_file
, "[c] Made Redundant by: ");
1743 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e
]));
1744 fprintf (dump_file
, "\n");
1746 pb
->geqs
[e2
].coef
[0] = cTerm
;
1747 pb
->geqs
[e2
].color
= pb
->geqs
[e
].color
;
1749 else if (pb
->geqs
[e
].color
== omega_red
)
1751 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1753 fprintf (dump_file
, "Removing Redundant Equation: ");
1754 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e
]));
1755 fprintf (dump_file
, "\n");
1756 fprintf (dump_file
, "[d] Made Redundant by: ");
1757 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e2
]));
1758 fprintf (dump_file
, "\n");
1761 omega_delete_geq (pb
, e
, n_vars
);
1768 if (pb
->geqs
[e
].color
== omega_red
)
1769 fast_lookup_red
[MAX_KEYS
+ eKey
] = e
;
1771 fast_lookup
[MAX_KEYS
+ eKey
] = e
;
1775 create_color
= false;
1776 return coupled_subscripts
? normalize_coupled
: normalize_uncoupled
;
1779 /* Divide the coefficients of EQN by their gcd. N_VARS is the number
1780 of variables in EQN. */
1783 divide_eqn_by_gcd (eqn eqn
, int n_vars
)
1787 for (var
= n_vars
; var
>= 0; var
--)
1788 g
= gcd (abs (eqn
->coef
[var
]), g
);
1791 for (var
= n_vars
; var
>= 0; var
--)
1792 eqn
->coef
[var
] = eqn
->coef
[var
] / g
;
1795 /* Rewrite some non-safe variables in function of protected
1796 wildcard variables. */
1799 cleanout_wildcards (omega_pb pb
)
1802 int n_vars
= pb
->num_vars
;
1803 bool renormalize
= false;
1805 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
1806 for (i
= n_vars
; !omega_safe_var_p (pb
, i
); i
--)
1807 if (pb
->eqs
[e
].coef
[i
] != 0)
1809 /* i is the last nonzero non-safe variable. */
1811 for (j
= i
- 1; !omega_safe_var_p (pb
, j
); j
--)
1812 if (pb
->eqs
[e
].coef
[j
] != 0)
1815 /* j is the next nonzero non-safe variable, or points
1816 to a safe variable: it is then a wildcard variable. */
1819 if (omega_safe_var_p (pb
, j
))
1821 eqn sub
= &(pb
->eqs
[e
]);
1822 int c
= pb
->eqs
[e
].coef
[i
];
1826 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1829 "Found a single wild card equality: ");
1830 omega_print_eq (dump_file
, pb
, &pb
->eqs
[e
]);
1831 fprintf (dump_file
, "\n");
1832 omega_print_problem (dump_file
, pb
);
1835 for (e2
= pb
->num_eqs
- 1; e2
>= 0; e2
--)
1836 if (e
!= e2
&& pb
->eqs
[e2
].coef
[i
]
1837 && (pb
->eqs
[e2
].color
== omega_red
1838 || (pb
->eqs
[e2
].color
== omega_black
1839 && pb
->eqs
[e
].color
== omega_black
)))
1841 eqn eqn
= &(pb
->eqs
[e2
]);
1844 for (var
= n_vars
; var
>= 0; var
--)
1845 eqn
->coef
[var
] *= a
;
1849 for (var
= n_vars
; var
>= 0; var
--)
1850 eqn
->coef
[var
] -= sub
->coef
[var
] * k
/ c
;
1853 divide_eqn_by_gcd (eqn
, n_vars
);
1856 for (e2
= pb
->num_geqs
- 1; e2
>= 0; e2
--)
1857 if (pb
->geqs
[e2
].coef
[i
]
1858 && (pb
->geqs
[e2
].color
== omega_red
1859 || (pb
->eqs
[e
].color
== omega_black
1860 && pb
->geqs
[e2
].color
== omega_black
)))
1862 eqn eqn
= &(pb
->geqs
[e2
]);
1865 for (var
= n_vars
; var
>= 0; var
--)
1866 eqn
->coef
[var
] *= a
;
1870 for (var
= n_vars
; var
>= 0; var
--)
1871 eqn
->coef
[var
] -= sub
->coef
[var
] * k
/ c
;
1878 for (e2
= pb
->num_subs
- 1; e2
>= 0; e2
--)
1879 if (pb
->subs
[e2
].coef
[i
]
1880 && (pb
->subs
[e2
].color
== omega_red
1881 || (pb
->subs
[e2
].color
== omega_black
1882 && pb
->eqs
[e
].color
== omega_black
)))
1884 eqn eqn
= &(pb
->subs
[e2
]);
1887 for (var
= n_vars
; var
>= 0; var
--)
1888 eqn
->coef
[var
] *= a
;
1892 for (var
= n_vars
; var
>= 0; var
--)
1893 eqn
->coef
[var
] -= sub
->coef
[var
] * k
/ c
;
1896 divide_eqn_by_gcd (eqn
, n_vars
);
1899 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1901 fprintf (dump_file
, "cleaned-out wildcard: ");
1902 omega_print_problem (dump_file
, pb
);
1909 normalize_omega_problem (pb
);
1912 /* Swap values contained in I and J. */
1915 swap (int *i
, int *j
)
1923 /* Swap values contained in I and J. */
1926 bswap (bool *i
, bool *j
)
1934 /* Make variable IDX unprotected in PB, by swapping its index at the
1935 PB->safe_vars rank. */
1938 omega_unprotect_1 (omega_pb pb
, int *idx
, bool *unprotect
)
1940 /* If IDX is protected... */
1941 if (*idx
< pb
->safe_vars
)
1943 /* ... swap its index with the last non protected index. */
1944 int j
= pb
->safe_vars
;
1947 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
1949 pb
->geqs
[e
].touched
= 1;
1950 swap (&pb
->geqs
[e
].coef
[*idx
], &pb
->geqs
[e
].coef
[j
]);
1953 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
1954 swap (&pb
->eqs
[e
].coef
[*idx
], &pb
->eqs
[e
].coef
[j
]);
1956 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
1957 swap (&pb
->subs
[e
].coef
[*idx
], &pb
->subs
[e
].coef
[j
]);
1960 bswap (&unprotect
[*idx
], &unprotect
[j
]);
1962 swap (&pb
->var
[*idx
], &pb
->var
[j
]);
1963 pb
->forwarding_address
[pb
->var
[*idx
]] = *idx
;
1964 pb
->forwarding_address
[pb
->var
[j
]] = j
;
1968 /* The variable at pb->safe_vars is also unprotected now. */
1972 /* During the Fourier-Motzkin elimination some variables are
1973 substituted with other variables. This function resurrects the
1974 substituted variables in PB. */
1977 resurrect_subs (omega_pb pb
)
1979 if (pb
->num_subs
> 0
1980 && please_no_equalities_in_simplified_problems
== 0)
1984 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1987 "problem reduced, bringing variables back to life\n");
1988 omega_print_problem (dump_file
, pb
);
1991 for (i
= 1; omega_safe_var_p (pb
, i
); i
++)
1992 if (omega_wildcard_p (pb
, i
))
1993 omega_unprotect_1 (pb
, &i
, NULL
);
1996 n
= MAX (pb
->num_vars
, pb
->safe_vars
+ m
);
1998 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
1999 if (single_var_geq (&pb
->geqs
[e
], pb
->num_vars
))
2001 if (!omega_safe_var_p (pb
, abs (pb
->geqs
[e
].key
)))
2002 pb
->geqs
[e
].key
+= (pb
->geqs
[e
].key
> 0 ? m
: -m
);
2006 pb
->geqs
[e
].touched
= 1;
2007 pb
->geqs
[e
].key
= 0;
2010 for (i
= pb
->num_vars
; !omega_safe_var_p (pb
, i
); i
--)
2012 pb
->var
[i
+ m
] = pb
->var
[i
];
2014 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2015 pb
->geqs
[e
].coef
[i
+ m
] = pb
->geqs
[e
].coef
[i
];
2017 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
2018 pb
->eqs
[e
].coef
[i
+ m
] = pb
->eqs
[e
].coef
[i
];
2020 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
2021 pb
->subs
[e
].coef
[i
+ m
] = pb
->subs
[e
].coef
[i
];
2024 for (i
= pb
->safe_vars
+ m
; !omega_safe_var_p (pb
, i
); i
--)
2026 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2027 pb
->geqs
[e
].coef
[i
] = 0;
2029 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
2030 pb
->eqs
[e
].coef
[i
] = 0;
2032 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
2033 pb
->subs
[e
].coef
[i
] = 0;
2038 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
2040 pb
->var
[pb
->safe_vars
+ 1 + e
] = pb
->subs
[e
].key
;
2041 omega_copy_eqn (&(pb
->eqs
[pb
->num_eqs
]), &(pb
->subs
[e
]),
2043 pb
->eqs
[pb
->num_eqs
].coef
[pb
->safe_vars
+ 1 + e
] = -1;
2044 pb
->eqs
[pb
->num_eqs
].color
= omega_black
;
2046 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2048 fprintf (dump_file
, "brought back: ");
2049 omega_print_eq (dump_file
, pb
, &pb
->eqs
[pb
->num_eqs
]);
2050 fprintf (dump_file
, "\n");
2054 gcc_assert (pb
->num_eqs
<= OMEGA_MAX_EQS
);
2060 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2062 fprintf (dump_file
, "variables brought back to life\n");
2063 omega_print_problem (dump_file
, pb
);
2066 cleanout_wildcards (pb
);
2071 implies (unsigned int a
, unsigned int b
)
2073 return (a
== (a
& b
));
2076 /* Eliminate redundant equations in PB. When EXPENSIVE is true, an
2077 extra step is performed. Returns omega_false when there exist no
2078 solution, omega_true otherwise. */
2081 omega_eliminate_redundant (omega_pb pb
, bool expensive
)
2083 int c
, e
, e1
, e2
, e3
, p
, q
, i
, k
, alpha
, alpha1
, alpha2
, alpha3
;
2084 bool *is_dead
= XNEWVEC (bool, OMEGA_MAX_GEQS
);
2085 omega_pb tmp_problem
;
2087 /* {P,Z,N}EQS = {Positive,Zero,Negative} Equations. */
2088 unsigned int *peqs
= XNEWVEC (unsigned int, OMEGA_MAX_GEQS
);
2089 unsigned int *zeqs
= XNEWVEC (unsigned int, OMEGA_MAX_GEQS
);
2090 unsigned int *neqs
= XNEWVEC (unsigned int, OMEGA_MAX_GEQS
);
2092 /* PP = Possible Positives, PZ = Possible Zeros, PN = Possible Negatives */
2093 unsigned int pp
, pz
, pn
;
2095 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2097 fprintf (dump_file
, "in eliminate Redundant:\n");
2098 omega_print_problem (dump_file
, pb
);
2101 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2106 peqs
[e
] = zeqs
[e
] = neqs
[e
] = 0;
2108 for (i
= pb
->num_vars
; i
>= 1; i
--)
2110 if (pb
->geqs
[e
].coef
[i
] > 0)
2112 else if (pb
->geqs
[e
].coef
[i
] < 0)
2122 for (e1
= pb
->num_geqs
- 1; e1
>= 0; e1
--)
2124 for (e2
= e1
- 1; e2
>= 0; e2
--)
2127 for (p
= pb
->num_vars
; p
> 1; p
--)
2128 for (q
= p
- 1; q
> 0; q
--)
2129 if ((alpha
= pb
->geqs
[e1
].coef
[p
] * pb
->geqs
[e2
].coef
[q
]
2130 - pb
->geqs
[e2
].coef
[p
] * pb
->geqs
[e1
].coef
[q
]) != 0)
2136 pz
= ((zeqs
[e1
] & zeqs
[e2
]) | (peqs
[e1
] & neqs
[e2
])
2137 | (neqs
[e1
] & peqs
[e2
]));
2138 pp
= peqs
[e1
] | peqs
[e2
];
2139 pn
= neqs
[e1
] | neqs
[e2
];
2141 for (e3
= pb
->num_geqs
- 1; e3
>= 0; e3
--)
2142 if (e3
!= e1
&& e3
!= e2
)
2144 if (!implies (zeqs
[e3
], pz
))
2147 alpha1
= (pb
->geqs
[e2
].coef
[q
] * pb
->geqs
[e3
].coef
[p
]
2148 - pb
->geqs
[e2
].coef
[p
] * pb
->geqs
[e3
].coef
[q
]);
2149 alpha2
= -(pb
->geqs
[e1
].coef
[q
] * pb
->geqs
[e3
].coef
[p
]
2150 - pb
->geqs
[e1
].coef
[p
] * pb
->geqs
[e3
].coef
[q
]);
2153 if (alpha1
* alpha2
<= 0)
2165 /* Trying to prove e3 is redundant. */
2166 if (!implies (peqs
[e3
], pp
)
2167 || !implies (neqs
[e3
], pn
))
2170 if (pb
->geqs
[e3
].color
== omega_black
2171 && (pb
->geqs
[e1
].color
== omega_red
2172 || pb
->geqs
[e2
].color
== omega_red
))
2175 for (k
= pb
->num_vars
; k
>= 1; k
--)
2176 if (alpha3
* pb
->geqs
[e3
].coef
[k
]
2177 != (alpha1
* pb
->geqs
[e1
].coef
[k
]
2178 + alpha2
* pb
->geqs
[e2
].coef
[k
]))
2181 c
= (alpha1
* pb
->geqs
[e1
].coef
[0]
2182 + alpha2
* pb
->geqs
[e2
].coef
[0]);
2184 if (c
< alpha3
* (pb
->geqs
[e3
].coef
[0] + 1))
2186 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2189 "found redundant inequality\n");
2191 "alpha1, alpha2, alpha3 = %d,%d,%d\n",
2192 alpha1
, alpha2
, alpha3
);
2194 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e1
]));
2195 fprintf (dump_file
, "\n");
2196 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e2
]));
2197 fprintf (dump_file
, "\n=> ");
2198 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e3
]));
2199 fprintf (dump_file
, "\n\n");
2207 /* Trying to prove e3 <= 0 and therefore e3 = 0,
2208 or trying to prove e3 < 0, and therefore the
2209 problem has no solutions. */
2210 if (!implies (peqs
[e3
], pn
)
2211 || !implies (neqs
[e3
], pp
))
2214 if (pb
->geqs
[e1
].color
== omega_red
2215 || pb
->geqs
[e2
].color
== omega_red
2216 || pb
->geqs
[e3
].color
== omega_red
)
2220 /* verify alpha1*v1+alpha2*v2 = alpha3*v3 */
2221 for (k
= pb
->num_vars
; k
>= 1; k
--)
2222 if (alpha3
* pb
->geqs
[e3
].coef
[k
]
2223 != (alpha1
* pb
->geqs
[e1
].coef
[k
]
2224 + alpha2
* pb
->geqs
[e2
].coef
[k
]))
2227 c
= (alpha1
* pb
->geqs
[e1
].coef
[0]
2228 + alpha2
* pb
->geqs
[e2
].coef
[0]);
2230 if (c
< alpha3
* (pb
->geqs
[e3
].coef
[0]))
2232 /* We just proved e3 < 0, so no solutions exist. */
2233 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2236 "found implied over tight inequality\n");
2238 "alpha1, alpha2, alpha3 = %d,%d,%d\n",
2239 alpha1
, alpha2
, -alpha3
);
2240 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e1
]));
2241 fprintf (dump_file
, "\n");
2242 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e2
]));
2243 fprintf (dump_file
, "\n=> not ");
2244 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e3
]));
2245 fprintf (dump_file
, "\n\n");
2253 else if (c
< alpha3
* (pb
->geqs
[e3
].coef
[0] - 1))
2255 /* We just proved that e3 <=0, so e3 = 0. */
2256 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2259 "found implied tight inequality\n");
2261 "alpha1, alpha2, alpha3 = %d,%d,%d\n",
2262 alpha1
, alpha2
, -alpha3
);
2263 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e1
]));
2264 fprintf (dump_file
, "\n");
2265 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e2
]));
2266 fprintf (dump_file
, "\n=> inverse ");
2267 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e3
]));
2268 fprintf (dump_file
, "\n\n");
2271 omega_copy_eqn (&pb
->eqs
[pb
->num_eqs
++],
2272 &pb
->geqs
[e3
], pb
->num_vars
);
2273 gcc_assert (pb
->num_eqs
<= OMEGA_MAX_EQS
);
2274 adding_equality_constraint (pb
, pb
->num_eqs
- 1);
2282 /* Delete the inequalities that were marked as dead. */
2283 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2285 omega_delete_geq (pb
, e
, pb
->num_vars
);
2288 goto eliminate_redundant_done
;
2290 tmp_problem
= XNEW (struct omega_pb
);
2293 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2295 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2298 "checking equation %d to see if it is redundant: ", e
);
2299 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e
]));
2300 fprintf (dump_file
, "\n");
2303 omega_copy_problem (tmp_problem
, pb
);
2304 omega_negate_geq (tmp_problem
, e
);
2305 tmp_problem
->safe_vars
= 0;
2306 tmp_problem
->variables_freed
= false;
2308 if (omega_solve_problem (tmp_problem
, omega_false
) == omega_false
)
2309 omega_delete_geq (pb
, e
, pb
->num_vars
);
2315 if (!omega_reduce_with_subs
)
2317 resurrect_subs (pb
);
2318 gcc_assert (please_no_equalities_in_simplified_problems
2319 || pb
->num_subs
== 0);
2322 eliminate_redundant_done
:
2330 /* For each inequality that has coefficients bigger than 20, try to
2331 create a new constraint that cannot be derived from the original
2332 constraint and that has smaller coefficients. Add the new
2333 constraint at the end of geqs. Return the number of inequalities
2334 that have been added to PB. */
2337 smooth_weird_equations (omega_pb pb
)
2339 int e1
, e2
, e3
, p
, q
, k
, alpha
, alpha1
, alpha2
, alpha3
;
2344 for (e1
= pb
->num_geqs
- 1; e1
>= 0; e1
--)
2345 if (pb
->geqs
[e1
].color
== omega_black
)
2349 for (v
= pb
->num_vars
; v
>= 1; v
--)
2350 if (pb
->geqs
[e1
].coef
[v
] != 0 && abs (pb
->geqs
[e1
].coef
[v
]) < g
)
2351 g
= abs (pb
->geqs
[e1
].coef
[v
]);
2358 for (v
= pb
->num_vars
; v
>= 1; v
--)
2359 pb
->geqs
[e3
].coef
[v
] = int_div (6 * pb
->geqs
[e1
].coef
[v
] + g
/ 2,
2362 pb
->geqs
[e3
].color
= omega_black
;
2363 pb
->geqs
[e3
].touched
= 1;
2365 pb
->geqs
[e3
].coef
[0] = 9997;
2367 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2369 fprintf (dump_file
, "Checking to see if we can derive: ");
2370 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e3
]);
2371 fprintf (dump_file
, "\n from: ");
2372 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e1
]);
2373 fprintf (dump_file
, "\n");
2376 for (e2
= pb
->num_geqs
- 1; e2
>= 0; e2
--)
2377 if (e1
!= e2
&& pb
->geqs
[e2
].color
== omega_black
)
2379 for (p
= pb
->num_vars
; p
> 1; p
--)
2381 for (q
= p
- 1; q
> 0; q
--)
2384 (pb
->geqs
[e1
].coef
[p
] * pb
->geqs
[e2
].coef
[q
] -
2385 pb
->geqs
[e2
].coef
[p
] * pb
->geqs
[e1
].coef
[q
]);
2394 alpha1
= (pb
->geqs
[e2
].coef
[q
] * pb
->geqs
[e3
].coef
[p
]
2395 - pb
->geqs
[e2
].coef
[p
] * pb
->geqs
[e3
].coef
[q
]);
2396 alpha2
= -(pb
->geqs
[e1
].coef
[q
] * pb
->geqs
[e3
].coef
[p
]
2397 - pb
->geqs
[e1
].coef
[p
] * pb
->geqs
[e3
].coef
[q
]);
2400 if (alpha1
* alpha2
<= 0)
2412 /* Try to prove e3 is redundant: verify
2413 alpha1*v1 + alpha2*v2 = alpha3*v3. */
2414 for (k
= pb
->num_vars
; k
>= 1; k
--)
2415 if (alpha3
* pb
->geqs
[e3
].coef
[k
]
2416 != (alpha1
* pb
->geqs
[e1
].coef
[k
]
2417 + alpha2
* pb
->geqs
[e2
].coef
[k
]))
2420 c
= alpha1
* pb
->geqs
[e1
].coef
[0]
2421 + alpha2
* pb
->geqs
[e2
].coef
[0];
2423 if (c
< alpha3
* (pb
->geqs
[e3
].coef
[0] + 1))
2424 pb
->geqs
[e3
].coef
[0] = int_div (c
, alpha3
);
2429 if (pb
->geqs
[e3
].coef
[0] < 9997)
2434 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2437 "Smoothing weird equations; adding:\n");
2438 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e3
]);
2439 fprintf (dump_file
, "\nto:\n");
2440 omega_print_problem (dump_file
, pb
);
2441 fprintf (dump_file
, "\n\n");
2449 /* Replace tuples of inequalities, that define upper and lower half
2450 spaces, with an equation. */
2453 coalesce (omega_pb pb
)
2458 int found_something
= 0;
2460 for (e
= 0; e
< pb
->num_geqs
; e
++)
2461 if (pb
->geqs
[e
].color
== omega_red
)
2467 is_dead
= XNEWVEC (bool, OMEGA_MAX_GEQS
);
2469 for (e
= 0; e
< pb
->num_geqs
; e
++)
2472 for (e
= 0; e
< pb
->num_geqs
; e
++)
2473 if (pb
->geqs
[e
].color
== omega_red
2474 && !pb
->geqs
[e
].touched
)
2475 for (e2
= e
+ 1; e2
< pb
->num_geqs
; e2
++)
2476 if (!pb
->geqs
[e2
].touched
2477 && pb
->geqs
[e
].key
== -pb
->geqs
[e2
].key
2478 && pb
->geqs
[e
].coef
[0] == -pb
->geqs
[e2
].coef
[0]
2479 && pb
->geqs
[e2
].color
== omega_red
)
2481 omega_copy_eqn (&pb
->eqs
[pb
->num_eqs
++], &pb
->geqs
[e
],
2483 gcc_assert (pb
->num_eqs
<= OMEGA_MAX_EQS
);
2489 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2491 omega_delete_geq (pb
, e
, pb
->num_vars
);
2493 if (dump_file
&& (dump_flags
& TDF_DETAILS
) && found_something
)
2495 fprintf (dump_file
, "Coalesced pb->geqs into %d EQ's:\n",
2497 omega_print_problem (dump_file
, pb
);
2503 /* Eliminate red inequalities from PB. When ELIMINATE_ALL is
2504 true, continue to eliminate all the red inequalities. */
2507 omega_eliminate_red (omega_pb pb
, bool eliminate_all
)
2509 int e
, e2
, e3
, i
, j
, k
, a
, alpha1
, alpha2
;
2511 bool *is_dead
= XNEWVEC (bool, OMEGA_MAX_GEQS
);
2514 omega_pb tmp_problem
;
2516 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2518 fprintf (dump_file
, "in eliminate RED:\n");
2519 omega_print_problem (dump_file
, pb
);
2522 if (pb
->num_eqs
> 0)
2523 omega_simplify_problem (pb
);
2525 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2528 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2529 if (pb
->geqs
[e
].color
== omega_black
&& !is_dead
[e
])
2530 for (e2
= e
- 1; e2
>= 0; e2
--)
2531 if (pb
->geqs
[e2
].color
== omega_black
2536 for (i
= pb
->num_vars
; i
> 1; i
--)
2537 for (j
= i
- 1; j
> 0; j
--)
2538 if ((a
= (pb
->geqs
[e
].coef
[i
] * pb
->geqs
[e2
].coef
[j
]
2539 - pb
->geqs
[e2
].coef
[i
] * pb
->geqs
[e
].coef
[j
])) != 0)
2545 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2548 "found two equations to combine, i = %s, ",
2549 omega_variable_to_str (pb
, i
));
2550 fprintf (dump_file
, "j = %s, alpha = %d\n",
2551 omega_variable_to_str (pb
, j
), a
);
2552 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e
]));
2553 fprintf (dump_file
, "\n");
2554 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e2
]));
2555 fprintf (dump_file
, "\n");
2558 for (e3
= pb
->num_geqs
- 1; e3
>= 0; e3
--)
2559 if (pb
->geqs
[e3
].color
== omega_red
)
2561 alpha1
= (pb
->geqs
[e2
].coef
[j
] * pb
->geqs
[e3
].coef
[i
]
2562 - pb
->geqs
[e2
].coef
[i
] * pb
->geqs
[e3
].coef
[j
]);
2563 alpha2
= -(pb
->geqs
[e
].coef
[j
] * pb
->geqs
[e3
].coef
[i
]
2564 - pb
->geqs
[e
].coef
[i
] * pb
->geqs
[e3
].coef
[j
]);
2566 if ((a
> 0 && alpha1
> 0 && alpha2
> 0)
2567 || (a
< 0 && alpha1
< 0 && alpha2
< 0))
2569 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2572 "alpha1 = %d, alpha2 = %d;"
2573 "comparing against: ",
2575 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e3
]));
2576 fprintf (dump_file
, "\n");
2579 for (k
= pb
->num_vars
; k
>= 0; k
--)
2581 c
= (alpha1
* pb
->geqs
[e
].coef
[k
]
2582 + alpha2
* pb
->geqs
[e2
].coef
[k
]);
2584 if (c
!= a
* pb
->geqs
[e3
].coef
[k
])
2587 if (dump_file
&& (dump_flags
& TDF_DETAILS
) && k
> 0)
2588 fprintf (dump_file
, " %s: %d, %d\n",
2589 omega_variable_to_str (pb
, k
), c
,
2590 a
* pb
->geqs
[e3
].coef
[k
]);
2595 ((a
> 0 && c
< a
* pb
->geqs
[e3
].coef
[k
])
2596 || (a
< 0 && c
> a
* pb
->geqs
[e3
].coef
[k
]))))
2598 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2602 "red equation#%d is dead "
2603 "(%d dead so far, %d remain)\n",
2605 pb
->num_geqs
- dead_count
);
2606 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e
]));
2607 fprintf (dump_file
, "\n");
2608 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e2
]));
2609 fprintf (dump_file
, "\n");
2610 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e3
]));
2611 fprintf (dump_file
, "\n");
2619 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2621 omega_delete_geq (pb
, e
, pb
->num_vars
);
2625 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2627 fprintf (dump_file
, "in eliminate RED, easy tests done:\n");
2628 omega_print_problem (dump_file
, pb
);
2631 for (red_found
= 0, e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2632 if (pb
->geqs
[e
].color
== omega_red
)
2637 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2638 fprintf (dump_file
, "fast checks worked\n");
2640 if (!omega_reduce_with_subs
)
2641 gcc_assert (please_no_equalities_in_simplified_problems
2642 || pb
->num_subs
== 0);
2647 if (!omega_verify_simplification
2648 && verify_omega_pb (pb
) == omega_false
)
2652 tmp_problem
= XNEW (struct omega_pb
);
2654 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2655 if (pb
->geqs
[e
].color
== omega_red
)
2657 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2660 "checking equation %d to see if it is redundant: ", e
);
2661 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[e
]));
2662 fprintf (dump_file
, "\n");
2665 omega_copy_problem (tmp_problem
, pb
);
2666 omega_negate_geq (tmp_problem
, e
);
2667 tmp_problem
->safe_vars
= 0;
2668 tmp_problem
->variables_freed
= false;
2669 tmp_problem
->num_subs
= 0;
2671 if (omega_solve_problem (tmp_problem
, omega_false
) == omega_false
)
2673 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2674 fprintf (dump_file
, "it is redundant\n");
2675 omega_delete_geq (pb
, e
, pb
->num_vars
);
2679 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2680 fprintf (dump_file
, "it is not redundant\n");
2684 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2685 fprintf (dump_file
, "no need to check other red equations\n");
2693 /* omega_simplify_problem (pb); */
2695 if (!omega_reduce_with_subs
)
2696 gcc_assert (please_no_equalities_in_simplified_problems
2697 || pb
->num_subs
== 0);
2700 /* Transform some wildcard variables to non-safe variables. */
2703 chain_unprotect (omega_pb pb
)
2706 bool *unprotect
= XNEWVEC (bool, OMEGA_MAX_VARS
);
2708 for (i
= 1; omega_safe_var_p (pb
, i
); i
++)
2710 unprotect
[i
] = omega_wildcard_p (pb
, i
);
2712 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
2713 if (pb
->subs
[e
].coef
[i
])
2714 unprotect
[i
] = false;
2717 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2719 fprintf (dump_file
, "Doing chain reaction unprotection\n");
2720 omega_print_problem (dump_file
, pb
);
2722 for (i
= 1; omega_safe_var_p (pb
, i
); i
++)
2724 fprintf (dump_file
, "unprotecting %s\n",
2725 omega_variable_to_str (pb
, i
));
2728 for (i
= 1; omega_safe_var_p (pb
, i
); i
++)
2730 omega_unprotect_1 (pb
, &i
, unprotect
);
2732 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2734 fprintf (dump_file
, "After chain reactions\n");
2735 omega_print_problem (dump_file
, pb
);
2741 /* Reduce problem PB. */
2744 omega_problem_reduced (omega_pb pb
)
2746 if (omega_verify_simplification
2747 && !in_approximate_mode
2748 && verify_omega_pb (pb
) == omega_false
)
2751 if (PARAM_VALUE (PARAM_OMEGA_ELIMINATE_REDUNDANT_CONSTRAINTS
)
2752 && !omega_eliminate_redundant (pb
, true))
2755 omega_found_reduction
= omega_true
;
2757 if (!please_no_equalities_in_simplified_problems
)
2760 if (omega_reduce_with_subs
2761 || please_no_equalities_in_simplified_problems
)
2762 chain_unprotect (pb
);
2764 resurrect_subs (pb
);
2766 if (!return_single_result
)
2770 for (i
= 1; omega_safe_var_p (pb
, i
); i
++)
2771 pb
->forwarding_address
[pb
->var
[i
]] = i
;
2773 for (i
= 0; i
< pb
->num_subs
; i
++)
2774 pb
->forwarding_address
[pb
->subs
[i
].key
] = -i
- 1;
2776 (*omega_when_reduced
) (pb
);
2779 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2781 fprintf (dump_file
, "-------------------------------------------\n");
2782 fprintf (dump_file
, "problem reduced:\n");
2783 omega_print_problem (dump_file
, pb
);
2784 fprintf (dump_file
, "-------------------------------------------\n");
2788 /* Eliminates all the free variables for problem PB, that is all the
2789 variables from FV to PB->NUM_VARS. */
2792 omega_free_eliminations (omega_pb pb
, int fv
)
2794 bool try_again
= true;
2796 int n_vars
= pb
->num_vars
;
2802 for (i
= n_vars
; i
> fv
; i
--)
2804 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2805 if (pb
->geqs
[e
].coef
[i
])
2810 else if (pb
->geqs
[e
].coef
[i
] > 0)
2812 for (e2
= e
- 1; e2
>= 0; e2
--)
2813 if (pb
->geqs
[e2
].coef
[i
] < 0)
2818 for (e2
= e
- 1; e2
>= 0; e2
--)
2819 if (pb
->geqs
[e2
].coef
[i
] > 0)
2826 for (e3
= pb
->num_subs
- 1; e3
>= 0; e3
--)
2827 if (pb
->subs
[e3
].coef
[i
])
2833 for (e3
= pb
->num_eqs
- 1; e3
>= 0; e3
--)
2834 if (pb
->eqs
[e3
].coef
[i
])
2840 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2841 fprintf (dump_file
, "a free elimination of %s\n",
2842 omega_variable_to_str (pb
, i
));
2846 omega_delete_geq (pb
, e
, n_vars
);
2848 for (e
--; e
>= 0; e
--)
2849 if (pb
->geqs
[e
].coef
[i
])
2850 omega_delete_geq (pb
, e
, n_vars
);
2852 try_again
= (i
< n_vars
);
2855 omega_delete_variable (pb
, i
);
2856 n_vars
= pb
->num_vars
;
2861 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2863 fprintf (dump_file
, "\nafter free eliminations:\n");
2864 omega_print_problem (dump_file
, pb
);
2865 fprintf (dump_file
, "\n");
2869 /* Do free red eliminations. */
2872 free_red_eliminations (omega_pb pb
)
2874 bool try_again
= true;
2876 int n_vars
= pb
->num_vars
;
2877 bool *is_red_var
= XNEWVEC (bool, OMEGA_MAX_VARS
);
2878 bool *is_dead_var
= XNEWVEC (bool, OMEGA_MAX_VARS
);
2879 bool *is_dead_geq
= XNEWVEC (bool, OMEGA_MAX_GEQS
);
2881 for (i
= n_vars
; i
> 0; i
--)
2883 is_red_var
[i
] = false;
2884 is_dead_var
[i
] = false;
2887 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2889 is_dead_geq
[e
] = false;
2891 if (pb
->geqs
[e
].color
== omega_red
)
2892 for (i
= n_vars
; i
> 0; i
--)
2893 if (pb
->geqs
[e
].coef
[i
] != 0)
2894 is_red_var
[i
] = true;
2900 for (i
= n_vars
; i
> 0; i
--)
2901 if (!is_red_var
[i
] && !is_dead_var
[i
])
2903 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2904 if (!is_dead_geq
[e
] && pb
->geqs
[e
].coef
[i
])
2909 else if (pb
->geqs
[e
].coef
[i
] > 0)
2911 for (e2
= e
- 1; e2
>= 0; e2
--)
2912 if (!is_dead_geq
[e2
] && pb
->geqs
[e2
].coef
[i
] < 0)
2917 for (e2
= e
- 1; e2
>= 0; e2
--)
2918 if (!is_dead_geq
[e2
] && pb
->geqs
[e2
].coef
[i
] > 0)
2925 for (e3
= pb
->num_subs
- 1; e3
>= 0; e3
--)
2926 if (pb
->subs
[e3
].coef
[i
])
2932 for (e3
= pb
->num_eqs
- 1; e3
>= 0; e3
--)
2933 if (pb
->eqs
[e3
].coef
[i
])
2939 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2940 fprintf (dump_file
, "a free red elimination of %s\n",
2941 omega_variable_to_str (pb
, i
));
2944 if (pb
->geqs
[e
].coef
[i
])
2945 is_dead_geq
[e
] = true;
2948 is_dead_var
[i
] = true;
2953 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
2955 omega_delete_geq (pb
, e
, n_vars
);
2957 for (i
= n_vars
; i
> 0; i
--)
2959 omega_delete_variable (pb
, i
);
2961 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2963 fprintf (dump_file
, "\nafter free red eliminations:\n");
2964 omega_print_problem (dump_file
, pb
);
2965 fprintf (dump_file
, "\n");
2973 /* For equation EQ of the form "0 = EQN", insert in PB two
2974 inequalities "0 <= EQN" and "0 <= -EQN". */
2977 omega_convert_eq_to_geqs (omega_pb pb
, int eq
)
2981 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2982 fprintf (dump_file
, "Converting Eq to Geqs\n");
2984 /* Insert "0 <= EQN". */
2985 omega_copy_eqn (&pb
->geqs
[pb
->num_geqs
], &pb
->eqs
[eq
], pb
->num_vars
);
2986 pb
->geqs
[pb
->num_geqs
].touched
= 1;
2989 /* Insert "0 <= -EQN". */
2990 omega_copy_eqn (&pb
->geqs
[pb
->num_geqs
], &pb
->eqs
[eq
], pb
->num_vars
);
2991 pb
->geqs
[pb
->num_geqs
].touched
= 1;
2993 for (i
= 0; i
<= pb
->num_vars
; i
++)
2994 pb
->geqs
[pb
->num_geqs
].coef
[i
] *= -1;
2998 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2999 omega_print_problem (dump_file
, pb
);
3002 /* Eliminates variable I from PB. */
3005 omega_do_elimination (omega_pb pb
, int e
, int i
)
3007 eqn sub
= omega_alloc_eqns (0, 1);
3009 int n_vars
= pb
->num_vars
;
3011 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3012 fprintf (dump_file
, "eliminating variable %s\n",
3013 omega_variable_to_str (pb
, i
));
3015 omega_copy_eqn (sub
, &pb
->eqs
[e
], pb
->num_vars
);
3018 if (c
== 1 || c
== -1)
3020 if (pb
->eqs
[e
].color
== omega_red
)
3023 omega_substitute_red (pb
, sub
, i
, c
, &fB
);
3025 omega_convert_eq_to_geqs (pb
, e
);
3027 omega_delete_variable (pb
, i
);
3031 omega_substitute (pb
, sub
, i
, c
);
3032 omega_delete_variable (pb
, i
);
3040 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3041 fprintf (dump_file
, "performing non-exact elimination, c = %d\n", c
);
3043 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
3044 if (pb
->eqs
[e
].coef
[i
])
3046 eqn eqn
= &(pb
->eqs
[e
]);
3048 for (j
= n_vars
; j
>= 0; j
--)
3052 eqn
->color
|= sub
->color
;
3053 for (j
= n_vars
; j
>= 0; j
--)
3054 eqn
->coef
[j
] -= sub
->coef
[j
] * k
/ c
;
3057 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
3058 if (pb
->geqs
[e
].coef
[i
])
3060 eqn eqn
= &(pb
->geqs
[e
]);
3063 if (sub
->color
== omega_red
)
3064 eqn
->color
= omega_red
;
3066 for (j
= n_vars
; j
>= 0; j
--)
3073 for (j
= n_vars
; j
>= 0; j
--)
3074 eqn
->coef
[j
] -= sub
->coef
[j
] * k
/ c
;
3078 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
3079 if (pb
->subs
[e
].coef
[i
])
3081 eqn eqn
= &(pb
->subs
[e
]);
3084 gcc_assert (sub
->color
== omega_black
);
3085 for (j
= n_vars
; j
>= 0; j
--)
3089 for (j
= n_vars
; j
>= 0; j
--)
3090 eqn
->coef
[j
] -= sub
->coef
[j
] * k
/ c
;
3093 if (in_approximate_mode
)
3094 omega_delete_variable (pb
, i
);
3096 omega_convert_eq_to_geqs (pb
, e2
);
3099 omega_free_eqns (sub
, 1);
3102 /* Helper function for printing "sorry, no solution". */
3104 static inline enum omega_result
3105 omega_problem_has_no_solution (void)
3107 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3108 fprintf (dump_file
, "\nequations have no solution \n");
3113 /* Helper function: solve equations in PB one at a time, following the
3114 DESIRED_RES result. */
3116 static enum omega_result
3117 omega_solve_eq (omega_pb pb
, enum omega_result desired_res
)
3124 if (dump_file
&& (dump_flags
& TDF_DETAILS
) && pb
->num_eqs
> 0)
3126 fprintf (dump_file
, "\nomega_solve_eq (%d, %d)\n",
3127 desired_res
, may_be_red
);
3128 omega_print_problem (dump_file
, pb
);
3129 fprintf (dump_file
, "\n");
3135 j
= pb
->num_eqs
- 1;
3141 while (i
<= j
&& pb
->eqs
[i
].color
== omega_red
)
3144 while (i
<= j
&& pb
->eqs
[j
].color
== omega_black
)
3150 eq
= omega_alloc_eqns (0, 1);
3151 omega_copy_eqn (eq
, &pb
->eqs
[i
], pb
->num_vars
);
3152 omega_copy_eqn (&pb
->eqs
[i
], &pb
->eqs
[j
], pb
->num_vars
);
3153 omega_copy_eqn (&pb
->eqs
[j
], eq
, pb
->num_vars
);
3154 omega_free_eqns (eq
, 1);
3160 /* Eliminate all EQ equations */
3161 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
3163 eqn eqn
= &(pb
->eqs
[e
]);
3166 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3167 fprintf (dump_file
, "----\n");
3169 for (i
= pb
->num_vars
; i
> 0; i
--)
3175 for (j
= i
- 1; j
> 0; j
--)
3179 /* i is the position of last nonzero coefficient,
3180 g is the coefficient of i,
3181 j is the position of next nonzero coefficient. */
3185 if (eqn
->coef
[0] % g
!= 0)
3186 return omega_problem_has_no_solution ();
3188 eqn
->coef
[0] = eqn
->coef
[0] / g
;
3191 omega_do_elimination (pb
, e
, i
);
3197 if (eqn
->coef
[0] != 0)
3198 return omega_problem_has_no_solution ();
3210 omega_do_elimination (pb
, e
, i
);
3216 bool promotion_possible
=
3217 (omega_safe_var_p (pb
, j
)
3218 && pb
->safe_vars
+ 1 == i
3219 && !omega_eqn_is_red (eqn
, desired_res
)
3220 && !in_approximate_mode
);
3222 if (dump_file
&& (dump_flags
& TDF_DETAILS
) && promotion_possible
)
3223 fprintf (dump_file
, " Promotion possible\n");
3226 if (!omega_safe_var_p (pb
, j
))
3228 for (; g
!= 1 && !omega_safe_var_p (pb
, j
); j
--)
3229 g
= gcd (abs (eqn
->coef
[j
]), g
);
3232 else if (!omega_safe_var_p (pb
, i
))
3237 for (; g
!= 1 && j
> 0; j
--)
3238 g
= gcd (abs (eqn
->coef
[j
]), g
);
3242 if (eqn
->coef
[0] % g
!= 0)
3243 return omega_problem_has_no_solution ();
3245 for (j
= 0; j
<= pb
->num_vars
; j
++)
3255 for (e2
= e
- 1; e2
>= 0; e2
--)
3256 if (pb
->eqs
[e2
].coef
[i
])
3260 for (e2
= pb
->num_geqs
- 1; e2
>= 0; e2
--)
3261 if (pb
->geqs
[e2
].coef
[i
])
3265 for (e2
= pb
->num_subs
- 1; e2
>= 0; e2
--)
3266 if (pb
->subs
[e2
].coef
[i
])
3271 bool change
= false;
3273 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3275 fprintf (dump_file
, "Ha! We own it! \n");
3276 omega_print_eq (dump_file
, pb
, eqn
);
3277 fprintf (dump_file
, " \n");
3283 for (j
= i
- 1; j
>= 0; j
--)
3285 int t
= int_mod (eqn
->coef
[j
], g
);
3290 if (t
!= eqn
->coef
[j
])
3299 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3300 fprintf (dump_file
, "So what?\n");
3305 omega_name_wild_card (pb
, i
);
3307 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3309 omega_print_eq (dump_file
, pb
, eqn
);
3310 fprintf (dump_file
, " \n");
3319 if (promotion_possible
)
3321 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3323 fprintf (dump_file
, "promoting %s to safety\n",
3324 omega_variable_to_str (pb
, i
));
3325 omega_print_vars (dump_file
, pb
);
3330 if (!omega_wildcard_p (pb
, i
))
3331 omega_name_wild_card (pb
, i
);
3333 promotion_possible
= false;
3338 if (g2
> 1 && !in_approximate_mode
)
3340 if (pb
->eqs
[e
].color
== omega_red
)
3342 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3343 fprintf (dump_file
, "handling red equality\n");
3346 omega_do_elimination (pb
, e
, i
);
3350 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3353 "adding equation to handle safe variable \n");
3354 omega_print_eq (dump_file
, pb
, eqn
);
3355 fprintf (dump_file
, "\n----\n");
3356 omega_print_problem (dump_file
, pb
);
3357 fprintf (dump_file
, "\n----\n");
3358 fprintf (dump_file
, "\n----\n");
3361 i
= omega_add_new_wild_card (pb
);
3363 gcc_assert (pb
->num_eqs
<= OMEGA_MAX_EQS
);
3364 omega_init_eqn_zero (&pb
->eqs
[e
+ 1], pb
->num_vars
);
3365 omega_copy_eqn (&pb
->eqs
[e
+ 1], eqn
, pb
->safe_vars
);
3367 for (j
= pb
->num_vars
; j
>= 0; j
--)
3369 pb
->eqs
[e
+ 1].coef
[j
] = int_mod (pb
->eqs
[e
+ 1].coef
[j
], g2
);
3371 if (2 * pb
->eqs
[e
+ 1].coef
[j
] >= g2
)
3372 pb
->eqs
[e
+ 1].coef
[j
] -= g2
;
3375 pb
->eqs
[e
+ 1].coef
[i
] = g2
;
3378 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3379 omega_print_problem (dump_file
, pb
);
3388 /* Find variable to eliminate. */
3391 gcc_assert (in_approximate_mode
);
3393 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3395 fprintf (dump_file
, "non-exact elimination: ");
3396 omega_print_eq (dump_file
, pb
, eqn
);
3397 fprintf (dump_file
, "\n");
3398 omega_print_problem (dump_file
, pb
);
3401 for (i
= pb
->num_vars
; i
> sv
; i
--)
3402 if (pb
->eqs
[e
].coef
[i
] != 0)
3406 for (i
= pb
->num_vars
; i
> sv
; i
--)
3407 if (pb
->eqs
[e
].coef
[i
] == 1 || pb
->eqs
[e
].coef
[i
] == -1)
3413 omega_do_elimination (pb
, e
, i
);
3415 if (dump_file
&& (dump_flags
& TDF_DETAILS
) && g2
> 1)
3417 fprintf (dump_file
, "result of non-exact elimination:\n");
3418 omega_print_problem (dump_file
, pb
);
3423 int factor
= (INT_MAX
);
3426 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3427 fprintf (dump_file
, "doing moding\n");
3429 for (i
= pb
->num_vars
; i
!= sv
; i
--)
3430 if ((pb
->eqs
[e
].coef
[i
] & 1) != 0)
3435 for (; i
!= sv
; i
--)
3436 if ((pb
->eqs
[e
].coef
[i
] & 1) != 0)
3442 if (j
!= 0 && i
== sv
)
3444 omega_do_mod (pb
, 2, e
, j
);
3450 for (i
= pb
->num_vars
; i
!= sv
; i
--)
3451 if (pb
->eqs
[e
].coef
[i
] != 0
3452 && factor
> abs (pb
->eqs
[e
].coef
[i
]) + 1)
3454 factor
= abs (pb
->eqs
[e
].coef
[i
]) + 1;
3460 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3461 fprintf (dump_file
, "should not have happened\n");
3465 omega_do_mod (pb
, factor
, e
, j
);
3466 /* Go back and try this equation again. */
3473 return omega_unknown
;
3476 /* Transform an inequation E to an equality, then solve DIFF problems
3477 based on PB, and only differing by the constant part that is
3478 diminished by one, trying to figure out which of the constants
3481 static enum omega_result
3482 parallel_splinter (omega_pb pb
, int e
, int diff
,
3483 enum omega_result desired_res
)
3485 omega_pb tmp_problem
;
3488 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3490 fprintf (dump_file
, "Using parallel splintering\n");
3491 omega_print_problem (dump_file
, pb
);
3494 tmp_problem
= XNEW (struct omega_pb
);
3495 omega_copy_eqn (&pb
->eqs
[0], &pb
->geqs
[e
], pb
->num_vars
);
3498 for (i
= 0; i
<= diff
; i
++)
3500 omega_copy_problem (tmp_problem
, pb
);
3502 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3504 fprintf (dump_file
, "Splinter # %i\n", i
);
3505 omega_print_problem (dump_file
, pb
);
3508 if (omega_solve_problem (tmp_problem
, desired_res
) == omega_true
)
3514 pb
->eqs
[0].coef
[0]--;
3521 /* Helper function: solve equations one at a time. */
3523 static enum omega_result
3524 omega_solve_geq (omega_pb pb
, enum omega_result desired_res
)
3528 enum omega_result result
;
3529 bool coupled_subscripts
= false;
3530 bool smoothed
= false;
3531 bool eliminate_again
;
3532 bool tried_eliminating_redundant
= false;
3534 if (desired_res
!= omega_simplify
)
3542 gcc_assert (desired_res
== omega_simplify
|| pb
->num_subs
== 0);
3544 /* Verify that there are not too many inequalities. */
3545 gcc_assert (pb
->num_geqs
<= OMEGA_MAX_GEQS
);
3547 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3549 fprintf (dump_file
, "\nomega_solve_geq (%d,%d):\n",
3550 desired_res
, please_no_equalities_in_simplified_problems
);
3551 omega_print_problem (dump_file
, pb
);
3552 fprintf (dump_file
, "\n");
3555 n_vars
= pb
->num_vars
;
3559 enum omega_eqn_color u_color
= omega_black
;
3560 enum omega_eqn_color l_color
= omega_black
;
3561 int upper_bound
= pos_infinity
;
3562 int lower_bound
= neg_infinity
;
3564 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
3566 int a
= pb
->geqs
[e
].coef
[1];
3567 int c
= pb
->geqs
[e
].coef
[0];
3569 /* Our equation is ax + c >= 0, or ax >= -c, or c >= -ax. */
3573 return omega_problem_has_no_solution ();
3580 if (lower_bound
< -c
3581 || (lower_bound
== -c
3582 && !omega_eqn_is_red (&pb
->geqs
[e
], desired_res
)))
3585 l_color
= pb
->geqs
[e
].color
;
3591 c
= int_div (c
, -a
);
3594 || (upper_bound
== c
3595 && !omega_eqn_is_red (&pb
->geqs
[e
], desired_res
)))
3598 u_color
= pb
->geqs
[e
].color
;
3603 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3605 fprintf (dump_file
, "upper bound = %d\n", upper_bound
);
3606 fprintf (dump_file
, "lower bound = %d\n", lower_bound
);
3609 if (lower_bound
> upper_bound
)
3610 return omega_problem_has_no_solution ();
3612 if (desired_res
== omega_simplify
)
3615 if (pb
->safe_vars
== 1)
3618 if (lower_bound
== upper_bound
3619 && u_color
== omega_black
3620 && l_color
== omega_black
)
3622 pb
->eqs
[0].coef
[0] = -lower_bound
;
3623 pb
->eqs
[0].coef
[1] = 1;
3624 pb
->eqs
[0].color
= omega_black
;
3626 return omega_solve_problem (pb
, desired_res
);
3630 if (lower_bound
> neg_infinity
)
3632 pb
->geqs
[0].coef
[0] = -lower_bound
;
3633 pb
->geqs
[0].coef
[1] = 1;
3634 pb
->geqs
[0].key
= 1;
3635 pb
->geqs
[0].color
= l_color
;
3636 pb
->geqs
[0].touched
= 0;
3640 if (upper_bound
< pos_infinity
)
3642 pb
->geqs
[pb
->num_geqs
].coef
[0] = upper_bound
;
3643 pb
->geqs
[pb
->num_geqs
].coef
[1] = -1;
3644 pb
->geqs
[pb
->num_geqs
].key
= -1;
3645 pb
->geqs
[pb
->num_geqs
].color
= u_color
;
3646 pb
->geqs
[pb
->num_geqs
].touched
= 0;
3654 omega_problem_reduced (pb
);
3658 if (original_problem
!= no_problem
3659 && l_color
== omega_black
3660 && u_color
== omega_black
3662 && lower_bound
== upper_bound
)
3664 pb
->eqs
[0].coef
[0] = -lower_bound
;
3665 pb
->eqs
[0].coef
[1] = 1;
3667 adding_equality_constraint (pb
, 0);
3673 if (!pb
->variables_freed
)
3675 pb
->variables_freed
= true;
3677 if (desired_res
!= omega_simplify
)
3678 omega_free_eliminations (pb
, 0);
3680 omega_free_eliminations (pb
, pb
->safe_vars
);
3682 n_vars
= pb
->num_vars
;
3688 switch (normalize_omega_problem (pb
))
3690 case normalize_false
:
3694 case normalize_coupled
:
3695 coupled_subscripts
= true;
3698 case normalize_uncoupled
:
3699 coupled_subscripts
= false;
3706 n_vars
= pb
->num_vars
;
3708 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3710 fprintf (dump_file
, "\nafter normalization:\n");
3711 omega_print_problem (dump_file
, pb
);
3712 fprintf (dump_file
, "\n");
3713 fprintf (dump_file
, "eliminating variable using Fourier-Motzkin.\n");
3717 int parallel_difference
= INT_MAX
;
3718 int best_parallel_eqn
= -1;
3719 int minC
, maxC
, minCj
= 0;
3720 int lower_bound_count
= 0;
3722 bool possible_easy_int_solution
;
3723 int max_splinters
= 1;
3725 bool lucky_exact
= false;
3727 int best
= (INT_MAX
);
3728 int j
= 0, jLe
= 0, jLowerBoundCount
= 0;
3731 eliminate_again
= false;
3733 if (pb
->num_eqs
> 0)
3734 return omega_solve_problem (pb
, desired_res
);
3736 if (!coupled_subscripts
)
3738 if (pb
->safe_vars
== 0)
3741 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
3742 if (!omega_safe_var_p (pb
, abs (pb
->geqs
[e
].key
)))
3743 omega_delete_geq (pb
, e
, n_vars
);
3745 pb
->num_vars
= pb
->safe_vars
;
3747 if (desired_res
== omega_simplify
)
3749 omega_problem_reduced (pb
);
3756 if (desired_res
!= omega_simplify
)
3761 if (pb
->num_geqs
== 0)
3763 if (desired_res
== omega_simplify
)
3765 pb
->num_vars
= pb
->safe_vars
;
3766 omega_problem_reduced (pb
);
3772 if (desired_res
== omega_simplify
&& n_vars
== pb
->safe_vars
)
3774 omega_problem_reduced (pb
);
3778 if (pb
->num_geqs
> OMEGA_MAX_GEQS
- 30
3779 || pb
->num_geqs
> 2 * n_vars
* n_vars
+ 4 * n_vars
+ 10)
3781 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3783 "TOO MANY EQUATIONS; "
3784 "%d equations, %d variables, "
3785 "ELIMINATING REDUNDANT ONES\n",
3786 pb
->num_geqs
, n_vars
);
3788 if (!omega_eliminate_redundant (pb
, false))
3791 n_vars
= pb
->num_vars
;
3793 if (pb
->num_eqs
> 0)
3794 return omega_solve_problem (pb
, desired_res
);
3796 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3797 fprintf (dump_file
, "END ELIMINATION OF REDUNDANT EQUATIONS\n");
3800 if (desired_res
!= omega_simplify
)
3805 for (i
= n_vars
; i
!= fv
; i
--)
3811 int upper_bound_count
= 0;
3813 lower_bound_count
= 0;
3816 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
3817 if (pb
->geqs
[e
].coef
[i
] < 0)
3819 minC
= MIN (minC
, pb
->geqs
[e
].coef
[i
]);
3820 upper_bound_count
++;
3821 if (pb
->geqs
[e
].coef
[i
] < -1)
3829 else if (pb
->geqs
[e
].coef
[i
] > 0)
3831 maxC
= MAX (maxC
, pb
->geqs
[e
].coef
[i
]);
3832 lower_bound_count
++;
3834 if (pb
->geqs
[e
].coef
[i
] > 1)
3843 if (lower_bound_count
== 0
3844 || upper_bound_count
== 0)
3846 lower_bound_count
= 0;
3850 if (ub
>= 0 && lb
>= 0
3851 && pb
->geqs
[lb
].key
== -pb
->geqs
[ub
].key
)
3853 int Lc
= pb
->geqs
[lb
].coef
[i
];
3854 int Uc
= -pb
->geqs
[ub
].coef
[i
];
3856 Lc
* pb
->geqs
[ub
].coef
[0] + Uc
* pb
->geqs
[lb
].coef
[0];
3857 lucky
= (diff
>= (Uc
- 1) * (Lc
- 1));
3863 || in_approximate_mode
)
3865 neweqns
= score
= upper_bound_count
* lower_bound_count
;
3867 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3869 "For %s, exact, score = %d*%d, range = %d ... %d,"
3870 "\nlucky = %d, in_approximate_mode=%d \n",
3871 omega_variable_to_str (pb
, i
),
3873 lower_bound_count
, minC
, maxC
, lucky
,
3874 in_approximate_mode
);
3884 jLowerBoundCount
= lower_bound_count
;
3886 lucky_exact
= lucky
;
3893 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3895 "For %s, non-exact, score = %d*%d,"
3896 "range = %d ... %d \n",
3897 omega_variable_to_str (pb
, i
),
3899 lower_bound_count
, minC
, maxC
);
3901 neweqns
= upper_bound_count
* lower_bound_count
;
3902 score
= maxC
- minC
;
3910 jLowerBoundCount
= lower_bound_count
;
3915 if (lower_bound_count
== 0)
3917 omega_free_eliminations (pb
, pb
->safe_vars
);
3918 n_vars
= pb
->num_vars
;
3919 eliminate_again
= true;
3926 lower_bound_count
= jLowerBoundCount
;
3928 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
3929 if (pb
->geqs
[e
].coef
[i
] > 0)
3931 if (pb
->geqs
[e
].coef
[i
] == -minC
)
3932 max_splinters
+= -minC
- 1;
3935 check_pos_mul ((pb
->geqs
[e
].coef
[i
] - 1),
3936 (-minC
- 1)) / (-minC
) + 1;
3940 /* Trying to produce exact elimination by finding redundant
3942 if (!exact
&& !tried_eliminating_redundant
)
3944 omega_eliminate_redundant (pb
, false);
3945 tried_eliminating_redundant
= true;
3946 eliminate_again
= true;
3949 tried_eliminating_redundant
= false;
3952 if (return_single_result
&& desired_res
== omega_simplify
&& !exact
)
3954 omega_problem_reduced (pb
);
3958 /* #ifndef Omega3 */
3959 /* Trying to produce exact elimination by finding redundant
3961 if (!exact
&& !tried_eliminating_redundant
)
3963 omega_eliminate_redundant (pb
, false);
3964 tried_eliminating_redundant
= true;
3967 tried_eliminating_redundant
= false;
3974 for (e1
= pb
->num_geqs
- 1; e1
>= 0; e1
--)
3975 if (pb
->geqs
[e1
].color
== omega_black
)
3976 for (e2
= e1
- 1; e2
>= 0; e2
--)
3977 if (pb
->geqs
[e2
].color
== omega_black
3978 && pb
->geqs
[e1
].key
== -pb
->geqs
[e2
].key
3979 && ((pb
->geqs
[e1
].coef
[0] + pb
->geqs
[e2
].coef
[0])
3980 * (3 - single_var_geq (&pb
->geqs
[e1
], pb
->num_vars
))
3981 / 2 < parallel_difference
))
3983 parallel_difference
=
3984 (pb
->geqs
[e1
].coef
[0] + pb
->geqs
[e2
].coef
[0])
3985 * (3 - single_var_geq (&pb
->geqs
[e1
], pb
->num_vars
))
3987 best_parallel_eqn
= e1
;
3990 if (dump_file
&& (dump_flags
& TDF_DETAILS
)
3991 && best_parallel_eqn
>= 0)
3994 "Possible parallel projection, diff = %d, in ",
3995 parallel_difference
);
3996 omega_print_geq (dump_file
, pb
, &(pb
->geqs
[best_parallel_eqn
]));
3997 fprintf (dump_file
, "\n");
3998 omega_print_problem (dump_file
, pb
);
4002 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4004 fprintf (dump_file
, "going to eliminate %s, (%d,%d,%d)\n",
4005 omega_variable_to_str (pb
, i
), i
, minC
,
4007 omega_print_problem (dump_file
, pb
);
4010 fprintf (dump_file
, "(a lucky exact elimination)\n");
4013 fprintf (dump_file
, "(an exact elimination)\n");
4015 fprintf (dump_file
, "Max # of splinters = %d\n", max_splinters
);
4018 gcc_assert (max_splinters
>= 1);
4020 if (!exact
&& desired_res
== omega_simplify
&& best_parallel_eqn
>= 0
4021 && parallel_difference
<= max_splinters
)
4022 return parallel_splinter (pb
, best_parallel_eqn
, parallel_difference
,
4030 int j
= pb
->num_vars
;
4032 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4034 fprintf (dump_file
, "Swapping %d and %d\n", i
, j
);
4035 omega_print_problem (dump_file
, pb
);
4038 swap (&pb
->var
[i
], &pb
->var
[j
]);
4040 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
4041 if (pb
->geqs
[e
].coef
[i
] != pb
->geqs
[e
].coef
[j
])
4043 pb
->geqs
[e
].touched
= 1;
4044 t
= pb
->geqs
[e
].coef
[i
];
4045 pb
->geqs
[e
].coef
[i
] = pb
->geqs
[e
].coef
[j
];
4046 pb
->geqs
[e
].coef
[j
] = t
;
4049 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
4050 if (pb
->subs
[e
].coef
[i
] != pb
->subs
[e
].coef
[j
])
4052 t
= pb
->subs
[e
].coef
[i
];
4053 pb
->subs
[e
].coef
[i
] = pb
->subs
[e
].coef
[j
];
4054 pb
->subs
[e
].coef
[j
] = t
;
4057 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4059 fprintf (dump_file
, "Swapping complete \n");
4060 omega_print_problem (dump_file
, pb
);
4061 fprintf (dump_file
, "\n");
4067 else if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4069 fprintf (dump_file
, "No swap needed\n");
4070 omega_print_problem (dump_file
, pb
);
4074 n_vars
= pb
->num_vars
;
4080 int upper_bound
= pos_infinity
;
4081 int lower_bound
= neg_infinity
;
4082 enum omega_eqn_color ub_color
= omega_black
;
4083 enum omega_eqn_color lb_color
= omega_black
;
4084 int topeqn
= pb
->num_geqs
- 1;
4085 int Lc
= pb
->geqs
[Le
].coef
[i
];
4087 for (Le
= topeqn
; Le
>= 0; Le
--)
4088 if ((Lc
= pb
->geqs
[Le
].coef
[i
]) == 0)
4090 if (pb
->geqs
[Le
].coef
[1] == 1)
4092 int constantTerm
= -pb
->geqs
[Le
].coef
[0];
4094 if (constantTerm
> lower_bound
||
4095 (constantTerm
== lower_bound
&&
4096 !omega_eqn_is_red (&pb
->geqs
[Le
], desired_res
)))
4098 lower_bound
= constantTerm
;
4099 lb_color
= pb
->geqs
[Le
].color
;
4102 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4104 if (pb
->geqs
[Le
].color
== omega_black
)
4105 fprintf (dump_file
, " :::=> %s >= %d\n",
4106 omega_variable_to_str (pb
, 1),
4110 " :::=> [%s >= %d]\n",
4111 omega_variable_to_str (pb
, 1),
4117 int constantTerm
= pb
->geqs
[Le
].coef
[0];
4118 if (constantTerm
< upper_bound
||
4119 (constantTerm
== upper_bound
4120 && !omega_eqn_is_red (&pb
->geqs
[Le
],
4123 upper_bound
= constantTerm
;
4124 ub_color
= pb
->geqs
[Le
].color
;
4127 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4129 if (pb
->geqs
[Le
].color
== omega_black
)
4130 fprintf (dump_file
, " :::=> %s <= %d\n",
4131 omega_variable_to_str (pb
, 1),
4135 " :::=> [%s <= %d]\n",
4136 omega_variable_to_str (pb
, 1),
4142 for (Ue
= topeqn
; Ue
>= 0; Ue
--)
4143 if (pb
->geqs
[Ue
].coef
[i
] < 0
4144 && pb
->geqs
[Le
].key
!= -pb
->geqs
[Ue
].key
)
4146 int Uc
= -pb
->geqs
[Ue
].coef
[i
];
4147 int coefficient
= pb
->geqs
[Ue
].coef
[1] * Lc
4148 + pb
->geqs
[Le
].coef
[1] * Uc
;
4149 int constantTerm
= pb
->geqs
[Ue
].coef
[0] * Lc
4150 + pb
->geqs
[Le
].coef
[0] * Uc
;
4152 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4154 omega_print_geq_extra (dump_file
, pb
,
4156 fprintf (dump_file
, "\n");
4157 omega_print_geq_extra (dump_file
, pb
,
4159 fprintf (dump_file
, "\n");
4162 if (coefficient
> 0)
4164 constantTerm
= -int_div (constantTerm
, coefficient
);
4166 if (constantTerm
> lower_bound
4167 || (constantTerm
== lower_bound
4168 && (desired_res
!= omega_simplify
4169 || (pb
->geqs
[Ue
].color
== omega_black
4170 && pb
->geqs
[Le
].color
== omega_black
))))
4172 lower_bound
= constantTerm
;
4173 lb_color
= (pb
->geqs
[Ue
].color
== omega_red
4174 || pb
->geqs
[Le
].color
== omega_red
)
4175 ? omega_red
: omega_black
;
4178 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4180 if (pb
->geqs
[Ue
].color
== omega_red
4181 || pb
->geqs
[Le
].color
== omega_red
)
4183 " ::=> [%s >= %d]\n",
4184 omega_variable_to_str (pb
, 1),
4189 omega_variable_to_str (pb
, 1),
4195 constantTerm
= int_div (constantTerm
, -coefficient
);
4196 if (constantTerm
< upper_bound
4197 || (constantTerm
== upper_bound
4198 && pb
->geqs
[Ue
].color
== omega_black
4199 && pb
->geqs
[Le
].color
== omega_black
))
4201 upper_bound
= constantTerm
;
4202 ub_color
= (pb
->geqs
[Ue
].color
== omega_red
4203 || pb
->geqs
[Le
].color
== omega_red
)
4204 ? omega_red
: omega_black
;
4208 && (dump_flags
& TDF_DETAILS
))
4210 if (pb
->geqs
[Ue
].color
== omega_red
4211 || pb
->geqs
[Le
].color
== omega_red
)
4213 " ::=> [%s <= %d]\n",
4214 omega_variable_to_str (pb
, 1),
4219 omega_variable_to_str (pb
, 1),
4227 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4229 " therefore, %c%d <= %c%s%c <= %d%c\n",
4230 lb_color
== omega_red
? '[' : ' ', lower_bound
,
4231 (lb_color
== omega_red
&& ub_color
== omega_black
)
4233 omega_variable_to_str (pb
, 1),
4234 (lb_color
== omega_black
&& ub_color
== omega_red
)
4236 upper_bound
, ub_color
== omega_red
? ']' : ' ');
4238 if (lower_bound
> upper_bound
)
4241 if (pb
->safe_vars
== 1)
4243 if (upper_bound
== lower_bound
4244 && !(ub_color
== omega_red
|| lb_color
== omega_red
)
4245 && !please_no_equalities_in_simplified_problems
)
4248 pb
->eqs
[0].coef
[1] = -1;
4249 pb
->eqs
[0].coef
[0] = upper_bound
;
4251 if (ub_color
== omega_red
4252 || lb_color
== omega_red
)
4253 pb
->eqs
[0].color
= omega_red
;
4255 if (desired_res
== omega_simplify
4256 && pb
->eqs
[0].color
== omega_black
)
4257 return omega_solve_problem (pb
, desired_res
);
4260 if (upper_bound
!= pos_infinity
)
4262 pb
->geqs
[0].coef
[1] = -1;
4263 pb
->geqs
[0].coef
[0] = upper_bound
;
4264 pb
->geqs
[0].color
= ub_color
;
4265 pb
->geqs
[0].key
= -1;
4266 pb
->geqs
[0].touched
= 0;
4270 if (lower_bound
!= neg_infinity
)
4272 pb
->geqs
[pb
->num_geqs
].coef
[1] = 1;
4273 pb
->geqs
[pb
->num_geqs
].coef
[0] = -lower_bound
;
4274 pb
->geqs
[pb
->num_geqs
].color
= lb_color
;
4275 pb
->geqs
[pb
->num_geqs
].key
= 1;
4276 pb
->geqs
[pb
->num_geqs
].touched
= 0;
4281 if (desired_res
== omega_simplify
)
4283 omega_problem_reduced (pb
);
4289 && (desired_res
!= omega_simplify
4290 || (lb_color
== omega_black
4291 && ub_color
== omega_black
))
4292 && original_problem
!= no_problem
4293 && lower_bound
== upper_bound
)
4295 for (i
= original_problem
->num_vars
; i
>= 0; i
--)
4296 if (original_problem
->var
[i
] == pb
->var
[1])
4302 e
= original_problem
->num_eqs
++;
4303 omega_init_eqn_zero (&original_problem
->eqs
[e
],
4304 original_problem
->num_vars
);
4305 original_problem
->eqs
[e
].coef
[i
] = -1;
4306 original_problem
->eqs
[e
].coef
[0] = upper_bound
;
4308 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4311 "adding equality %d to outer problem\n", e
);
4312 omega_print_problem (dump_file
, original_problem
);
4319 eliminate_again
= true;
4321 if (lower_bound_count
== 1)
4323 eqn lbeqn
= omega_alloc_eqns (0, 1);
4324 int Lc
= pb
->geqs
[Le
].coef
[i
];
4326 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4327 fprintf (dump_file
, "an inplace elimination\n");
4329 omega_copy_eqn (lbeqn
, &pb
->geqs
[Le
], (n_vars
+ 1));
4330 omega_delete_geq_extra (pb
, Le
, n_vars
+ 1);
4332 for (Ue
= pb
->num_geqs
- 1; Ue
>= 0; Ue
--)
4333 if (pb
->geqs
[Ue
].coef
[i
] < 0)
4335 if (lbeqn
->key
== -pb
->geqs
[Ue
].key
)
4336 omega_delete_geq_extra (pb
, Ue
, n_vars
+ 1);
4340 int Uc
= -pb
->geqs
[Ue
].coef
[i
];
4341 pb
->geqs
[Ue
].touched
= 1;
4342 eliminate_again
= false;
4344 if (lbeqn
->color
== omega_red
)
4345 pb
->geqs
[Ue
].color
= omega_red
;
4347 for (k
= 0; k
<= n_vars
; k
++)
4348 pb
->geqs
[Ue
].coef
[k
] =
4349 check_mul (pb
->geqs
[Ue
].coef
[k
], Lc
) +
4350 check_mul (lbeqn
->coef
[k
], Uc
);
4352 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4354 omega_print_geq (dump_file
, pb
,
4356 fprintf (dump_file
, "\n");
4361 omega_free_eqns (lbeqn
, 1);
4366 int *dead_eqns
= XNEWVEC (int, OMEGA_MAX_GEQS
);
4367 bool *is_dead
= XNEWVEC (bool, OMEGA_MAX_GEQS
);
4369 int top_eqn
= pb
->num_geqs
- 1;
4370 lower_bound_count
--;
4372 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4373 fprintf (dump_file
, "lower bound count = %d\n",
4376 for (Le
= top_eqn
; Le
>= 0; Le
--)
4377 if (pb
->geqs
[Le
].coef
[i
] > 0)
4379 int Lc
= pb
->geqs
[Le
].coef
[i
];
4380 for (Ue
= top_eqn
; Ue
>= 0; Ue
--)
4381 if (pb
->geqs
[Ue
].coef
[i
] < 0)
4383 if (pb
->geqs
[Le
].key
!= -pb
->geqs
[Ue
].key
)
4386 int Uc
= -pb
->geqs
[Ue
].coef
[i
];
4389 e2
= pb
->num_geqs
++;
4391 e2
= dead_eqns
[--num_dead
];
4393 gcc_assert (e2
< OMEGA_MAX_GEQS
);
4395 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4398 "Le = %d, Ue = %d, gen = %d\n",
4400 omega_print_geq_extra (dump_file
, pb
,
4402 fprintf (dump_file
, "\n");
4403 omega_print_geq_extra (dump_file
, pb
,
4405 fprintf (dump_file
, "\n");
4408 eliminate_again
= false;
4410 for (k
= n_vars
; k
>= 0; k
--)
4411 pb
->geqs
[e2
].coef
[k
] =
4412 check_mul (pb
->geqs
[Ue
].coef
[k
], Lc
) +
4413 check_mul (pb
->geqs
[Le
].coef
[k
], Uc
);
4415 pb
->geqs
[e2
].coef
[n_vars
+ 1] = 0;
4416 pb
->geqs
[e2
].touched
= 1;
4418 if (pb
->geqs
[Ue
].color
== omega_red
4419 || pb
->geqs
[Le
].color
== omega_red
)
4420 pb
->geqs
[e2
].color
= omega_red
;
4422 pb
->geqs
[e2
].color
= omega_black
;
4424 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4426 omega_print_geq (dump_file
, pb
,
4428 fprintf (dump_file
, "\n");
4432 if (lower_bound_count
== 0)
4434 dead_eqns
[num_dead
++] = Ue
;
4436 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4437 fprintf (dump_file
, "Killed %d\n", Ue
);
4441 lower_bound_count
--;
4442 dead_eqns
[num_dead
++] = Le
;
4444 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4445 fprintf (dump_file
, "Killed %d\n", Le
);
4448 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
4451 while (num_dead
> 0)
4452 is_dead
[dead_eqns
[--num_dead
]] = true;
4454 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
4456 omega_delete_geq_extra (pb
, e
, n_vars
+ 1);
4467 rS
= omega_alloc_problem (0, 0);
4468 iS
= omega_alloc_problem (0, 0);
4470 possible_easy_int_solution
= true;
4472 for (e
= 0; e
< pb
->num_geqs
; e
++)
4473 if (pb
->geqs
[e
].coef
[i
] == 0)
4475 omega_copy_eqn (&(rS
->geqs
[e2
]), &pb
->geqs
[e
],
4477 omega_copy_eqn (&(iS
->geqs
[e2
]), &pb
->geqs
[e
],
4480 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4483 fprintf (dump_file
, "Copying (%d, %d): ", i
,
4484 pb
->geqs
[e
].coef
[i
]);
4485 omega_print_geq_extra (dump_file
, pb
, &pb
->geqs
[e
]);
4486 fprintf (dump_file
, "\n");
4487 for (t
= 0; t
<= n_vars
+ 1; t
++)
4488 fprintf (dump_file
, "%d ", pb
->geqs
[e
].coef
[t
]);
4489 fprintf (dump_file
, "\n");
4493 gcc_assert (e2
< OMEGA_MAX_GEQS
);
4496 for (Le
= pb
->num_geqs
- 1; Le
>= 0; Le
--)
4497 if (pb
->geqs
[Le
].coef
[i
] > 0)
4498 for (Ue
= pb
->num_geqs
- 1; Ue
>= 0; Ue
--)
4499 if (pb
->geqs
[Ue
].coef
[i
] < 0)
4502 int Lc
= pb
->geqs
[Le
].coef
[i
];
4503 int Uc
= -pb
->geqs
[Ue
].coef
[i
];
4505 if (pb
->geqs
[Le
].key
!= -pb
->geqs
[Ue
].key
)
4508 rS
->geqs
[e2
].touched
= iS
->geqs
[e2
].touched
= 1;
4510 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4512 fprintf (dump_file
, "---\n");
4514 "Le(Lc) = %d(%d_, Ue(Uc) = %d(%d), gen = %d\n",
4515 Le
, Lc
, Ue
, Uc
, e2
);
4516 omega_print_geq_extra (dump_file
, pb
, &pb
->geqs
[Le
]);
4517 fprintf (dump_file
, "\n");
4518 omega_print_geq_extra (dump_file
, pb
, &pb
->geqs
[Ue
]);
4519 fprintf (dump_file
, "\n");
4524 for (k
= n_vars
; k
>= 0; k
--)
4525 iS
->geqs
[e2
].coef
[k
] = rS
->geqs
[e2
].coef
[k
] =
4526 pb
->geqs
[Ue
].coef
[k
] + pb
->geqs
[Le
].coef
[k
];
4528 iS
->geqs
[e2
].coef
[0] -= (Uc
- 1);
4532 for (k
= n_vars
; k
>= 0; k
--)
4533 iS
->geqs
[e2
].coef
[k
] = rS
->geqs
[e2
].coef
[k
] =
4534 check_mul (pb
->geqs
[Ue
].coef
[k
], Lc
) +
4535 check_mul (pb
->geqs
[Le
].coef
[k
], Uc
);
4537 iS
->geqs
[e2
].coef
[0] -= (Uc
- 1) * (Lc
- 1);
4540 if (pb
->geqs
[Ue
].color
== omega_red
4541 || pb
->geqs
[Le
].color
== omega_red
)
4542 iS
->geqs
[e2
].color
= rS
->geqs
[e2
].color
= omega_red
;
4544 iS
->geqs
[e2
].color
= rS
->geqs
[e2
].color
= omega_black
;
4546 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4548 omega_print_geq (dump_file
, pb
, &(rS
->geqs
[e2
]));
4549 fprintf (dump_file
, "\n");
4553 gcc_assert (e2
< OMEGA_MAX_GEQS
);
4555 else if (pb
->geqs
[Ue
].coef
[0] * Lc
+
4556 pb
->geqs
[Le
].coef
[0] * Uc
-
4557 (Uc
- 1) * (Lc
- 1) < 0)
4558 possible_easy_int_solution
= false;
4561 iS
->variables_initialized
= rS
->variables_initialized
= true;
4562 iS
->num_vars
= rS
->num_vars
= pb
->num_vars
;
4563 iS
->num_geqs
= rS
->num_geqs
= e2
;
4564 iS
->num_eqs
= rS
->num_eqs
= 0;
4565 iS
->num_subs
= rS
->num_subs
= pb
->num_subs
;
4566 iS
->safe_vars
= rS
->safe_vars
= pb
->safe_vars
;
4568 for (e
= n_vars
; e
>= 0; e
--)
4569 rS
->var
[e
] = pb
->var
[e
];
4571 for (e
= n_vars
; e
>= 0; e
--)
4572 iS
->var
[e
] = pb
->var
[e
];
4574 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
4576 omega_copy_eqn (&(rS
->subs
[e
]), &(pb
->subs
[e
]), pb
->num_vars
);
4577 omega_copy_eqn (&(iS
->subs
[e
]), &(pb
->subs
[e
]), pb
->num_vars
);
4581 n_vars
= pb
->num_vars
;
4583 if (desired_res
!= omega_true
)
4585 if (original_problem
== no_problem
)
4587 original_problem
= pb
;
4588 result
= omega_solve_geq (rS
, omega_false
);
4589 original_problem
= no_problem
;
4592 result
= omega_solve_geq (rS
, omega_false
);
4594 if (result
== omega_false
)
4601 if (pb
->num_eqs
> 0)
4603 /* An equality constraint must have been found */
4606 return omega_solve_problem (pb
, desired_res
);
4610 if (desired_res
!= omega_false
)
4613 int lower_bounds
= 0;
4614 int *lower_bound
= XNEWVEC (int, OMEGA_MAX_GEQS
);
4616 if (possible_easy_int_solution
)
4619 result
= omega_solve_geq (iS
, desired_res
);
4622 if (result
!= omega_false
)
4631 if (!exact
&& best_parallel_eqn
>= 0
4632 && parallel_difference
<= max_splinters
)
4637 return parallel_splinter (pb
, best_parallel_eqn
,
4638 parallel_difference
,
4642 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4643 fprintf (dump_file
, "have to do exact analysis\n");
4647 for (e
= 0; e
< pb
->num_geqs
; e
++)
4648 if (pb
->geqs
[e
].coef
[i
] > 1)
4649 lower_bound
[lower_bounds
++] = e
;
4651 /* Sort array LOWER_BOUND. */
4652 for (j
= 0; j
< lower_bounds
; j
++)
4654 int k
, smallest
= j
;
4656 for (k
= j
+ 1; k
< lower_bounds
; k
++)
4657 if (pb
->geqs
[lower_bound
[smallest
]].coef
[i
] >
4658 pb
->geqs
[lower_bound
[k
]].coef
[i
])
4661 k
= lower_bound
[smallest
];
4662 lower_bound
[smallest
] = lower_bound
[j
];
4666 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4668 fprintf (dump_file
, "lower bound coefficients = ");
4670 for (j
= 0; j
< lower_bounds
; j
++)
4671 fprintf (dump_file
, " %d",
4672 pb
->geqs
[lower_bound
[j
]].coef
[i
]);
4674 fprintf (dump_file
, "\n");
4677 for (j
= 0; j
< lower_bounds
; j
++)
4681 int worst_lower_bound_constant
= -minC
;
4684 max_incr
= (((pb
->geqs
[e
].coef
[i
] - 1) *
4685 (worst_lower_bound_constant
- 1) - 1)
4686 / worst_lower_bound_constant
);
4687 /* max_incr += 2; */
4689 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4691 fprintf (dump_file
, "for equation ");
4692 omega_print_geq (dump_file
, pb
, &pb
->geqs
[e
]);
4694 "\ntry decrements from 0 to %d\n",
4696 omega_print_problem (dump_file
, pb
);
4699 if (max_incr
> 50 && !smoothed
4700 && smooth_weird_equations (pb
))
4706 goto solve_geq_start
;
4709 omega_copy_eqn (&pb
->eqs
[0], &pb
->geqs
[e
],
4711 pb
->eqs
[0].color
= omega_black
;
4712 omega_init_eqn_zero (&pb
->geqs
[e
], pb
->num_vars
);
4713 pb
->geqs
[e
].touched
= 1;
4716 for (c
= max_incr
; c
>= 0; c
--)
4718 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4721 "trying next decrement of %d\n",
4723 omega_print_problem (dump_file
, pb
);
4726 omega_copy_problem (rS
, pb
);
4728 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4729 omega_print_problem (dump_file
, rS
);
4731 result
= omega_solve_problem (rS
, desired_res
);
4733 if (result
== omega_true
)
4742 pb
->eqs
[0].coef
[0]--;
4745 if (j
+ 1 < lower_bounds
)
4748 omega_copy_eqn (&pb
->geqs
[e
], &pb
->eqs
[0],
4750 pb
->geqs
[e
].touched
= 1;
4751 pb
->geqs
[e
].color
= omega_black
;
4752 omega_copy_problem (rS
, pb
);
4754 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4756 "exhausted lower bound, "
4757 "checking if still feasible ");
4759 result
= omega_solve_problem (rS
, omega_false
);
4761 if (result
== omega_false
)
4766 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4767 fprintf (dump_file
, "fall-off the end\n");
4779 return omega_unknown
;
4780 } while (eliminate_again
);
4784 /* Because the omega solver is recursive, this counter limits the
4786 static int omega_solve_depth
= 0;
4788 /* Return omega_true when the problem PB has a solution following the
4792 omega_solve_problem (omega_pb pb
, enum omega_result desired_res
)
4794 enum omega_result result
;
4796 gcc_assert (pb
->num_vars
>= pb
->safe_vars
);
4797 omega_solve_depth
++;
4799 if (desired_res
!= omega_simplify
)
4802 if (omega_solve_depth
> 50)
4804 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4807 "Solve depth = %d, in_approximate_mode = %d, aborting\n",
4808 omega_solve_depth
, in_approximate_mode
);
4809 omega_print_problem (dump_file
, pb
);
4814 if (omega_solve_eq (pb
, desired_res
) == omega_false
)
4816 omega_solve_depth
--;
4820 if (in_approximate_mode
&& !pb
->num_geqs
)
4822 result
= omega_true
;
4823 pb
->num_vars
= pb
->safe_vars
;
4824 omega_problem_reduced (pb
);
4827 result
= omega_solve_geq (pb
, desired_res
);
4829 omega_solve_depth
--;
4831 if (!omega_reduce_with_subs
)
4833 resurrect_subs (pb
);
4834 gcc_assert (please_no_equalities_in_simplified_problems
4835 || !result
|| pb
->num_subs
== 0);
4841 /* Return true if red equations constrain the set of possible solutions.
4842 We assume that there are solutions to the black equations by
4843 themselves, so if there is no solution to the combined problem, we
4847 omega_problem_has_red_equations (omega_pb pb
)
4853 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4855 fprintf (dump_file
, "Checking for red equations:\n");
4856 omega_print_problem (dump_file
, pb
);
4859 please_no_equalities_in_simplified_problems
++;
4862 if (omega_single_result
)
4863 return_single_result
++;
4865 create_color
= true;
4866 result
= (omega_simplify_problem (pb
) == omega_false
);
4868 if (omega_single_result
)
4869 return_single_result
--;
4872 please_no_equalities_in_simplified_problems
--;
4876 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4877 fprintf (dump_file
, "Gist is FALSE\n");
4882 pb
->eqs
[0].color
= omega_red
;
4884 for (i
= pb
->num_vars
; i
> 0; i
--)
4885 pb
->eqs
[0].coef
[i
] = 0;
4887 pb
->eqs
[0].coef
[0] = 1;
4891 free_red_eliminations (pb
);
4892 gcc_assert (pb
->num_eqs
== 0);
4894 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
4895 if (pb
->geqs
[e
].color
== omega_red
)
4901 for (i
= pb
->safe_vars
; i
>= 1; i
--)
4906 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
4908 if (pb
->geqs
[e
].coef
[i
])
4910 if (pb
->geqs
[e
].coef
[i
] > 0)
4911 lb
|= (1 + (pb
->geqs
[e
].color
== omega_red
? 1 : 0));
4914 ub
|= (1 + (pb
->geqs
[e
].color
== omega_red
? 1 : 0));
4918 if (ub
== 2 || lb
== 2)
4921 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4922 fprintf (dump_file
, "checks for upper/lower bounds worked!\n");
4924 if (!omega_reduce_with_subs
)
4926 resurrect_subs (pb
);
4927 gcc_assert (pb
->num_subs
== 0);
4935 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4937 "*** Doing potentially expensive elimination tests "
4938 "for red equations\n");
4940 please_no_equalities_in_simplified_problems
++;
4941 omega_eliminate_red (pb
, true);
4942 please_no_equalities_in_simplified_problems
--;
4945 gcc_assert (pb
->num_eqs
== 0);
4947 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
4948 if (pb
->geqs
[e
].color
== omega_red
)
4951 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4955 "******************** Redundant Red Equations eliminated!!\n");
4958 "******************** Red Equations remain\n");
4960 omega_print_problem (dump_file
, pb
);
4963 if (!omega_reduce_with_subs
)
4965 normalize_return_type r
;
4967 resurrect_subs (pb
);
4968 r
= normalize_omega_problem (pb
);
4969 gcc_assert (r
!= normalize_false
);
4972 cleanout_wildcards (pb
);
4973 gcc_assert (pb
->num_subs
== 0);
4979 /* Calls omega_simplify_problem in approximate mode. */
4982 omega_simplify_approximate (omega_pb pb
)
4984 enum omega_result result
;
4986 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4987 fprintf (dump_file
, "(Entering approximate mode\n");
4989 in_approximate_mode
= true;
4990 result
= omega_simplify_problem (pb
);
4991 in_approximate_mode
= false;
4993 gcc_assert (pb
->num_vars
== pb
->safe_vars
);
4994 if (!omega_reduce_with_subs
)
4995 gcc_assert (pb
->num_subs
== 0);
4997 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4998 fprintf (dump_file
, "Leaving approximate mode)\n");
5004 /* Simplifies problem PB by eliminating redundant constraints and
5005 reducing the constraints system to a minimal form. Returns
5006 omega_true when the problem was successfully reduced, omega_unknown
5007 when the solver is unable to determine an answer. */
5010 omega_simplify_problem (omega_pb pb
)
5014 omega_found_reduction
= omega_false
;
5016 if (!pb
->variables_initialized
)
5017 omega_initialize_variables (pb
);
5019 if (next_key
* 3 > MAX_KEYS
)
5024 next_key
= OMEGA_MAX_VARS
+ 1;
5026 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
5027 pb
->geqs
[e
].touched
= 1;
5029 for (i
= 0; i
< HASH_TABLE_SIZE
; i
++)
5030 hash_master
[i
].touched
= -1;
5032 pb
->hash_version
= hash_version
;
5035 else if (pb
->hash_version
!= hash_version
)
5039 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
5040 pb
->geqs
[e
].touched
= 1;
5042 pb
->hash_version
= hash_version
;
5045 if (pb
->num_vars
> pb
->num_eqs
+ 3 * pb
->safe_vars
)
5046 omega_free_eliminations (pb
, pb
->safe_vars
);
5048 if (!may_be_red
&& pb
->num_subs
== 0 && pb
->safe_vars
== 0)
5050 omega_found_reduction
= omega_solve_problem (pb
, omega_unknown
);
5052 if (omega_found_reduction
!= omega_false
5053 && !return_single_result
)
5057 (*omega_when_reduced
) (pb
);
5060 return omega_found_reduction
;
5063 omega_solve_problem (pb
, omega_simplify
);
5065 if (omega_found_reduction
!= omega_false
)
5067 for (i
= 1; omega_safe_var_p (pb
, i
); i
++)
5068 pb
->forwarding_address
[pb
->var
[i
]] = i
;
5070 for (i
= 0; i
< pb
->num_subs
; i
++)
5071 pb
->forwarding_address
[pb
->subs
[i
].key
] = -i
- 1;
5074 if (!omega_reduce_with_subs
)
5075 gcc_assert (please_no_equalities_in_simplified_problems
5076 || omega_found_reduction
== omega_false
5077 || pb
->num_subs
== 0);
5079 return omega_found_reduction
;
5082 /* Make variable VAR unprotected: it then can be eliminated. */
5085 omega_unprotect_variable (omega_pb pb
, int var
)
5088 idx
= pb
->forwarding_address
[var
];
5095 if (idx
< pb
->num_subs
)
5097 omega_copy_eqn (&pb
->subs
[idx
], &pb
->subs
[pb
->num_subs
],
5099 pb
->forwarding_address
[pb
->subs
[idx
].key
] = -idx
- 1;
5104 int *bring_to_life
= XNEWVEC (int, OMEGA_MAX_VARS
);
5107 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
5108 bring_to_life
[e
] = (pb
->subs
[e
].coef
[idx
] != 0);
5110 for (e2
= pb
->num_subs
- 1; e2
>= 0; e2
--)
5111 if (bring_to_life
[e2
])
5116 if (pb
->safe_vars
< pb
->num_vars
)
5118 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
5120 pb
->geqs
[e
].coef
[pb
->num_vars
] =
5121 pb
->geqs
[e
].coef
[pb
->safe_vars
];
5123 pb
->geqs
[e
].coef
[pb
->safe_vars
] = 0;
5126 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
5128 pb
->eqs
[e
].coef
[pb
->num_vars
] =
5129 pb
->eqs
[e
].coef
[pb
->safe_vars
];
5131 pb
->eqs
[e
].coef
[pb
->safe_vars
] = 0;
5134 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
5136 pb
->subs
[e
].coef
[pb
->num_vars
] =
5137 pb
->subs
[e
].coef
[pb
->safe_vars
];
5139 pb
->subs
[e
].coef
[pb
->safe_vars
] = 0;
5142 pb
->var
[pb
->num_vars
] = pb
->var
[pb
->safe_vars
];
5143 pb
->forwarding_address
[pb
->var
[pb
->num_vars
]] =
5148 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
5149 pb
->geqs
[e
].coef
[pb
->safe_vars
] = 0;
5151 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
5152 pb
->eqs
[e
].coef
[pb
->safe_vars
] = 0;
5154 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
5155 pb
->subs
[e
].coef
[pb
->safe_vars
] = 0;
5158 pb
->var
[pb
->safe_vars
] = pb
->subs
[e2
].key
;
5159 pb
->forwarding_address
[pb
->subs
[e2
].key
] = pb
->safe_vars
;
5161 omega_copy_eqn (&(pb
->eqs
[pb
->num_eqs
]), &(pb
->subs
[e2
]),
5163 pb
->eqs
[pb
->num_eqs
++].coef
[pb
->safe_vars
] = -1;
5164 gcc_assert (pb
->num_eqs
<= OMEGA_MAX_EQS
);
5166 if (e2
< pb
->num_subs
- 1)
5167 omega_copy_eqn (&(pb
->subs
[e2
]), &(pb
->subs
[pb
->num_subs
- 1]),
5173 omega_unprotect_1 (pb
, &idx
, NULL
);
5174 free (bring_to_life
);
5177 chain_unprotect (pb
);
5180 /* Unprotects VAR and simplifies PB. */
5183 omega_constrain_variable_sign (omega_pb pb
, enum omega_eqn_color color
,
5186 int n_vars
= pb
->num_vars
;
5188 int k
= pb
->forwarding_address
[var
];
5197 omega_copy_eqn (&pb
->geqs
[e
], &pb
->subs
[k
], pb
->num_vars
);
5199 for (j
= 0; j
<= n_vars
; j
++)
5200 pb
->geqs
[e
].coef
[j
] *= sign
;
5202 pb
->geqs
[e
].coef
[0]--;
5203 pb
->geqs
[e
].touched
= 1;
5204 pb
->geqs
[e
].color
= color
;
5209 gcc_assert (pb
->num_eqs
<= OMEGA_MAX_EQS
);
5210 omega_copy_eqn (&pb
->eqs
[e
], &pb
->subs
[k
], pb
->num_vars
);
5211 pb
->eqs
[e
].color
= color
;
5217 omega_init_eqn_zero (&pb
->geqs
[e
], pb
->num_vars
);
5218 pb
->geqs
[e
].coef
[k
] = sign
;
5219 pb
->geqs
[e
].coef
[0] = -1;
5220 pb
->geqs
[e
].touched
= 1;
5221 pb
->geqs
[e
].color
= color
;
5226 gcc_assert (pb
->num_eqs
<= OMEGA_MAX_EQS
);
5227 omega_init_eqn_zero (&pb
->eqs
[e
], pb
->num_vars
);
5228 pb
->eqs
[e
].coef
[k
] = 1;
5229 pb
->eqs
[e
].color
= color
;
5232 omega_unprotect_variable (pb
, var
);
5233 return omega_simplify_problem (pb
);
5236 /* Add an equation "VAR = VALUE" with COLOR to PB. */
5239 omega_constrain_variable_value (omega_pb pb
, enum omega_eqn_color color
,
5243 int k
= pb
->forwarding_address
[var
];
5249 gcc_assert (pb
->num_eqs
<= OMEGA_MAX_EQS
);
5250 omega_copy_eqn (&pb
->eqs
[e
], &pb
->subs
[k
], pb
->num_vars
);
5251 pb
->eqs
[e
].coef
[0] -= value
;
5256 omega_init_eqn_zero (&pb
->eqs
[e
], pb
->num_vars
);
5257 pb
->eqs
[e
].coef
[k
] = 1;
5258 pb
->eqs
[e
].coef
[0] = -value
;
5261 pb
->eqs
[e
].color
= color
;
5264 /* Return false when the upper and lower bounds are not coupled.
5265 Initialize the bounds LOWER_BOUND and UPPER_BOUND for the values of
5269 omega_query_variable (omega_pb pb
, int i
, int *lower_bound
, int *upper_bound
)
5271 int n_vars
= pb
->num_vars
;
5274 bool coupled
= false;
5276 *lower_bound
= neg_infinity
;
5277 *upper_bound
= pos_infinity
;
5278 i
= pb
->forwarding_address
[i
];
5284 for (j
= 1; j
<= n_vars
; j
++)
5285 if (pb
->subs
[i
].coef
[j
] != 0)
5288 *upper_bound
= *lower_bound
= pb
->subs
[i
].coef
[0];
5292 for (e
= pb
->num_subs
- 1; e
>= 0; e
--)
5293 if (pb
->subs
[e
].coef
[i
] != 0)
5296 for (e
= pb
->num_eqs
- 1; e
>= 0; e
--)
5297 if (pb
->eqs
[e
].coef
[i
] != 0)
5301 for (j
= 1; j
<= n_vars
; j
++)
5302 if (i
!= j
&& pb
->eqs
[e
].coef
[j
] != 0)
5313 *lower_bound
= *upper_bound
=
5314 -pb
->eqs
[e
].coef
[i
] * pb
->eqs
[e
].coef
[0];
5319 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
5320 if (pb
->geqs
[e
].coef
[i
] != 0)
5322 if (pb
->geqs
[e
].key
== i
)
5323 *lower_bound
= MAX (*lower_bound
, -pb
->geqs
[e
].coef
[0]);
5325 else if (pb
->geqs
[e
].key
== -i
)
5326 *upper_bound
= MIN (*upper_bound
, pb
->geqs
[e
].coef
[0]);
5335 /* Sets the lower bound L and upper bound U for the values of variable
5336 I, and sets COULD_BE_ZERO to true if variable I might take value
5337 zero. LOWER_BOUND and UPPER_BOUND are bounds on the values of
5341 query_coupled_variable (omega_pb pb
, int i
, int *l
, int *u
,
5342 bool *could_be_zero
, int lower_bound
, int upper_bound
)
5349 /* Preconditions. */
5350 gcc_assert (abs (pb
->forwarding_address
[i
]) == 1
5351 && pb
->num_vars
+ pb
->num_subs
== 2
5352 && pb
->num_eqs
+ pb
->num_subs
== 1);
5354 /* Define variable I in terms of variable V. */
5355 if (pb
->forwarding_address
[i
] == -1)
5364 sign
= -eqn
->coef
[1];
5368 for (e
= pb
->num_geqs
- 1; e
>= 0; e
--)
5369 if (pb
->geqs
[e
].coef
[v
] != 0)
5371 if (pb
->geqs
[e
].coef
[v
] == 1)
5372 lower_bound
= MAX (lower_bound
, -pb
->geqs
[e
].coef
[0]);
5375 upper_bound
= MIN (upper_bound
, pb
->geqs
[e
].coef
[0]);
5378 if (lower_bound
> upper_bound
)
5386 if (lower_bound
== neg_infinity
)
5388 if (eqn
->coef
[v
] > 0)
5389 b1
= sign
* neg_infinity
;
5392 b1
= -sign
* neg_infinity
;
5395 b1
= sign
* (eqn
->coef
[0] + eqn
->coef
[v
] * lower_bound
);
5397 if (upper_bound
== pos_infinity
)
5399 if (eqn
->coef
[v
] > 0)
5400 b2
= sign
* pos_infinity
;
5403 b2
= -sign
* pos_infinity
;
5406 b2
= sign
* (eqn
->coef
[0] + eqn
->coef
[v
] * upper_bound
);
5408 *l
= MAX (*l
, b1
<= b2
? b1
: b2
);
5409 *u
= MIN (*u
, b1
<= b2
? b2
: b1
);
5411 *could_be_zero
= (*l
<= 0 && 0 <= *u
5412 && int_mod (eqn
->coef
[0], abs (eqn
->coef
[v
])) == 0);
5415 /* Return false when a lower bound L and an upper bound U for variable
5416 I in problem PB have been initialized. */
5419 omega_query_variable_bounds (omega_pb pb
, int i
, int *l
, int *u
)
5424 if (!omega_query_variable (pb
, i
, l
, u
)
5425 || (pb
->num_vars
== 1 && pb
->forwarding_address
[i
] == 1))
5428 if (abs (pb
->forwarding_address
[i
]) == 1
5429 && pb
->num_vars
+ pb
->num_subs
== 2
5430 && pb
->num_eqs
+ pb
->num_subs
== 1)
5433 query_coupled_variable (pb
, i
, l
, u
, &could_be_zero
, neg_infinity
,
5441 /* For problem PB, return an integer that represents the classic data
5442 dependence direction in function of the DD_LT, DD_EQ and DD_GT bit
5443 masks that are added to the result. When DIST_KNOWN is true, DIST
5444 is set to the classic data dependence distance. LOWER_BOUND and
5445 UPPER_BOUND are bounds on the value of variable I, for example, it
5446 is possible to narrow the iteration domain with safe approximations
5447 of loop counts, and thus discard some data dependences that cannot
5451 omega_query_variable_signs (omega_pb pb
, int i
, int dd_lt
,
5452 int dd_eq
, int dd_gt
, int lower_bound
,
5453 int upper_bound
, bool *dist_known
, int *dist
)
5462 omega_query_variable (pb
, i
, &l
, &u
);
5463 query_coupled_variable (pb
, i
, &l
, &u
, &could_be_zero
, lower_bound
,
5482 *dist_known
= false;
5487 /* Initialize PB as an Omega problem with NVARS variables and NPROT
5488 safe variables. Safe variables are not eliminated during the
5489 Fourier-Motzkin elimination. Safe variables are all those
5490 variables that are placed at the beginning of the array of
5491 variables: P->var[0, ..., NPROT - 1]. */
5494 omega_alloc_problem (int nvars
, int nprot
)
5498 gcc_assert (nvars
<= OMEGA_MAX_VARS
);
5499 omega_initialize ();
5501 /* Allocate and initialize PB. */
5502 pb
= XCNEW (struct omega_pb
);
5503 pb
->var
= XCNEWVEC (int, OMEGA_MAX_VARS
+ 2);
5504 pb
->forwarding_address
= XCNEWVEC (int, OMEGA_MAX_VARS
+ 2);
5505 pb
->geqs
= omega_alloc_eqns (0, OMEGA_MAX_GEQS
);
5506 pb
->eqs
= omega_alloc_eqns (0, OMEGA_MAX_EQS
);
5507 pb
->subs
= omega_alloc_eqns (0, OMEGA_MAX_VARS
+ 1);
5509 pb
->hash_version
= hash_version
;
5510 pb
->num_vars
= nvars
;
5511 pb
->safe_vars
= nprot
;
5512 pb
->variables_initialized
= false;
5513 pb
->variables_freed
= false;
5520 /* Keeps the state of the initialization. */
5521 static bool omega_initialized
= false;
5523 /* Initialization of the Omega solver. */
5526 omega_initialize (void)
5530 if (omega_initialized
)
5534 next_key
= OMEGA_MAX_VARS
+ 1;
5535 packing
= XCNEWVEC (int, OMEGA_MAX_VARS
);
5536 fast_lookup
= XCNEWVEC (int, MAX_KEYS
* 2);
5537 fast_lookup_red
= XCNEWVEC (int, MAX_KEYS
* 2);
5538 hash_master
= omega_alloc_eqns (0, HASH_TABLE_SIZE
);
5540 for (i
= 0; i
< HASH_TABLE_SIZE
; i
++)
5541 hash_master
[i
].touched
= -1;
5543 sprintf (wild_name
[0], "1");
5544 sprintf (wild_name
[1], "a");
5545 sprintf (wild_name
[2], "b");
5546 sprintf (wild_name
[3], "c");
5547 sprintf (wild_name
[4], "d");
5548 sprintf (wild_name
[5], "e");
5549 sprintf (wild_name
[6], "f");
5550 sprintf (wild_name
[7], "g");
5551 sprintf (wild_name
[8], "h");
5552 sprintf (wild_name
[9], "i");
5553 sprintf (wild_name
[10], "j");
5554 sprintf (wild_name
[11], "k");
5555 sprintf (wild_name
[12], "l");
5556 sprintf (wild_name
[13], "m");
5557 sprintf (wild_name
[14], "n");
5558 sprintf (wild_name
[15], "o");
5559 sprintf (wild_name
[16], "p");
5560 sprintf (wild_name
[17], "q");
5561 sprintf (wild_name
[18], "r");
5562 sprintf (wild_name
[19], "s");
5563 sprintf (wild_name
[20], "t");
5564 sprintf (wild_name
[40 - 1], "alpha");
5565 sprintf (wild_name
[40 - 2], "beta");
5566 sprintf (wild_name
[40 - 3], "gamma");
5567 sprintf (wild_name
[40 - 4], "delta");
5568 sprintf (wild_name
[40 - 5], "tau");
5569 sprintf (wild_name
[40 - 6], "sigma");
5570 sprintf (wild_name
[40 - 7], "chi");
5571 sprintf (wild_name
[40 - 8], "omega");
5572 sprintf (wild_name
[40 - 9], "pi");
5573 sprintf (wild_name
[40 - 10], "ni");
5574 sprintf (wild_name
[40 - 11], "Alpha");
5575 sprintf (wild_name
[40 - 12], "Beta");
5576 sprintf (wild_name
[40 - 13], "Gamma");
5577 sprintf (wild_name
[40 - 14], "Delta");
5578 sprintf (wild_name
[40 - 15], "Tau");
5579 sprintf (wild_name
[40 - 16], "Sigma");
5580 sprintf (wild_name
[40 - 17], "Chi");
5581 sprintf (wild_name
[40 - 18], "Omega");
5582 sprintf (wild_name
[40 - 19], "xxx");
5584 omega_initialized
= true;