-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInstr.v
23 lines (19 loc) · 1.06 KB
/
Instr.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(* *****************************************************************)
(* *)
(* Verified polyhedral AST generation *)
(* *)
(* Nathanaël Courant, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed *)
(* under the terms of the GNU Lesser General Public License as *)
(* published by the Free Software Foundation, either version 2.1 *)
(* of the License, or (at your option) any later version. *)
(* *)
(* *****************************************************************)
Require Import ZArith.
Require Import List.
Require Import Semantics.
(** * The basic instructions and their semantics *)
Parameter instr : Type.
Parameter dummy_instr : instr.
Parameter instr_semantics : instr -> list Z -> mem -> mem -> Prop.