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