-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathFastString.v
52 lines (38 loc) · 1.47 KB
/
FastString.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
(* This file is a handwritten stub of the FastString module, just using Coq Strings
as FastStrings. For right now, just accumulate the interface that we need
from other files. *)
Require GHC.List.
Require Import GHC.Base.
Require Import HsToCoq.Err.
Require Import Coq.Numbers.BinNums.
Definition FastString := String.
Instance instance_FastString_Eq_ : Eq_ FastString.
eapply Eq_list.
Qed.
Instance instance_FastString_Ord : Ord FastString.
eapply Ord_list.
Qed.
Instance instance_FastString_Default : HsToCoq.Err.Default FastString.
eapply default_list.
Qed.
Definition fsLit (s : String) : FastString := s.
Definition concatFS : list FastString -> FastString := GHC.List.concat.
Axiom uniqueOfFS : FastString -> BinNums.N.
Definition unpackFS (s : FastString) : GHC.Base.String := s.
Definition appendFS : FastString -> FastString -> FastString :=
fun s1 s2 => GHC.List.concat (s1 :: s2 :: nil).
Definition LitString := String.
Definition sLit (s : String) : LitString := s.
Definition mkFastString (s : String) : FastString := s.
Axiom hashByteString : FastString -> nat.
Axiom fastStringToByteString : FastString -> GHC.Base.String.
Axiom nullFS : FastString -> bool.
(* These commands won't prevent Coq from using 'reflexivity' to solve goals.
But they will stop simpl from unfolding the definitions. *)
Global Opaque FastString.
Global Opaque fsLit.
Global Opaque concatFS.
Global Opaque appendFS.
Global Opaque LitString.
Global Opaque sLit.
Global Opaque mkFastString.