summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-04-09 14:59:29 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-04-09 14:59:29 -0400
commitda10cbf6f232203ba7c798906ba8101078e2a9c9 (patch)
tree8052e6baf99774d61edc40c73a4d2ea997f9707d
parentf181919900b537dca8d42760c4131da446a7e00d (diff)
Retry failed record summary unifications at the end, in hopes that more has been learned
-rw-r--r--src/elaborate.sml83
-rw-r--r--tests/cst.ur4
2 files changed, 65 insertions, 22 deletions
diff --git a/src/elaborate.sml b/src/elaborate.sml
index 6ee32da1..21b32f40 100644
--- a/src/elaborate.sml
+++ b/src/elaborate.sml
@@ -497,6 +497,24 @@
others : L'.con list
}
+ fun normalizeRecordSummary env (r : record_summary) =
+ let
+ val (fields, unifs, others) =
+ foldl (fn (u as (uc, _), (fields, unifs, others)) =>
+ let
+ val uc' = hnormCon env uc
+ in
+ case #1 uc' of
+ L'.CUnif _ => (fields, u :: unifs, others)
+ | L'.CRecord (_, fs) => (fs @ fields, unifs, others)
+ | L'.CConcat ((L'.CRecord (_, fs), _), rest) => (fs @ fields, unifs, rest :: others)
+ | _ => (fields, unifs, uc' :: others)
+ end)
+ (#fields r, [], #others r) (#unifs r)
+ in
+ {fields = fields, unifs = unifs, others = others}
+ end
+
fun summaryToCon {fields, unifs, others} =
let
val c = (L'.CRecord (ktype, []), dummy)
@@ -620,6 +638,9 @@
val recdCounter = ref 0
+ val mayDelay = ref false
+ val delayedUnifs = ref ([] : (E.env * L'.kind * record_summary * record_summary) list)
+
fun unifyRecordCons env (c1, c2) =
let
fun rkindof c =
@@ -787,20 +808,24 @@
(*val () = eprefaces "Summaries5" [("#1", p_summary env {fields = fs1, unifs = unifs1, others = others1}),
("#2", p_summary env {fields = fs2, unifs = unifs2, others = others2})]*)
- val clear = case (fs1, others1, fs2, others2) of
- ([], [], [], []) => true
- | _ => false
val empty = (L'.CRecord (k, []), dummy)
+ fun failure () = raise CUnify' (CRecordFailure (unsummarize s1, unsummarize s2))
in
case (unifs1, fs1, others1, unifs2, fs2, others2) of
(_, [], [], [], [], []) =>
app (fn (_, r) => r := SOME empty) unifs1
| ([], [], [], _, [], []) =>
app (fn (_, r) => r := SOME empty) unifs2
- | _ => if clear then
- ()
- else
- raise CUnify' (CRecordFailure (unsummarize s1, unsummarize s2))
+ | ([], _, _, _, _ :: _, _) => failure ()
+ | ([], _, _, _, _, _ :: _) => failure ()
+ | (_, _ :: _, _, [], _, _) => failure ()
+ | (_, _, _ :: _, [], _, _) => failure ()
+ | _ =>
+ if !mayDelay then
+ delayedUnifs := (env, k, s1, s2) :: !delayedUnifs
+ else
+ failure ()
+
(*before eprefaces "Summaries'" [("#1", p_summary env s1),
("#2", p_summary env s2)]*)
end
@@ -3554,6 +3579,9 @@ and elabStr (env, denv) (str, loc) =
fun elabFile basis topStr topSgn env file =
let
+ val () = mayDelay := true
+ val () = delayedUnifs := []
+
val (sgn, gs) = elabSgn (env, D.empty) (L.SgnConst basis, ErrorMsg.dummySpan)
val () = case gs of
[] => ()
@@ -3611,31 +3639,46 @@ fun elabFile basis topStr topSgn env file =
val (ds', env') = dopen env' {str = top_n, strs = [], sgn = topSgn}
+ val checks = ref ([] : (unit -> unit) list)
+
fun elabDecl' (d, (env, gs)) =
let
val () = resetKunif ()
val () = resetCunif ()
val (ds, (env, _, gs)) = elabDecl (d, (env, D.empty, gs))
in
- if ErrorMsg.anyErrors () then
- ()
- else (
- if List.exists kunifsInDecl ds then
- declError env (KunifsRemain ds)
- else
- ();
-
- case ListUtil.search cunifsInDecl ds of
- NONE => ()
- | SOME loc =>
- declError env (CunifsRemain ds)
- );
+ checks :=
+ (fn () =>
+ (if List.exists kunifsInDecl ds then
+ declError env (KunifsRemain ds)
+ else
+ ();
+
+ case ListUtil.search cunifsInDecl ds of
+ NONE => ()
+ | SOME loc =>
+ declError env (CunifsRemain ds)))
+ :: !checks;
(ds, (env, gs))
end
val (file, (_, gs)) = ListUtil.foldlMapConcat elabDecl' (env', []) file
in
+ mayDelay := false;
+
+ app (fn (env, k, s1, s2) =>
+ unifySummaries env (k, normalizeRecordSummary env s1, normalizeRecordSummary env s2)
+ handle CUnify' err => (ErrorMsg.errorAt (#2 k) "Error in final record unification";
+ cunifyError env err))
+ (!delayedUnifs);
+ delayedUnifs := [];
+
+ if ErrorMsg.anyErrors () then
+ ()
+ else
+ app (fn f => f ()) (!checks);
+
if ErrorMsg.anyErrors () then
()
else
diff --git a/tests/cst.ur b/tests/cst.ur
index cbaa36ed..2db083f7 100644
--- a/tests/cst.ur
+++ b/tests/cst.ur
@@ -22,9 +22,9 @@ table t : {A : int, B : int, C : option int}
CONSTRAINT ForAB FOREIGN KEY (A, B) REFERENCES u (D, C) ON DELETE CASCADE ON UPDATE RESTRICT,
CONSTRAINT ForBA FOREIGN KEY (A, B) REFERENCES u (C, D) ON UPDATE NO ACTION,
CONSTRAINT ForB FOREIGN KEY B REFERENCES u (E),
- CONSTRAINT ForC FOREIGN KEY C REFERENCES u (C)
+ CONSTRAINT ForC FOREIGN KEY C REFERENCES u (C),
- (*CONSTRAINT Self FOREIGN KEY B REFERENCES t (B)*)
+ CONSTRAINT Self FOREIGN KEY B REFERENCES t (B)
table s : {B : option int}
CONSTRAINT UniB UNIQUE B