Commit f9132eb7 by Rodrigo Rivas Costa Committed by Jason Merrill

Implement range-based for-statements.

	* cp-tree.def (RANGE_FOR_STMT): New.
	* cp-tree.h (RANGE_FOR_DECL, RANGE_FOR_EXPR, RANGE_FOR_BODY): New.
	(cp_convert_range_for): Declare.
	* pt.c (tsubst_expr): Add RANGE_FOR_STMT.
	(tsubst_copy_and_build): perform_koenig_lookup takes extra argument.
	* semantics.c (begin_range_for_stmt): New.
	(finish_range_for_decl): New.
	(finish_for_stmt): Accept also RANGE_FOR_STMT.
	(perform_koenig_lookup): Add extra argument include_std.
	* parser.c (cp_parser_c_for): New with code from
	cp_parser_iteration_statement().
	(cp_parser_range_for): New.
	(cp_convert_range_for): New.
	(cp_parser_iteration_statement): Add range-for support.
	(cp_parser_condition): Adjust comment.
	(cp_parser_postfix_expression): perform_koenig_lookup takes extra
	argument.
	* dump.c (cp_dump_tree): Add RANGE_FOR_STMT.
	* cxx-pretty-print.c: Likewise.
	* lex.c (cxx_init): Likewise.
	* name-lookup.c (lookup_function_nonclass): Add extra argument
	include_std.
	(lookup_arg_dependent): Likewise.
	* name-lookup.h: Likewise.

From-SVN: r164211
parent 8e5f2af2
2010-09-11 Rodrigo Rivas <rodrigorivascosta@gmail.com>
Implement range-based for-statements.
* cp-tree.def (RANGE_FOR_STMT): New.
* cp-tree.h (RANGE_FOR_DECL, RANGE_FOR_EXPR, RANGE_FOR_BODY): New.
(cp_convert_range_for): Declare.
* pt.c (tsubst_expr): Add RANGE_FOR_STMT.
(tsubst_copy_and_build): perform_koenig_lookup takes extra argument.
* semantics.c (begin_range_for_stmt): New.
(finish_range_for_decl): New.
(finish_for_stmt): Accept also RANGE_FOR_STMT.
(perform_koenig_lookup): Add extra argument include_std.
* parser.c (cp_parser_c_for): New with code from
cp_parser_iteration_statement().
(cp_parser_range_for): New.
(cp_convert_range_for): New.
(cp_parser_iteration_statement): Add range-for support.
(cp_parser_condition): Adjust comment.
(cp_parser_postfix_expression): perform_koenig_lookup takes extra
argument.
* dump.c (cp_dump_tree): Add RANGE_FOR_STMT.
* cxx-pretty-print.c: Likewise.
* lex.c (cxx_init): Likewise.
* name-lookup.c (lookup_function_nonclass): Add extra argument
include_std.
(lookup_arg_dependent): Likewise.
* name-lookup.h: Likewise.
2010-09-10 Rodrigo Rivas Costa <rodrigorivascosta@gmail.com>
PR c++/43824
......
......@@ -293,6 +293,11 @@ DEFTREECODE (IF_STMT, "if_stmt", tcc_statement, 3)
FOR_INIT_STMT, FOR_COND, FOR_EXPR, and FOR_BODY, respectively. */
DEFTREECODE (FOR_STMT, "for_stmt", tcc_statement, 4)
/* Used to represent a range-based `for' statement. The operands are
RANGE_FOR_DECL, RANGE_FOR_EXPR, RANGE_FOR_BODY, respectively. Only used
in templates. */
DEFTREECODE (RANGE_FOR_STMT, "range_for_stmt", tcc_statement, 3)
/* Used to represent a 'while' statement. The operands are WHILE_COND
and WHILE_BODY, respectively. */
DEFTREECODE (WHILE_STMT, "while_stmt", tcc_statement, 2)
......
......@@ -3801,6 +3801,12 @@ more_aggr_init_expr_args_p (const aggr_init_expr_arg_iterator *iter)
#define FOR_EXPR(NODE) TREE_OPERAND (FOR_STMT_CHECK (NODE), 2)
#define FOR_BODY(NODE) TREE_OPERAND (FOR_STMT_CHECK (NODE), 3)
/* RANGE_FOR_STMT accessors. These give access to the declarator,
expression and body of the statement, respectively. */
#define RANGE_FOR_DECL(NODE) TREE_OPERAND (RANGE_FOR_STMT_CHECK (NODE), 0)
#define RANGE_FOR_EXPR(NODE) TREE_OPERAND (RANGE_FOR_STMT_CHECK (NODE), 1)
#define RANGE_FOR_BODY(NODE) TREE_OPERAND (RANGE_FOR_STMT_CHECK (NODE), 2)
#define SWITCH_STMT_COND(NODE) TREE_OPERAND (SWITCH_STMT_CHECK (NODE), 0)
#define SWITCH_STMT_BODY(NODE) TREE_OPERAND (SWITCH_STMT_CHECK (NODE), 1)
#define SWITCH_STMT_TYPE(NODE) TREE_OPERAND (SWITCH_STMT_CHECK (NODE), 2)
......@@ -4011,6 +4017,7 @@ extern int function_depth;
sizeof can be nested. */
extern int cp_unevaluated_operand;
extern tree cp_convert_range_for (tree, tree, tree);
/* in pt.c */
......@@ -5192,6 +5199,9 @@ extern void finish_for_init_stmt (tree);
extern void finish_for_cond (tree, tree);
extern void finish_for_expr (tree, tree);
extern void finish_for_stmt (tree);
extern tree begin_range_for_stmt (void);
extern void finish_range_for_decl (tree, tree, tree);
extern void finish_range_for_stmt (tree);
extern tree finish_break_stmt (void);
extern tree finish_continue_stmt (void);
extern tree begin_switch_stmt (void);
......@@ -5232,7 +5242,7 @@ extern tree finish_stmt_expr_expr (tree, tree);
extern tree finish_stmt_expr (tree, bool);
extern tree stmt_expr_value_expr (tree);
bool empty_expr_stmt_p (tree);
extern tree perform_koenig_lookup (tree, VEC(tree,gc) *);
extern tree perform_koenig_lookup (tree, VEC(tree,gc) *, bool);
extern tree finish_call_expr (tree, VEC(tree,gc) **, bool,
bool, tsubst_flags_t);
extern tree finish_increment_expr (tree, enum tree_code);
......
......@@ -1921,6 +1921,23 @@ pp_cxx_statement (cxx_pretty_printer *pp, tree t)
pp_needs_newline (pp) = true;
break;
case RANGE_FOR_STMT:
pp_cxx_ws_string (pp, "for");
pp_space (pp);
pp_cxx_left_paren (pp);
pp_cxx_statement (pp, RANGE_FOR_DECL (t));
pp_space (pp);
pp_needs_newline (pp) = false;
pp_colon (pp);
pp_space (pp);
pp_cxx_statement (pp, RANGE_FOR_EXPR (t));
pp_cxx_right_paren (pp);
pp_newline_and_indent (pp, 3);
pp_cxx_statement (pp, FOR_BODY (t));
pp_indentation (pp) -= 3;
pp_needs_newline (pp) = true;
break;
/* jump-statement:
goto identifier;
continue ;
......
......@@ -453,6 +453,13 @@ cp_dump_tree (void* dump_info, tree t)
dump_child ("body", FOR_BODY (t));
break;
case RANGE_FOR_STMT:
dump_stmt (di, t);
dump_child ("decl", RANGE_FOR_DECL (t));
dump_child ("expr", RANGE_FOR_EXPR (t));
dump_child ("body", RANGE_FOR_BODY (t));
break;
case SWITCH_STMT:
dump_stmt (di, t);
dump_child ("cond", SWITCH_STMT_COND (t));
......
......@@ -226,8 +226,9 @@ cxx_init (void)
CTOR_INITIALIZER, TRY_BLOCK, HANDLER,
EH_SPEC_BLOCK, USING_STMT, TAG_DEFN,
IF_STMT, CLEANUP_STMT, FOR_STMT,
WHILE_STMT, DO_STMT, BREAK_STMT,
CONTINUE_STMT, SWITCH_STMT, EXPR_STMT
RANGE_FOR_STMT, WHILE_STMT, DO_STMT,
BREAK_STMT, CONTINUE_STMT, SWITCH_STMT,
EXPR_STMT
};
memset (&statement_code_p, 0, sizeof (statement_code_p));
......
......@@ -4389,7 +4389,7 @@ lookup_function_nonclass (tree name, VEC(tree,gc) *args, bool block_p)
lookup_arg_dependent (name,
lookup_name_real (name, 0, 1, block_p, 0,
LOOKUP_COMPLAIN),
args);
args, false);
}
tree
......@@ -5063,7 +5063,8 @@ arg_assoc (struct arg_lookup *k, tree n)
are the functions found in normal lookup. */
tree
lookup_arg_dependent (tree name, tree fns, VEC(tree,gc) *args)
lookup_arg_dependent (tree name, tree fns, VEC(tree,gc) *args,
bool include_std)
{
struct arg_lookup k;
......@@ -5086,6 +5087,8 @@ lookup_arg_dependent (tree name, tree fns, VEC(tree,gc) *args)
picking up later definitions) in the second stage. */
k.namespaces = make_tree_vector ();
if (include_std)
arg_assoc_namespace (&k, std_node);
arg_assoc_args_vec (&k, args);
fns = k.functions;
......
......@@ -342,7 +342,7 @@ extern void do_toplevel_using_decl (tree, tree, tree);
extern void do_local_using_decl (tree, tree, tree);
extern tree do_class_using_decl (tree, tree);
extern void do_using_directive (tree);
extern tree lookup_arg_dependent (tree, tree, VEC(tree,gc) *);
extern tree lookup_arg_dependent (tree, tree, VEC(tree,gc) *, bool);
extern bool is_associated_namespace (tree, tree);
extern void parse_using_directive (tree, tree);
extern tree innermost_non_namespace_value (tree);
......
......@@ -11743,7 +11743,7 @@ tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
case FOR_STMT:
stmt = begin_for_stmt ();
RECUR (FOR_INIT_STMT (t));
RECUR (FOR_INIT_STMT (t));
finish_for_init_stmt (stmt);
tmp = RECUR (FOR_COND (t));
finish_for_cond (tmp, stmt);
......@@ -11753,6 +11753,20 @@ tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
finish_for_stmt (stmt);
break;
case RANGE_FOR_STMT:
{
tree decl, expr;
stmt = begin_for_stmt ();
decl = RANGE_FOR_DECL (t);
decl = tsubst (decl, args, complain, in_decl);
maybe_push_decl (decl);
expr = RECUR (RANGE_FOR_EXPR (t));
stmt = cp_convert_range_for (stmt, decl, expr);
RECUR (RANGE_FOR_BODY (t));
finish_for_stmt (stmt);
}
break;
case WHILE_STMT:
stmt = begin_while_stmt ();
tmp = RECUR (WHILE_COND (t));
......@@ -12537,7 +12551,7 @@ tsubst_copy_and_build (tree t,
into a non-dependent call. */
&& type_dependent_expression_p_push (t)
&& !any_type_dependent_arguments_p (call_args))
function = perform_koenig_lookup (function, call_args);
function = perform_koenig_lookup (function, call_args, false);
if (TREE_CODE (function) == IDENTIFIER_NODE)
{
......
......@@ -876,15 +876,27 @@ finish_for_expr (tree expr, tree for_stmt)
/* Finish the body of a for-statement, which may be given by
FOR_STMT. The increment-EXPR for the loop must be
provided. */
provided.
It can also finish RANGE_FOR_STMT. */
void
finish_for_stmt (tree for_stmt)
{
FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
bool scoped;
if (TREE_CODE (for_stmt) == RANGE_FOR_STMT)
{
RANGE_FOR_BODY (for_stmt) = do_poplevel (RANGE_FOR_BODY (for_stmt));
scoped = true;
}
else
{
FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
scoped = flag_new_for_scope > 0;
}
/* Pop the scope for the body of the loop. */
if (flag_new_for_scope > 0)
if (scoped)
{
tree scope = TREE_CHAIN (for_stmt);
TREE_CHAIN (for_stmt) = NULL;
......@@ -894,6 +906,34 @@ finish_for_stmt (tree for_stmt)
finish_stmt ();
}
/* Begin a range-for-statement. Returns a new RANGE_FOR_STMT.
To finish it call finish_for_stmt(). */
tree
begin_range_for_stmt (void)
{
tree r;
r = build_stmt (input_location, RANGE_FOR_STMT,
NULL_TREE, NULL_TREE, NULL_TREE);
/* We can ignore flag_new_for_scope here. */
TREE_CHAIN (r) = do_pushlevel (sk_for);
return r;
}
/* Finish the head of a range-based for statement, which may
be given by RANGE_FOR_STMT. DECL must be the declaration
and EXPR must be the loop expression. */
void
finish_range_for_decl (tree range_for_stmt, tree decl, tree expr)
{
RANGE_FOR_DECL (range_for_stmt) = decl;
RANGE_FOR_EXPR (range_for_stmt) = expr;
add_stmt (range_for_stmt);
RANGE_FOR_BODY (range_for_stmt) = do_pushlevel (sk_block);
}
/* Finish a break-statement. */
tree
......@@ -1839,11 +1879,12 @@ empty_expr_stmt_p (tree expr_stmt)
/* Perform Koenig lookup. FN is the postfix-expression representing
the function (or functions) to call; ARGS are the arguments to the
call. Returns the functions to be considered by overload
resolution. */
call; if INCLUDE_STD then the `std' namespace is automatically
considered an associated namespace (used in range-based for loops).
Returns the functions to be considered by overload resolution. */
tree
perform_koenig_lookup (tree fn, VEC(tree,gc) *args)
perform_koenig_lookup (tree fn, VEC(tree,gc) *args, bool include_std)
{
tree identifier = NULL_TREE;
tree functions = NULL_TREE;
......@@ -1879,7 +1920,7 @@ perform_koenig_lookup (tree fn, VEC(tree,gc) *args)
if (!any_type_dependent_arguments_p (args)
&& !any_dependent_template_arguments_p (tmpl_args))
{
fn = lookup_arg_dependent (identifier, functions, args);
fn = lookup_arg_dependent (identifier, functions, args, include_std);
if (!fn)
/* The unqualified name could not be resolved. */
fn = unqualified_fn_lookup_error (identifier);
......
2010-09-11 Rodrigo Rivas <rodrigorivascosta@gmail.com>
* g++.dg/cpp0x/range-for1.C: New.
* g++.dg/cpp0x/range-for2.C: New.
* g++.dg/cpp0x/range-for3.C: New.
* g++.dg/cpp0x/range-for4.C: New.
* g++.dg/cpp0x/range-for5.C: New.
* g++.dg/cpp0x/range-for6.C: New.
2010-09-11 Mikael Morin <mikael@gcc.gnu.org>
* gfortran.dg/inline_transpose_1.f90: Update temporary's locations
......
// Test for range-based for loop
// Test the loop with an array
// { dg-do run }
// { dg-options "-std=c++0x" }
extern "C" void abort();
int main()
{
int a[] = {1,2,3,4};
int sum = 0;
for (int x : a)
sum += x;
if (sum != 10)
abort();
}
// Test for range-based for loop
// Test the loop with a custom iterator
// with begin/end in an associated namespace
// { dg-do compile }
// { dg-options "-std=c++0x" }
struct iterator
{
int x;
iterator(int v) :x(v) {}
iterator &operator ++() { ++x; return *this; }
int operator *() { return x; }
bool operator != (const iterator &o) { return x != o.x; }
};
namespace foo
{
struct container
{
int min, max;
container(int a, int b) :min(a), max(b) {}
};
iterator begin(container &c)
{
return iterator(c.min);
}
iterator end(container &c)
{
return iterator(c.max + 1);
}
}
int main()
{
foo::container c(1,4);
for (iterator it : c)
;
}
// Test for range-based for loop
// Test the loop with a custom iterator
// with begin/end in std
// { dg-do compile }
// { dg-options "-std=c++0x" }
struct iterator
{
int x;
iterator(int v) :x(v) {}
iterator &operator ++() { ++x; return *this; }
int operator *() { return x; }
bool operator != (const iterator &o) { return x != o.x; }
};
struct container
{
int min, max;
container(int a, int b) :min(a), max(b) {}
};
namespace std
{
iterator begin(container &c)
{
return iterator(c.min);
}
iterator end(container &c)
{
return iterator(c.max + 1);
}
}
int main()
{
container c(1,4);
for (iterator it : c)
{
}
}
// Test for range-based for loop with templates
// { dg-do run }
// { dg-options "-std=c++0x" }
#include <cstdio>
/* Preliminary declarations */
namespace pre
{
struct iterator
{
int x;
iterator (int v) :x(v) {}
iterator &operator ++() { ++x; return *this; }
int operator *() { return x; }
bool operator != (const iterator &o) { return x != o.x; }
};
struct container
{
int min, max;
container(int a, int b) :min(a), max(b) {}
};
iterator begin(const container &c)
{
return iterator(c.min);
}
iterator end(const container &c)
{
return iterator(c.max);
}
} //namespace pre
using pre::container;
extern "C" void abort(void);
container run_me_just_once()
{
static bool run = false;
if (run)
abort();
run = true;
return container(1,2);
}
/* Template with dependent expression. */
/* Template with dependent expression. */
template<typename T> int test1(const T &r)
{
int t = 0;
for (int i : r)
t += i;
return t;
}
/* Template with non-dependent expression and dependent declaration. */
template<typename T> int test2(const container &r)
{
int t = 0;
for (T i : r)
t += i;
return t;
}
/* Template with non-dependent expression (array) and dependent declaration. */
template<typename T> int test2(const int (&r)[4])
{
int t = 0;
for (T i : r)
t += i;
return t;
}
/* Template with non-dependent expression and auto declaration. */
template<typename T> int test3(const container &r)
{
int t = 0;
for (auto i : r)
t += i;
return t;
}
/* Template with non-dependent expression (array) and auto declaration. */
template<typename T> int test3(const int (&r)[4])
{
int t = 0;
for (auto i : r)
t += i;
return t;
}
int main ()
{
container c(1,5);
int a[4] = {5,6,7,8};
for (auto x : run_me_just_once())
;
if (test1 (c) != 10)
abort();
if (test1 (a) != 26)
abort();
if (test2<int> (c) != 10)
abort();
if (test2<int> (a) != 26)
abort();
if (test3<int> (c) != 10)
abort();
if (test3<int> (a) != 26)
abort();
return 0;
}
// Test for errors in range-based for loops
// { dg-do compile }
// { dg-options "-std=c++0x" }
struct container
{
};
int *begin(const container &c)
{
return 0;
}
int end(const container &c) //Ops! wrong type
{
return 0;
}
struct Implicit
{
Implicit(int x)
{}
};
struct Explicit
{
explicit Explicit(int x)
{}
};
void test1()
{
container c;
for (int x : c) // { dg-error "inconsistent|conversion" }
;
int a[2] = {1,2};
for (Implicit x : a)
;
for (Explicit x : a) // { dg-error "conversion" }
;
for (const Implicit &x : a)
;
for (Implicit &&x : a)
;
//Check the correct scopes
int i;
for (int i : a)
{
int i;
}
}
// Test for range-based for loop
// Test the loop with an initializer_list
// { dg-do run }
// { dg-options "-std=c++0x" }
#include <initializer_list>
extern "C" void abort();
template<typename T> T foo()
{
T sum = 0;
for (T x : {T(1),T(2),T(3),T(4)})
sum += x;
if (sum != T(10))
abort();
}
int main()
{
int sum = 0;
for (int x : {1,2,3,4})
sum += x;
if (sum != 10)
abort();
foo<int>();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment