annotate src/fftw-3.3.3/genfft/c.ml @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 89f5e221ed7b
children
rev   line source
cannam@95 1 (*
cannam@95 2 * Copyright (c) 1997-1999 Massachusetts Institute of Technology
cannam@95 3 * Copyright (c) 2003, 2007-11 Matteo Frigo
cannam@95 4 * Copyright (c) 2003, 2007-11 Massachusetts Institute of Technology
cannam@95 5 *
cannam@95 6 * This program is free software; you can redistribute it and/or modify
cannam@95 7 * it under the terms of the GNU General Public License as published by
cannam@95 8 * the Free Software Foundation; either version 2 of the License, or
cannam@95 9 * (at your option) any later version.
cannam@95 10 *
cannam@95 11 * This program is distributed in the hope that it will be useful,
cannam@95 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@95 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cannam@95 14 * GNU General Public License for more details.
cannam@95 15 *
cannam@95 16 * You should have received a copy of the GNU General Public License
cannam@95 17 * along with this program; if not, write to the Free Software
cannam@95 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
cannam@95 19 *
cannam@95 20 *)
cannam@95 21
cannam@95 22 (*
cannam@95 23 * This module contains the definition of a C-like abstract
cannam@95 24 * syntax tree, and functions to convert ML values into C
cannam@95 25 * programs
cannam@95 26 *)
cannam@95 27
cannam@95 28 open Expr
cannam@95 29 open Annotate
cannam@95 30 open List
cannam@95 31
cannam@95 32 let realtype = "R"
cannam@95 33 let realtypep = realtype ^ " *"
cannam@95 34 let extended_realtype = "E"
cannam@95 35 let constrealtype = "const " ^ realtype
cannam@95 36 let constrealtypep = constrealtype ^ " *"
cannam@95 37
cannam@95 38 let stridetype = "stride"
cannam@95 39
cannam@95 40 (***********************************
cannam@95 41 * C program structure
cannam@95 42 ***********************************)
cannam@95 43 type c_decl =
cannam@95 44 | Decl of string * string
cannam@95 45 | Tdecl of string (* arbitrary text declaration *)
cannam@95 46
cannam@95 47 and c_ast =
cannam@95 48 | Asch of annotated_schedule
cannam@95 49 | Simd_leavefun
cannam@95 50 | Return of c_ast
cannam@95 51 | For of c_ast * c_ast * c_ast * c_ast
cannam@95 52 | If of c_ast * c_ast
cannam@95 53 | Block of (c_decl list) * (c_ast list)
cannam@95 54 | Binop of string * c_ast * c_ast
cannam@95 55 | Expr_assign of c_ast * c_ast
cannam@95 56 | Stmt_assign of c_ast * c_ast
cannam@95 57 | Comma of c_ast * c_ast
cannam@95 58 | Integer of int
cannam@95 59 | CVar of string
cannam@95 60 | CCall of string * c_ast
cannam@95 61 | CPlus of c_ast list
cannam@95 62 | ITimes of c_ast * c_ast
cannam@95 63 | CUminus of c_ast
cannam@95 64 and c_fcn = Fcn of string * string * (c_decl list) * c_ast
cannam@95 65
cannam@95 66
cannam@95 67 let ctimes = function
cannam@95 68 | (Integer 1), a -> a
cannam@95 69 | a, (Integer 1) -> a
cannam@95 70 | a, b -> ITimes (a, b)
cannam@95 71
cannam@95 72 (*
cannam@95 73 * C AST unparser
cannam@95 74 *)
cannam@95 75 let foldr_string_concat l = fold_right (^) l ""
cannam@95 76
cannam@95 77 let rec unparse_expr_c =
cannam@95 78 let yes x = x and no x = "" in
cannam@95 79
cannam@95 80 let rec unparse_plus maybe =
cannam@95 81 let maybep = maybe " + " in
cannam@95 82 function
cannam@95 83 | [] -> ""
cannam@95 84 | (Uminus (Times (a, b))) :: (Uminus c) :: d ->
cannam@95 85 maybep ^ (op "FNMA" a b c) ^ (unparse_plus yes d)
cannam@95 86 | (Uminus c) :: (Uminus (Times (a, b))) :: d ->
cannam@95 87 maybep ^ (op "FNMA" a b c) ^ (unparse_plus yes d)
cannam@95 88 | (Uminus (Times (a, b))) :: c :: d ->
cannam@95 89 maybep ^ (op "FNMS" a b c) ^ (unparse_plus yes d)
cannam@95 90 | c :: (Uminus (Times (a, b))) :: d ->
cannam@95 91 maybep ^ (op "FNMS" a b c) ^ (unparse_plus yes d)
cannam@95 92 | (Times (a, b)) :: (Uminus c) :: d ->
cannam@95 93 maybep ^ (op "FMS" a b c) ^ (unparse_plus yes d)
cannam@95 94 | (Uminus c) :: (Times (a, b)) :: d ->
cannam@95 95 maybep ^ (op "FMS" a b c) ^ (unparse_plus yes d)
cannam@95 96 | (Times (a, b)) :: c :: d ->
cannam@95 97 maybep ^ (op "FMA" a b c) ^ (unparse_plus yes d)
cannam@95 98 | c :: (Times (a, b)) :: d ->
cannam@95 99 maybep ^ (op "FMA" a b c) ^ (unparse_plus yes d)
cannam@95 100 | (Uminus a :: b) ->
cannam@95 101 " - " ^ (parenthesize a) ^ (unparse_plus yes b)
cannam@95 102 | (a :: b) ->
cannam@95 103 maybep ^ (parenthesize a) ^ (unparse_plus yes b)
cannam@95 104 and parenthesize x = match x with
cannam@95 105 | (Load _) -> unparse_expr_c x
cannam@95 106 | (Num _) -> unparse_expr_c x
cannam@95 107 | _ -> "(" ^ (unparse_expr_c x) ^ ")"
cannam@95 108 and op nam a b c =
cannam@95 109 nam ^ "(" ^ (unparse_expr_c a) ^ ", " ^ (unparse_expr_c b) ^ ", " ^
cannam@95 110 (unparse_expr_c c) ^ ")"
cannam@95 111
cannam@95 112 in function
cannam@95 113 | Load v -> Variable.unparse v
cannam@95 114 | Num n -> Number.to_konst n
cannam@95 115 | Plus [] -> "0.0 /* bug */"
cannam@95 116 | Plus [a] -> " /* bug */ " ^ (unparse_expr_c a)
cannam@95 117 | Plus a -> (unparse_plus no a)
cannam@95 118 | Times (a, b) -> (parenthesize a) ^ " * " ^ (parenthesize b)
cannam@95 119 | Uminus (Plus [a; Uminus b]) -> unparse_plus no [b; Uminus a]
cannam@95 120 | Uminus a -> "- " ^ (parenthesize a)
cannam@95 121 | _ -> failwith "unparse_expr_c"
cannam@95 122
cannam@95 123 and unparse_expr_generic =
cannam@95 124 let rec u x = unparse_expr_generic x
cannam@95 125 and unary op a = Printf.sprintf "%s(%s)" op (u a)
cannam@95 126 and binary op a b = Printf.sprintf "%s(%s, %s)" op (u a) (u b)
cannam@95 127 and ternary op a b c = Printf.sprintf "%s(%s, %s, %s)" op (u a) (u b) (u c)
cannam@95 128 and quaternary op a b c d =
cannam@95 129 Printf.sprintf "%s(%s, %s, %s, %s)" op (u a) (u b) (u c) (u d)
cannam@95 130 and unparse_plus = function
cannam@95 131 | [(Uminus (Times (a, b))); Times (c, d)] -> quaternary "FNMMS" a b c d
cannam@95 132 | [Times (c, d); (Uminus (Times (a, b)))] -> quaternary "FNMMS" a b c d
cannam@95 133 | [Times (c, d); (Times (a, b))] -> quaternary "FMMA" a b c d
cannam@95 134 | [(Uminus (Times (a, b))); c] -> ternary "FNMS" a b c
cannam@95 135 | [c; (Uminus (Times (a, b)))] -> ternary "FNMS" a b c
cannam@95 136 | [(Uminus c); (Times (a, b))] -> ternary "FMS" a b c
cannam@95 137 | [(Times (a, b)); (Uminus c)] -> ternary "FMS" a b c
cannam@95 138 | [c; (Times (a, b))] -> ternary "FMA" a b c
cannam@95 139 | [(Times (a, b)); c] -> ternary "FMA" a b c
cannam@95 140 | [a; Uminus b] -> binary "SUB" a b
cannam@95 141 | [a; b] -> binary "ADD" a b
cannam@95 142 | a :: b :: c -> binary "ADD" a (Plus (b :: c))
cannam@95 143 | _ -> failwith "unparse_plus"
cannam@95 144 in function
cannam@95 145 | Load v -> Variable.unparse v
cannam@95 146 | Num n -> Number.to_konst n
cannam@95 147 | Plus a -> unparse_plus a
cannam@95 148 | Times (a, b) -> binary "MUL" a b
cannam@95 149 | Uminus a -> unary "NEG" a
cannam@95 150 | _ -> failwith "unparse_expr"
cannam@95 151
cannam@95 152 and unparse_expr x =
cannam@95 153 if !Magic.generic_arith then
cannam@95 154 unparse_expr_generic x
cannam@95 155 else
cannam@95 156 unparse_expr_c x
cannam@95 157
cannam@95 158 and unparse_assignment (Assign (v, x)) =
cannam@95 159 (Variable.unparse v) ^ " = " ^ (unparse_expr x) ^ ";\n"
cannam@95 160
cannam@95 161 and unparse_annotated force_bracket =
cannam@95 162 let rec unparse_code = function
cannam@95 163 ADone -> ""
cannam@95 164 | AInstr i -> unparse_assignment i
cannam@95 165 | ASeq (a, b) ->
cannam@95 166 (unparse_annotated false a) ^ (unparse_annotated false b)
cannam@95 167 and declare_variables l =
cannam@95 168 let rec uvar = function
cannam@95 169 [] -> failwith "uvar"
cannam@95 170 | [v] -> (Variable.unparse v) ^ ";\n"
cannam@95 171 | a :: b -> (Variable.unparse a) ^ ", " ^ (uvar b)
cannam@95 172 in let rec vvar l =
cannam@95 173 let s = if !Magic.compact then 15 else 1 in
cannam@95 174 if (List.length l <= s) then
cannam@95 175 match l with
cannam@95 176 [] -> ""
cannam@95 177 | _ -> extended_realtype ^ " " ^ (uvar l)
cannam@95 178 else
cannam@95 179 (vvar (Util.take s l)) ^ (vvar (Util.drop s l))
cannam@95 180 in vvar (List.filter Variable.is_temporary l)
cannam@95 181 in function
cannam@95 182 Annotate (_, _, decl, _, code) ->
cannam@95 183 if (not force_bracket) && (Util.null decl) then
cannam@95 184 unparse_code code
cannam@95 185 else "{\n" ^
cannam@95 186 (declare_variables decl) ^
cannam@95 187 (unparse_code code) ^
cannam@95 188 "}\n"
cannam@95 189
cannam@95 190 and unparse_decl = function
cannam@95 191 | Decl (a, b) -> a ^ " " ^ b ^ ";\n"
cannam@95 192 | Tdecl x -> x
cannam@95 193
cannam@95 194 and unparse_ast =
cannam@95 195 let rec unparse_plus = function
cannam@95 196 | [] -> ""
cannam@95 197 | (CUminus a :: b) -> " - " ^ (parenthesize a) ^ (unparse_plus b)
cannam@95 198 | (a :: b) -> " + " ^ (parenthesize a) ^ (unparse_plus b)
cannam@95 199 and parenthesize x = match x with
cannam@95 200 | (CVar _) -> unparse_ast x
cannam@95 201 | (CCall _) -> unparse_ast x
cannam@95 202 | (Integer _) -> unparse_ast x
cannam@95 203 | _ -> "(" ^ (unparse_ast x) ^ ")"
cannam@95 204
cannam@95 205 in
cannam@95 206 function
cannam@95 207 | Asch a -> (unparse_annotated true a)
cannam@95 208 | Simd_leavefun -> "" (* used only in SIMD code *)
cannam@95 209 | Return x -> "return " ^ unparse_ast x ^ ";"
cannam@95 210 | For (a, b, c, d) ->
cannam@95 211 "for (" ^
cannam@95 212 unparse_ast a ^ "; " ^ unparse_ast b ^ "; " ^ unparse_ast c
cannam@95 213 ^ ")" ^ unparse_ast d
cannam@95 214 | If (a, d) ->
cannam@95 215 "if (" ^
cannam@95 216 unparse_ast a
cannam@95 217 ^ ")" ^ unparse_ast d
cannam@95 218 | Block (d, s) ->
cannam@95 219 if (s == []) then ""
cannam@95 220 else
cannam@95 221 "{\n" ^
cannam@95 222 foldr_string_concat (map unparse_decl d) ^
cannam@95 223 foldr_string_concat (map unparse_ast s) ^
cannam@95 224 "}\n"
cannam@95 225 | Binop (op, a, b) -> (unparse_ast a) ^ op ^ (unparse_ast b)
cannam@95 226 | Expr_assign (a, b) -> (unparse_ast a) ^ " = " ^ (unparse_ast b)
cannam@95 227 | Stmt_assign (a, b) -> (unparse_ast a) ^ " = " ^ (unparse_ast b) ^ ";\n"
cannam@95 228 | Comma (a, b) -> (unparse_ast a) ^ ", " ^ (unparse_ast b)
cannam@95 229 | Integer i -> string_of_int i
cannam@95 230 | CVar s -> s
cannam@95 231 | CCall (s, x) -> s ^ "(" ^ (unparse_ast x) ^ ")"
cannam@95 232 | CPlus [] -> "0 /* bug */"
cannam@95 233 | CPlus [a] -> " /* bug */ " ^ (unparse_ast a)
cannam@95 234 | CPlus (a::b) -> (parenthesize a) ^ (unparse_plus b)
cannam@95 235 | ITimes (a, b) -> (parenthesize a) ^ " * " ^ (parenthesize b)
cannam@95 236 | CUminus a -> "- " ^ (parenthesize a)
cannam@95 237
cannam@95 238 and unparse_function = function
cannam@95 239 Fcn (typ, name, args, body) ->
cannam@95 240 let rec unparse_args = function
cannam@95 241 [Decl (a, b)] -> a ^ " " ^ b
cannam@95 242 | (Decl (a, b)) :: s -> a ^ " " ^ b ^ ", "
cannam@95 243 ^ unparse_args s
cannam@95 244 | [] -> ""
cannam@95 245 | _ -> failwith "unparse_function"
cannam@95 246 in
cannam@95 247 (typ ^ " " ^ name ^ "(" ^ unparse_args args ^ ")\n" ^
cannam@95 248 unparse_ast body)
cannam@95 249
cannam@95 250
cannam@95 251 (*************************************************************
cannam@95 252 * traverse a a function and return a list of all expressions,
cannam@95 253 * in the execution order
cannam@95 254 **************************************************************)
cannam@95 255 let rec fcn_to_expr_list = fun (Fcn (_, _, _, body)) -> ast_to_expr_list body
cannam@95 256 and acode_to_expr_list = function
cannam@95 257 AInstr (Assign (_, x)) -> [x]
cannam@95 258 | ASeq (a, b) ->
cannam@95 259 (asched_to_expr_list a) @ (asched_to_expr_list b)
cannam@95 260 | _ -> []
cannam@95 261 and asched_to_expr_list (Annotate (_, _, _, _, code)) =
cannam@95 262 acode_to_expr_list code
cannam@95 263 and ast_to_expr_list = function
cannam@95 264 Asch a -> asched_to_expr_list a
cannam@95 265 | Block (_, a) -> flatten (map ast_to_expr_list a)
cannam@95 266 | For (_, _, _, body) -> ast_to_expr_list body
cannam@95 267 | If (_, body) -> ast_to_expr_list body
cannam@95 268 | _ -> []
cannam@95 269
cannam@95 270 (***********************
cannam@95 271 * Extracting Constants
cannam@95 272 ***********************)
cannam@95 273
cannam@95 274 (* add a new key & value to a list of (key,value) pairs, where
cannam@95 275 the keys are floats and each key is unique up to almost_equal *)
cannam@95 276
cannam@95 277 let extract_constants f =
cannam@95 278 let constlist = flatten (map expr_to_constants (ast_to_expr_list f))
cannam@95 279 in map
cannam@95 280 (fun n ->
cannam@95 281 Tdecl
cannam@95 282 ("DK(" ^ (Number.to_konst n) ^ ", " ^ (Number.to_string n) ^
cannam@95 283 ");\n"))
cannam@95 284 (unique_constants constlist)
cannam@95 285
cannam@95 286 (******************************
cannam@95 287 Extracting operation counts
cannam@95 288 ******************************)
cannam@95 289
cannam@95 290 let count_stack_vars =
cannam@95 291 let rec count_acode = function
cannam@95 292 | ASeq (a, b) -> max (count_asched a) (count_asched b)
cannam@95 293 | _ -> 0
cannam@95 294 and count_asched (Annotate (_, _, decl, _, code)) =
cannam@95 295 (length decl) + (count_acode code)
cannam@95 296 and count_ast = function
cannam@95 297 | Asch a -> count_asched a
cannam@95 298 | Block (d, a) -> (length d) + (Util.max_list (map count_ast a))
cannam@95 299 | For (_, _, _, body) -> count_ast body
cannam@95 300 | If (_, body) -> count_ast body
cannam@95 301 | _ -> 0
cannam@95 302 in function (Fcn (_, _, _, body)) -> count_ast body
cannam@95 303
cannam@95 304 let count_memory_acc f =
cannam@95 305 let rec count_var v =
cannam@95 306 if (Variable.is_locative v) then 1 else 0
cannam@95 307 and count_acode = function
cannam@95 308 | AInstr (Assign (v, _)) -> count_var v
cannam@95 309 | ASeq (a, b) -> (count_asched a) + (count_asched b)
cannam@95 310 | _ -> 0
cannam@95 311 and count_asched = function
cannam@95 312 Annotate (_, _, _, _, code) -> count_acode code
cannam@95 313 and count_ast = function
cannam@95 314 | Asch a -> count_asched a
cannam@95 315 | Block (_, a) -> (Util.sum_list (map count_ast a))
cannam@95 316 | Comma (a, b) -> (count_ast a) + (count_ast b)
cannam@95 317 | For (_, _, _, body) -> count_ast body
cannam@95 318 | If (_, body) -> count_ast body
cannam@95 319 | _ -> 0
cannam@95 320 and count_acc_expr_func acc = function
cannam@95 321 | Load v -> acc + (count_var v)
cannam@95 322 | Plus a -> fold_left count_acc_expr_func acc a
cannam@95 323 | Times (a, b) -> fold_left count_acc_expr_func acc [a; b]
cannam@95 324 | Uminus a -> count_acc_expr_func acc a
cannam@95 325 | _ -> acc
cannam@95 326 in let (Fcn (typ, name, args, body)) = f
cannam@95 327 in (count_ast body) +
cannam@95 328 fold_left count_acc_expr_func 0 (fcn_to_expr_list f)
cannam@95 329
cannam@95 330 let good_for_fma = To_alist.good_for_fma
cannam@95 331
cannam@95 332 let build_fma = function
cannam@95 333 | [a; Times (b, c)] when good_for_fma (b, c) -> Some (a, b, c)
cannam@95 334 | [Times (b, c); a] when good_for_fma (b, c) -> Some (a, b, c)
cannam@95 335 | [a; Uminus (Times (b, c))] when good_for_fma (b, c) -> Some (a, b, c)
cannam@95 336 | [Uminus (Times (b, c)); a] when good_for_fma (b, c) -> Some (a, b, c)
cannam@95 337 | _ -> None
cannam@95 338
cannam@95 339 let rec count_flops_expr_func (adds, mults, fmas) = function
cannam@95 340 | Plus [] -> (adds, mults, fmas)
cannam@95 341 | Plus ([_; _] as a) ->
cannam@95 342 begin
cannam@95 343 match build_fma a with
cannam@95 344 | None ->
cannam@95 345 fold_left count_flops_expr_func
cannam@95 346 (adds + (length a) - 1, mults, fmas) a
cannam@95 347 | Some (a, b, c) ->
cannam@95 348 fold_left count_flops_expr_func (adds, mults, fmas+1) [a; b; c]
cannam@95 349 end
cannam@95 350 | Plus (a :: b) ->
cannam@95 351 count_flops_expr_func (adds, mults, fmas) (Plus [a; Plus b])
cannam@95 352 | Times (NaN MULTI_A,_) -> (adds, mults, fmas)
cannam@95 353 | Times (NaN MULTI_B,_) -> (adds, mults, fmas)
cannam@95 354 | Times (NaN I,b) -> count_flops_expr_func (adds, mults, fmas) b
cannam@95 355 | Times (NaN CONJ,b) -> count_flops_expr_func (adds, mults, fmas) b
cannam@95 356 | Times (a,b) -> fold_left count_flops_expr_func (adds, mults+1, fmas) [a; b]
cannam@95 357 | CTimes (a,b) ->
cannam@95 358 fold_left count_flops_expr_func (adds+1, mults+2, fmas) [a; b]
cannam@95 359 | CTimesJ (a,b) ->
cannam@95 360 fold_left count_flops_expr_func (adds+1, mults+2, fmas) [a; b]
cannam@95 361 | Uminus a -> count_flops_expr_func (adds, mults, fmas) a
cannam@95 362 | _ -> (adds, mults, fmas)
cannam@95 363
cannam@95 364 let count_flops f =
cannam@95 365 fold_left count_flops_expr_func (0, 0, 0) (fcn_to_expr_list f)
cannam@95 366
cannam@95 367 let count_constants f =
cannam@95 368 length (unique_constants (flatten (map expr_to_constants (fcn_to_expr_list f))))
cannam@95 369
cannam@95 370 let arith_complexity f =
cannam@95 371 let (a, m, fmas) = count_flops f
cannam@95 372 and v = count_stack_vars f
cannam@95 373 and c = count_constants f
cannam@95 374 and mem = count_memory_acc f
cannam@95 375 in (a, m, fmas, v, c, mem)
cannam@95 376
cannam@95 377 (* print the operation costs *)
cannam@95 378 let print_cost f =
cannam@95 379 let Fcn (_, _, _, _) = f
cannam@95 380 and (a, m, fmas, v, c, mem) = arith_complexity f
cannam@95 381 in
cannam@95 382 "/*\n"^
cannam@95 383 " * This function contains " ^
cannam@95 384 (string_of_int (a + fmas)) ^ " FP additions, " ^
cannam@95 385 (string_of_int (m + fmas)) ^ " FP multiplications,\n" ^
cannam@95 386 " * (or, " ^
cannam@95 387 (string_of_int a) ^ " additions, " ^
cannam@95 388 (string_of_int m) ^ " multiplications, " ^
cannam@95 389 (string_of_int fmas) ^ " fused multiply/add),\n" ^
cannam@95 390 " * " ^ (string_of_int v) ^ " stack variables, " ^
cannam@95 391 (string_of_int c) ^ " constants, and " ^
cannam@95 392 (string_of_int mem) ^ " memory accesses\n" ^
cannam@95 393 " */\n"
cannam@95 394
cannam@95 395 (*****************************************
cannam@95 396 * functions that create C arrays
cannam@95 397 *****************************************)
cannam@95 398 type stride =
cannam@95 399 | SVar of string
cannam@95 400 | SConst of string
cannam@95 401 | SInteger of int
cannam@95 402 | SNeg of stride
cannam@95 403
cannam@95 404 type sstride =
cannam@95 405 | Simple of int
cannam@95 406 | Constant of (string * int)
cannam@95 407 | Composite of (string * int)
cannam@95 408 | Negative of sstride
cannam@95 409
cannam@95 410 let rec simplify_stride stride i =
cannam@95 411 match (stride, i) with
cannam@95 412 (_, 0) -> Simple 0
cannam@95 413 | (SInteger n, i) -> Simple (n * i)
cannam@95 414 | (SConst s, i) -> Constant (s, i)
cannam@95 415 | (SVar s, i) -> Composite (s, i)
cannam@95 416 | (SNeg x, i) ->
cannam@95 417 match (simplify_stride x i) with
cannam@95 418 | Negative y -> y
cannam@95 419 | y -> Negative y
cannam@95 420
cannam@95 421 let rec cstride_to_string = function
cannam@95 422 | Simple i -> string_of_int i
cannam@95 423 | Constant (s, i) ->
cannam@95 424 if !Magic.lisp_syntax then
cannam@95 425 "(* " ^ s ^ " " ^ (string_of_int i) ^ ")"
cannam@95 426 else
cannam@95 427 s ^ " * " ^ (string_of_int i)
cannam@95 428 | Composite (s, i) ->
cannam@95 429 if !Magic.lisp_syntax then
cannam@95 430 "(* " ^ s ^ " " ^ (string_of_int i) ^ ")"
cannam@95 431 else
cannam@95 432 "WS(" ^ s ^ ", " ^ (string_of_int i) ^ ")"
cannam@95 433 | Negative x -> "-" ^ cstride_to_string x
cannam@95 434
cannam@95 435 let aref name index =
cannam@95 436 if !Magic.lisp_syntax then
cannam@95 437 Printf.sprintf "(aref %s %s)" name index
cannam@95 438 else
cannam@95 439 Printf.sprintf "%s[%s]" name index
cannam@95 440
cannam@95 441 let array_subscript name stride k =
cannam@95 442 aref name (cstride_to_string (simplify_stride stride k))
cannam@95 443
cannam@95 444 let varray_subscript name vstride stride v i =
cannam@95 445 let vindex = simplify_stride vstride v
cannam@95 446 and iindex = simplify_stride stride i
cannam@95 447 in
cannam@95 448 let index =
cannam@95 449 match (vindex, iindex) with
cannam@95 450 (Simple vi, Simple ii) -> string_of_int (vi + ii)
cannam@95 451 | (Simple 0, x) -> cstride_to_string x
cannam@95 452 | (x, Simple 0) -> cstride_to_string x
cannam@95 453 | _ -> (cstride_to_string vindex) ^ " + " ^ (cstride_to_string iindex)
cannam@95 454 in aref name index
cannam@95 455
cannam@95 456 let real_of s = "c_re(" ^ s ^ ")"
cannam@95 457 let imag_of s = "c_im(" ^ s ^ ")"
cannam@95 458
cannam@95 459 let flops_of f =
cannam@95 460 let (add, mul, fma) = count_flops f in
cannam@95 461 Printf.sprintf "{ %d, %d, %d, 0 }" add mul fma