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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
(*
* Copyright (c) 1997-1999 Massachusetts Institute of Technology
* Copyright (c) 2003, 2006 Matteo Frigo
* Copyright (c) 2003, 2006 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*)
(* $Id: variable.ml,v 1.7 2006-01-05 03:04:27 stevenj Exp $ *)
type variable =
(* temporary variables generated automatically *)
| Temporary of int
(* memory locations, e.g., array elements *)
| Locative of (Unique.unique * Unique.unique * (int -> string) * int)
(* constant values, e.g., twiddle factors *)
| Constant of (Unique.unique * string)
let hash v = Hashtbl.hash v
let same a b = (a == b)
let is_constant = function
| Constant _ -> true
| _ -> false
let is_temporary = function
| Temporary _ -> true
| _ -> false
let is_locative = function
| Locative _ -> true
| _ -> false
let same_location a b =
match (a, b) with
| (Locative (location_a, _, _, _), Locative (location_b, _, _, _)) ->
Unique.same location_a location_b
| _ -> false
let same_class a b =
match (a, b) with
| (Locative (_, class_a, _, _), Locative (_, class_b, _, _)) ->
Unique.same class_a class_b
| (Constant (class_a, _), Constant (class_b, _)) ->
Unique.same class_a class_b
| _ -> false
let make_temporary =
let tmp_count = ref 0
in fun () -> begin
tmp_count := !tmp_count + 1;
Temporary !tmp_count
end
let make_constant class_token name =
Constant (class_token, name)
let make_locative location_token class_token name i =
Locative (location_token, class_token, name, i)
(* special naming conventions for variables *)
let rec base62_of_int k =
let x = k mod 62
and y = k / 62 in
let c =
if x < 10 then
Char.chr (x + Char.code '0')
else if x < 36 then
Char.chr (x + Char.code 'a' - 10)
else
Char.chr (x + Char.code 'A' - 36)
in
let s = String.make 1 c in
let r = if y == 0 then "" else base62_of_int y in
r ^ s
let varname_of_int k =
if !Magic.compact then
base62_of_int k
else
string_of_int k
let unparse = function
| Temporary k -> "T" ^ (varname_of_int k)
| Constant (_, name) -> name
| Locative (_, _, name, i) -> name i
let unparse_for_alignment m = function
| Locative (_, _, name, i) -> name (i mod m)
| _ -> failwith "unparse_for_alignment"
|