Lines Matching refs:bind_stmt
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;
3872 gimple_bind_add_stmt (gbind *bind_stmt, gimple *stmt)
3874 gimple_seq_add_stmt (&bind_stmt->body, stmt);
3881 gimple_bind_add_seq (gbind *bind_stmt, gimple_seq seq)
3883 gimple_seq_add_seq (&bind_stmt->body, seq);
3891 gimple_bind_block (const gbind *bind_stmt)
3893 return bind_stmt->block;
3901 gimple_bind_set_block (gbind *bind_stmt, tree block)
3905 bind_stmt->block = block;