2002-02-01 18:16:02 +00:00
|
|
|
|
/* Procedure integration for GCC.
|
2004-07-28 03:11:36 +00:00
|
|
|
|
Copyright (C) 1988, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
2007-05-19 01:19:51 +00:00
|
|
|
|
2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
1996-09-18 05:35:50 +00:00
|
|
|
|
Contributed by Michael Tiemann (tiemann@cygnus.com)
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
This file is part of GCC.
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
GCC is free software; you can redistribute it and/or modify it under
|
|
|
|
|
the terms of the GNU General Public License as published by the Free
|
|
|
|
|
Software Foundation; either version 2, or (at your option) any later
|
|
|
|
|
version.
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
|
for more details.
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2002-02-01 18:16:02 +00:00
|
|
|
|
along with GCC; see the file COPYING. If not, write to the Free
|
2007-05-19 01:19:51 +00:00
|
|
|
|
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
|
02110-1301, USA. */
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
#include "config.h"
|
1999-08-26 09:30:50 +00:00
|
|
|
|
#include "system.h"
|
2004-07-28 03:11:36 +00:00
|
|
|
|
#include "coretypes.h"
|
|
|
|
|
#include "tm.h"
|
1999-08-26 09:30:50 +00:00
|
|
|
|
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#include "rtl.h"
|
|
|
|
|
#include "tree.h"
|
2002-02-01 18:16:02 +00:00
|
|
|
|
#include "tm_p.h"
|
1999-08-26 09:30:50 +00:00
|
|
|
|
#include "regs.h"
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#include "flags.h"
|
2002-02-01 18:16:02 +00:00
|
|
|
|
#include "debug.h"
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#include "insn-config.h"
|
|
|
|
|
#include "expr.h"
|
|
|
|
|
#include "output.h"
|
1999-08-26 09:30:50 +00:00
|
|
|
|
#include "recog.h"
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#include "integrate.h"
|
|
|
|
|
#include "real.h"
|
1999-08-26 09:30:50 +00:00
|
|
|
|
#include "except.h"
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#include "function.h"
|
1999-08-26 09:30:50 +00:00
|
|
|
|
#include "toplev.h"
|
1999-10-16 06:09:09 +00:00
|
|
|
|
#include "intl.h"
|
2002-02-01 18:16:02 +00:00
|
|
|
|
#include "params.h"
|
|
|
|
|
#include "ggc.h"
|
|
|
|
|
#include "target.h"
|
2003-07-11 03:40:53 +00:00
|
|
|
|
#include "langhooks.h"
|
2007-05-19 01:19:51 +00:00
|
|
|
|
#include "tree-pass.h"
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
/* Round to the next highest integer that meets the alignment. */
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#define CEIL_ROUND(VALUE,ALIGN) (((VALUE) + (ALIGN) - 1) & ~((ALIGN)- 1))
|
|
|
|
|
|
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
/* Private type used by {get/has}_hard_reg_initial_val. */
|
|
|
|
|
typedef struct initial_value_pair GTY(()) {
|
|
|
|
|
rtx hard_reg;
|
|
|
|
|
rtx pseudo;
|
|
|
|
|
} initial_value_pair;
|
|
|
|
|
typedef struct initial_value_struct GTY(()) {
|
|
|
|
|
int num_entries;
|
|
|
|
|
int max_entries;
|
|
|
|
|
initial_value_pair * GTY ((length ("%h.num_entries"))) entries;
|
|
|
|
|
} initial_value_struct;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
static void set_block_origin_self (tree);
|
|
|
|
|
static void set_block_abstract_flags (tree, int);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
/* Return false if the function FNDECL cannot be inlined on account of its
|
|
|
|
|
attributes, true otherwise. */
|
|
|
|
|
bool
|
|
|
|
|
function_attribute_inlinable_p (tree fndecl)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
if (targetm.attribute_table)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
tree a;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
for (a = DECL_ATTRIBUTES (fndecl); a; a = TREE_CHAIN (a))
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
tree name = TREE_PURPOSE (a);
|
|
|
|
|
int i;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
for (i = 0; targetm.attribute_table[i].name != NULL; i++)
|
|
|
|
|
if (is_attribute_p (targetm.attribute_table[i].name, name))
|
|
|
|
|
return targetm.function_attribute_inlinable_p (fndecl);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
return true;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given a pointer to some BLOCK node, if the BLOCK_ABSTRACT_ORIGIN for the
|
|
|
|
|
given BLOCK node is NULL, set the BLOCK_ABSTRACT_ORIGIN for the node so
|
|
|
|
|
that it points to the node itself, thus indicating that the node is its
|
|
|
|
|
own (abstract) origin. Additionally, if the BLOCK_ABSTRACT_ORIGIN for
|
|
|
|
|
the given node is NULL, recursively descend the decl/block tree which
|
|
|
|
|
it is the root of, and for each other ..._DECL or BLOCK node contained
|
|
|
|
|
therein whose DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also
|
|
|
|
|
still NULL, set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN
|
|
|
|
|
values to point to themselves. */
|
|
|
|
|
|
|
|
|
|
static void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
set_block_origin_self (tree stmt)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
|
|
|
|
if (BLOCK_ABSTRACT_ORIGIN (stmt) == NULL_TREE)
|
|
|
|
|
{
|
|
|
|
|
BLOCK_ABSTRACT_ORIGIN (stmt) = stmt;
|
|
|
|
|
|
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
tree local_decl;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
for (local_decl = BLOCK_VARS (stmt);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
local_decl != NULL_TREE;
|
|
|
|
|
local_decl = TREE_CHAIN (local_decl))
|
2002-02-01 18:16:02 +00:00
|
|
|
|
set_decl_origin_self (local_decl); /* Potential recursion. */
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
tree subblock;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
for (subblock = BLOCK_SUBBLOCKS (stmt);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
subblock != NULL_TREE;
|
|
|
|
|
subblock = BLOCK_CHAIN (subblock))
|
2002-02-01 18:16:02 +00:00
|
|
|
|
set_block_origin_self (subblock); /* Recurse. */
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given a pointer to some ..._DECL node, if the DECL_ABSTRACT_ORIGIN for
|
|
|
|
|
the given ..._DECL node is NULL, set the DECL_ABSTRACT_ORIGIN for the
|
|
|
|
|
node to so that it points to the node itself, thus indicating that the
|
|
|
|
|
node represents its own (abstract) origin. Additionally, if the
|
|
|
|
|
DECL_ABSTRACT_ORIGIN for the given node is NULL, recursively descend
|
|
|
|
|
the decl/block tree of which the given node is the root of, and for
|
|
|
|
|
each other ..._DECL or BLOCK node contained therein whose
|
|
|
|
|
DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also still NULL,
|
|
|
|
|
set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN values to
|
|
|
|
|
point to themselves. */
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
set_decl_origin_self (tree decl)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
|
|
|
|
if (DECL_ABSTRACT_ORIGIN (decl) == NULL_TREE)
|
|
|
|
|
{
|
|
|
|
|
DECL_ABSTRACT_ORIGIN (decl) = decl;
|
|
|
|
|
if (TREE_CODE (decl) == FUNCTION_DECL)
|
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
tree arg;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
for (arg = DECL_ARGUMENTS (decl); arg; arg = TREE_CHAIN (arg))
|
|
|
|
|
DECL_ABSTRACT_ORIGIN (arg) = arg;
|
|
|
|
|
if (DECL_INITIAL (decl) != NULL_TREE
|
|
|
|
|
&& DECL_INITIAL (decl) != error_mark_node)
|
|
|
|
|
set_block_origin_self (DECL_INITIAL (decl));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given a pointer to some BLOCK node, and a boolean value to set the
|
|
|
|
|
"abstract" flags to, set that value into the BLOCK_ABSTRACT flag for
|
|
|
|
|
the given block, and for all local decls and all local sub-blocks
|
|
|
|
|
(recursively) which are contained therein. */
|
|
|
|
|
|
|
|
|
|
static void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
set_block_abstract_flags (tree stmt, int setting)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
tree local_decl;
|
|
|
|
|
tree subblock;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
1999-08-26 09:30:50 +00:00
|
|
|
|
BLOCK_ABSTRACT (stmt) = setting;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
1999-08-26 09:30:50 +00:00
|
|
|
|
for (local_decl = BLOCK_VARS (stmt);
|
|
|
|
|
local_decl != NULL_TREE;
|
|
|
|
|
local_decl = TREE_CHAIN (local_decl))
|
|
|
|
|
set_decl_abstract_flags (local_decl, setting);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
1999-08-26 09:30:50 +00:00
|
|
|
|
for (subblock = BLOCK_SUBBLOCKS (stmt);
|
|
|
|
|
subblock != NULL_TREE;
|
|
|
|
|
subblock = BLOCK_CHAIN (subblock))
|
|
|
|
|
set_block_abstract_flags (subblock, setting);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given a pointer to some ..._DECL node, and a boolean value to set the
|
|
|
|
|
"abstract" flags to, set that value into the DECL_ABSTRACT flag for the
|
|
|
|
|
given decl, and (in the case where the decl is a FUNCTION_DECL) also
|
|
|
|
|
set the abstract flags for all of the parameters, local vars, local
|
|
|
|
|
blocks and sub-blocks (recursively) to the same setting. */
|
|
|
|
|
|
|
|
|
|
void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
set_decl_abstract_flags (tree decl, int setting)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
|
|
|
|
DECL_ABSTRACT (decl) = setting;
|
|
|
|
|
if (TREE_CODE (decl) == FUNCTION_DECL)
|
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
tree arg;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
for (arg = DECL_ARGUMENTS (decl); arg; arg = TREE_CHAIN (arg))
|
|
|
|
|
DECL_ABSTRACT (arg) = setting;
|
|
|
|
|
if (DECL_INITIAL (decl) != NULL_TREE
|
|
|
|
|
&& DECL_INITIAL (decl) != error_mark_node)
|
|
|
|
|
set_block_abstract_flags (DECL_INITIAL (decl), setting);
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
|
|
|
|
/* Functions to keep track of the values hard regs had at the start of
|
|
|
|
|
the function. */
|
|
|
|
|
|
|
|
|
|
rtx
|
2004-07-28 03:11:36 +00:00
|
|
|
|
get_hard_reg_initial_reg (struct function *fun, rtx reg)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
|
|
|
|
struct initial_value_struct *ivs = fun->hard_reg_initial_vals;
|
|
|
|
|
int i;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (ivs == 0)
|
|
|
|
|
return NULL_RTX;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
for (i = 0; i < ivs->num_entries; i++)
|
|
|
|
|
if (rtx_equal_p (ivs->entries[i].pseudo, reg))
|
|
|
|
|
return ivs->entries[i].hard_reg;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
return NULL_RTX;
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
/* Make sure that there's a pseudo register of mode MODE that stores the
|
|
|
|
|
initial value of hard register REGNO. Return an rtx for such a pseudo. */
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
rtx
|
2007-05-19 01:19:51 +00:00
|
|
|
|
get_hard_reg_initial_val (enum machine_mode mode, unsigned int regno)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
struct initial_value_struct *ivs;
|
|
|
|
|
rtx rv;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
rv = has_hard_reg_initial_val (mode, regno);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (rv)
|
|
|
|
|
return rv;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
ivs = cfun->hard_reg_initial_vals;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (ivs == 0)
|
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
ivs = ggc_alloc (sizeof (initial_value_struct));
|
2002-02-01 18:16:02 +00:00
|
|
|
|
ivs->num_entries = 0;
|
|
|
|
|
ivs->max_entries = 5;
|
2004-07-28 03:11:36 +00:00
|
|
|
|
ivs->entries = ggc_alloc (5 * sizeof (initial_value_pair));
|
2007-05-19 01:19:51 +00:00
|
|
|
|
cfun->hard_reg_initial_vals = ivs;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (ivs->num_entries >= ivs->max_entries)
|
|
|
|
|
{
|
|
|
|
|
ivs->max_entries += 5;
|
2004-07-28 03:11:36 +00:00
|
|
|
|
ivs->entries = ggc_realloc (ivs->entries,
|
|
|
|
|
ivs->max_entries
|
|
|
|
|
* sizeof (initial_value_pair));
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
ivs->entries[ivs->num_entries].hard_reg = gen_rtx_REG (mode, regno);
|
|
|
|
|
ivs->entries[ivs->num_entries].pseudo = gen_reg_rtx (mode);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
return ivs->entries[ivs->num_entries++].pseudo;
|
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
/* See if get_hard_reg_initial_val has been used to create a pseudo
|
|
|
|
|
for the initial value of hard register REGNO in mode MODE. Return
|
|
|
|
|
the associated pseudo if so, otherwise return NULL. */
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
rtx
|
2007-05-19 01:19:51 +00:00
|
|
|
|
has_hard_reg_initial_val (enum machine_mode mode, unsigned int regno)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
struct initial_value_struct *ivs;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
int i;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
ivs = cfun->hard_reg_initial_vals;
|
|
|
|
|
if (ivs != 0)
|
|
|
|
|
for (i = 0; i < ivs->num_entries; i++)
|
|
|
|
|
if (GET_MODE (ivs->entries[i].hard_reg) == mode
|
|
|
|
|
&& REGNO (ivs->entries[i].hard_reg) == regno)
|
|
|
|
|
return ivs->entries[i].pseudo;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
return NULL_RTX;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
unsigned int
|
2004-07-28 03:11:36 +00:00
|
|
|
|
emit_initial_value_sets (void)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
|
|
|
|
struct initial_value_struct *ivs = cfun->hard_reg_initial_vals;
|
|
|
|
|
int i;
|
|
|
|
|
rtx seq;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (ivs == 0)
|
2007-05-19 01:19:51 +00:00
|
|
|
|
return 0;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
|
|
|
|
start_sequence ();
|
|
|
|
|
for (i = 0; i < ivs->num_entries; i++)
|
|
|
|
|
emit_move_insn (ivs->entries[i].pseudo, ivs->entries[i].hard_reg);
|
|
|
|
|
seq = get_insns ();
|
|
|
|
|
end_sequence ();
|
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
emit_insn_at_entry (seq);
|
|
|
|
|
return 0;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
struct tree_opt_pass pass_initial_value_sets =
|
|
|
|
|
{
|
|
|
|
|
"initvals", /* name */
|
|
|
|
|
NULL, /* gate */
|
|
|
|
|
emit_initial_value_sets, /* execute */
|
|
|
|
|
NULL, /* sub */
|
|
|
|
|
NULL, /* next */
|
|
|
|
|
0, /* static_pass_number */
|
|
|
|
|
0, /* tv_id */
|
|
|
|
|
0, /* properties_required */
|
|
|
|
|
0, /* properties_provided */
|
|
|
|
|
0, /* properties_destroyed */
|
|
|
|
|
0, /* todo_flags_start */
|
|
|
|
|
TODO_dump_func, /* todo_flags_finish */
|
|
|
|
|
0 /* letter */
|
|
|
|
|
};
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* If the backend knows where to allocate pseudos for hard
|
|
|
|
|
register initial values, register these allocations now. */
|
|
|
|
|
void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
allocate_initial_values (rtx *reg_equiv_memory_loc ATTRIBUTE_UNUSED)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
if (targetm.allocate_initial_value)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
struct initial_value_struct *ivs = cfun->hard_reg_initial_vals;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (ivs == 0)
|
|
|
|
|
return;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
for (i = 0; i < ivs->num_entries; i++)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
int regno = REGNO (ivs->entries[i].pseudo);
|
|
|
|
|
rtx x = targetm.allocate_initial_value (ivs->entries[i].hard_reg);
|
|
|
|
|
|
|
|
|
|
if (x && REG_N_SETS (REGNO (ivs->entries[i].pseudo)) <= 1)
|
|
|
|
|
{
|
|
|
|
|
if (MEM_P (x))
|
|
|
|
|
reg_equiv_memory_loc[regno] = x;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
basic_block bb;
|
|
|
|
|
int new_regno;
|
|
|
|
|
|
|
|
|
|
gcc_assert (REG_P (x));
|
|
|
|
|
new_regno = REGNO (x);
|
|
|
|
|
reg_renumber[regno] = new_regno;
|
|
|
|
|
/* Poke the regno right into regno_reg_rtx so that even
|
|
|
|
|
fixed regs are accepted. */
|
|
|
|
|
REGNO (ivs->entries[i].pseudo) = new_regno;
|
|
|
|
|
/* Update global register liveness information. */
|
|
|
|
|
FOR_EACH_BB (bb)
|
|
|
|
|
{
|
|
|
|
|
struct rtl_bb_info *info = bb->il.rtl;
|
|
|
|
|
|
|
|
|
|
if (REGNO_REG_SET_P(info->global_live_at_start, regno))
|
|
|
|
|
SET_REGNO_REG_SET (info->global_live_at_start,
|
|
|
|
|
new_regno);
|
|
|
|
|
if (REGNO_REG_SET_P(info->global_live_at_end, regno))
|
|
|
|
|
SET_REGNO_REG_SET (info->global_live_at_end,
|
|
|
|
|
new_regno);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
2003-07-11 03:40:53 +00:00
|
|
|
|
|
|
|
|
|
#include "gt-integrate.h"
|