| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099 |
- /* GCC-StarPU
- Copyright (C) 2011 Institut National de Recherche en Informatique et Automatique
- GCC-StarPU 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 3 of the License, or
- (at your option) any later version.
- GCC-StarPU 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 GCC-StarPU. If not, see <http://www.gnu.org/licenses/>. */
- /* Use extensions of the GNU C Library. */
- #define _GNU_SOURCE 1
- #include <starpu-gcc-config.h>
- int plugin_is_GPL_compatible;
- /* #define ENABLE_TREE_CHECKING 1 */
- #include <gcc-plugin.h>
- #include <plugin-version.h>
- #include <plugin.h>
- #include <cpplib.h>
- #include <tree.h>
- #include <tree-iterator.h>
- #include <c-common.h>
- #include <c-pragma.h>
- #include <tm.h>
- #include <gimple.h>
- #include <tree-pass.h>
- #include <cgraph.h>
- #include <gimple.h>
- #include <toplev.h>
- #include <stdio.h>
- #include <starpu.h> /* for `STARPU_CPU' & co. */
- /* The name of this plug-in. */
- static const char plugin_name[] = "starpu";
- /* Names of public attributes. */
- static const char task_attribute_name[] = "task";
- static const char task_implementation_attribute_name[] = "task_implementation";
- /* Names of attributes used internally. */
- static const char task_codelet_attribute_name[] = ".codelet";
- static const char task_implementation_list_attribute_name[] =
- ".task_implementation_list";
- static const char task_implementation_wrapper_attribute_name[] =
- ".task_implementation_wrapper";
- /* Names of data structures defined in <starpu.h>. */
- static const char codelet_struct_name[] = "starpu_codelet";
- static const char task_struct_name[] = "starpu_task";
- /* The `starpu_insert_task' FUNCTION_DECL. */
- static tree insert_task_fn = NULL_TREE;
- /* Forward declarations. */
- static tree build_codelet_declaration (tree task_decl);
- /* Useful code backported from GCC 4.6. */
- #if !HAVE_DECL_BUILD_CALL_EXPR_LOC_ARRAY
- static tree
- build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
- {
- tree fntype = TREE_TYPE (fndecl);
- tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
- return fold_builtin_call_array (loc, TREE_TYPE (fntype), fn, n, argarray);
- }
- #endif
- #if !HAVE_DECL_BUILD_CALL_EXPR_LOC_VEC
- static tree
- build_call_expr_loc_vec (location_t loc, tree fndecl, VEC(tree,gc) *vec)
- {
- return build_call_expr_loc_array (loc, fndecl, VEC_length (tree, vec),
- VEC_address (tree, vec));
- }
- #endif
- /* Helpers. */
- /* Like `build_constructor_from_list', but sort VALS according to their
- offset in struct TYPE. Inspired by `gnat_build_constructor'. */
- static tree
- build_constructor_from_unsorted_list (tree type, tree vals)
- {
- int compare_elmt_bitpos (const void *rt1, const void *rt2)
- {
- const constructor_elt *elmt1 = (constructor_elt *) rt1;
- const constructor_elt *elmt2 = (constructor_elt *) rt2;
- const_tree field1 = elmt1->index;
- const_tree field2 = elmt2->index;
- int ret
- = tree_int_cst_compare (bit_position (field1), bit_position (field2));
- return ret ? ret : (int) (DECL_UID (field1) - DECL_UID (field2));
- }
- tree t;
- VEC(constructor_elt,gc) *v = NULL;
- if (vals)
- {
- v = VEC_alloc (constructor_elt, gc, list_length (vals));
- for (t = vals; t; t = TREE_CHAIN (t))
- CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
- }
- /* Sort field initializers by field offset. */
- VEC_qsort (constructor_elt, v, compare_elmt_bitpos);
- return build_constructor (type, v);
- }
- /* Debugging helpers. */
- static tree build_printf (const char *, ...)
- __attribute__ ((format (printf, 1, 2)));
- static tree
- build_printf (const char *fmt, ...)
- {
- tree call;
- char *str;
- va_list args;
- va_start (args, fmt);
- vasprintf (&str, fmt, args);
- call = build_call_expr (built_in_decls[BUILT_IN_PUTS], 1,
- build_string_literal (strlen (str) + 1, str));
- free (str);
- va_end (args);
- return call;
- }
- static tree
- build_hello_world (void)
- {
- return build_printf ("Hello, StarPU!");
- }
- /* List and vector utilities, à la SRFI-1. */
- static tree chain_trees (tree t, ...)
- __attribute__ ((sentinel));
- static tree
- chain_trees (tree t, ...)
- {
- va_list args;
- va_start (args, t);
- tree next, prev = t;
- for (prev = t, next = va_arg (args, tree);
- next != NULL_TREE;
- prev = next, next = va_arg (args, tree))
- TREE_CHAIN (prev) = next;
- va_end (args);
- return t;
- }
- static tree
- filter (bool (*pred) (const_tree), tree t)
- {
- tree result, lst;
- gcc_assert (TREE_CODE (t) == TREE_LIST);
- result = NULL_TREE;
- for (lst = t; lst != NULL_TREE; lst = TREE_CHAIN (lst))
- {
- if (pred (lst))
- result = tree_cons (TREE_PURPOSE (lst), TREE_VALUE (lst),
- result);
- }
- return nreverse (result);
- }
- static void
- for_each (void (*func) (tree), tree t)
- {
- tree lst;
- gcc_assert (TREE_CODE (t) == TREE_LIST);
- for (lst = t; lst != NULL_TREE; lst = TREE_CHAIN (lst))
- func (TREE_VALUE (lst));
- }
- /* Pragmas. */
- #define STARPU_PRAGMA_NAME_SPACE "starpu"
- static void
- handle_pragma_hello (struct cpp_reader *reader)
- {
- add_stmt (build_hello_world ());
- }
- static void
- handle_pragma_wait (struct cpp_reader *reader)
- {
- tree fndecl;
- fndecl = lookup_name (get_identifier ("starpu_task_wait_for_all"));
- gcc_assert (TREE_CODE (fndecl) == FUNCTION_DECL);
- add_stmt (build_call_expr (fndecl, 0));
- }
- static void
- register_pragmas (void *gcc_data, void *user_data)
- {
- c_register_pragma (STARPU_PRAGMA_NAME_SPACE, "hello",
- handle_pragma_hello);
- c_register_pragma (STARPU_PRAGMA_NAME_SPACE, "wait",
- handle_pragma_wait);
- }
- /* Attributes. */
- /* Handle the `task' function attribute. */
- static tree
- handle_task_attribute (tree *node, tree name, tree args,
- int flags, bool *no_add_attrs)
- {
- tree fn;
- fn = *node;
- gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
- /* This is a function declaration for something local to this
- translation unit, so add the `task' attribute to FN. */
- *no_add_attrs = false;
- /* Add an empty `task_implementation_list' attribute. */
- DECL_ATTRIBUTES (fn) =
- tree_cons (get_identifier (task_implementation_list_attribute_name),
- NULL_TREE,
- NULL_TREE);
- /* Push a declaration for the corresponding `starpu_codelet' object and add
- it as an attribute of FN. */
- tree cl = build_codelet_declaration (fn);
- DECL_ATTRIBUTES (fn) =
- tree_cons (get_identifier (task_codelet_attribute_name), cl,
- DECL_ATTRIBUTES (fn));
- pushdecl (cl);
- TREE_USED (fn) = true;
- if (insert_task_fn == NULL_TREE)
- {
- /* Lookup the TASK_CREATE_NAME in the global scope (this can't be done
- from `lower_starpu'.)
- XXX: Move it in a pass of its own. */
- insert_task_fn = lookup_name (get_identifier ("starpu_insert_task"));
- gcc_assert (insert_task_fn != NULL_TREE &&
- TREE_CODE (insert_task_fn) == FUNCTION_DECL);
- }
- return NULL_TREE;
- }
- /* Handle the `task_implementation (WHERE, TASK)' attribute. WHERE is a
- string constant ("cpu", "cuda", etc.), and TASK is the identifier of a
- function declared with the `task' attribute. */
- static tree
- handle_task_implementation_attribute (tree *node, tree name, tree args,
- int flags, bool *no_add_attrs)
- {
- tree fn, where, task_decl;
- /* FIXME: Use error nodes instead of `gcc_assert'. */
- /* FIXME:TODO: To change the order to (TASK, WHERE):
- tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
- tree cleanup_decl = lookup_name (cleanup_id);
- */
- fn = *node;
- gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
- where = TREE_VALUE (args);
- gcc_assert (TREE_CODE (where) == STRING_CST);
- task_decl = TREE_VALUE (TREE_CHAIN (args));
- gcc_assert (TREE_CODE (task_decl) == FUNCTION_DECL);
- gcc_assert (lookup_attribute (task_attribute_name,
- DECL_ATTRIBUTES (task_decl)));
- gcc_assert (TYPE_CANONICAL (TREE_TYPE (fn))
- == TYPE_CANONICAL (TREE_TYPE (task_decl))
- && TYPE_CANONICAL (TREE_TYPE (fn)) != NULL_TREE);
- /* Add FN to the list of implementations of TASK_DECL. */
- tree attr, impls;
- attr = lookup_attribute (task_implementation_list_attribute_name,
- DECL_ATTRIBUTES (task_decl));
- impls = tree_cons (NULL_TREE, fn, TREE_VALUE (attr));
- DECL_ATTRIBUTES (task_decl) =
- tree_cons (get_identifier (task_implementation_list_attribute_name),
- impls,
- remove_attribute (task_implementation_list_attribute_name,
- DECL_ATTRIBUTES (task_decl)));
- TREE_USED (fn) = true;
- /* Keep the attribute. */
- *no_add_attrs = false;
- return NULL_TREE;
- }
- /* Return the declaration of the `starpu_codelet' variable associated with
- TASK_DECL. */
- static tree
- task_codelet_declaration (const_tree task_decl)
- {
- tree cl_attr;
- cl_attr = lookup_attribute (task_codelet_attribute_name,
- DECL_ATTRIBUTES (task_decl));
- gcc_assert (cl_attr != NULL_TREE);
- return TREE_VALUE (cl_attr);
- }
- /* Return the list of implementations of TASK_DECL. */
- static tree
- task_implementation_list (const_tree task_decl)
- {
- tree attr;
- attr = lookup_attribute (task_implementation_list_attribute_name,
- DECL_ATTRIBUTES (task_decl));
- return TREE_VALUE (attr);
- }
- /* Return the list of scalar parameter types of TASK_DECL. */
- static tree
- task_scalar_parameter_types (const_tree task_decl)
- {
- bool is_scalar (const_tree item)
- {
- return (!POINTER_TYPE_P (TREE_VALUE (item))
- && !VOID_TYPE_P (TREE_VALUE (item)));
- }
- return filter (is_scalar, TYPE_ARG_TYPES (TREE_TYPE (task_decl)));
- }
- /* Return the list of pointer parameter types of TASK_DECL. */
- static tree
- task_pointer_parameter_types (const_tree task_decl)
- {
- bool is_pointer (const_tree item)
- {
- return POINTER_TYPE_P (TREE_VALUE (item));
- }
- return filter (is_pointer, TYPE_ARG_TYPES (TREE_TYPE (task_decl)));
- }
- /* Return a value indicating where TASK_IMPL should execute (`STARPU_CPU',
- `STARPU_CUDA', etc.). */
- static int
- task_implementation_where (const_tree task_impl)
- {
- int where_int;
- tree impl_attr, args, where;
- gcc_assert (TREE_CODE (task_impl) == FUNCTION_DECL);
- impl_attr = lookup_attribute (task_implementation_attribute_name,
- DECL_ATTRIBUTES (task_impl));
- gcc_assert (impl_attr != NULL_TREE);
- args = TREE_VALUE (impl_attr);
- where = TREE_VALUE (args);
- if (!strncmp (TREE_STRING_POINTER (where), "cpu",
- TREE_STRING_LENGTH (where)))
- where_int = STARPU_CPU;
- else if (!strncmp (TREE_STRING_POINTER (where), "opencl",
- TREE_STRING_LENGTH (where)))
- where_int = STARPU_OPENCL;
- else if (!strncmp (TREE_STRING_POINTER (where), "cuda",
- TREE_STRING_LENGTH (where)))
- where_int = STARPU_CUDA;
- else
- /* FIXME: Error out? */
- where_int = 0;
- return where_int;
- }
- /* Return the task implemented by TASK_IMPL. */
- static tree
- task_implementation_task (const_tree task_impl)
- {
- tree impl_attr, args;
- gcc_assert (TREE_CODE (task_impl) == FUNCTION_DECL);
- impl_attr = lookup_attribute (task_implementation_attribute_name,
- DECL_ATTRIBUTES (task_impl));
- gcc_assert (impl_attr != NULL_TREE);
- args = TREE_VALUE (impl_attr);
- return TREE_VALUE (TREE_CHAIN (args));
- }
- /* Return the FUNCTION_DECL of the wrapper generated for TASK_IMPL. */
- static tree
- task_implementation_wrapper (const_tree task_impl)
- {
- tree attr;
- gcc_assert (TREE_CODE (task_impl) == FUNCTION_DECL);
- attr = lookup_attribute (task_implementation_wrapper_attribute_name,
- DECL_ATTRIBUTES (task_impl));
- gcc_assert (attr != NULL_TREE);
- return TREE_VALUE (attr);
- }
- static void
- register_task_attributes (void *gcc_data, void *user_data)
- {
- static const struct attribute_spec task_attr =
- {
- task_attribute_name, 0, 0, true, false, false,
- handle_task_attribute
- };
- static const struct attribute_spec task_implementation_attr =
- {
- task_implementation_attribute_name, 2, 2, true, false, false,
- handle_task_implementation_attribute
- };
- register_attribute (&task_attr);
- register_attribute (&task_implementation_attr);
- }
- /* Return the type of a codelet function, i.e.,
- `void (*) (void **, void *)'. */
- static tree
- build_codelet_wrapper_type (void)
- {
- tree void_ptr_ptr;
- void_ptr_ptr = build_pointer_type (ptr_type_node);
- return build_function_type_list (void_type_node,
- void_ptr_ptr, ptr_type_node,
- NULL_TREE);
- }
- /* Return an identifier for the wrapper of TASK_IMPL, a task
- implementation. */
- static tree
- build_codelet_wrapper_identifier (tree task_impl)
- {
- static const char suffix[] = ".task_implementation_wrapper";
- tree id;
- char *cl_name;
- const char *task_name;
- id = DECL_NAME (task_impl);
- task_name = IDENTIFIER_POINTER (id);
- cl_name = alloca (IDENTIFIER_LENGTH (id) + strlen (suffix) + 1);
- memcpy (cl_name, task_name, IDENTIFIER_LENGTH (id));
- strcpy (&cl_name[IDENTIFIER_LENGTH (id)], suffix);
- return get_identifier (cl_name);
- }
- /* Return a function of type `void (*) (void **, void *)' that calls function
- TASK_IMPL, the FUNCTION_DECL of a task implementation whose prototype may
- be arbitrary. */
- static tree
- build_codelet_wrapper_definition (tree task_impl)
- {
- location_t loc;
- tree task_decl;
- loc = DECL_SOURCE_LOCATION (task_impl);
- task_decl = task_implementation_task (task_impl);
- tree build_scalar_var_chain (tree wrapper_decl)
- {
- tree types, prev, vars = NULL_TREE;
- for (types = task_scalar_parameter_types (task_decl), prev = NULL_TREE;
- types != NULL_TREE;
- types = TREE_CHAIN (types))
- {
- tree var;
- var = build_decl (loc, VAR_DECL,
- create_tmp_var_name ("scalar_arg"),
- TREE_VALUE (types));
- DECL_CONTEXT (var) = wrapper_decl;
- if (prev != NULL_TREE)
- TREE_CHAIN (prev) = var;
- else
- vars = var;
- prev = var;
- }
- return vars;
- }
- /* Return the body of the wrapper, which unpacks `cl_args' and calls the
- user-defined task implementation. */
- tree build_body (tree wrapper_decl, tree vars)
- {
- tree stmts = NULL, call, unpack_fndecl, v;
- VEC(tree, gc) *args;
- unpack_fndecl = lookup_name (get_identifier ("starpu_unpack_cl_args"));
- gcc_assert (unpack_fndecl != NULL_TREE
- && TREE_CODE (unpack_fndecl) == FUNCTION_DECL);
- /* Build `starpu_unpack_cl_args (cl_args, &var1, &var2, ...)'. */
- args = NULL;
- VEC_safe_push (tree, gc, args, TREE_CHAIN (DECL_ARGUMENTS (wrapper_decl)));
- for (v = vars; v != NULL_TREE; v = TREE_CHAIN (v))
- VEC_safe_push (tree, gc, args, build_addr (v, wrapper_decl));
- call = build_call_expr_loc_vec (UNKNOWN_LOCATION, unpack_fndecl, args);
- TREE_SIDE_EFFECTS (call) = 1;
- append_to_statement_list (call, &stmts);
- /* Build `my_task_impl (var1, var2, ...)'. */
- args = NULL;
- for (v = vars; v != NULL_TREE; v = TREE_CHAIN (v))
- VEC_safe_push (tree, gc, args, v);
- call = build_call_expr_loc_vec (UNKNOWN_LOCATION, task_impl, args);
- TREE_SIDE_EFFECTS (call) = 1;
- append_to_statement_list (call, &stmts);
- tree bind;
- bind = build3 (BIND_EXPR, void_type_node, vars, stmts,
- DECL_INITIAL (wrapper_decl));
- TREE_TYPE (bind) = TREE_TYPE (TREE_TYPE (wrapper_decl));
- return bind;
- }
- /* Return the parameter list of the wrapper:
- `(void **BUFFERS, void *CL_ARGS)'. */
- tree build_parameters (tree wrapper_decl)
- {
- tree param1, param2;
- param1 = build_decl (loc, PARM_DECL,
- create_tmp_var_name ("buffers"),
- build_pointer_type (ptr_type_node));
- DECL_ARG_TYPE (param1) = ptr_type_node;
- DECL_CONTEXT (param1) = wrapper_decl;
- TREE_USED (param1) = true;
- param2 = build_decl (loc, PARM_DECL,
- create_tmp_var_name ("cl_args"),
- ptr_type_node);
- DECL_ARG_TYPE (param2) = ptr_type_node;
- DECL_CONTEXT (param2) = wrapper_decl;
- TREE_USED (param2) = true;
- return chainon (param1, param2);
- }
- tree decl, wrapper_name, vars, result;
- wrapper_name = build_codelet_wrapper_identifier (task_impl);
- decl = build_decl (loc, FUNCTION_DECL, wrapper_name,
- build_codelet_wrapper_type ());
- vars = build_scalar_var_chain (decl);
- DECL_CONTEXT (decl) = NULL_TREE;
- DECL_ARGUMENTS (decl) = build_parameters (decl);
- result = build_decl (loc, RESULT_DECL, NULL_TREE, void_type_node);
- DECL_CONTEXT (result) = decl;
- DECL_ARTIFICIAL (result) = true;
- DECL_IGNORED_P (result) = true;
- DECL_RESULT (decl) = result;
- DECL_INITIAL (decl) = build_block (vars, NULL_TREE, decl, NULL_TREE);
- DECL_SAVED_TREE (decl) = build_body (decl, vars);
- TREE_PUBLIC (decl) = TREE_PUBLIC (task_impl);
- TREE_STATIC (decl) = true;
- TREE_USED (decl) = true;
- DECL_ARTIFICIAL (decl) = true;
- DECL_EXTERNAL (decl) = false;
- DECL_UNINLINABLE (decl) = true;
- rest_of_decl_compilation (decl, true, 0);
- struct function *prev_cfun = cfun;
- set_cfun (NULL);
- allocate_struct_function (decl, false);
- cfun->function_end_locus = DECL_SOURCE_LOCATION (task_impl);
- cgraph_finalize_function (decl, false);
- /* Mark DECL as needed so that it doesn't get removed by
- `cgraph_remove_unreachable_nodes' when it's not public. */
- cgraph_mark_needed_node (cgraph_get_node (decl));
- set_cfun (prev_cfun);
- return decl;
- }
- /* Define one wrapper function for each implementation of TASK. TASK should
- be the FUNCTION_DECL of a task. */
- static void
- define_codelet_wrappers (tree task)
- {
- void define (tree task_impl)
- {
- tree wrapper_def;
- wrapper_def = build_codelet_wrapper_definition (task_impl);
- DECL_ATTRIBUTES (task_impl) =
- tree_cons (get_identifier (task_implementation_wrapper_attribute_name),
- wrapper_def,
- DECL_ATTRIBUTES (task_impl));
- pushdecl (wrapper_def);
- }
- for_each (define, task_implementation_list (task));
- }
- /* Return a NODE_IDENTIFIER for the variable holding the `starpu_codelet'
- structure associated with TASK_DECL. */
- static tree
- build_codelet_identifier (tree task_decl)
- {
- static const char suffix[] = ".codelet";
- tree id;
- char *cl_name;
- const char *task_name;
- id = DECL_NAME (task_decl);
- task_name = IDENTIFIER_POINTER (id);
- cl_name = alloca (IDENTIFIER_LENGTH (id) + strlen (suffix) + 1);
- memcpy (cl_name, task_name, IDENTIFIER_LENGTH (id));
- strcpy (&cl_name[IDENTIFIER_LENGTH (id)], suffix);
- return get_identifier (cl_name);
- }
- static tree
- codelet_type (void)
- {
- tree type_decl;
- /* Lookup the `starpu_codelet' struct type. This should succeed since we
- push <starpu.h> early on. */
- type_decl = lookup_name (get_identifier (codelet_struct_name));
- gcc_assert (type_decl != NULL_TREE && TREE_CODE (type_decl) == TYPE_DECL);
- return TREE_TYPE (type_decl);
- }
- /* Return a VAR_DECL that declares a `starpu_codelet' structure for
- TASK_DECL. */
- static tree
- build_codelet_declaration (tree task_decl)
- {
- tree name, cl_decl;
- name = build_codelet_identifier (task_decl);
- cl_decl = build_decl (DECL_SOURCE_LOCATION (task_decl),
- VAR_DECL, name,
- /* c_build_qualified_type (type, TYPE_QUAL_CONST) */
- codelet_type ());
- DECL_ARTIFICIAL (cl_decl) = true;
- TREE_PUBLIC (cl_decl) = TREE_PUBLIC (task_decl);
- TREE_STATIC (cl_decl) = false;
- TREE_USED (cl_decl) = true;
- DECL_EXTERNAL (cl_decl) = true;
- DECL_CONTEXT (cl_decl) = NULL_TREE;
- return cl_decl;
- }
- /* Return a `starpu_codelet' initializer for TASK_DECL. */
- static tree
- build_codelet_initializer (tree task_decl)
- {
- tree fields;
- fields = TYPE_FIELDS (codelet_type ());
- gcc_assert (TREE_CODE (fields) == FIELD_DECL);
- tree lookup_field (const char *name)
- {
- tree fdecl, fname;
- fname = get_identifier (name);
- for (fdecl = fields;
- fdecl != NULL_TREE;
- fdecl = TREE_CHAIN (fdecl))
- {
- if (DECL_NAME (fdecl) == fname)
- return fdecl;
- }
- /* Field NAME wasn't found. */
- gcc_assert (false);
- }
- tree field_initializer (const char *name, tree value)
- {
- tree field, init;
- field = lookup_field (name);
- init = make_node (TREE_LIST);
- TREE_PURPOSE (init) = field;
- TREE_VALUE (init) = fold_convert (TREE_TYPE (field), value);
- TREE_CHAIN (init) = NULL_TREE;
- return init;
- }
- tree where_init (tree impls)
- {
- tree impl;
- int where_int = 0;
- for (impl = impls;
- impl != NULL_TREE;
- impl = TREE_CHAIN (impl))
- {
- tree impl_decl;
- impl_decl = TREE_VALUE (impl);
- gcc_assert (TREE_CODE (impl_decl) == FUNCTION_DECL);
- printf (" `%s'\n", IDENTIFIER_POINTER (DECL_NAME (impl_decl)));
- where_int |= task_implementation_where (impl_decl);
- }
- return build_int_cstu (integer_type_node, where_int);
- }
- tree implementation_pointer (tree impls, int where)
- {
- tree impl;
- for (impl = impls;
- impl != NULL_TREE;
- impl = TREE_CHAIN (impl))
- {
- tree impl_decl;
- impl_decl = TREE_VALUE (impl);
- if (task_implementation_where (impl_decl) == where)
- {
- /* Return a pointer to the wrapper of IMPL_DECL. */
- tree addr = build_addr (task_implementation_wrapper (impl_decl),
- NULL_TREE);
- return addr;
- }
- }
- /* Default to a NULL pointer. */
- return build_int_cstu (build_pointer_type (void_type_node), 0);
- }
- tree pointer_arg_count (void)
- {
- size_t len;
- len = list_length (task_pointer_parameter_types (task_decl));
- return build_int_cstu (integer_type_node, len);
- }
- printf ("implementations for `%s':\n",
- IDENTIFIER_POINTER (DECL_NAME (task_decl)));
- tree impls, inits;
- impls = task_implementation_list (task_decl);
- inits =
- chain_trees (field_initializer ("where", where_init (impls)),
- field_initializer ("nbuffers", pointer_arg_count ()),
- field_initializer ("cpu_func",
- implementation_pointer (impls, STARPU_CPU)),
- field_initializer ("opencl_func",
- implementation_pointer (impls,
- STARPU_OPENCL)),
- field_initializer ("cuda_func",
- implementation_pointer (impls,
- STARPU_CUDA)),
- NULL_TREE);
- return build_constructor_from_unsorted_list (codelet_type (), inits);
- }
- /* Return the VAR_DECL that defines a `starpu_codelet' structure for
- TASK_DECL. The VAR_DECL is assumed to already exists, so it must not be
- pushed again. */
- static tree
- define_codelet (tree task_decl)
- {
- /* Generate a wrapper function for each implementation of TASK_DECL that
- does all the packing/unpacking. */
- define_codelet_wrappers (task_decl);
- /* Retrieve the declaration of the `starpu_codelet' object. */
- tree cl_def;
- cl_def = lookup_name (build_codelet_identifier (task_decl));
- gcc_assert (cl_def != NULL_TREE && TREE_CODE (cl_def) == VAR_DECL);
- /* Turn the codelet declaration into a definition. */
- TREE_PUBLIC (cl_def) = TREE_PUBLIC (task_decl);
- TREE_STATIC (cl_def) = true;
- DECL_EXTERNAL (cl_def) = false;
- DECL_INITIAL (cl_def) = build_codelet_initializer (task_decl);
- return cl_def;
- }
- /* Define the `starpu_codelet' structure for the task implemented by
- IMPL_DECL if we're in the right compilation unit, i.e., is IMPL_DECL is a
- "cpu" task implementation. */
- static void
- maybe_define_codelet (tree impl_decl)
- {
- if (task_implementation_where (impl_decl) == STARPU_CPU)
- /* IMPL_DECL is a "cpu" implementation of some task, so define the
- codelet structure in this compilation unit. */
- define_codelet (task_implementation_task (impl_decl));
- }
- static void
- handle_pre_genericize (void *gcc_data, void *user_data)
- {
- tree fndecl = (tree) gcc_data;
- gcc_assert (fndecl != NULL_TREE && TREE_CODE (fndecl) == FUNCTION_DECL);
- gcc_assert (lookup_name (DECL_NAME (fndecl)) == fndecl);
- if (lookup_attribute (task_implementation_attribute_name,
- DECL_ATTRIBUTES (fndecl)))
- maybe_define_codelet (fndecl);
- }
- /* Build a call to `starpu_insert_task' for TASK_DECL, which will replace
- CALL. */
- static gimple
- build_task_submission (tree task_decl, gimple call)
- {
- size_t n;
- VEC(tree, heap) *args = NULL;
- /* The first argument will be a pointer to the codelet. */
- VEC_safe_push (tree, heap, args,
- build_addr (task_codelet_declaration (task_decl),
- current_function_decl));
- for (n = 0; n < gimple_call_num_args (call); n++)
- {
- tree arg;
- arg = gimple_call_arg (call, n);
- if (POINTER_TYPE_P (TREE_TYPE (arg)))
- {
- /* A pointer: the arguments will be:
- `STARPU_RW, ptr' or similar. */
- gcc_assert (TREE_CODE (arg) == VAR_DECL
- || TREE_CODE (arg) == ADDR_EXPR);
- VEC_safe_push (tree, heap, args,
- build_int_cst (integer_type_node, STARPU_RW));
- VEC_safe_push (tree, heap, args, arg);
- /* FIXME: Should pass the result of `starpu_data_lookup (ARG)'. */
- }
- else
- {
- /* A scalar: the arguments will be:
- `STARPU_VALUE, &scalar, sizeof (scalar)'. */
- /* XXX: Currently the argument has to be a variable. */
- gcc_assert (TREE_CODE (arg) == VAR_DECL);
- VEC_safe_push (tree, heap, args,
- build_int_cst (integer_type_node, STARPU_VALUE));
- VEC_safe_push (tree, heap, args,
- build_addr (arg, current_function_decl));
- VEC_safe_push (tree, heap, args,
- size_in_bytes (TREE_TYPE (arg)));
- }
- }
- /* Push the terminating zero. */
- VEC_safe_push (tree, heap, args,
- build_int_cst (integer_type_node, 0));
- return gimple_build_call_vec (insert_task_fn, args);
- }
- static unsigned int
- lower_starpu (void)
- {
- tree fndecl;
- const struct cgraph_node *cgraph;
- const struct cgraph_edge *callee;
- fndecl = current_function_decl;
- gcc_assert (TREE_CODE (fndecl) == FUNCTION_DECL);
- /* This pass should occur after `build_cgraph_edges'. */
- cgraph = cgraph_get_node (fndecl);
- gcc_assert (cgraph != NULL);
- printf ("%s: %s -> %p (callees: %p)\n", __func__,
- IDENTIFIER_POINTER (DECL_NAME (fndecl)),
- cgraph, cgraph ? cgraph->callees : NULL);
- for (callee = cgraph->callees;
- callee != NULL;
- callee = callee->next_callee)
- {
- gcc_assert (callee->callee != NULL);
- tree callee_decl;
- const char *callee_name;
- callee_decl = callee->callee->decl;
- callee_name = IDENTIFIER_POINTER (DECL_NAME (callee_decl));
- printf ("%s: callee `%s'\n", __func__, callee_name);
- if (lookup_attribute (task_attribute_name,
- DECL_ATTRIBUTES (callee_decl)))
- {
- printf ("%s: callee is a task\n", __func__);
- gimple call_site, submission;
- gimple_stmt_iterator gsi;
- call_site = callee->call_stmt;
- gsi = gsi_for_stmt (call_site);
- submission = build_task_submission (callee_decl, call_site);
- gsi_replace (&gsi, submission, true);
- gimple_set_block (submission, gimple_block (call_site));
- rebuild_cgraph_edges ();
- }
- }
- return 0;
- }
- static struct opt_pass pass_lower_starpu =
- {
- .type = GIMPLE_PASS,
- .name = "pass_lower_starpu",
- .execute = lower_starpu,
- /* The rest is zeroed. */
- };
- /* Initialization. */
- static void
- define_cpp_macros (void *gcc_data, void *user_data)
- {
- cpp_define (parse_in, "STARPU_GCC_PLUGIN=0");
- cpp_push_include (parse_in, "starpu.h");
- }
- int
- plugin_init (struct plugin_name_args *plugin_info,
- struct plugin_gcc_version *version)
- {
- if (!plugin_default_version_check (version, &gcc_version))
- return 1;
- register_callback (plugin_name, PLUGIN_START_UNIT,
- define_cpp_macros, NULL);
- register_callback (plugin_name, PLUGIN_PRAGMAS,
- register_pragmas, NULL);
- register_callback (plugin_name, PLUGIN_ATTRIBUTES,
- register_task_attributes, NULL);
- register_callback (plugin_name, PLUGIN_PRE_GENERICIZE,
- handle_pre_genericize, NULL);
- /* Register our pass so that it happens after `build_cgraph_edges' has been
- done. */
- struct register_pass_info pass_info =
- {
- .pass = &pass_lower_starpu,
- .reference_pass_name = "*build_cgraph_edges",
- .ref_pass_instance_number = 1,
- .pos_op = PASS_POS_INSERT_AFTER
- };
- register_callback (plugin_name, PLUGIN_PASS_MANAGER_SETUP,
- NULL, &pass_info);
- return 0;
- }
|