annotate src/fftw-3.3.5/genfft/to_alist.ml @ 79:91c729825bca pa_catalina

Update build for AUDIO_COMPONENT_FIX
author Chris Cannam
date Wed, 30 Oct 2019 12:40:34 +0000
parents 2cd0e3b3e1fd
children
rev   line source
Chris@42 1 (*
Chris@42 2 * Copyright (c) 1997-1999 Massachusetts Institute of Technology
Chris@42 3 * Copyright (c) 2003, 2007-14 Matteo Frigo
Chris@42 4 * Copyright (c) 2003, 2007-14 Massachusetts Institute of Technology
Chris@42 5 *
Chris@42 6 * This program is free software; you can redistribute it and/or modify
Chris@42 7 * it under the terms of the GNU General Public License as published by
Chris@42 8 * the Free Software Foundation; either version 2 of the License, or
Chris@42 9 * (at your option) any later version.
Chris@42 10 *
Chris@42 11 * This program is distributed in the hope that it will be useful,
Chris@42 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@42 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@42 14 * GNU General Public License for more details.
Chris@42 15 *
Chris@42 16 * You should have received a copy of the GNU General Public License
Chris@42 17 * along with this program; if not, write to the Free Software
Chris@42 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Chris@42 19 *
Chris@42 20 *)
Chris@42 21
Chris@42 22 (*************************************************************
Chris@42 23 * Conversion of the dag to an assignment list
Chris@42 24 *************************************************************)
Chris@42 25 (*
Chris@42 26 * This function is messy. The main problem is that we want to
Chris@42 27 * inline dag nodes conditionally, depending on how many times they
Chris@42 28 * are used. The Right Thing to do would be to modify the
Chris@42 29 * state monad to propagate some of the state backwards, so that
Chris@42 30 * we know whether a given node will be used again in the future.
Chris@42 31 * This modification is trivial in a lazy language, but it is
Chris@42 32 * messy in a strict language like ML.
Chris@42 33 *
Chris@42 34 * In this implementation, we just do the obvious thing, i.e., visit
Chris@42 35 * the dag twice, the first to count the node usages, and the second to
Chris@42 36 * produce the output.
Chris@42 37 *)
Chris@42 38
Chris@42 39 open Monads.StateMonad
Chris@42 40 open Monads.MemoMonad
Chris@42 41 open Expr
Chris@42 42
Chris@42 43 let fresh = Variable.make_temporary
Chris@42 44 let node_insert x = Assoctable.insert Expr.hash x
Chris@42 45 let node_lookup x = Assoctable.lookup Expr.hash (==) x
Chris@42 46 let empty = Assoctable.empty
Chris@42 47
Chris@42 48 let fetchAl =
Chris@42 49 fetchState >>= (fun (al, _, _) -> returnM al)
Chris@42 50
Chris@42 51 let storeAl al =
Chris@42 52 fetchState >>= (fun (_, visited, visited') ->
Chris@42 53 storeState (al, visited, visited'))
Chris@42 54
Chris@42 55 let fetchVisited = fetchState >>= (fun (_, v, _) -> returnM v)
Chris@42 56
Chris@42 57 let storeVisited visited =
Chris@42 58 fetchState >>= (fun (al, _, visited') ->
Chris@42 59 storeState (al, visited, visited'))
Chris@42 60
Chris@42 61 let fetchVisited' = fetchState >>= (fun (_, _, v') -> returnM v')
Chris@42 62 let storeVisited' visited' =
Chris@42 63 fetchState >>= (fun (al, visited, _) ->
Chris@42 64 storeState (al, visited, visited'))
Chris@42 65 let lookupVisitedM' key =
Chris@42 66 fetchVisited' >>= fun table ->
Chris@42 67 returnM (node_lookup key table)
Chris@42 68 let insertVisitedM' key value =
Chris@42 69 fetchVisited' >>= fun table ->
Chris@42 70 storeVisited' (node_insert key value table)
Chris@42 71
Chris@42 72 let counting f x =
Chris@42 73 fetchVisited >>= (fun v ->
Chris@42 74 match node_lookup x v with
Chris@42 75 Some count ->
Chris@42 76 let incr_cnt =
Chris@42 77 fetchVisited >>= (fun v' ->
Chris@42 78 storeVisited (node_insert x (count + 1) v'))
Chris@42 79 in
Chris@42 80 begin
Chris@42 81 match x with
Chris@42 82 (* Uminus is always inlined. Visit child *)
Chris@42 83 Uminus y -> f y >> incr_cnt
Chris@42 84 | _ -> incr_cnt
Chris@42 85 end
Chris@42 86 | None ->
Chris@42 87 f x >> fetchVisited >>= (fun v' ->
Chris@42 88 storeVisited (node_insert x 1 v')))
Chris@42 89
Chris@42 90 let with_varM v x =
Chris@42 91 fetchAl >>= (fun al -> storeAl ((v, x) :: al)) >> returnM (Load v)
Chris@42 92
Chris@42 93 let inlineM = returnM
Chris@42 94
Chris@42 95 let with_tempM x = match x with
Chris@42 96 | Load v when Variable.is_temporary v -> inlineM x (* avoid trivial moves *)
Chris@42 97 | _ -> with_varM (fresh ()) x
Chris@42 98
Chris@42 99 (* declare a temporary only if node is used more than once *)
Chris@42 100 let with_temp_maybeM node x =
Chris@42 101 fetchVisited >>= (fun v ->
Chris@42 102 match node_lookup node v with
Chris@42 103 Some count ->
Chris@42 104 if (count = 1 && !Magic.inline_single) then
Chris@42 105 inlineM x
Chris@42 106 else
Chris@42 107 with_tempM x
Chris@42 108 | None ->
Chris@42 109 failwith "with_temp_maybeM")
Chris@42 110 type fma =
Chris@42 111 NO_FMA
Chris@42 112 | FMA of expr * expr * expr (* FMA (a, b, c) => a + b * c *)
Chris@42 113 | FMS of expr * expr * expr (* FMS (a, b, c) => -a + b * c *)
Chris@42 114 | FNMS of expr * expr * expr (* FNMS (a, b, c) => a - b * c *)
Chris@42 115
Chris@42 116 let good_for_fma (a, b) =
Chris@42 117 let good = function
Chris@42 118 | NaN I -> true
Chris@42 119 | NaN CONJ -> true
Chris@42 120 | NaN _ -> false
Chris@42 121 | Times(NaN _, _) -> false
Chris@42 122 | Times(_, NaN _) -> false
Chris@42 123 | _ -> true
Chris@42 124 in good a && good b
Chris@42 125
Chris@42 126 let build_fma l =
Chris@42 127 if (not !Magic.enable_fma) then NO_FMA
Chris@42 128 else match l with
Chris@42 129 | [a; Uminus (Times (b, c))] when good_for_fma (b, c) -> FNMS (a, b, c)
Chris@42 130 | [Uminus (Times (b, c)); a] when good_for_fma (b, c) -> FNMS (a, b, c)
Chris@42 131 | [Uminus a; Times (b, c)] when good_for_fma (b, c) -> FMS (a, b, c)
Chris@42 132 | [Times (b, c); Uminus a] when good_for_fma (b, c) -> FMS (a, b, c)
Chris@42 133 | [a; Times (b, c)] when good_for_fma (b, c) -> FMA (a, b, c)
Chris@42 134 | [Times (b, c); a] when good_for_fma (b, c) -> FMA (a, b, c)
Chris@42 135 | _ -> NO_FMA
Chris@42 136
Chris@42 137 let children_fma l = match build_fma l with
Chris@42 138 | FMA (a, b, c) -> Some (a, b, c)
Chris@42 139 | FMS (a, b, c) -> Some (a, b, c)
Chris@42 140 | FNMS (a, b, c) -> Some (a, b, c)
Chris@42 141 | NO_FMA -> None
Chris@42 142
Chris@42 143
Chris@42 144 let rec visitM x =
Chris@42 145 counting (function
Chris@42 146 | Load v -> returnM ()
Chris@42 147 | Num a -> returnM ()
Chris@42 148 | NaN a -> returnM ()
Chris@42 149 | Store (v, x) -> visitM x
Chris@42 150 | Plus a -> (match children_fma a with
Chris@42 151 None -> mapM visitM a >> returnM ()
Chris@42 152 | Some (a, b, c) ->
Chris@42 153 (* visit fma's arguments twice to make sure they are not inlined *)
Chris@42 154 visitM a >> visitM a >>
Chris@42 155 visitM b >> visitM b >>
Chris@42 156 visitM c >> visitM c)
Chris@42 157 | Times (a, b) -> visitM a >> visitM b
Chris@42 158 | CTimes (a, b) -> visitM a >> visitM b
Chris@42 159 | CTimesJ (a, b) -> visitM a >> visitM b
Chris@42 160 | Uminus a -> visitM a)
Chris@42 161 x
Chris@42 162
Chris@42 163 let visit_rootsM = mapM visitM
Chris@42 164
Chris@42 165
Chris@42 166 let rec expr_of_nodeM x =
Chris@42 167 memoizing lookupVisitedM' insertVisitedM'
Chris@42 168 (function x -> match x with
Chris@42 169 | Load v ->
Chris@42 170 if (Variable.is_temporary v) then
Chris@42 171 inlineM (Load v)
Chris@42 172 else if (Variable.is_locative v && !Magic.inline_loads) then
Chris@42 173 inlineM (Load v)
Chris@42 174 else if (Variable.is_constant v && !Magic.inline_loads_constants) then
Chris@42 175 inlineM (Load v)
Chris@42 176 else
Chris@42 177 with_tempM (Load v)
Chris@42 178 | Num a ->
Chris@42 179 if !Magic.inline_constants then
Chris@42 180 inlineM (Num a)
Chris@42 181 else
Chris@42 182 with_temp_maybeM x (Num a)
Chris@42 183 | NaN a -> inlineM (NaN a)
Chris@42 184 | Store (v, x) ->
Chris@42 185 expr_of_nodeM x >>=
Chris@42 186 (if !Magic.trivial_stores then with_tempM else inlineM) >>=
Chris@42 187 with_varM v
Chris@42 188
Chris@42 189 | Plus a ->
Chris@42 190 begin
Chris@42 191 match build_fma a with
Chris@42 192 FMA (a, b, c) ->
Chris@42 193 expr_of_nodeM a >>= fun a' ->
Chris@42 194 expr_of_nodeM b >>= fun b' ->
Chris@42 195 expr_of_nodeM c >>= fun c' ->
Chris@42 196 with_temp_maybeM x (Plus [a'; Times (b', c')])
Chris@42 197 | FMS (a, b, c) ->
Chris@42 198 expr_of_nodeM a >>= fun a' ->
Chris@42 199 expr_of_nodeM b >>= fun b' ->
Chris@42 200 expr_of_nodeM c >>= fun c' ->
Chris@42 201 with_temp_maybeM x
Chris@42 202 (Plus [Times (b', c'); Uminus a'])
Chris@42 203 | FNMS (a, b, c) ->
Chris@42 204 expr_of_nodeM a >>= fun a' ->
Chris@42 205 expr_of_nodeM b >>= fun b' ->
Chris@42 206 expr_of_nodeM c >>= fun c' ->
Chris@42 207 with_temp_maybeM x
Chris@42 208 (Plus [a'; Uminus (Times (b', c'))])
Chris@42 209 | NO_FMA ->
Chris@42 210 mapM expr_of_nodeM a >>= fun a' ->
Chris@42 211 with_temp_maybeM x (Plus a')
Chris@42 212 end
Chris@42 213 | CTimes (Load _ as a, b) when !Magic.generate_bytw ->
Chris@42 214 expr_of_nodeM b >>= fun b' ->
Chris@42 215 with_tempM (CTimes (a, b'))
Chris@42 216 | CTimes (a, b) ->
Chris@42 217 expr_of_nodeM a >>= fun a' ->
Chris@42 218 expr_of_nodeM b >>= fun b' ->
Chris@42 219 with_tempM (CTimes (a', b'))
Chris@42 220 | CTimesJ (Load _ as a, b) when !Magic.generate_bytw ->
Chris@42 221 expr_of_nodeM b >>= fun b' ->
Chris@42 222 with_tempM (CTimesJ (a, b'))
Chris@42 223 | CTimesJ (a, b) ->
Chris@42 224 expr_of_nodeM a >>= fun a' ->
Chris@42 225 expr_of_nodeM b >>= fun b' ->
Chris@42 226 with_tempM (CTimesJ (a', b'))
Chris@42 227 | Times (a, b) ->
Chris@42 228 expr_of_nodeM a >>= fun a' ->
Chris@42 229 expr_of_nodeM b >>= fun b' ->
Chris@42 230 begin
Chris@42 231 match a' with
Chris@42 232 Num a'' when !Magic.strength_reduce_mul && Number.is_two a'' ->
Chris@42 233 (inlineM b' >>= fun b'' ->
Chris@42 234 with_temp_maybeM x (Plus [b''; b'']))
Chris@42 235 | _ -> with_temp_maybeM x (Times (a', b'))
Chris@42 236 end
Chris@42 237 | Uminus a ->
Chris@42 238 expr_of_nodeM a >>= fun a' ->
Chris@42 239 inlineM (Uminus a'))
Chris@42 240 x
Chris@42 241
Chris@42 242 let expr_of_rootsM = mapM expr_of_nodeM
Chris@42 243
Chris@42 244 let peek_alistM roots =
Chris@42 245 visit_rootsM roots >> expr_of_rootsM roots >> fetchAl
Chris@42 246
Chris@42 247 let wrap_assign (a, b) = Expr.Assign (a, b)
Chris@42 248
Chris@42 249 let to_assignments dag =
Chris@42 250 let () = Util.info "begin to_alist" in
Chris@42 251 let al = List.rev (runM ([], empty, empty) peek_alistM dag) in
Chris@42 252 let res = List.map wrap_assign al in
Chris@42 253 let () = Util.info "end to_alist" in
Chris@42 254 res
Chris@42 255
Chris@42 256
Chris@42 257 (* dump alist in `dot' format *)
Chris@42 258 let dump print alist =
Chris@42 259 let vs v = "\"" ^ (Variable.unparse v) ^ "\"" in
Chris@42 260 begin
Chris@42 261 print "digraph G {\n";
Chris@42 262 print "\tsize=\"6,6\";\n";
Chris@42 263
Chris@42 264 (* all input nodes have the same rank *)
Chris@42 265 print "{ rank = same;\n";
Chris@42 266 List.iter (fun (Expr.Assign (v, x)) ->
Chris@42 267 List.iter (fun y ->
Chris@42 268 if (Variable.is_locative y) then print("\t" ^ (vs y) ^ ";\n"))
Chris@42 269 (Expr.find_vars x))
Chris@42 270 alist;
Chris@42 271 print "}\n";
Chris@42 272
Chris@42 273 (* all output nodes have the same rank *)
Chris@42 274 print "{ rank = same;\n";
Chris@42 275 List.iter (fun (Expr.Assign (v, x)) ->
Chris@42 276 if (Variable.is_locative v) then print("\t" ^ (vs v) ^ ";\n"))
Chris@42 277 alist;
Chris@42 278 print "}\n";
Chris@42 279
Chris@42 280 (* edges *)
Chris@42 281 List.iter (fun (Expr.Assign (v, x)) ->
Chris@42 282 List.iter (fun y -> print("\t" ^ (vs y) ^ " -> " ^ (vs v) ^ ";\n"))
Chris@42 283 (Expr.find_vars x))
Chris@42 284 alist;
Chris@42 285
Chris@42 286 print "}\n";
Chris@42 287 end
Chris@42 288