/netbsd-src/external/gpl3/gcc.old/dist/gcc/brig/brigfrontend/ |
H A D | brig-arg-block-handler.cc | 37 tree bind_expr in operator ()() local 40 BIND_EXPR_BLOCK (bind_expr) = block; in operator ()() 49 m_parent.m_cf->m_current_bind_expr = bind_expr; in operator ()()
|
H A D | brig-function-handler.cc | 94 tree bind_expr = build3 (BIND_EXPR, void_type_node, NULL, stmt_list, NULL); in operator ()() local 329 DECL_SAVED_TREE (fndecl) = bind_expr; in operator ()() 372 DECL_CHAIN (ret_value) = BIND_EXPR_VARS (bind_expr); in operator ()() 373 BIND_EXPR_VARS (bind_expr) = ret_value; in operator ()() 395 m_parent.m_cf->m_current_bind_expr = bind_expr; in operator ()() 418 tree bind_expr = m_parent.m_cf->m_current_bind_expr; in operator ()() local 419 tree stmts = BIND_EXPR_BODY (bind_expr); in operator ()()
|
H A D | brig-function.cc | 177 tree bind_expr = m_current_bind_expr; in add_id_variables() local 178 tree stmts = BIND_EXPR_BODY (bind_expr); in add_id_variables() 343 tree bind_expr = DECL_SAVED_TREE (m_func_decl); in add_local_variable() local 347 DECL_CHAIN (variable) = BIND_EXPR_VARS (bind_expr); in add_local_variable() 348 BIND_EXPR_VARS (bind_expr) = variable; in add_local_variable() 571 tree bind_expr = m_current_bind_expr; in convert_to_wg_function() local 572 tree stmts = BIND_EXPR_BODY (bind_expr); in convert_to_wg_function() 703 tree bind_expr = build3 (BIND_EXPR, void_type_node, NULL, stmt_list, NULL); in emit_launcher_and_metadata() local 708 DECL_SAVED_TREE (launcher) = bind_expr; in emit_launcher_and_metadata() 759 tree bind_expr = m_current_bind_expr; in append_statement() local [all …]
|
H A D | brig-variable-handler.cc | 221 tree bind_expr = m_parent.m_cf->m_current_bind_expr; in operator ()() local 224 DECL_CHAIN (var_decl) = BIND_EXPR_VARS (bind_expr); in operator ()() 225 BIND_EXPR_VARS (bind_expr) = var_decl; in operator ()()
|
H A D | brig-to-generic.cc | 710 tree bind_expr = m_cf->m_current_bind_expr; in finish_function() local 711 tree stmts = BIND_EXPR_BODY (bind_expr); in finish_function()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | function-tests.c | 236 tree bind_expr in build_trivial_generic_function() local 253 DECL_SAVED_TREE(fndecl) = bind_expr; in build_trivial_generic_function() 256 BLOCK_VARS (block) = BIND_EXPR_VARS (bind_expr); in build_trivial_generic_function()
|
H A D | gimplify.c | 1336 tree bind_expr = *expr_p; in gimplify_bind_expr() local 1346 tree temp = voidify_wrapper_expr (bind_expr, NULL); in gimplify_bind_expr() 1349 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t)) in gimplify_bind_expr() 1419 bind_stmt = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL, in gimplify_bind_expr() 1420 BIND_EXPR_BLOCK (bind_expr)); in gimplify_bind_expr() 1428 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body); in gimplify_bind_expr() 1436 if (BIND_EXPR_BLOCK (bind_expr)) in gimplify_bind_expr() 1438 end_locus = BLOCK_SOURCE_END_LOCATION (BIND_EXPR_BLOCK (bind_expr)); in gimplify_bind_expr() 1439 start_locus = BLOCK_SOURCE_LOCATION (BIND_EXPR_BLOCK (bind_expr)); in gimplify_bind_expr() 1442 start_locus = EXPR_LOCATION (bind_expr); in gimplify_bind_expr() [all …]
|
H A D | tree.def | 589 DEFTREECODE (BIND_EXPR, "bind_expr", tcc_expression, 3)
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | function-tests.cc | 237 tree bind_expr in build_trivial_generic_function() local 254 DECL_SAVED_TREE(fndecl) = bind_expr; in build_trivial_generic_function() 257 BLOCK_VARS (block) = BIND_EXPR_VARS (bind_expr); in build_trivial_generic_function()
|
H A D | gimplify.cc | 1346 tree bind_expr = *expr_p; in gimplify_bind_expr() local 1356 tree temp = voidify_wrapper_expr (bind_expr, NULL); in gimplify_bind_expr() 1359 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t)) in gimplify_bind_expr() 1419 bind_stmt = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL, in gimplify_bind_expr() 1420 BIND_EXPR_BLOCK (bind_expr)); in gimplify_bind_expr() 1428 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body); in gimplify_bind_expr() 1436 if (BIND_EXPR_BLOCK (bind_expr)) in gimplify_bind_expr() 1438 end_locus = BLOCK_SOURCE_END_LOCATION (BIND_EXPR_BLOCK (bind_expr)); in gimplify_bind_expr() 1439 start_locus = BLOCK_SOURCE_LOCATION (BIND_EXPR_BLOCK (bind_expr)); in gimplify_bind_expr() 1442 start_locus = EXPR_LOCATION (bind_expr); in gimplify_bind_expr() [all …]
|
H A D | tree.def | 599 DEFTREECODE (BIND_EXPR, "bind_expr", tcc_expression, 3)
|
H A D | ChangeLog.tree-ssa | 5541 * gimplify.c (gimplify_body): Keep old bind_expr at top level if 6012 * gimple-low.c (lower_function_body): Lower bind_expr in place. 6696 body. Pass entire bind_expr to gimplify_stmt. 8682 (propagate_copy): Assign variable to the right bind_expr.
|
H A D | ChangeLog-2005 | 18272 (declare_inline_vars): Work on block instead of bind_expr.
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
H A D | d-tree.h | 565 extern tree bind_expr (tree, tree);
|
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
H A D | coroutines.cc | 3466 tree& bind_expr = awpts->bind_stack->last (); in await_statement_walker() local 3467 tree newvar = add_var_to_bind (bind_expr, boolean_type_node, in await_statement_walker() 3652 tree& bind_expr = awpts->bind_stack->last (); in await_statement_walker() local 3654 tree newvar = add_var_to_bind (bind_expr, sw_type, "swch", in await_statement_walker()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
H A D | coroutines.cc | 3623 tree& bind_expr = awpts->bind_stack->last (); in await_statement_walker() local 3624 tree newvar = add_var_to_bind (bind_expr, boolean_type_node, in await_statement_walker() 3802 tree& bind_expr = awpts->bind_stack->last (); in await_statement_walker() local 3804 tree newvar = add_var_to_bind (bind_expr, sw_type, "swch", in await_statement_walker()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
H A D | ChangeLog | 438 (bind_expr): Remove.
|
H A D | ChangeLog-2020 | 841 (bind_expr): Remove.
|
H A D | ChangeLog-2013 | 881 * d-codegen.cc (IRState::binding): Replace with bind_expr.
|