aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/Pipeline.v
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-12-17 10:04:21 +0000
committerYann Herklotz <git@yannherklotz.com>2020-12-17 10:04:21 +0000
commit8a0bd7b74939b65a89b81352b238d1d8252fb278 (patch)
treebd6a099b74e2035da32fe963c688c907f9c46722 /src/hls/Pipeline.v
parentfd52cc1edbe192e3a4b6e6780be8761d5702664b (diff)
downloadvericert-8a0bd7b74939b65a89b81352b238d1d8252fb278.tar.gz
vericert-8a0bd7b74939b65a89b81352b238d1d8252fb278.zip
Add extraction and loop pipelining stage
Diffstat (limited to 'src/hls/Pipeline.v')
-rw-r--r--src/hls/Pipeline.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/hls/Pipeline.v b/src/hls/Pipeline.v
new file mode 100644
index 0000000..ea0c32e
--- /dev/null
+++ b/src/hls/Pipeline.v
@@ -0,0 +1,11 @@
+From compcert Require Import
+ Maps
+ AST
+ RTL.
+
+Parameter pipeline : function -> function.
+
+Definition transf_fundef := transf_fundef pipeline.
+
+Definition transf_program : program -> program :=
+ transform_program transf_fundef.