HomeSort by: relevance | last modified time | path
    Searched defs:child_fn (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
gimple.h 659 tree child_fn; variable
5770 return omp_parallel_stmt->child_fn;
5779 return &omp_parallel_stmt->child_fn;
5783 /* Set CHILD_FN to be the child function for OMP_PARALLEL_STMT. */
5787 tree child_fn)
5789 omp_parallel_stmt->child_fn = child_fn;
5908 return omp_task_stmt->child_fn;
5918 return &omp_task_stmt->child_fn;
5922 /* Set CHILD_FN to be the child function for OMP_TASK GS. *
    [all...]
omp-expand.cc 1243 tree child_fn, block, t; local
1261 child_fn = gimple_omp_taskreg_child_fn (entry_stmt);
1262 child_cfun = DECL_STRUCT_FUNCTION (child_fn);
1350 arg = DECL_ARGUMENTS (child_fn);
1367 /* We'd like to set the rhs to the default def in the child_fn,
1368 but it's too early to create ssa names in the child_fn.
1379 block = DECL_INITIAL (child_fn);
1387 DECL_SAVED_TREE (child_fn) = NULL;
1388 /* We'll create a CFG for child_fn, so no gimple body is needed. */
1389 gimple_set_body (child_fn, NULL)
    [all...]
omp-low.cc 1014 tree child_fn; local
1018 child_fn = gimple_omp_task_copy_fn (task_stmt);
1019 if (child_fn == NULL_TREE)
1022 child_cfun = DECL_STRUCT_FUNCTION (child_fn);
1023 DECL_STRUCT_FUNCTION (child_fn)->curr_properties = cfun->curr_properties;
1026 bind = gimplify_body (child_fn, false);
1035 gimple_set_body (child_fn, seq);
1039 cgraph_node *node = cgraph_node::get_create (child_fn);
1041 cgraph_node::add_new_function (child_fn, false);
11962 tree child_fn, t, c, src, dst, f, sf, arg, sarg, decl
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple.h 657 tree child_fn; variable
5683 return omp_parallel_stmt->child_fn;
5692 return &omp_parallel_stmt->child_fn;
5696 /* Set CHILD_FN to be the child function for OMP_PARALLEL_STMT. */
5700 tree child_fn)
5702 omp_parallel_stmt->child_fn = child_fn;
5821 return omp_task_stmt->child_fn;
5831 return &omp_task_stmt->child_fn;
5835 /* Set CHILD_FN to be the child function for OMP_TASK GS. *
    [all...]
omp-expand.cc 1240 tree child_fn, block, t; local
1258 child_fn = gimple_omp_taskreg_child_fn (entry_stmt);
1259 child_cfun = DECL_STRUCT_FUNCTION (child_fn);
1347 arg = DECL_ARGUMENTS (child_fn);
1364 /* We'd like to set the rhs to the default def in the child_fn,
1365 but it's too early to create ssa names in the child_fn.
1376 block = DECL_INITIAL (child_fn);
1384 DECL_SAVED_TREE (child_fn) = NULL;
1385 /* We'll create a CFG for child_fn, so no gimple body is needed. */
1386 gimple_set_body (child_fn, NULL)
    [all...]
omp-low.cc 1011 tree child_fn; local
1015 child_fn = gimple_omp_task_copy_fn (task_stmt);
1016 if (child_fn == NULL_TREE)
1019 child_cfun = DECL_STRUCT_FUNCTION (child_fn);
1020 DECL_STRUCT_FUNCTION (child_fn)->curr_properties = cfun->curr_properties;
1023 bind = gimplify_body (child_fn, false);
1032 gimple_set_body (child_fn, seq);
1036 cgraph_node *node = cgraph_node::get_create (child_fn);
1038 cgraph_node::add_new_function (child_fn, false);
12005 tree child_fn, t, c, src, dst, f, sf, arg, sarg, decl
    [all...]

Completed in 60 milliseconds