annotate src/elab_env.sig @ 1739:c414850f206f

Add support for -boot flag, which allows in-tree execution of Ur/Web The boot flag rewrites most hardcoded paths to point to the build directory, and also forces static compilation. This is convenient for developing Ur/Web, or if you cannot 'sudo make install' Ur/Web. The following changes were made: * Header files were moved to include/urweb instead of include; this lets FFI users point their C_INCLUDE_PATH at this directory at write <urweb/urweb.h>. For internal Ur/Web executables, we simply pass -I$PATH/include/urweb as normal. * Differentiate between LIB and SRCLIB; SRCLIB is Ur and JavaScript source files, while LIB is compiled products from libtool. For in-tree compilation these live in different places. * No longer reference Config for paths; instead use Settings; these settings can be changed dynamically by Compiler.enableBoot () (TODO: add a disableBoot function.) * config.h is now generated directly in include/urweb/config.h, for consistency's sake (especially since it gets installed along with the rest of the headers!) * All of the autotools build products got updated. * The linkStatic field in protocols now only contains the name of the build product, and not the absolute path. Future users have to be careful not to reference the Settings files to early, lest they get an old version (this was the source of two bugs during development of this patch.)
author Edward Z. Yang <ezyang@mit.edu>
date Wed, 02 May 2012 17:17:57 -0400
parents c7b9a33c26c8
children fca4a6d05ac1
rev   line source
adamc@2 1 (* Copyright (c) 2008, Adam Chlipala
adamc@2 2 * All rights reserved.
adamc@2 3 *
adamc@2 4 * Redistribution and use in source and binary forms, with or without
adamc@2 5 * modification, are permitted provided that the following conditions are met:
adamc@2 6 *
adamc@2 7 * - Redistributions of source code must retain the above copyright notice,
adamc@2 8 * this list of conditions and the following disclaimer.
adamc@2 9 * - Redistributions in binary form must reproduce the above copyright notice,
adamc@2 10 * this list of conditions and the following disclaimer in the documentation
adamc@2 11 * and/or other materials provided with the distribution.
adamc@2 12 * - The names of contributors may not be used to endorse or promote products
adamc@2 13 * derived from this software without specific prior written permission.
adamc@2 14 *
adamc@2 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
adamc@2 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
adamc@2 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
adamc@2 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
adamc@2 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
adamc@2 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
adamc@2 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
adamc@2 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
adamc@2 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
adamc@2 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
adamc@2 25 * POSSIBILITY OF SUCH DAMAGE.
adamc@2 26 *)
adamc@2 27
adamc@2 28 signature ELAB_ENV = sig
adamc@2 29
adamc@13 30 val liftConInCon : int -> Elab.con -> Elab.con
adam@1303 31 val mliftConInCon : int -> Elab.con -> Elab.con
adamc@13 32
adamc@487 33 val liftConInExp : int -> Elab.exp -> Elab.exp
adamc@448 34 val liftExpInExp : int -> Elab.exp -> Elab.exp
adamc@448 35
adamc@448 36 val subExpInExp : (int * Elab.exp) -> Elab.exp -> Elab.exp
adamc@448 37
adamc@2 38 type env
adamc@2 39
adamc@2 40 val empty : env
adamc@2 41
adamc@2 42 exception UnboundRel of int
adamc@2 43 exception UnboundNamed of int
adamc@2 44
adamc@9 45 datatype 'a var =
adamc@9 46 NotBound
adamc@9 47 | Rel of int * 'a
adamc@9 48 | Named of int * 'a
adamc@9 49
adamc@623 50 val pushKRel : env -> string -> env
adamc@623 51 val lookupKRel : env -> int -> string
adamc@623 52 val lookupK : env -> string -> int option
adamc@623 53
adamc@2 54 val pushCRel : env -> string -> Elab.kind -> env
adamc@2 55 val lookupCRel : env -> int -> string * Elab.kind
adamc@2 56
adamc@11 57 val pushCNamed : env -> string -> Elab.kind -> Elab.con option -> env * int
adamc@11 58 val pushCNamedAs : env -> string -> int -> Elab.kind -> Elab.con option -> env
adamc@11 59 val lookupCNamed : env -> int -> string * Elab.kind * Elab.con option
adamc@9 60
adamc@9 61 val lookupC : env -> string -> Elab.kind var
adamc@9 62
adamc@191 63 val pushDatatype : env -> int -> string list -> (string * int * Elab.con option) list -> env
adamc@157 64 type datatyp
adamc@157 65 val lookupDatatype : env -> int -> datatyp
adamc@171 66 val lookupDatatypeConstructor : datatyp -> int -> string * Elab.con option
adamc@191 67 val datatypeArgs : datatyp -> string list
adamc@157 68 val constructors : datatyp -> (string * int * Elab.con option) list
adamc@157 69
adamc@191 70 val lookupConstructor : env -> string -> (Elab.datatype_kind * int * string list * Elab.con option * int) option
adamc@171 71
adamc@211 72 val pushClass : env -> int -> env
adamc@403 73 val isClass : env -> Elab.con -> bool
adamc@753 74 val resolveClass : (Elab.con -> Elab.con) -> (Elab.con * Elab.con -> bool)
adamc@753 75 -> env -> Elab.con -> Elab.exp option
adamc@711 76 val listClasses : env -> (Elab.con * (Elab.con * Elab.exp) list) list
adamc@211 77
adamc@9 78 val pushERel : env -> string -> Elab.con -> env
adamc@9 79 val lookupERel : env -> int -> string * Elab.con
adamc@9 80
adamc@9 81 val pushENamed : env -> string -> Elab.con -> env * int
adamc@9 82 val pushENamedAs : env -> string -> int -> Elab.con -> env
adamc@9 83 val lookupENamed : env -> int -> string * Elab.con
adamc@471 84 val checkENamed : env -> int -> bool
adamc@31 85
adamc@9 86 val lookupE : env -> string -> Elab.con var
adamc@2 87
adamc@31 88 val pushSgnNamed : env -> string -> Elab.sgn -> env * int
adamc@31 89 val pushSgnNamedAs : env -> string -> int -> Elab.sgn -> env
adamc@31 90 val lookupSgnNamed : env -> int -> string * Elab.sgn
adamc@31 91
adamc@31 92 val lookupSgn : env -> string -> (int * Elab.sgn) option
adamc@31 93
adamc@31 94 val pushStrNamed : env -> string -> Elab.sgn -> env * int
adamc@31 95 val pushStrNamedAs : env -> string -> int -> Elab.sgn -> env
adamc@31 96 val lookupStrNamed : env -> int -> string * Elab.sgn
adamc@31 97
adamc@31 98 val lookupStr : env -> string -> (int * Elab.sgn) option
adamc@31 99
adamc@447 100 val edeclBinds : env -> Elab.edecl -> env
adamc@13 101 val declBinds : env -> Elab.decl -> env
adamc@31 102 val sgiBinds : env -> Elab.sgn_item -> env
adamc@13 103
adamc@42 104 val hnormSgn : env -> Elab.sgn -> Elab.sgn
adamc@42 105
adamc@34 106 val projectCon : env -> { sgn : Elab.sgn, str : Elab.str, field : string } -> (Elab.kind * Elab.con option) option
adamc@157 107 val projectDatatype : env -> { sgn : Elab.sgn, str : Elab.str, field : string }
adamc@191 108 -> (string list * (string * int * Elab.con option) list) option
adamc@174 109 val projectConstructor : env -> { sgn : Elab.sgn, str : Elab.str, field : string }
adamc@191 110 -> (Elab.datatype_kind * int * string list * Elab.con option * Elab.con) option
adamc@34 111 val projectVal : env -> { sgn : Elab.sgn, str : Elab.str, field : string } -> Elab.con option
adamc@59 112 val projectSgn : env -> { sgn : Elab.sgn, str : Elab.str, field : string } -> Elab.sgn option
adamc@34 113 val projectStr : env -> { sgn : Elab.sgn, str : Elab.str, field : string } -> Elab.sgn option
adamc@88 114 val projectConstraints : env -> { sgn : Elab.sgn, str : Elab.str } -> (Elab.con * Elab.con) list option
adamc@34 115
adamc@109 116 val newNamed : unit -> int
adamc@109 117
adamc@158 118 val chaseMpath : env -> (int * string list) -> Elab.str * Elab.sgn
adamc@158 119
adamc@243 120 val patBinds : env -> Elab.pat -> env
adamc@1272 121 val patBindsN : Elab.pat -> int
adamc@243 122
adamc@753 123 exception Bad of Elab.con * Elab.con
adamc@753 124
adamc@2 125 end