aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-01-10 12:11:01 +0000
committerYann Herklotz <git@yannherklotz.com>2021-01-10 12:11:01 +0000
commit4ff1d635ca5251c1008e69a7aea94c4ad703c7b9 (patch)
tree9b500e0036501e19fbdca91c253a5577bd8a7ea4
parentda34700998cbaf705c761a3d5b3a4e14994623e4 (diff)
downloadvericert-kvx-4ff1d635ca5251c1008e69a7aea94c4ad703c7b9.tar.gz
vericert-kvx-4ff1d635ca5251c1008e69a7aea94c4ad703c7b9.zip
Add correct copyright notices in files
-rw-r--r--src/common/IntegerExtra.v19
-rw-r--r--src/common/Maps.v19
-rw-r--r--src/common/Monad.v18
-rw-r--r--src/common/Statemonad.v18
-rw-r--r--src/common/ZExtra.v19
-rw-r--r--src/hls/Array.v18
-rw-r--r--src/hls/AssocMap.v1
-rw-r--r--src/hls/HTL.v1
-rw-r--r--src/hls/HTLgen.v1
-rw-r--r--src/hls/HTLgenproof.v1
-rw-r--r--src/hls/HTLgenspec.v1
-rw-r--r--src/hls/PrintVerilog.ml1
-rw-r--r--src/hls/Verilog.v1
13 files changed, 118 insertions, 0 deletions
diff --git a/src/common/IntegerExtra.v b/src/common/IntegerExtra.v
index 185f669..d36fcee 100644
--- a/src/common/IntegerExtra.v
+++ b/src/common/IntegerExtra.v
@@ -1,3 +1,22 @@
+(*
+ * Vericert: Verified high-level synthesis.
+ * Copyright (C) 2020-2021 Yann Herklotz <yann@yannherklotz.com>
+ * 2020 James Pollard <j@mes.dev>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *)
+
Require Import BinInt.
Require Import Lia.
Require Import ZBinary.
diff --git a/src/common/Maps.v b/src/common/Maps.v
index b5a2fb2..696c9b8 100644
--- a/src/common/Maps.v
+++ b/src/common/Maps.v
@@ -1,3 +1,22 @@
+(*
+ * Vericert: Verified high-level synthesis.
+ * Copyright (C) 2020 Yann Herklotz <yann@yannherklotz.com>
+ * 2020 James Pollard <j@mes.dev>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *)
+
From vericert Require Import Vericertlib.
From compcert Require Export Maps.
diff --git a/src/common/Monad.v b/src/common/Monad.v
index 8517186..5e8385e 100644
--- a/src/common/Monad.v
+++ b/src/common/Monad.v
@@ -1,3 +1,21 @@
+(*
+ * Vericert: Verified high-level synthesis.
+ * Copyright (C) 2020 Yann Herklotz <yann@yannherklotz.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *)
+
From Coq Require Import Lists.List.
Module Type Monad.
diff --git a/src/common/Statemonad.v b/src/common/Statemonad.v
index 2eada2f..16dcbbf 100644
--- a/src/common/Statemonad.v
+++ b/src/common/Statemonad.v
@@ -1,3 +1,21 @@
+(*
+ * Vericert: Verified high-level synthesis.
+ * Copyright (C) 2020 Yann Herklotz <yann@yannherklotz.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *)
+
From compcert Require Errors.
From vericert Require Import Monad.
From Coq Require Import Lists.List.
diff --git a/src/common/ZExtra.v b/src/common/ZExtra.v
index 5f9034e..62ca54d 100644
--- a/src/common/ZExtra.v
+++ b/src/common/ZExtra.v
@@ -1,3 +1,22 @@
+(*
+ * Vericert: Verified high-level synthesis.
+ * Copyright (C) 2020 Yann Herklotz <yann@yannherklotz.com>
+ * 2020 James Pollard <j@mes.dev>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *)
+
Require Import Coq.ZArith.BinInt.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
diff --git a/src/hls/Array.v b/src/hls/Array.v
index 5eca269..5c7ebc7 100644
--- a/src/hls/Array.v
+++ b/src/hls/Array.v
@@ -1,3 +1,21 @@
+(*
+ * Vericert: Verified high-level synthesis.
+ * Copyright (C) 2020 James Pollard <j@mes.dev>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *)
+
Set Implicit Arguments.
Require Import Lia.
diff --git a/src/hls/AssocMap.v b/src/hls/AssocMap.v
index 8d8788a..51afed7 100644
--- a/src/hls/AssocMap.v
+++ b/src/hls/AssocMap.v
@@ -1,6 +1,7 @@
(*
* Vericert: Verified high-level synthesis.
* Copyright (C) 2020 Yann Herklotz <yann@yannherklotz.com>
+ * 2020 James Pollard <j@mes.dev>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/hls/HTL.v b/src/hls/HTL.v
index 620ef14..d1c901f 100644
--- a/src/hls/HTL.v
+++ b/src/hls/HTL.v
@@ -1,6 +1,7 @@
(*
* Vericert: Verified high-level synthesis.
* Copyright (C) 2020 Yann Herklotz <yann@yannherklotz.com>
+ * 2020 James Pollard <j@mes.dev>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/hls/HTLgen.v b/src/hls/HTLgen.v
index 5f0f8bf..4c49828 100644
--- a/src/hls/HTLgen.v
+++ b/src/hls/HTLgen.v
@@ -1,6 +1,7 @@
(*
* Vericert: Verified high-level synthesis.
* Copyright (C) 2020 Yann Herklotz <yann@yannherklotz.com>
+ * 2020 James Pollard <j@mes.dev>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/hls/HTLgenproof.v b/src/hls/HTLgenproof.v
index afc827d..f2de2d9 100644
--- a/src/hls/HTLgenproof.v
+++ b/src/hls/HTLgenproof.v
@@ -1,6 +1,7 @@
(*
* Vericert: Verified high-level synthesis.
* Copyright (C) 2020 Yann Herklotz <yann@yannherklotz.com>
+ * 2020 James Pollard <j@mes.dev>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/hls/HTLgenspec.v b/src/hls/HTLgenspec.v
index 541f9fa..2bd1a2a 100644
--- a/src/hls/HTLgenspec.v
+++ b/src/hls/HTLgenspec.v
@@ -1,6 +1,7 @@
(*
* Vericert: Verified high-level synthesis.
* Copyright (C) 2020 Yann Herklotz <yann@yannherklotz.com>
+ * 2020 James Pollard <j@mes.dev>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/hls/PrintVerilog.ml b/src/hls/PrintVerilog.ml
index 44710b8..4a6c165 100644
--- a/src/hls/PrintVerilog.ml
+++ b/src/hls/PrintVerilog.ml
@@ -1,6 +1,7 @@
(* -*- mode: tuareg -*-
* Vericert: Verified high-level synthesis.
* Copyright (C) 2019-2020 Yann Herklotz <yann@yannherklotz.com>
+ * 2020 James Pollard <j@mes.dev>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/hls/Verilog.v b/src/hls/Verilog.v
index e5f86d5..ea9749d 100644
--- a/src/hls/Verilog.v
+++ b/src/hls/Verilog.v
@@ -1,6 +1,7 @@
(*
* Vericert: Verified high-level synthesis.
* Copyright (C) 2019-2020 Yann Herklotz <yann@yannherklotz.com>
+ * 2020 James Pollard <j@mes.dev>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by