summaryrefslogtreecommitdiff
path: root/powerpc/Op.v
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-10-28 14:56:39 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-10-28 14:56:39 +0000
commit14a9bb4b267eeead8cd9503ee19e860a8bc0d763 (patch)
treec70dda532a974a7b62969c6b199b80d65784dc91 /powerpc/Op.v
parentb54721f58c2ecb65ce554d8b34f214d5121a2b0c (diff)
Float.intoffloat and Float.intuoffloat are now partial functions.
(May fail if float is too big to be converted.) git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1544 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'powerpc/Op.v')
-rw-r--r--powerpc/Op.v5
1 files changed, 4 insertions, 1 deletions
diff --git a/powerpc/Op.v b/powerpc/Op.v
index 902fc02..6f05e55 100644
--- a/powerpc/Op.v
+++ b/powerpc/Op.v
@@ -247,7 +247,7 @@ Definition eval_operation
| Osingleoffloat, v1 :: nil =>
Some (Val.singleoffloat v1)
| Ointoffloat, Vfloat f1 :: nil =>
- Some (Vint (Float.intoffloat f1))
+ option_map Vint (Float.intoffloat f1)
| Ofloatofwords, Vint i1 :: Vint i2 :: nil =>
Some (Vfloat (Float.from_words i1 i2))
| Ocmp c, _ =>
@@ -515,6 +515,7 @@ Proof.
destruct (Int.ltu i0 Int.iwordsize).
injection H0; intro; subst v; exact I. discriminate.
destruct v0; exact I.
+ destruct (Float.intoffloat f); simpl in H0; inv H0. exact I.
destruct (eval_condition c vl).
destruct b; injection H0; intro; subst v; exact I.
discriminate.
@@ -678,6 +679,7 @@ Proof.
destruct (Int.ltu i Int.iwordsize); congruence.
destruct (Int.ltu i Int.iwordsize); congruence.
destruct (Int.ltu i0 Int.iwordsize); congruence.
+ destruct (Float.intoffloat f); inv H. auto.
caseEq (eval_condition c vl); intros; rewrite H0 in H.
replace v with (Val.of_bool b).
eapply eval_condition_weaken; eauto.
@@ -782,6 +784,7 @@ Proof.
destruct (Int.ltu i Int.iwordsize); inv H0; TrivialExists.
destruct (Int.ltu i0 Int.iwordsize); inv H0; TrivialExists.
exists (Val.singleoffloat v2); split. auto. apply Val.singleoffloat_lessdef; auto.
+ destruct (Float.intoffloat f); simpl in *; inv H0. TrivialExists.
caseEq (eval_condition c vl1); intros. rewrite H1 in H0.
rewrite (eval_condition_lessdef c H H1).
destruct b; inv H0; TrivialExists.