aboutsummaryrefslogtreecommitdiffstats
path: root/checklink/Bitstring_utils.ml
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2015-10-12 11:48:36 +0200
committerXavier Leroy <xavier.leroy@inria.fr>2015-10-12 11:48:36 +0200
commit3ab947ce345e9d18ddcda57d8f88b2a9b8f5d267 (patch)
tree41afaa730849b6f9e8116ddc3068044928997d8c /checklink/Bitstring_utils.ml
parentef0f69dc1caeab169dcefca4d8b89f4d9e756bb5 (diff)
downloadcompcert-3ab947ce345e9d18ddcda57d8f88b2a9b8f5d267.tar.gz
compcert-3ab947ce345e9d18ddcda57d8f88b2a9b8f5d267.zip
Removal of cchecklink, superseded by AbsInt's Valex tool.
Diffstat (limited to 'checklink/Bitstring_utils.ml')
-rw-r--r--checklink/Bitstring_utils.ml33
1 files changed, 0 insertions, 33 deletions
diff --git a/checklink/Bitstring_utils.ml b/checklink/Bitstring_utils.ml
deleted file mode 100644
index 3218f898..00000000
--- a/checklink/Bitstring_utils.ml
+++ /dev/null
@@ -1,33 +0,0 @@
-(** Note that a bitstring is a triple (string * int * int), where the string
- contains the contents (the last char is filled up with zeros if necessary),
- the firts int gives the first bit to consider, and the second int gives the
- bit length of the considered bitstring.
-*)
-type bitstring = Bitstring.bitstring
-
-(** Checks whether a given number of bits of a bitstring are zeroed. The
- bitstring may be longer.
- @param size number of bits to check
-*)
-
-let is_zeros (bs: bitstring) (size: int): bool =
- Bitstring.bitstring_length bs >= size
- && Bitstring.is_zeroes_bitstring (Bitstring.subbitstring bs 0 size)
-
-(*
-
-let rec is_zeros (bs: bitstring) (size: int): bool =
- size = 0 ||
- if size >= 64
- then (
- bitmatch bs with
- | { 0L : 64 : int ; rest : -1 : bitstring } ->
- is_zeros rest (size - 64)
- | { _ } -> false
- )
- else (
- bitmatch bs with
- | { 0L : size : int } -> true
- | { _ } -> false
- )
-*)