aboutsummaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorPierre Goutagny <pierre.goutagny@ens-lyon.fr>2021-06-17 17:31:10 +0200
committerPierre Goutagny <pierre.goutagny@ens-lyon.fr>2021-06-17 17:31:10 +0200
commit95f918c38b1e59f40ae7af455ec2c6746289375e (patch)
tree942f79d59e053dc4249b99caf7792dc0a0f5ee7a /backend
parent8dc2366431f9210ad70a789c389d9d19c6fc802f (diff)
downloadcompcert-kvx-95f918c38b1e59f40ae7af455ec2c6746289375e.tar.gz
compcert-kvx-95f918c38b1e59f40ae7af455ec2c6746289375e.zip
Change "Tunneling" to "LTLTunneling" everywhere
To respect the symmetry between RTL- and LTL-Tunneling
Diffstat (limited to 'backend')
-rw-r--r--backend/LTLTunneling.v (renamed from backend/Tunneling.v)2
-rw-r--r--backend/LTLTunnelingaux.ml (renamed from backend/Tunnelingaux.ml)2
-rw-r--r--backend/LTLTunnelingproof.v (renamed from backend/Tunnelingproof.v)2
-rw-r--r--backend/RTLTunneling.v2
-rw-r--r--backend/Tunnelinglibs.ml2
5 files changed, 5 insertions, 5 deletions
diff --git a/backend/Tunneling.v b/backend/LTLTunneling.v
index c849ea92..4b404724 100644
--- a/backend/Tunneling.v
+++ b/backend/LTLTunneling.v
@@ -77,7 +77,7 @@ Definition UF := PTree.t (node * Z).
(* The oracle returns a map of "nop" node to their target with a distance (ie the number of the "nop" node on the path) to the target. *)
Axiom branch_target: LTL.function -> UF.
-Extract Constant branch_target => "Tunnelingaux.branch_target".
+Extract Constant branch_target => "LTLTunnelingaux.branch_target".
Local Open Scope error_monad_scope.
diff --git a/backend/Tunnelingaux.ml b/backend/LTLTunnelingaux.ml
index d4b88a5d..c3b8cf82 100644
--- a/backend/Tunnelingaux.ml
+++ b/backend/LTLTunnelingaux.ml
@@ -15,7 +15,7 @@
This file implements the [branch_target] oracle that identifies "nop" branches in a LTL function,
and computes their target node with the distance (ie the number of cummulated nops) toward this target.
-See [Tunneling.v]
+See [LTLTunneling.v]
*)
diff --git a/backend/Tunnelingproof.v b/backend/LTLTunnelingproof.v
index 3bc92f75..d36d3c76 100644
--- a/backend/Tunnelingproof.v
+++ b/backend/LTLTunnelingproof.v
@@ -17,7 +17,7 @@ Require Import Coqlib Maps Errors.
Require Import AST Linking.
Require Import Values Memory Events Globalenvs Smallstep.
Require Import Op Locations LTL.
-Require Import Tunneling.
+Require Import LTLTunneling.
Local Open Scope nat.
diff --git a/backend/RTLTunneling.v b/backend/RTLTunneling.v
index 049160fd..df663f48 100644
--- a/backend/RTLTunneling.v
+++ b/backend/RTLTunneling.v
@@ -19,7 +19,7 @@ Require Import Coqlib Maps Errors.
Require Import AST.
Require Import RTL.
-(* This is a port of tunneling for LTL. See Tunneling.v *)
+(* This is a port of tunneling for LTL. See LTLTunneling.v *)
Definition UF := PTree.t (node * Z).
diff --git a/backend/Tunnelinglibs.ml b/backend/Tunnelinglibs.ml
index 1bb35f7a..7c826ba4 100644
--- a/backend/Tunnelinglibs.ml
+++ b/backend/Tunnelinglibs.ml
@@ -16,7 +16,7 @@
This file implements the core functions of the tunneling passes, for both RTL
and LTL, by using a simplified CFG as a transparent interface
-See [Tunneling.v] and [RTLTunneling.v]
+See [LTLTunneling.v] and [RTLTunneling.v]
*)