summaryrefslogtreecommitdiff
path: root/cfrontend/Csem.v
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2007-11-13 14:49:02 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2007-11-13 14:49:02 +0000
commitb9eef9995d212255ee1fa94877ca891aee6adfc3 (patch)
tree8cf5eff91187ece3036f071f510db2e7e1b736a6 /cfrontend/Csem.v
parent3db50bce2c4f3178da9bcc8baac167540ca89019 (diff)
In Clight, revised handling of comparisons between pointers and 0
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@447 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'cfrontend/Csem.v')
-rw-r--r--cfrontend/Csem.v35
1 files changed, 15 insertions, 20 deletions
diff --git a/cfrontend/Csem.v b/cfrontend/Csem.v
index 8d8f88a..7617616 100644
--- a/cfrontend/Csem.v
+++ b/cfrontend/Csem.v
@@ -266,35 +266,30 @@ Function sem_cmp (c:comparison)
match classify_cmp t1 t2 with
| cmp_case_I32unsi =>
match v1,v2 with
- | Vint n1, Vint n2 =>Some (Val.of_bool (Int.cmpu c n1 n2))
+ | Vint n1, Vint n2 => Some (Val.of_bool (Int.cmpu c n1 n2))
| _, _ => None
end
- | cmp_case_ii =>
- match v1,v2 with
- | Vint n1, Vint n2 =>Some (Val.of_bool (Int.cmp c n1 n2))
- | _, _ => None
- end
- | cmp_case_ff =>
- match v1,v2 with
- | Vfloat f1, Vfloat f2 =>Some (Val.of_bool (Float.cmp c f1 f2))
- | _, _ => None
- end
- | cmp_case_pi =>
- match v1,v2 with
- | Vptr b ofs, Vint n2 =>
- if Int.eq n2 Int.zero then sem_cmp_mismatch c else None
- | _, _ => None
- end
- | cmp_case_pp =>
+ | cmp_case_ipip =>
match v1,v2 with
+ | Vint n1, Vint n2 => Some (Val.of_bool (Int.cmp c n1 n2))
| Vptr b1 ofs1, Vptr b2 ofs2 =>
- if valid_pointer m b1 (Int.signed ofs1) && valid_pointer m b2 (Int.signed ofs2) then
+ if valid_pointer m b1 (Int.signed ofs1)
+ && valid_pointer m b2 (Int.signed ofs2) then
if zeq b1 b2
then Some (Val.of_bool (Int.cmp c ofs1 ofs2))
else None
else None
+ | Vptr b ofs, Vint n =>
+ if Int.eq n Int.zero then sem_cmp_mismatch c else None
+ | Vint n, Vptr b ofs =>
+ if Int.eq n Int.zero then sem_cmp_mismatch c else None
| _, _ => None
- end
+ end
+ | cmp_case_ff =>
+ match v1,v2 with
+ | Vfloat f1, Vfloat f2 => Some (Val.of_bool (Float.cmp c f1 f2))
+ | _, _ => None
+ end
| cmp_default => None
end.