aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 102ad9b..e4b6cc0 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -204,7 +204,7 @@ union rtunion
{
int rt_int;
unsigned int rt_uint;
- poly_uint16_pod rt_subreg;
+ poly_uint16 rt_subreg;
const char *rt_str;
rtx rt_rtx;
rtvec rt_rtvec;
@@ -2270,6 +2270,7 @@ namespace wi
/* This ought to be true, except for the special case that BImode
is canonicalized to STORE_FLAG_VALUE, which might be 1. */
static const bool is_sign_extended = false;
+ static const bool needs_write_val_arg = false;
static unsigned int get_precision (const rtx_mode_t &);
static wi::storage_ref decompose (HOST_WIDE_INT *, unsigned int,
const rtx_mode_t &);
@@ -2402,7 +2403,7 @@ rtx_to_poly_int64 (const_rtx x)
otherwise leave it unmodified. */
inline bool
-poly_int_rtx_p (const_rtx x, poly_int64_pod *res)
+poly_int_rtx_p (const_rtx x, poly_int64 *res)
{
if (CONST_INT_P (x))
{
@@ -3630,7 +3631,7 @@ extern HOST_WIDE_INT get_integer_term (const_rtx);
extern rtx get_related_value (const_rtx);
extern bool offset_within_block_p (const_rtx, HOST_WIDE_INT);
extern void split_const (rtx, rtx *, rtx *);
-extern rtx strip_offset (rtx, poly_int64_pod *);
+extern rtx strip_offset (rtx, poly_int64 *);
extern poly_int64 get_args_size (const_rtx);
extern bool unsigned_reg_p (rtx);
extern bool reg_mentioned_p (const_rtx, const_rtx);
@@ -4108,8 +4109,11 @@ extern int epilogue_completed;
extern int reload_in_progress;
-/* Set to 1 while in lra. */
-extern int lra_in_progress;
+/* Set to true while in IRA. */
+extern bool ira_in_progress;
+
+/* Set to true while in LRA. */
+extern bool lra_in_progress;
/* This macro indicates whether you may create a new
pseudo-register. */
@@ -4583,7 +4587,7 @@ load_extend_op (machine_mode mode)
and return the base. Return X otherwise. */
inline rtx
-strip_offset_and_add (rtx x, poly_int64_pod *offset)
+strip_offset_and_add (rtx x, poly_int64 *offset)
{
if (GET_CODE (x) == PLUS)
{