aboutsummaryrefslogtreecommitdiffstats
path: root/arm
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2019-06-01 08:48:20 +0200
committerXavier Leroy <xavier.leroy@college-de-france.fr>2019-06-01 08:48:20 +0200
commitb7e0d70de2ace6f0a22f9f65cc244d875ee48496 (patch)
tree6efa684cdd80d31ee38d54577e65285fee61450a /arm
parent95938a8732b572d61955b1de8c49362c9e162640 (diff)
downloadcompcert-kvx-b7e0d70de2ace6f0a22f9f65cc244d875ee48496.tar.gz
compcert-kvx-b7e0d70de2ace6f0a22f9f65cc244d875ee48496.zip
ARM: select is not supported at type Tlong
Diffstat (limited to 'arm')
-rw-r--r--arm/SelectOp.vp9
-rw-r--r--arm/SelectOpproof.v4
2 files changed, 11 insertions, 2 deletions
diff --git a/arm/SelectOp.vp b/arm/SelectOp.vp
index 61ea6283..d04832d6 100644
--- a/arm/SelectOp.vp
+++ b/arm/SelectOp.vp
@@ -383,7 +383,14 @@ Definition compfs (c: comparison) (e1: expr) (e2: expr) :=
Eop (Ocmp (Ccompfs c)) (e1 ::: e2 ::: Enil).
Definition select (ty: typ) (cond: condition) (args: exprlist) (e1 e2: expr) :=
- Some (Eop (Osel cond ty) (e1 ::: e2 ::: args)).
+ if match ty with
+ | Tint => true
+ | Tfloat => true
+ | Tsingle => true
+ | _ => false
+ end
+ then Some (Eop (Osel cond ty) (e1 ::: e2 ::: args))
+ else None.
(** ** Integer conversions *)
diff --git a/arm/SelectOpproof.v b/arm/SelectOpproof.v
index f281f7ce..8b546971 100644
--- a/arm/SelectOpproof.v
+++ b/arm/SelectOpproof.v
@@ -746,7 +746,9 @@ Theorem eval_select:
eval_expr ge sp e m le a v
/\ Val.lessdef (Val.select (Some b) v1 v2 ty) v.
Proof.
- unfold select; intros; inv H. rewrite <- H3; TrivialExists.
+ unfold select; intros.
+ destruct (match ty with Tint | Tfloat | Tsingle => true | _ => false end); inv H.
+ rewrite <- H3; TrivialExists.
Qed.
Theorem eval_cast8signed: unary_constructor_sound cast8signed (Val.sign_ext 8).