Searched refs:bind_stmt (Results 1 - 5 of 5) sorted by relevance

/haiku-buildtools/gcc/gcc/
H A Dgimple.h3304 gimple_bind_vars (const gbind *bind_stmt)
3306 return bind_stmt->vars;
3314 gimple_bind_set_vars (gbind *bind_stmt, tree vars)
3316 bind_stmt->vars = vars;
3324 gimple_bind_append_vars (gbind *bind_stmt, tree vars)
3326 bind_stmt->vars = chainon (bind_stmt->vars, vars);
3331 gimple_bind_body_ptr (gbind *bind_stmt)
3333 return &bind_stmt->body;
3349 gimple_bind_set_body (gbind *bind_stmt, gimple_se
[all...]
H A Dgimple.c1324 if (gbind *bind_stmt = dyn_cast <gbind *> (stmt))
1325 return empty_body_p (gimple_bind_body (bind_stmt));
1704 gbind *bind_stmt = as_a <gbind *> (stmt); local
1706 new_seq = gimple_seq_copy (gimple_bind_body (bind_stmt));
1709 unshare_expr (gimple_bind_vars (bind_stmt)));
1710 gimple_bind_set_block (bind_copy, gimple_bind_block (bind_stmt));
H A Dtree-nested.c1466 gbind *bind_stmt = as_a <gbind *> (stmt); local
1467 if (!optimize && gimple_bind_block (bind_stmt))
1468 note_nonlocal_block_vlas (info, gimple_bind_block (bind_stmt));
1470 for (tree var = gimple_bind_vars (bind_stmt); var; var = DECL_CHAIN (var))
H A Dgimplify.c304 gimple_push_bind_expr (gbind *bind_stmt) argument
307 gimplify_ctxp->bind_expr_stack.safe_push (bind_stmt);
1085 gbind *bind_stmt;
1130 bind_stmt = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL,
1132 gimple_push_bind_expr (bind_stmt);
1139 gimple_bind_set_body (bind_stmt, body);
1199 gs = gimple_build_try (gimple_bind_body (bind_stmt), cleanup,
1205 gimple_bind_set_body (bind_stmt, new_body);
1211 gimplify_seq_add_stmt (pre_p, bind_stmt);
1083 gbind *bind_stmt; local
H A Domp-low.c9904 if (gbind *bind_stmt = dyn_cast <gbind *> (stmt))
9906 inner = gimple_bind_body (bind_stmt);

Completed in 227 milliseconds