aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-01-13 17:57:38 +0000
committerYann Herklotz <git@yannherklotz.com>2021-01-13 17:57:38 +0000
commit9cf525f98785f66066ed841f07c1b69312a0a0f9 (patch)
tree445220da4dfd817c80357accdc0fba66a0949394
parent6cff3d1683ed19ca497975394d9a11df1b027c28 (diff)
downloadvericert-kvx-9cf525f98785f66066ed841f07c1b69312a0a0f9.tar.gz
vericert-kvx-9cf525f98785f66066ed841f07c1b69312a0a0f9.zip
Remove HTLSchedulegen
-rw-r--r--src/hls/HTLSchedulegen.v42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/hls/HTLSchedulegen.v b/src/hls/HTLSchedulegen.v
deleted file mode 100644
index 1ae3bf6..0000000
--- a/src/hls/HTLSchedulegen.v
+++ /dev/null
@@ -1,42 +0,0 @@
-(*
- * 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 Import Maps.
-From compcert Require Errors Globalenvs Integers.
-From compcert Require Import AST.
-From vericert Require Import RTLBlock Verilog HTL Vericertlib AssocMap ValueInt Statemonad.
-
-Parameter transl_module : function -> Errors.res module.
-
-Definition transl_fundef := transf_partial_fundef transl_module.
-
-Definition main_is_internal (p : RTLBlock.program) : bool :=
- let ge := Globalenvs.Genv.globalenv p in
- match Globalenvs.Genv.find_symbol ge p.(AST.prog_main) with
- | Some b =>
- match Globalenvs.Genv.find_funct_ptr ge b with
- | Some (AST.Internal _) => true
- | _ => false
- end
- | _ => false
- end.
-
-Definition transl_program (p : RTLBlock.program) : Errors.res HTL.program :=
- if main_is_internal p
- then transform_partial_program transl_fundef p
- else Errors.Error (Errors.msg "Main function is not Internal.").