mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 08:40:27 +08:00
builtins.c (expand_builtin_setjmp_receiver): Fix comment for code removal.
2004-07-21 Eric Christopher <echristo@redhat.com> * builtins.c (expand_builtin_setjmp_receiver): Fix comment for code removal. * c-decl.c (pop_scope): Ditto. * calls.c (expand_call): Remove call to current_nesting_level, update comment accordingly. Remove calls to expand_start_target_temps and expand_end_target_temps. * cfgexpand.c (construct_init_block): Remove call to expand_start_bindings_and_block. (construct_exit_block): Remove call to expand_end_bindings. * expr.c (safe_from_p): Remove BIND_EXPR handling. (expand_expr_real_1): Ditto. Fix formatting. (expand_vars): Delete. * stmt.c (POPSTACK): Remove block_stack. (stmt_status): Remove x_block_stack. (block_stack): Delete. (expand_start_bindings_and_block): Ditto. (expand_start_target_temps): Ditto. (expand_end_target_temps): Ditto. (current_nesting_level): Ditto. (warn_about_unused_variables): Ditto. (expand_end_bindings): Ditto. * tree.h: Remove declarations for above. 2004-07-21 Eric Christopher <echristo@redhat.com> * decl.c (poplevel): Inline unused variable checking. Change formatting. From-SVN: r85019
This commit is contained in:
parent
d942072cb0
commit
caf93cb0d5
@ -1,3 +1,28 @@
|
||||
2004-07-21 Eric Christopher <echristo@redhat.com>
|
||||
|
||||
* builtins.c (expand_builtin_setjmp_receiver): Fix comment for code
|
||||
removal.
|
||||
* c-decl.c (pop_scope): Ditto.
|
||||
* calls.c (expand_call): Remove call to current_nesting_level,
|
||||
update comment accordingly. Remove calls to expand_start_target_temps
|
||||
and expand_end_target_temps.
|
||||
* cfgexpand.c (construct_init_block): Remove call to
|
||||
expand_start_bindings_and_block.
|
||||
(construct_exit_block): Remove call to expand_end_bindings.
|
||||
* expr.c (safe_from_p): Remove BIND_EXPR handling.
|
||||
(expand_expr_real_1): Ditto. Fix formatting.
|
||||
(expand_vars): Delete.
|
||||
* stmt.c (POPSTACK): Remove block_stack.
|
||||
(stmt_status): Remove x_block_stack.
|
||||
(block_stack): Delete.
|
||||
(expand_start_bindings_and_block): Ditto.
|
||||
(expand_start_target_temps): Ditto.
|
||||
(expand_end_target_temps): Ditto.
|
||||
(current_nesting_level): Ditto.
|
||||
(warn_about_unused_variables): Ditto.
|
||||
(expand_end_bindings): Ditto.
|
||||
* tree.h: Remove declarations for above.
|
||||
|
||||
2004-07-21 Steven Bosscher <stevenb@suse.de>
|
||||
|
||||
* rtl.h (insn_note): Remove NOTE_INSN_PREDICTION.
|
||||
@ -125,7 +150,6 @@
|
||||
for EXTRA_SECTION_FUNCTIONS.
|
||||
* doc/install.texi: Update binutils requirements.
|
||||
|
||||
>>>>>>> 2.4622
|
||||
2004-07-20 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* vec.h (VEC_T_length, VEC_T_index, VEC_T_iterate, VEC_T_truncate,
|
||||
|
@ -571,8 +571,7 @@ expand_builtin_setjmp_receiver (rtx receiver_label ATTRIBUTE_UNUSED)
|
||||
emit_insn (gen_rtx_CLOBBER (VOIDmode, static_chain_rtx));
|
||||
|
||||
/* Now put in the code to restore the frame pointer, and argument
|
||||
pointer, if needed. The code below is from expand_end_bindings
|
||||
in stmt.c; see detailed documentation there. */
|
||||
pointer, if needed. */
|
||||
#ifdef HAVE_nonlocal_goto
|
||||
if (! HAVE_nonlocal_goto)
|
||||
#endif
|
||||
@ -814,7 +813,7 @@ expand_builtin_nonlocal_goto (tree arglist)
|
||||
emit_insn (gen_rtx_CLOBBER (VOIDmode,
|
||||
gen_rtx_MEM (BLKmode,
|
||||
hard_frame_pointer_rtx)));
|
||||
|
||||
|
||||
/* Restore frame pointer for containing function.
|
||||
This sets the actual hard register used for the frame pointer
|
||||
to the location of the function's incoming static chain info.
|
||||
@ -822,14 +821,14 @@ expand_builtin_nonlocal_goto (tree arglist)
|
||||
proper value and reload the argument pointer, if needed. */
|
||||
emit_move_insn (hard_frame_pointer_rtx, r_fp);
|
||||
emit_stack_restore (SAVE_NONLOCAL, r_sp, NULL_RTX);
|
||||
|
||||
|
||||
/* USE of hard_frame_pointer_rtx added for consistency;
|
||||
not clear if really needed. */
|
||||
emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
|
||||
emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
|
||||
emit_indirect_jump (r_label);
|
||||
}
|
||||
|
||||
|
||||
/* Search backwards to the jump insn and mark it as a
|
||||
non-local goto. */
|
||||
for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
|
||||
@ -2038,7 +2037,7 @@ expand_builtin_mathfn_3 (tree exp, rtx target, rtx subtarget)
|
||||
case BUILT_IN_SIN:
|
||||
case BUILT_IN_SINF:
|
||||
case BUILT_IN_SINL:
|
||||
if (!expand_twoval_unop (builtin_optab, op0, 0, target, 0))
|
||||
if (!expand_twoval_unop (builtin_optab, op0, 0, target, 0))
|
||||
abort();
|
||||
break;
|
||||
case BUILT_IN_COS:
|
||||
@ -7576,13 +7575,13 @@ fold_builtin_isascii (tree arglist)
|
||||
{
|
||||
/* Transform isascii(c) -> ((c & ~0x7f) == 0). */
|
||||
tree arg = TREE_VALUE (arglist);
|
||||
|
||||
|
||||
arg = fold (build2 (EQ_EXPR, integer_type_node,
|
||||
build2 (BIT_AND_EXPR, integer_type_node, arg,
|
||||
build_int_2 (~ (unsigned HOST_WIDE_INT) 0x7f,
|
||||
~ (HOST_WIDE_INT) 0)),
|
||||
integer_zero_node));
|
||||
|
||||
|
||||
if (in_gimple_form && !TREE_CONSTANT (arg))
|
||||
return NULL_TREE;
|
||||
else
|
||||
@ -7601,7 +7600,7 @@ fold_builtin_toascii (tree arglist)
|
||||
{
|
||||
/* Transform toascii(c) -> (c & 0x7f). */
|
||||
tree arg = TREE_VALUE (arglist);
|
||||
|
||||
|
||||
return fold (build2 (BIT_AND_EXPR, integer_type_node, arg,
|
||||
build_int_2 (0x7f, 0)));
|
||||
}
|
||||
@ -7950,7 +7949,7 @@ fold_builtin_1 (tree exp, bool ignore)
|
||||
if (flag_unsafe_math_optimizations && BUILTIN_ROOT_P (fcode))
|
||||
{
|
||||
tree powfn = mathfn_built_in (type, BUILT_IN_POW);
|
||||
|
||||
|
||||
if (powfn)
|
||||
{
|
||||
tree arg0 = TREE_VALUE (TREE_OPERAND (arg, 1));
|
||||
@ -7958,7 +7957,7 @@ fold_builtin_1 (tree exp, bool ignore)
|
||||
/* The inner root was either sqrt or cbrt. */
|
||||
REAL_VALUE_TYPE dconstroot =
|
||||
BUILTIN_SQRT_P (fcode) ? dconsthalf : dconstthird;
|
||||
|
||||
|
||||
/* Adjust for the outer root. */
|
||||
SET_REAL_EXP (&dconstroot, REAL_EXP (&dconstroot) - 1);
|
||||
dconstroot = real_value_truncate (TYPE_MODE (type), dconstroot);
|
||||
@ -8032,7 +8031,7 @@ fold_builtin_1 (tree exp, bool ignore)
|
||||
build_tree_list (NULL_TREE, tree_root));
|
||||
return build_function_call_expr (powfn, arglist);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -8431,7 +8430,7 @@ fold_builtin_1 (tree exp, bool ignore)
|
||||
}
|
||||
|
||||
/* A wrapper function for builtin folding that prevents warnings for
|
||||
"statement without effect" and the like, caused by removing the
|
||||
"statement without effect" and the like, caused by removing the
|
||||
call node earlier than the warning is generated. */
|
||||
|
||||
tree
|
||||
@ -8540,7 +8539,7 @@ readonly_data_expr (tree exp)
|
||||
/* Make sure we call decl_readonly_section only for trees it
|
||||
can handle (since it returns true for everything it doesn't
|
||||
understand). */
|
||||
if (TREE_CODE (exp) == STRING_CST
|
||||
if (TREE_CODE (exp) == STRING_CST
|
||||
|| TREE_CODE (exp) == CONSTRUCTOR
|
||||
|| (TREE_CODE (exp) == VAR_DECL && TREE_STATIC (exp)))
|
||||
return decl_readonly_section (exp, 0);
|
||||
|
@ -746,9 +746,7 @@ pop_scope (void)
|
||||
goto common_symbol;
|
||||
|
||||
case VAR_DECL:
|
||||
/* Warnings for unused variables. Keep this in sync with
|
||||
stmt.c:warn_about_unused_variables, which we cannot use
|
||||
since it expects a different data structure. */
|
||||
/* Warnings for unused variables. */
|
||||
if (warn_unused_variable
|
||||
&& !TREE_USED (p)
|
||||
&& !DECL_IN_SYSTEM_HEADER (p)
|
||||
@ -1951,7 +1949,7 @@ pushdecl (tree x)
|
||||
bind (name, x, file_scope, /*invisible=*/true, /*nested=*/false);
|
||||
nested = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
warn_if_shadowing (x);
|
||||
|
||||
@ -4516,7 +4514,7 @@ grokdeclarator (tree declarator, tree declspecs,
|
||||
DECL_EXTERNAL (decl) = 0;
|
||||
else
|
||||
DECL_EXTERNAL (decl) = 1;
|
||||
|
||||
|
||||
/* Record absence of global scope for `static' or `auto'. */
|
||||
TREE_PUBLIC (decl)
|
||||
= !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
|
||||
|
23
gcc/calls.c
23
gcc/calls.c
@ -2232,15 +2232,11 @@ expand_call (tree exp, rtx target, int ignore)
|
||||
finished with regular parsing. Which means that some of the
|
||||
machinery we use to generate tail-calls is no longer in place.
|
||||
This is most often true of sjlj-exceptions, which we couldn't
|
||||
tail-call to anyway.
|
||||
tail-call to anyway. */
|
||||
|
||||
If current_nesting_level () == 0, we're being called after
|
||||
the function body has been expanded. This can happen when
|
||||
setting up trampolines in expand_function_end. */
|
||||
if (currently_expanding_call++ != 0
|
||||
|| !flag_optimize_sibling_calls
|
||||
|| !rtx_equal_function_value_matters
|
||||
|| current_nesting_level () == 0
|
||||
|| args_size.var
|
||||
|| lookup_stmt_eh_region (exp) >= 0)
|
||||
try_tail_call = 0;
|
||||
@ -2372,15 +2368,6 @@ expand_call (tree exp, rtx target, int ignore)
|
||||
sibcall_failure instead of continuing the loop. */
|
||||
start_sequence ();
|
||||
|
||||
if (pass == 0)
|
||||
{
|
||||
/* We know at this point that there are not currently any
|
||||
pending cleanups. If, however, in the process of evaluating
|
||||
the arguments we were to create some, we'll need to be
|
||||
able to get rid of them. */
|
||||
expand_start_target_temps ();
|
||||
}
|
||||
|
||||
/* Don't let pending stack adjusts add up to too much.
|
||||
Also, do all pending adjustments now if there is any chance
|
||||
this might be a call to alloca or if we are expanding a sibling
|
||||
@ -3093,14 +3080,6 @@ expand_call (tree exp, rtx target, int ignore)
|
||||
if (args[i].aligned_regs)
|
||||
free (args[i].aligned_regs);
|
||||
|
||||
if (pass == 0)
|
||||
{
|
||||
/* Undo the fake expand_start_target_temps we did earlier. If
|
||||
there had been any cleanups created, we've already set
|
||||
sibcall_failure. */
|
||||
expand_end_target_temps ();
|
||||
}
|
||||
|
||||
/* If this function is returning into a memory location marked as
|
||||
readonly, it means it is initializing that location. We normally treat
|
||||
functions as not clobbering such locations, so we need to specify that
|
||||
|
@ -210,7 +210,7 @@ expand_gimple_basic_block (basic_block bb, FILE * dump_file)
|
||||
|
||||
expand_expr_stmt (stmt);
|
||||
|
||||
/* Java emits line number notes in the top of labels.
|
||||
/* Java emits line number notes in the top of labels.
|
||||
??? Make this go away once line number notes are obsoleted. */
|
||||
BB_HEAD (bb) = NEXT_INSN (last);
|
||||
if (NOTE_P (BB_HEAD (bb)))
|
||||
@ -275,7 +275,7 @@ expand_gimple_basic_block (basic_block bb, FILE * dump_file)
|
||||
if (JUMP_TABLE_DATA_P (last))
|
||||
last = PREV_INSN (PREV_INSN (last));
|
||||
BB_END (bb) = last;
|
||||
|
||||
|
||||
if (dump_file)
|
||||
dump_bb (bb, dump_file, 0);
|
||||
update_bb_for_insn (bb);
|
||||
@ -292,8 +292,6 @@ construct_init_block (void)
|
||||
basic_block init_block, first_block;
|
||||
edge e;
|
||||
|
||||
expand_start_bindings_and_block (0, NULL_TREE);
|
||||
|
||||
for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
|
||||
if (e->dest == ENTRY_BLOCK_PTR->next_bb)
|
||||
break;
|
||||
@ -329,7 +327,7 @@ construct_exit_block (void)
|
||||
basic_block exit_block;
|
||||
edge e, e2, next;
|
||||
|
||||
/* Make sure the locus is set to the end of the function, so that
|
||||
/* Make sure the locus is set to the end of the function, so that
|
||||
epilogue line numbers and warnings are set properly. */
|
||||
#ifdef USE_MAPPED_LOCATION
|
||||
if (cfun->function_end_locus != UNKNOWN_LOCATION)
|
||||
@ -341,8 +339,6 @@ construct_exit_block (void)
|
||||
/* The following insns belong to the top scope. */
|
||||
record_block_change (DECL_INITIAL (current_function_decl));
|
||||
|
||||
expand_end_bindings (NULL_TREE, 1, 0);
|
||||
|
||||
/* Generate rtl for function exit. */
|
||||
expand_function_end ();
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-07-21 Eric Christopher <echristo@redhat.com>
|
||||
|
||||
* decl.c (poplevel): Inline unused variable checking.
|
||||
Change formatting.
|
||||
|
||||
2004-07-21 Paolo Bonzini <bonzini@gnu.org>
|
||||
|
||||
* typeck.c (build_binary_op): Do not use RDIV_EXPR for
|
||||
@ -114,7 +119,7 @@
|
||||
2004-07-19 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
Revert patch for PR c++/16623.
|
||||
|
||||
|
||||
2004-07-19 Kelley Cook <kcook@gcc.gnu.org>
|
||||
|
||||
* except.c: Remove two spurious carriage returns.
|
||||
@ -315,8 +320,8 @@
|
||||
(copy_binfo): Declare.
|
||||
|
||||
2004-07-15 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* name-lookup.c (set_inherited_value_binding_p): Add class_type
|
||||
|
||||
* name-lookup.c (set_inherited_value_binding_p): Add class_type
|
||||
parameter.
|
||||
(get_class_binding): Adjust.
|
||||
(push_class_level_binding): Don't use set_inherited_value_binding_p.
|
||||
@ -378,7 +383,7 @@
|
||||
(dfs_push_type_decls): Remove.
|
||||
(dfs_push_decls): Remove.
|
||||
(push_class_decls): Remove.
|
||||
|
||||
|
||||
2004-07-13 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
PR c++/16518
|
||||
|
413
gcc/cp/decl.c
413
gcc/cp/decl.c
File diff suppressed because it is too large
Load Diff
80
gcc/expr.c
80
gcc/expr.c
@ -3948,7 +3948,7 @@ store_expr (tree exp, rtx target, int want_value)
|
||||
else
|
||||
{
|
||||
temp = expand_expr_real (exp, target, GET_MODE (target),
|
||||
(want_value & 2
|
||||
(want_value & 2
|
||||
? EXPAND_STACK_PARM : EXPAND_NORMAL),
|
||||
&alt_rtl);
|
||||
/* Return TARGET if it's a specified hardware register.
|
||||
@ -4142,7 +4142,7 @@ categorize_ctor_elements_1 (tree ctor, HOST_WIDE_INT *p_nz_elts,
|
||||
|
||||
nz_elts = 0;
|
||||
nc_elts = 0;
|
||||
|
||||
|
||||
for (list = CONSTRUCTOR_ELTS (ctor); list; list = TREE_CHAIN (list))
|
||||
{
|
||||
tree value = TREE_VALUE (list);
|
||||
@ -4297,7 +4297,7 @@ int
|
||||
mostly_zeros_p (tree exp)
|
||||
{
|
||||
if (TREE_CODE (exp) == CONSTRUCTOR)
|
||||
|
||||
|
||||
{
|
||||
HOST_WIDE_INT nz_elts, nc_elts, elts;
|
||||
|
||||
@ -4831,12 +4831,12 @@ store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size)
|
||||
if (REG_P (target) && VECTOR_MODE_P (GET_MODE (target)))
|
||||
{
|
||||
enum machine_mode mode = GET_MODE (target);
|
||||
|
||||
|
||||
icode = (int) vec_init_optab->handlers[mode].insn_code;
|
||||
if (icode != CODE_FOR_nothing)
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
|
||||
vector = alloca (n_elts);
|
||||
for (i = 0; i < n_elts; i++)
|
||||
vector [i] = CONST0_RTX (GET_MODE_INNER (mode));
|
||||
@ -5479,7 +5479,7 @@ array_ref_element_size (tree exp)
|
||||
return size_binop (MULT_EXPR, aligned_size,
|
||||
size_int (TYPE_ALIGN (elmt_type) / BITS_PER_UNIT));
|
||||
|
||||
/* Otherwise, take the size from that of the element type. Substitute
|
||||
/* Otherwise, take the size from that of the element type. Substitute
|
||||
any PLACEHOLDER_EXPR that we have. */
|
||||
else
|
||||
return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
|
||||
@ -5539,7 +5539,7 @@ component_ref_field_offset (tree exp)
|
||||
return size_binop (MULT_EXPR, aligned_offset,
|
||||
size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT));
|
||||
|
||||
/* Otherwise, take the offset from that of the field. Substitute
|
||||
/* Otherwise, take the offset from that of the field. Substitute
|
||||
any PLACEHOLDER_EXPR that we have. */
|
||||
else
|
||||
return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
|
||||
@ -5861,11 +5861,6 @@ safe_from_p (rtx x, tree exp, int top_p)
|
||||
case SAVE_EXPR:
|
||||
return safe_from_p (x, TREE_OPERAND (exp, 0), 0);
|
||||
|
||||
case BIND_EXPR:
|
||||
/* The only operand we look at is operand 1. The rest aren't
|
||||
part of the expression. */
|
||||
return safe_from_p (x, TREE_OPERAND (exp, 1), 0);
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
@ -6037,7 +6032,7 @@ expand_var (tree var)
|
||||
{
|
||||
/* Prepare a mem & address for the decl. */
|
||||
rtx x;
|
||||
|
||||
|
||||
if (TREE_STATIC (var))
|
||||
abort ();
|
||||
|
||||
@ -6063,23 +6058,6 @@ expand_var (tree var)
|
||||
}
|
||||
}
|
||||
|
||||
/* Expands declarations of variables in list VARS. */
|
||||
|
||||
static void
|
||||
expand_vars (tree vars)
|
||||
{
|
||||
for (; vars; vars = TREE_CHAIN (vars))
|
||||
{
|
||||
tree var = vars;
|
||||
|
||||
if (DECL_EXTERNAL (var))
|
||||
continue;
|
||||
|
||||
expand_var (var);
|
||||
expand_decl_init (var);
|
||||
}
|
||||
}
|
||||
|
||||
/* Subroutine of expand_expr. Expand the two operands of a binary
|
||||
expression EXP0 and EXP1 placing the results in OP0 and OP1.
|
||||
The value may be stored in TARGET if TARGET is nonzero. The
|
||||
@ -6148,7 +6126,7 @@ expand_operands (tree exp0, tree exp1, rtx target, rtx *op0, rtx *op1,
|
||||
marked TARGET so that it's safe from being trashed by libcalls. We
|
||||
don't want to use TARGET for anything but the final result;
|
||||
Intermediate values must go elsewhere. Additionally, calls to
|
||||
emit_block_move will be flagged with BLOCK_OP_CALL_PARM.
|
||||
emit_block_move will be flagged with BLOCK_OP_CALL_PARM.
|
||||
|
||||
If EXP is a VAR_DECL whose DECL_RTL was a MEM with an invalid
|
||||
address, and ALT_RTL is non-NULL, then *ALT_RTL is set to the
|
||||
@ -6183,11 +6161,11 @@ expand_expr_real (tree exp, rtx target, enum machine_mode tmode,
|
||||
}
|
||||
|
||||
/* If this is an expression of some kind and it has an associated line
|
||||
number, then emit the line number before expanding the expression.
|
||||
number, then emit the line number before expanding the expression.
|
||||
|
||||
We need to save and restore the file and line information so that
|
||||
errors discovered during expansion are emitted with the right
|
||||
information. It would be better of the diagnostic routines
|
||||
information. It would be better of the diagnostic routines
|
||||
used the file/line information embedded in the tree nodes rather
|
||||
than globals. */
|
||||
if (cfun && EXPR_HAS_LOCATION (exp))
|
||||
@ -6195,7 +6173,7 @@ expand_expr_real (tree exp, rtx target, enum machine_mode tmode,
|
||||
location_t saved_location = input_location;
|
||||
input_location = EXPR_LOCATION (exp);
|
||||
emit_line_note (input_location);
|
||||
|
||||
|
||||
/* Record where the insns produced belong. */
|
||||
record_block_change (TREE_BLOCK (exp));
|
||||
|
||||
@ -6212,9 +6190,9 @@ expand_expr_real (tree exp, rtx target, enum machine_mode tmode,
|
||||
expand_call() will mark CALL_INSNs before we get to this code,
|
||||
but it doesn't handle libcalls, and these may trap. */
|
||||
if (rn >= 0)
|
||||
{
|
||||
{
|
||||
rtx insn;
|
||||
for (insn = next_real_insn (last); insn;
|
||||
for (insn = next_real_insn (last); insn;
|
||||
insn = next_real_insn (insn))
|
||||
{
|
||||
if (! find_reg_note (insn, REG_EH_REGION, NULL_RTX)
|
||||
@ -6501,7 +6479,7 @@ expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode,
|
||||
if (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (exp))) == MODE_VECTOR_INT
|
||||
|| GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (exp))) == MODE_VECTOR_FLOAT)
|
||||
return const_vector_from_tree (exp);
|
||||
else
|
||||
else
|
||||
return expand_expr (build1 (CONSTRUCTOR, TREE_TYPE (exp),
|
||||
TREE_VECTOR_CST_ELTS (exp)),
|
||||
ignore ? const0_rtx : target, tmode, modifier);
|
||||
@ -6624,31 +6602,6 @@ expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode,
|
||||
expand_goto (LABELED_BLOCK_LABEL (EXIT_BLOCK_LABELED_BLOCK (exp)));
|
||||
return const0_rtx;
|
||||
|
||||
case BIND_EXPR:
|
||||
{
|
||||
tree block = BIND_EXPR_BLOCK (exp);
|
||||
int mark_ends;
|
||||
|
||||
/* If we're in functions-as-trees mode, this BIND_EXPR represents
|
||||
the block, so we need to emit NOTE_INSN_BLOCK_* notes. */
|
||||
mark_ends = (block != NULL_TREE);
|
||||
expand_start_bindings_and_block (mark_ends ? 0 : 2, block);
|
||||
|
||||
/* If VARS have not yet been expanded, expand them now. */
|
||||
expand_vars (BIND_EXPR_VARS (exp));
|
||||
|
||||
/* TARGET was clobbered early in this function. The correct
|
||||
indicator or whether or not we need the value of this
|
||||
expression is the IGNORE variable. */
|
||||
temp = expand_expr (BIND_EXPR_BODY (exp),
|
||||
ignore ? const0_rtx : target,
|
||||
tmode, modifier);
|
||||
|
||||
expand_end_bindings (BIND_EXPR_VARS (exp), mark_ends, 0);
|
||||
|
||||
return temp;
|
||||
}
|
||||
|
||||
case CONSTRUCTOR:
|
||||
/* If we don't need the result, just ensure we evaluate any
|
||||
subexpressions. */
|
||||
@ -8617,6 +8570,7 @@ expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode,
|
||||
case TARGET_EXPR:
|
||||
case CASE_LABEL_EXPR:
|
||||
case VA_ARG_EXPR:
|
||||
case BIND_EXPR:
|
||||
/* Lowered by gimplify.c. */
|
||||
abort ();
|
||||
|
||||
@ -8740,7 +8694,7 @@ is_aligning_offset (tree offset, tree exp)
|
||||
power of 2 and which is larger than BIGGEST_ALIGNMENT. */
|
||||
if (TREE_CODE (offset) != BIT_AND_EXPR
|
||||
|| !host_integerp (TREE_OPERAND (offset, 1), 1)
|
||||
|| compare_tree_int (TREE_OPERAND (offset, 1),
|
||||
|| compare_tree_int (TREE_OPERAND (offset, 1),
|
||||
BIGGEST_ALIGNMENT / BITS_PER_UNIT) <= 0
|
||||
|| !exact_log2 (tree_low_cst (TREE_OPERAND (offset, 1), 1) + 1) < 0)
|
||||
return 0;
|
||||
|
177
gcc/stmt.c
177
gcc/stmt.c
@ -212,8 +212,6 @@ do { struct nesting *target = STACK; \
|
||||
do { this = nesting_stack; \
|
||||
if (cond_stack == this) \
|
||||
cond_stack = cond_stack->next; \
|
||||
if (block_stack == this) \
|
||||
block_stack = block_stack->next; \
|
||||
if (case_stack == this) \
|
||||
case_stack = case_stack->next; \
|
||||
nesting_depth = nesting_stack->depth - 1; \
|
||||
@ -223,9 +221,6 @@ do { struct nesting *target = STACK; \
|
||||
|
||||
struct stmt_status GTY(())
|
||||
{
|
||||
/* Chain of all pending binding contours. */
|
||||
struct nesting * x_block_stack;
|
||||
|
||||
/* If any new stacks are added here, add them to POPSTACKS too. */
|
||||
|
||||
/* Chain of all pending conditional statements. */
|
||||
@ -249,7 +244,6 @@ struct stmt_status GTY(())
|
||||
location_t x_emit_locus;
|
||||
};
|
||||
|
||||
#define block_stack (cfun->stmt->x_block_stack)
|
||||
#define cond_stack (cfun->stmt->x_cond_stack)
|
||||
#define case_stack (cfun->stmt->x_case_stack)
|
||||
#define nesting_stack (cfun->stmt->x_nesting_stack)
|
||||
@ -410,7 +404,7 @@ expand_label (tree label)
|
||||
|
||||
if (FORCED_LABEL (label))
|
||||
forced_labels = gen_rtx_EXPR_LIST (VOIDmode, label_r, forced_labels);
|
||||
|
||||
|
||||
if (DECL_NONLOCAL (label) || FORCED_LABEL (label))
|
||||
maybe_set_first_label_num (label_r);
|
||||
}
|
||||
@ -1436,7 +1430,7 @@ resolve_asm_operand_names (tree string, tree outputs, tree inputs)
|
||||
than 999 operands. */
|
||||
buffer = xstrdup (TREE_STRING_POINTER (string));
|
||||
p = buffer + (c - TREE_STRING_POINTER (string));
|
||||
|
||||
|
||||
while ((p = strchr (p, '%')) != NULL)
|
||||
{
|
||||
if (p[1] == '[')
|
||||
@ -1561,7 +1555,7 @@ expand_expr_stmt (tree exp)
|
||||
}
|
||||
|
||||
/* Warn if EXP contains any computations whose results are not used.
|
||||
Return 1 if a warning is printed; 0 otherwise. LOCUS is the
|
||||
Return 1 if a warning is printed; 0 otherwise. LOCUS is the
|
||||
(potential) location of the expression. */
|
||||
|
||||
int
|
||||
@ -2061,98 +2055,6 @@ expand_return (tree retval)
|
||||
}
|
||||
}
|
||||
|
||||
/* Generate the RTL code for entering a binding contour.
|
||||
The variables are declared one by one, by calls to `expand_decl'.
|
||||
|
||||
FLAGS is a bitwise or of the following flags:
|
||||
|
||||
1 - Nonzero if this construct should be visible to
|
||||
`exit_something'.
|
||||
|
||||
2 - Nonzero if this contour does not require a
|
||||
NOTE_INSN_BLOCK_BEG note. Virtually all calls from
|
||||
language-independent code should set this flag because they
|
||||
will not create corresponding BLOCK nodes. (There should be
|
||||
a one-to-one correspondence between NOTE_INSN_BLOCK_BEG notes
|
||||
and BLOCKs.) If this flag is set, MARK_ENDS should be zero
|
||||
when expand_end_bindings is called.
|
||||
|
||||
If we are creating a NOTE_INSN_BLOCK_BEG note, a BLOCK may
|
||||
optionally be supplied. If so, it becomes the NOTE_BLOCK for the
|
||||
note. */
|
||||
|
||||
void
|
||||
expand_start_bindings_and_block (int flags, tree block)
|
||||
{
|
||||
struct nesting *thisblock = ALLOC_NESTING ();
|
||||
rtx note;
|
||||
int exit_flag = ((flags & 1) != 0);
|
||||
int block_flag = ((flags & 2) == 0);
|
||||
|
||||
/* If a BLOCK is supplied, then the caller should be requesting a
|
||||
NOTE_INSN_BLOCK_BEG note. */
|
||||
if (!block_flag && block)
|
||||
abort ();
|
||||
|
||||
/* Create a note to mark the beginning of the block. */
|
||||
note = emit_note (NOTE_INSN_DELETED);
|
||||
|
||||
/* Make an entry on block_stack for the block we are entering. */
|
||||
|
||||
thisblock->desc = BLOCK_NESTING;
|
||||
thisblock->next = block_stack;
|
||||
thisblock->all = nesting_stack;
|
||||
thisblock->depth = ++nesting_depth;
|
||||
thisblock->data.block.block_target_temp_slot_level = target_temp_slot_level;
|
||||
|
||||
/* When we insert instructions after the last unconditional cleanup,
|
||||
we don't adjust last_insn. That means that a later add_insn will
|
||||
clobber the instructions we've just added. The easiest way to
|
||||
fix this is to just insert another instruction here, so that the
|
||||
instructions inserted after the last unconditional cleanup are
|
||||
never the last instruction. */
|
||||
emit_note (NOTE_INSN_DELETED);
|
||||
|
||||
thisblock->data.block.first_insn = note;
|
||||
thisblock->data.block.block_start_count = ++current_block_start_count;
|
||||
thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
|
||||
block_stack = thisblock;
|
||||
nesting_stack = thisblock;
|
||||
|
||||
/* Make a new level for allocating stack slots. */
|
||||
push_temp_slots ();
|
||||
}
|
||||
|
||||
/* Specify the scope of temporaries created by TARGET_EXPRs. Similar
|
||||
to CLEANUP_POINT_EXPR, but handles cases when a series of calls to
|
||||
expand_expr are made. After we end the region, we know that all
|
||||
space for all temporaries that were created by TARGET_EXPRs will be
|
||||
destroyed and their space freed for reuse. */
|
||||
|
||||
void
|
||||
expand_start_target_temps (void)
|
||||
{
|
||||
/* This is so that even if the result is preserved, the space
|
||||
allocated will be freed, as we know that it is no longer in use. */
|
||||
push_temp_slots ();
|
||||
|
||||
/* Start a new binding layer that will keep track of all cleanup
|
||||
actions to be performed. */
|
||||
expand_start_bindings (2);
|
||||
|
||||
target_temp_slot_level = temp_slot_level;
|
||||
}
|
||||
|
||||
void
|
||||
expand_end_target_temps (void)
|
||||
{
|
||||
expand_end_bindings (NULL_TREE, 0, 0);
|
||||
|
||||
/* This is so that even if the result is preserved, the space
|
||||
allocated will be freed, as we know that it is no longer in use. */
|
||||
pop_temp_slots ();
|
||||
}
|
||||
|
||||
/* Given a pointer to a BLOCK node return nonzero if (and only if) the node
|
||||
in question represents the outermost pair of curly braces (i.e. the "body
|
||||
block") of a function or method.
|
||||
@ -2185,15 +2087,6 @@ is_body_block (tree stmt)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Return an opaque pointer to the current nesting level, so frontend code
|
||||
can check its own sanity. */
|
||||
|
||||
struct nesting *
|
||||
current_nesting_level (void)
|
||||
{
|
||||
return cfun ? block_stack : 0;
|
||||
}
|
||||
|
||||
/* Emit code to restore vital registers at the beginning of a nonlocal goto
|
||||
handler. */
|
||||
static void
|
||||
@ -2263,70 +2156,6 @@ expand_nl_goto_receiver (void)
|
||||
insn. */
|
||||
emit_insn (gen_rtx_ASM_INPUT (VOIDmode, ""));
|
||||
}
|
||||
|
||||
/* Warn about any unused VARS (which may contain nodes other than
|
||||
VAR_DECLs, but such nodes are ignored). The nodes are connected
|
||||
via the TREE_CHAIN field. */
|
||||
|
||||
void
|
||||
warn_about_unused_variables (tree vars)
|
||||
{
|
||||
tree decl;
|
||||
|
||||
if (warn_unused_variable)
|
||||
for (decl = vars; decl; decl = TREE_CHAIN (decl))
|
||||
if (TREE_CODE (decl) == VAR_DECL
|
||||
&& ! TREE_USED (decl)
|
||||
&& ! DECL_IN_SYSTEM_HEADER (decl)
|
||||
&& DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
|
||||
warning ("%Junused variable '%D'", decl, decl);
|
||||
}
|
||||
|
||||
/* Generate RTL code to terminate a binding contour.
|
||||
|
||||
VARS is the chain of VAR_DECL nodes for the variables bound in this
|
||||
contour. There may actually be other nodes in this chain, but any
|
||||
nodes other than VAR_DECLS are ignored.
|
||||
|
||||
MARK_ENDS is nonzero if we should put a note at the beginning
|
||||
and end of this binding contour.
|
||||
|
||||
DONT_JUMP_IN is positive if it is not valid to jump into this contour,
|
||||
zero if we can jump into this contour only if it does not have a saved
|
||||
stack level, and negative if we are not to check for invalid use of
|
||||
labels (because the front end does that). */
|
||||
|
||||
void
|
||||
expand_end_bindings (tree vars, int mark_ends ATTRIBUTE_UNUSED,
|
||||
int dont_jump_in ATTRIBUTE_UNUSED)
|
||||
{
|
||||
struct nesting *thisblock = block_stack;
|
||||
|
||||
/* If any of the variables in this scope were not used, warn the
|
||||
user. */
|
||||
warn_about_unused_variables (vars);
|
||||
|
||||
if (thisblock->exit_label)
|
||||
{
|
||||
do_pending_stack_adjust ();
|
||||
emit_label (thisblock->exit_label);
|
||||
}
|
||||
|
||||
/* Mark the beginning and end of the scope if requested. */
|
||||
|
||||
/* Get rid of the beginning-mark if we don't make an end-mark. */
|
||||
NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
|
||||
|
||||
/* Restore the temporary level of TARGET_EXPRs. */
|
||||
target_temp_slot_level = thisblock->data.block.block_target_temp_slot_level;
|
||||
|
||||
/* Restore block_stack level for containing block. */
|
||||
|
||||
POPSTACK (block_stack);
|
||||
|
||||
/* Pop the stack slot nesting and free any slots at this level. */
|
||||
pop_temp_slots ();
|
||||
}
|
||||
|
||||
/* Generate RTL for the automatic variable declaration DECL.
|
||||
(Other kinds of declarations are simply ignored if seen here.) */
|
||||
|
29
gcc/tree.h
29
gcc/tree.h
@ -248,7 +248,7 @@ struct tree_common GTY(())
|
||||
BLOCK
|
||||
..._DECL
|
||||
CALL_FROM_THUNK_P in
|
||||
CALL_EXPR
|
||||
CALL_EXPR
|
||||
|
||||
side_effects_flag:
|
||||
|
||||
@ -569,7 +569,7 @@ extern void tree_operand_check_failed (int, enum tree_code,
|
||||
TREE_CHECK3 (T, RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE)
|
||||
#define NOT_RECORD_OR_UNION_CHECK(T) \
|
||||
TREE_NOT_CHECK3 (T, RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE)
|
||||
|
||||
|
||||
#define NUMERICAL_TYPE_CHECK(T) \
|
||||
TREE_CHECK5 (T, INTEGER_TYPE, ENUMERAL_TYPE, BOOLEAN_TYPE, \
|
||||
CHAR_TYPE, REAL_TYPE)
|
||||
@ -764,7 +764,7 @@ extern void tree_operand_check_failed (int, enum tree_code,
|
||||
/* In an INTEGER_CST, REAL_CST, COMPLEX_CST, or VECTOR_CST, this means
|
||||
there was an overflow in folding, and no warning has been issued
|
||||
for this subexpression. TREE_OVERFLOW implies TREE_CONSTANT_OVERFLOW,
|
||||
but not vice versa.
|
||||
but not vice versa.
|
||||
|
||||
??? Apparently, lots of code assumes this is defined in all
|
||||
expressions. */
|
||||
@ -806,7 +806,7 @@ extern void tree_operand_check_failed (int, enum tree_code,
|
||||
accessing the memory pointed to won't generate a trap. However,
|
||||
this only applies to an object when used appropriately: it doesn't
|
||||
mean that writing a READONLY mem won't trap.
|
||||
|
||||
|
||||
In ARRAY_REF and ARRAY_RANGE_REF means that we know that the index
|
||||
(or slice of the array) always belongs to the range of the array.
|
||||
I.e. that the access will not trap, provided that the access to
|
||||
@ -843,7 +843,7 @@ extern void tree_operand_check_failed (int, enum tree_code,
|
||||
to be compiled separately.
|
||||
Nonzero in a RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE or ENUMERAL_TYPE
|
||||
if the sdb debugging info for the type has been written.
|
||||
In a BLOCK node, nonzero if reorder_blocks has already seen this block.
|
||||
In a BLOCK node, nonzero if reorder_blocks has already seen this block.
|
||||
In an SSA_NAME node, nonzero if the SSA_NAME occurs in an abnormal
|
||||
PHI node. */
|
||||
#define TREE_ASM_WRITTEN(NODE) ((NODE)->common.asm_written_flag)
|
||||
@ -1163,7 +1163,7 @@ struct tree_vec GTY(())
|
||||
|
||||
/* VDEF_EXPR accessors are specified in tree-flow.h, along with the other
|
||||
accessors for SSA operands. */
|
||||
|
||||
|
||||
/* CATCH_EXPR accessors. */
|
||||
#define CATCH_TYPES(NODE) TREE_OPERAND (CATCH_EXPR_CHECK (NODE), 0)
|
||||
#define CATCH_BODY(NODE) TREE_OPERAND (CATCH_EXPR_CHECK (NODE), 1)
|
||||
@ -1227,7 +1227,7 @@ struct tree_exp GTY(())
|
||||
/* Auxiliary pass-specific data. */
|
||||
#define SSA_NAME_AUX(N) \
|
||||
SSA_NAME_CHECK (N)->ssa_name.aux
|
||||
|
||||
|
||||
#ifndef _TREE_FLOW_H
|
||||
struct ptr_info_def;
|
||||
#endif
|
||||
@ -1245,7 +1245,7 @@ struct tree_ssa_name GTY(())
|
||||
/* Pointer attributes used for alias analysis. */
|
||||
struct ptr_info_def *ptr_info;
|
||||
|
||||
/* Value for SSA name used by GVN. */
|
||||
/* Value for SSA name used by GVN. */
|
||||
tree GTY((skip)) value_handle;
|
||||
|
||||
/* Auxiliary information stored with the ssa name. */
|
||||
@ -3360,11 +3360,6 @@ extern void expand_stack_alloc (tree, tree);
|
||||
extern rtx expand_stack_save (void);
|
||||
extern void expand_stack_restore (tree);
|
||||
extern void expand_return (tree);
|
||||
extern void expand_start_bindings_and_block (int, tree);
|
||||
#define expand_start_bindings(flags) \
|
||||
expand_start_bindings_and_block(flags, NULL_TREE)
|
||||
extern void expand_end_bindings (tree, int, int);
|
||||
extern void warn_about_unused_variables (tree);
|
||||
extern int is_body_block (tree);
|
||||
|
||||
extern struct nesting * current_nesting_level (void);
|
||||
@ -3632,8 +3627,6 @@ extern void expand_asm_expr (tree);
|
||||
extern bool asm_op_is_mem_input (tree, tree);
|
||||
extern tree resolve_asm_operand_names (tree, tree, tree);
|
||||
extern void init_stmt_for_function (void);
|
||||
extern void expand_start_target_temps (void);
|
||||
extern void expand_end_target_temps (void);
|
||||
extern void expand_elseif (tree);
|
||||
extern void expand_decl (tree);
|
||||
extern void expand_anon_union_decl (tree, tree, tree);
|
||||
@ -3702,7 +3695,7 @@ enum tree_dump_index
|
||||
TDI_nested, /* dump each function after unnesting it */
|
||||
TDI_inlined, /* dump each function after inlining
|
||||
within it. */
|
||||
TDI_vcg, /* create a VCG graph file for each
|
||||
TDI_vcg, /* create a VCG graph file for each
|
||||
function's flowgraph. */
|
||||
TDI_xml, /* dump function call graph. */
|
||||
TDI_all, /* enable all the dumps. */
|
||||
@ -3749,7 +3742,7 @@ extern void fancy_abort (const char *, int, const char *)
|
||||
ATTRIBUTE_NORETURN;
|
||||
#define abort() fancy_abort (__FILE__, __LINE__, __FUNCTION__)
|
||||
|
||||
/* Enum and arrays used for tree allocation stats.
|
||||
/* Enum and arrays used for tree allocation stats.
|
||||
Keep in sync with tree.c:tree_node_kind_names. */
|
||||
typedef enum
|
||||
{
|
||||
@ -3780,7 +3773,7 @@ extern int tree_node_sizes[];
|
||||
be restricted. False if we are not in gimple form and folding is not
|
||||
restricted to creating gimple expressions. */
|
||||
extern bool in_gimple_form;
|
||||
|
||||
|
||||
/* In tree-ssa-loop-niter.c. */
|
||||
|
||||
tree lower_bound_in_type (tree, tree);
|
||||
|
Loading…
x
Reference in New Issue
Block a user