aboutsummaryrefslogtreecommitdiffstats
path: root/ia32
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2015-07-19 09:29:45 +0200
committerXavier Leroy <xavier.leroy@inria.fr>2015-07-19 09:29:45 +0200
commit2932b531ceff2cd4573714aeaeb9b4e537d36af8 (patch)
treeed42351e245c076b8cd360d0e753e8c61090e8e5 /ia32
parent74d06cfedc4a57fbb0be8772431033120b553ab2 (diff)
downloadcompcert-2932b531ceff2cd4573714aeaeb9b4e537d36af8.tar.gz
compcert-2932b531ceff2cd4573714aeaeb9b4e537d36af8.zip
Value analysis: keep track of pointer values that leak through arithmetic operations with undefined behaviors.
Consider (x ^ 1) ^ 1 where x is a intptr_t containing a pointer value. "x ^ 1" evaluates to Vundef in the CompCert semantics, hence the value analysis, in strict mode, gives abstract result Ifptr Pbot (= any number but not a pointer). In relaxed mode, we now give abstract result Ifptr (poffset p) where p is the abstraction of the pointer, thus keeping track of the actual leak of the pointer value.
Diffstat (limited to 'ia32')
-rw-r--r--ia32/ValueAOp.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/ia32/ValueAOp.v b/ia32/ValueAOp.v
index 53013337..93fd8954 100644
--- a/ia32/ValueAOp.v
+++ b/ia32/ValueAOp.v
@@ -56,8 +56,8 @@ Definition eval_static_operation (op: operation) (vl: list aval): aval :=
match op, vl with
| Omove, v1::nil => v1
| Ointconst n, nil => I n
- | Ofloatconst n, nil => if propagate_float_constants tt then F n else ftop
- | Osingleconst n, nil => if propagate_float_constants tt then FS n else ftop
+ | Ofloatconst n, nil => if propagate_float_constants tt then F n else ntop
+ | Osingleconst n, nil => if propagate_float_constants tt then FS n else ntop
| Oindirectsymbol id, nil => Ifptr (Gl id Int.zero)
| Ocast8signed, v1 :: nil => sign_ext 8 v1
| Ocast8unsigned, v1 :: nil => zero_ext 8 v1
@@ -132,7 +132,7 @@ Proof.
inv VM.
destruct cond; auto with va.
inv H0.
- destruct cond; simpl; eauto with va.
+ destruct cond; simpl; eauto with va.
inv H2.
destruct cond; simpl; eauto with va.
destruct cond; auto with va.