/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | function-tests.c | 473 gimple *bind_stmt = gimple_seq_first_stmt (seq_fn_body); in test_gimplification() local 474 ASSERT_EQ (GIMPLE_BIND, gimple_code (bind_stmt)); in test_gimplification() 475 ASSERT_EQ (NULL, bind_stmt->next); in test_gimplification() 477 gimple_seq seq_bind_body = gimple_bind_body (as_a <gbind *> (bind_stmt)); in test_gimplification()
|
H A D | gimple.h | 3818 gimple_bind_vars (const gbind *bind_stmt) 3820 return bind_stmt->vars; 3828 gimple_bind_set_vars (gbind *bind_stmt, tree vars) 3830 bind_stmt->vars = vars; 3838 gimple_bind_append_vars (gbind *bind_stmt, tree vars) 3840 bind_stmt->vars = chainon (bind_stmt->vars, vars); 3845 gimple_bind_body_ptr (gbind *bind_stmt) 3847 return &bind_stmt->body; 3863 gimple_bind_set_body (gbind *bind_stmt, gimple_seq seq) 3865 bind_stmt->body = seq; [all …]
|
H A D | gimple.c | 1410 if (gbind *bind_stmt = dyn_cast <gbind *> (stmt)) in empty_stmt_p() local 1411 return empty_body_p (gimple_bind_body (bind_stmt)); in empty_stmt_p() 1851 gbind *bind_stmt = as_a <gbind *> (stmt); in gimple_copy() local 1853 new_seq = gimple_seq_copy (gimple_bind_body (bind_stmt)); in gimple_copy() 1856 unshare_expr (gimple_bind_vars (bind_stmt))); in gimple_copy() 1857 gimple_bind_set_block (bind_copy, gimple_bind_block (bind_stmt)); in gimple_copy()
|
H A D | gimplify.c | 364 gimple_push_bind_expr (gbind *bind_stmt) in gimple_push_bind_expr() argument 367 gimplify_ctxp->bind_expr_stack.safe_push (bind_stmt); in gimple_push_bind_expr() 1340 gbind *bind_stmt; in gimplify_bind_expr() local 1419 bind_stmt = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL, in gimplify_bind_expr() 1421 gimple_push_bind_expr (bind_stmt); in gimplify_bind_expr() 1429 gimple_bind_set_body (bind_stmt, body); in gimplify_bind_expr() 1535 gs = gimple_build_try (gimple_bind_body (bind_stmt), cleanup, in gimplify_bind_expr() 1541 gimple_bind_set_body (bind_stmt, new_body); in gimplify_bind_expr() 1551 gimplify_seq_add_stmt (pre_p, bind_stmt); in gimplify_bind_expr()
|
H A D | tree-nested.c | 1681 gbind *bind_stmt = as_a <gbind *> (stmt); in convert_nonlocal_reference_stmt() local 1683 for (tree var = gimple_bind_vars (bind_stmt); var; var = DECL_CHAIN (var)) in convert_nonlocal_reference_stmt()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | function-tests.cc | 474 gimple *bind_stmt = gimple_seq_first_stmt (seq_fn_body); in test_gimplification() local 475 ASSERT_EQ (GIMPLE_BIND, gimple_code (bind_stmt)); in test_gimplification() 476 ASSERT_EQ (NULL, bind_stmt->next); in test_gimplification() 478 gimple_seq seq_bind_body = gimple_bind_body (as_a <gbind *> (bind_stmt)); in test_gimplification()
|
H A D | gimple.h | 3909 gimple_bind_vars (const gbind *bind_stmt) 3911 return bind_stmt->vars; 3919 gimple_bind_set_vars (gbind *bind_stmt, tree vars) 3921 bind_stmt->vars = vars; 3929 gimple_bind_append_vars (gbind *bind_stmt, tree vars) 3931 bind_stmt->vars = chainon (bind_stmt->vars, vars); 3936 gimple_bind_body_ptr (gbind *bind_stmt) 3938 return &bind_stmt->body; 3954 gimple_bind_set_body (gbind *bind_stmt, gimple_seq seq) 3956 bind_stmt->body = seq; [all …]
|
H A D | gimple.cc | 1432 if (gbind *bind_stmt = dyn_cast <gbind *> (stmt)) in empty_stmt_p() local 1433 return empty_body_p (gimple_bind_body (bind_stmt)); in empty_stmt_p() 1930 gbind *bind_stmt = as_a <gbind *> (stmt); in gimple_copy() local 1932 new_seq = gimple_seq_copy (gimple_bind_body (bind_stmt)); in gimple_copy() 1935 unshare_expr (gimple_bind_vars (bind_stmt))); in gimple_copy() 1936 gimple_bind_set_block (bind_copy, gimple_bind_block (bind_stmt)); in gimple_copy()
|
H A D | gimplify.cc | 371 gimple_push_bind_expr (gbind *bind_stmt) in gimple_push_bind_expr() argument 374 gimplify_ctxp->bind_expr_stack.safe_push (bind_stmt); in gimple_push_bind_expr() 1350 gbind *bind_stmt; in gimplify_bind_expr() local 1419 bind_stmt = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL, in gimplify_bind_expr() 1421 gimple_push_bind_expr (bind_stmt); in gimplify_bind_expr() 1429 gimple_bind_set_body (bind_stmt, body); in gimplify_bind_expr() 1542 gs = gimple_build_try (gimple_bind_body (bind_stmt), cleanup, in gimplify_bind_expr() 1548 gimple_bind_set_body (bind_stmt, new_body); in gimplify_bind_expr() 1558 gimplify_seq_add_stmt (pre_p, bind_stmt); in gimplify_bind_expr()
|
H A D | tree-nested.cc | 1825 gbind *bind_stmt = as_a <gbind *> (stmt); in convert_nonlocal_reference_stmt() local 1827 for (tree var = gimple_bind_vars (bind_stmt); var; var = DECL_CHAIN (var)) in convert_nonlocal_reference_stmt()
|
H A D | ChangeLog.gimple-classes | 1571 "bind_stmt".
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c/ |
H A D | gimple-parser.c | 271 gbind *bind_stmt = gimple_build_bind (BIND_EXPR_VARS (stmt), NULL, in c_parser_parse_gimple_body() local 273 gimple_bind_set_body (bind_stmt, seq); in c_parser_parse_gimple_body() 274 gimple_seq_add_stmt_without_update (&body, bind_stmt); in c_parser_parse_gimple_body()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/c/ |
H A D | gimple-parser.cc | 271 gbind *bind_stmt = gimple_build_bind (BIND_EXPR_VARS (stmt), NULL, in c_parser_parse_gimple_body() local 273 gimple_bind_set_body (bind_stmt, seq); in c_parser_parse_gimple_body() 274 gimple_seq_add_stmt_without_update (&body, bind_stmt); in c_parser_parse_gimple_body()
|