2010-06-15 10:49:03 +02:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Heptagon *)
|
|
|
|
(* *)
|
|
|
|
(* Author : Marc Pouzet *)
|
|
|
|
(* Organization : Demons, LRI, University of Paris-Sud, Orsay *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
(* useful stuff *)
|
|
|
|
|
|
|
|
let optional f = function
|
|
|
|
| None -> None
|
|
|
|
| Some x -> Some (f x)
|
|
|
|
|
2010-07-08 17:41:00 +02:00
|
|
|
let optional_wacc f acc = function
|
|
|
|
| None -> None, acc
|
|
|
|
| Some x -> let x, acc = f acc x in Some x, acc
|
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
let optunit f = function
|
|
|
|
| None -> ()
|
|
|
|
| Some x -> f x
|
|
|
|
|
|
|
|
|
2010-12-14 18:29:55 +01:00
|
|
|
(** Print to a string *)
|
|
|
|
let print_pp_to_string print_fun element =
|
|
|
|
let _ = Format.flush_str_formatter () in (* Ensure that the buffer is empty *)
|
|
|
|
print_fun Format.str_formatter element;
|
|
|
|
Format.flush_str_formatter ()
|
|
|
|
|
|
|
|
(** Replace all non [a-z A-Z 0-9] character of a string by [_] *)
|
|
|
|
let sanitize_string s =
|
|
|
|
Str.global_replace (Str.regexp "[^a-zA-Z0-9]") "_" s
|
|
|
|
|
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
(* creation of names. Ensure unicity for the whole compilation chain *)
|
|
|
|
let symbol = ref 0
|
|
|
|
|
|
|
|
let gen_symbol () = incr symbol; "_"^(string_of_int !symbol)
|
|
|
|
let reset_symbol () = symbol := (*!min_symbol*) 0
|
|
|
|
|
|
|
|
let unique l =
|
2010-09-14 09:39:02 +02:00
|
|
|
let tbl = Hashtbl.create (List.length l) in
|
2010-06-15 10:49:03 +02:00
|
|
|
List.iter (fun i -> Hashtbl.replace tbl i ()) l;
|
2010-09-14 09:39:02 +02:00
|
|
|
Hashtbl.fold (fun key _ accu -> key :: accu) tbl []
|
2010-06-15 10:49:03 +02:00
|
|
|
|
2010-12-14 18:31:09 +01:00
|
|
|
let rec map_butlast f l =
|
2010-06-26 16:53:25 +02:00
|
|
|
match l with
|
2010-06-15 10:49:03 +02:00
|
|
|
| [] -> []
|
|
|
|
| [a] -> [a]
|
2010-12-14 18:31:09 +01:00
|
|
|
| a::l -> (f a)::(map_butlast f l)
|
2010-06-15 10:49:03 +02:00
|
|
|
|
2011-06-27 10:58:14 +02:00
|
|
|
let map_butnlast n f l =
|
|
|
|
let rec aux l = match l with
|
|
|
|
| [] -> [], 0
|
2011-06-27 19:20:47 +02:00
|
|
|
| a::l ->
|
2011-06-27 10:58:14 +02:00
|
|
|
let (res, k) = aux l in
|
2011-06-27 19:20:47 +02:00
|
|
|
if k < n then
|
2011-06-27 10:58:14 +02:00
|
|
|
a::res, (k + 1)
|
|
|
|
else
|
|
|
|
(f a)::res, (k+1)
|
|
|
|
in
|
|
|
|
let res, _ = aux l in
|
|
|
|
res
|
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
let rec last_element l =
|
2010-06-26 16:53:25 +02:00
|
|
|
match l with
|
2010-06-15 10:49:03 +02:00
|
|
|
| [] -> assert false
|
|
|
|
| [v] -> v
|
2010-09-14 09:39:02 +02:00
|
|
|
| _::l -> last_element l
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
(** [split_last l] returns l without its last element and
|
|
|
|
the last element of l. *)
|
|
|
|
let rec split_last = function
|
|
|
|
| [] -> assert false
|
|
|
|
| [a] -> [], a
|
2010-06-26 16:53:25 +02:00
|
|
|
| v::l ->
|
2010-06-15 10:49:03 +02:00
|
|
|
let l, a = split_last l in
|
2010-06-26 16:53:25 +02:00
|
|
|
v::l, a
|
2010-06-15 10:49:03 +02:00
|
|
|
|
2011-06-27 10:58:14 +02:00
|
|
|
(** [split_nlasts l] returns l without its last n elements and
|
|
|
|
the last n elements of l. *)
|
|
|
|
let rec split_nlast n l =
|
|
|
|
let rec aux l = match l with
|
|
|
|
| [] -> [], [], 0
|
2011-06-27 19:20:47 +02:00
|
|
|
| a::l ->
|
2011-06-27 10:58:14 +02:00
|
|
|
let (l1, l2, k) = aux l in
|
2011-06-27 19:20:47 +02:00
|
|
|
if k < n then
|
2011-06-27 10:58:14 +02:00
|
|
|
l1, a::l2, (k + 1)
|
|
|
|
else
|
|
|
|
a::l1, l2, (k+1)
|
|
|
|
in
|
|
|
|
let l1, l2, k = aux l in
|
|
|
|
if (k < n) then
|
|
|
|
assert false
|
|
|
|
else l1, l2
|
|
|
|
|
2011-03-21 17:22:03 +01:00
|
|
|
exception List_too_short
|
|
|
|
(** [split_at n l] splits [l] in two after the [n]th value.
|
|
|
|
Raises List_too_short exception if the list is too short. *)
|
|
|
|
let rec split_at n l = match n, l with
|
|
|
|
| 0, l -> [], l
|
|
|
|
| _, [] -> raise List_too_short
|
|
|
|
| n, x::l ->
|
|
|
|
let l1, l2 = split_at (n-1) l in
|
|
|
|
x::l1, l2
|
|
|
|
|
2011-07-04 11:25:01 +02:00
|
|
|
let rec take n l = match n, l with
|
|
|
|
| 0, l -> []
|
|
|
|
| n, h :: t -> take (n - 1) t
|
|
|
|
| _ -> invalid_arg "take: list is too short"
|
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
let remove x l =
|
|
|
|
List.filter (fun y -> x <> y) l
|
|
|
|
|
2010-09-30 19:24:41 +02:00
|
|
|
let list_compare c l1 l2 =
|
2010-08-24 11:07:05 +02:00
|
|
|
let rec aux l1 l2 = match (l1, l2) with
|
|
|
|
| (h1::t1, h2::t2) ->
|
|
|
|
let result = c h1 h2 in
|
|
|
|
if result = 0 then aux t1 t2 else result
|
|
|
|
| ([], [] ) -> 0
|
|
|
|
| (_, [] ) -> 1
|
|
|
|
| ([], _ ) -> -1
|
|
|
|
in aux l1 l2
|
|
|
|
|
2010-09-30 19:24:41 +02:00
|
|
|
let option_compare f ox1 ox2 = match ox1, ox2 with
|
|
|
|
| None, None -> 0
|
|
|
|
| Some x1, Some x2 -> f x1 x2
|
|
|
|
| None, _ -> -1
|
|
|
|
| _, None -> 1
|
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
let is_empty = function
|
|
|
|
| [] -> true
|
|
|
|
| _ -> false
|
|
|
|
|
|
|
|
(** [repeat_list v n] returns a list with n times the value v. *)
|
|
|
|
let repeat_list v n =
|
|
|
|
let rec aux = function
|
|
|
|
| 0 -> []
|
|
|
|
| n -> v::(aux (n-1))
|
|
|
|
in
|
2010-06-26 16:53:25 +02:00
|
|
|
aux n
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
(** Same as List.mem_assoc but using the value instead of the key. *)
|
|
|
|
let rec memd_assoc value = function
|
|
|
|
| [] -> false
|
2010-09-14 09:39:02 +02:00
|
|
|
| (_,d)::l -> (d = value) or (memd_assoc value l)
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
(** Same as List.assoc but searching for a data and returning the key. *)
|
|
|
|
let rec assocd value = function
|
|
|
|
| [] -> raise Not_found
|
2010-06-26 16:53:25 +02:00
|
|
|
| (k,d)::l ->
|
2010-06-15 10:49:03 +02:00
|
|
|
if d = value then
|
2010-06-26 16:53:25 +02:00
|
|
|
k
|
2010-06-15 10:49:03 +02:00
|
|
|
else
|
2010-06-26 16:53:25 +02:00
|
|
|
assocd value l
|
2010-07-07 15:11:32 +02:00
|
|
|
|
2010-07-08 17:41:00 +02:00
|
|
|
|
2010-09-09 00:35:06 +02:00
|
|
|
(** { 3 Compiler iterators } *)
|
2010-07-08 17:41:00 +02:00
|
|
|
|
2011-04-29 14:13:54 +02:00
|
|
|
(** Mapfold *) (* TODO optim : in a lot of places we don't need the List.rev *)
|
2010-07-07 15:11:32 +02:00
|
|
|
let mapfold f acc l =
|
2010-07-14 00:55:14 +02:00
|
|
|
let l,acc = List.fold_left
|
|
|
|
(fun (l,acc) e -> let e,acc = f acc e in e::l, acc)
|
|
|
|
([],acc) l in
|
2010-07-07 15:11:32 +02:00
|
|
|
List.rev l, acc
|
|
|
|
|
2010-07-19 17:19:02 +02:00
|
|
|
let mapfold_right f l acc =
|
|
|
|
List.fold_right (fun e (acc, l) -> let acc, e = f e acc in (acc, e :: l))
|
|
|
|
l (acc, [])
|
2010-07-14 00:55:14 +02:00
|
|
|
|
2011-06-30 17:41:25 +02:00
|
|
|
let rec fold_right_1 f l = match l with
|
|
|
|
| [] -> invalid_arg "fold_right_1: empty list"
|
|
|
|
| [x] -> x
|
|
|
|
| x :: l -> f x (fold_right_1 f l)
|
|
|
|
|
2011-07-04 11:25:01 +02:00
|
|
|
let rec fold_left_1 f l = match l with
|
|
|
|
| [] -> invalid_arg "fold_left_1: empty list"
|
|
|
|
| [x] -> x
|
|
|
|
| x :: l -> f (fold_left_1 f l) x
|
|
|
|
|
2010-07-09 15:28:26 +02:00
|
|
|
let mapi f l =
|
|
|
|
let rec aux i = function
|
|
|
|
| [] -> []
|
|
|
|
| v::l -> (f i v)::(aux (i+1) l)
|
|
|
|
in
|
|
|
|
aux 0 l
|
|
|
|
|
|
|
|
let mapi2 f l1 l2 =
|
|
|
|
let rec aux i l1 l2 =
|
|
|
|
match l1, l2 with
|
|
|
|
| [], [] -> []
|
|
|
|
| [], _ -> invalid_arg ""
|
|
|
|
| _, [] -> invalid_arg ""
|
|
|
|
| v1::l1, v2::l2 -> (f i v1 v2)::(aux (i+1) l1 l2)
|
|
|
|
in
|
|
|
|
aux 0 l1 l2
|
|
|
|
|
|
|
|
let mapi3 f l1 l2 l3 =
|
|
|
|
let rec aux i l1 l2 l3 =
|
|
|
|
match l1, l2, l3 with
|
|
|
|
| [], [], [] -> []
|
|
|
|
| [], _, _ -> invalid_arg ""
|
|
|
|
| _, [], _ -> invalid_arg ""
|
|
|
|
| _, _, [] -> invalid_arg ""
|
|
|
|
| v1::l1, v2::l2, v3::l3 ->
|
|
|
|
(f i v1 v2 v3)::(aux (i+1) l1 l2 l3)
|
|
|
|
in
|
|
|
|
aux 0 l1 l2 l3
|
2010-09-09 00:35:06 +02:00
|
|
|
|
2010-09-30 19:24:41 +02:00
|
|
|
let fold_righti f l acc =
|
|
|
|
let rec aux i l acc = match l with
|
|
|
|
| [] -> acc
|
|
|
|
| h :: l -> f i h (aux (i + 1) l acc) in
|
|
|
|
aux 0 l acc
|
|
|
|
|
2011-02-07 14:24:17 +01:00
|
|
|
exception Assert_false
|
2011-05-23 09:24:57 +02:00
|
|
|
let internal_error passe =
|
2011-04-29 14:13:54 +02:00
|
|
|
Format.eprintf "@.---------\n
|
|
|
|
Internal compiler error\n
|
2011-05-23 09:24:57 +02:00
|
|
|
Passe : %s\n
|
|
|
|
----------@." passe;
|
2011-02-07 14:24:17 +01:00
|
|
|
raise Assert_false
|
|
|
|
|
|
|
|
exception Unsupported
|
2011-05-23 09:24:57 +02:00
|
|
|
let unsupported passe =
|
2011-04-29 14:13:54 +02:00
|
|
|
Format.eprintf "@.---------\n
|
|
|
|
Unsupported feature, please report it\n
|
2011-05-23 09:24:57 +02:00
|
|
|
Passe : %s\n
|
|
|
|
----------@." passe;
|
2011-02-07 14:24:17 +01:00
|
|
|
raise Unsupported
|
|
|
|
|
2010-09-13 13:32:35 +02:00
|
|
|
(* Functions to decompose a list into a tuple *)
|
|
|
|
let _arity_error i l =
|
2011-04-29 14:13:54 +02:00
|
|
|
Format.eprintf "@.---------\n
|
|
|
|
Internal compiler error: wrong list size (found %d, expected %d).\n
|
|
|
|
----------@." (List.length l) i;
|
2011-02-07 14:24:17 +01:00
|
|
|
raise Assert_false
|
2010-09-13 13:32:35 +02:00
|
|
|
|
|
|
|
let _arity_min_error i l =
|
2011-04-29 14:13:54 +02:00
|
|
|
Format.eprintf "@.---------\n
|
|
|
|
Internal compiler error: wrong list size (found %d, expected %d at least).\n
|
|
|
|
----------@." (List.length l) i;
|
2011-02-07 14:24:17 +01:00
|
|
|
raise Assert_false
|
2010-09-13 13:32:35 +02:00
|
|
|
|
|
|
|
let assert_empty = function
|
|
|
|
| [] -> ()
|
2010-09-14 17:15:43 +02:00
|
|
|
| l -> _arity_error 0 l
|
2010-09-13 13:32:35 +02:00
|
|
|
|
|
|
|
let assert_1 = function
|
|
|
|
| [v] -> v
|
|
|
|
| l -> _arity_error 1 l
|
|
|
|
|
2010-09-13 16:02:33 +02:00
|
|
|
let assert_1min = function
|
|
|
|
| v::l -> v, l
|
|
|
|
| l -> _arity_min_error 1 l
|
|
|
|
|
2010-09-13 13:32:35 +02:00
|
|
|
let assert_2 = function
|
|
|
|
| [v1; v2] -> v1, v2
|
2010-09-14 17:15:43 +02:00
|
|
|
| l -> _arity_error 2 l
|
2010-09-13 13:32:35 +02:00
|
|
|
|
|
|
|
let assert_2min = function
|
|
|
|
| v1::v2::l -> v1, v2, l
|
2010-09-14 17:15:43 +02:00
|
|
|
| l -> _arity_min_error 2 l
|
2010-09-13 13:32:35 +02:00
|
|
|
|
|
|
|
let assert_3 = function
|
|
|
|
| [v1; v2; v3] -> v1, v2, v3
|
2010-09-14 17:15:43 +02:00
|
|
|
| l -> _arity_error 3 l
|
2011-01-07 17:16:50 +01:00
|
|
|
|
|
|
|
let (|>) x f = f x
|
|
|
|
|
|
|
|
let split_string s separator = Str.split (separator |> Str.quote |> Str.regexp) s
|
|
|
|
|
|
|
|
let file_extension s = split_string s "." |> last_element
|
|
|
|
|
2011-01-24 16:07:26 +01:00
|
|
|
|