(* * Copyright (c) 1997-1999 Massachusetts Institute of Technology * Copyright (c) 2003 Matteo Frigo * Copyright (c) 2003 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: gen_notw_noinline_c.ml,v 1.1 2003/04/17 10:44:21 athena Exp $ *) open Util open Genutil open C let cvsid = "$Id: gen_notw_noinline_c.ml,v 1.1 2003/04/17 10:44:21 athena Exp $" let usage = "Usage: " ^ Sys.argv.(0) ^ " -n " let uistride = ref Stride_variable let uostride = ref Stride_variable let uivstride = ref Stride_variable let uovstride = ref Stride_variable let speclist = [ "-with-istride", Arg.String(fun x -> uistride := arg_to_stride x), " specialize for given input stride"; "-with-ostride", Arg.String(fun x -> uostride := arg_to_stride x), " specialize for given output stride"; "-with-ivstride", Arg.String(fun x -> uivstride := arg_to_stride x), " specialize for given input vector stride"; "-with-ovstride", Arg.String(fun x -> uovstride := arg_to_stride x), " specialize for given output vector stride" ] let generate n = let riarray = "xi" and roarray = "xo" and istride = "is" and ostride = "os" in let sign = !Genutil.sign and name = !Magic.codelet_name in let ename = expand_name name in let name0 = ename ^ "_0" in let vl = choose_simd "1" "VL" in let vistride = either_stride (!uistride) (C.SVar istride) and vostride = either_stride (!uostride) (C.SVar ostride) in let _ = Simd.ovs := stride_to_string "ovs" !uovstride in let _ = Simd.ivs := stride_to_string "ivs" !uivstride in let fft = Trig.dft_via_rdft in let locations = unique_array_c n in let input = locative_array_c n (C.array_subscript riarray vistride) (C.array_subscript "BUG" vistride) locations in let output = fft sign n (load_array_r n input) in let oloc = locative_array_c n (C.array_subscript roarray vostride) (C.array_subscript "BUG" vostride) locations in let odag = store_array_r n oloc output in let annot = standard_optimizer odag in let tree0 = Fcn ("static void", name0, ([Decl (C.constrealtypep, riarray); Decl (C.realtypep, roarray)] @ (if stride_fixed !uistride then [] else [Decl (C.stridetype, istride)]) @ (if stride_fixed !uostride then [] else [Decl (C.stridetype, ostride)]) @ (if stride_fixed !uivstride then [] else [Decl ("int", !Simd.ivs)]) @ (if stride_fixed !uovstride then [] else [Decl ("int", !Simd.ovs)]) ), add_constants (Asch annot)) in let si = if sign < 0 then "ri" else "ii" in let so = if sign < 0 then "ro" else "io" in let loop = "static void " ^ ename ^ "(const " ^ C.realtype ^ " *ri, const " ^ C.realtype ^ " *ii, " ^ C.realtype ^ " *ro, " ^ C.realtype ^ " *io,\n" ^ C.stridetype ^ " is, " ^ C.stridetype ^ " os, " ^ " int v, int ivs, int ovs)\n" ^ "{\n" ^ "int i;\n" ^ "BEGIN_SIMD();\n" ^ "for (i = 0; i < v; i += " ^ vl ^ ") {\n" ^ name0 ^ "(" ^ si ^", " ^ so ^ (if stride_fixed !uistride then "" else ", is") ^ (if stride_fixed !uostride then "" else ", os") ^ (choose_simd "" (if stride_fixed !uivstride then "" else ", ivs")) ^ (choose_simd "" (if stride_fixed !uovstride then "" else ", ovs")) ^ ");\n" ^ (Printf.sprintf "%s += VL * %s; %s += VL * %s;\n" si !Simd.ivs so !Simd.ovs) ^ "}\n" ^ "END_SIMD();\n" ^ "}\n\n" and desc = Printf.sprintf "static const kdft_desc desc = { %d, %s, %s, &GENUS, %s, %s, %s, %s };\n" n (stringify name) (flops_of tree0) (stride_to_solverparm !uistride) (stride_to_solverparm !uostride) (choose_simd "0" (stride_to_solverparm !uivstride)) (choose_simd "0" (stride_to_solverparm !uovstride)) and init = (declare_register_fcn name) ^ "{" ^ " X(kdft_register)(p, " ^ ename ^ ", &desc);\n" ^ "}\n" in ((unparse cvsid tree0) ^ "\n" ^ loop ^ desc ^ init) let main () = begin Simdmagic.simd_mode := true; parse speclist usage; print_string (generate (check_size ())); end let _ = main()