ira.h 8.73 KB
Newer Older
Vladimir Makarov committed
1 2
/* Communication between the Integrated Register Allocator (IRA) and
   the rest of the compiler.
Jakub Jelinek committed
3
   Copyright (C) 2006-2015 Free Software Foundation, Inc.
Vladimir Makarov committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
   Contributed by Vladimir Makarov <vmakarov@redhat.com>.

This file is part of GCC.

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 3, or (at your option) any later
version.

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.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */

22 23 24
#ifndef GCC_IRA_H
#define GCC_IRA_H

25 26
#include "emit-rtl.h"

27 28 29 30
/* True when we use LRA instead of reload pass for the current
   function.  */
extern bool ira_use_lra_p;

31 32 33 34
/* True if we have allocno conflicts.  It is false for non-optimized
   mode or when the conflict table is too big.  */
extern bool ira_conflicts_p;

35 36
struct target_ira
{
Vladimir Makarov committed
37
  /* Map: hard register number -> allocno class it belongs to.  If the
38 39
     corresponding class is NO_REGS, the hard register is not available
     for allocation.  */
Vladimir Makarov committed
40
  enum reg_class x_ira_hard_regno_allocno_class[FIRST_PSEUDO_REGISTER];
41

Vladimir Makarov committed
42 43 44 45 46 47 48
  /* Number of allocno classes.  Allocno classes are register classes
     which can be used for allocations of allocnos.  */
  int x_ira_allocno_classes_num;

  /* The array containing allocno classes.  Only first
     IRA_ALLOCNO_CLASSES_NUM elements are used for this.  */
  enum reg_class x_ira_allocno_classes[N_REG_CLASSES];
Vladimir Makarov committed
49

Vladimir Makarov committed
50 51 52 53
  /* Map of all register classes to corresponding allocno classes
     containing the given class.  If given class is not a subset of an
     allocno class, we translate it into the cheapest allocno class.  */
  enum reg_class x_ira_allocno_class_translate[N_REG_CLASSES];
Vladimir Makarov committed
54

Vladimir Makarov committed
55 56 57
  /* Number of pressure classes.  Pressure classes are register
     classes for which we calculate register pressure.  */
  int x_ira_pressure_classes_num;
Vladimir Makarov committed
58

Vladimir Makarov committed
59 60 61 62 63 64 65 66 67 68
  /* The array containing pressure classes.  Only first
     IRA_PRESSURE_CLASSES_NUM elements are used for this.  */
  enum reg_class x_ira_pressure_classes[N_REG_CLASSES];

  /* Map of all register classes to corresponding pressure classes
     containing the given class.  If given class is not a subset of an
     pressure class, we translate it into the cheapest pressure
     class.  */
  enum reg_class x_ira_pressure_class_translate[N_REG_CLASSES];

Kito Cheng committed
69
  /* Biggest pressure register class containing stack registers.
Vladimir Makarov committed
70 71 72 73 74 75
     NO_REGS if there are no stack registers.  */
  enum reg_class x_ira_stack_reg_pressure_class;

  /* Maps: register class x machine mode -> maximal/minimal number of
     hard registers of given class needed to store value of given
     mode.  */
76 77
  unsigned char x_ira_reg_class_max_nregs[N_REG_CLASSES][MAX_MACHINE_MODE];
  unsigned char x_ira_reg_class_min_nregs[N_REG_CLASSES][MAX_MACHINE_MODE];
78 79 80 81 82 83 84 85 86 87 88 89

  /* Array analogous to target hook TARGET_MEMORY_MOVE_COST.  */
  short x_ira_memory_move_cost[MAX_MACHINE_MODE][N_REG_CLASSES][2];

  /* Array of number of hard registers of given class which are
     available for the allocation.  The order is defined by the
     allocation order.  */
  short x_ira_class_hard_regs[N_REG_CLASSES][FIRST_PSEUDO_REGISTER];

  /* The number of elements of the above array for given register
     class.  */
  int x_ira_class_hard_regs_num[N_REG_CLASSES];
Vladimir Makarov committed
90

91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
  /* Register class subset relation: TRUE if the first class is a subset
     of the second one considering only hard registers available for the
     allocation.  */
  int x_ira_class_subset_p[N_REG_CLASSES][N_REG_CLASSES];

  /* The biggest class inside of intersection of the two classes (that
     is calculated taking only hard registers available for allocation
     into account.  If the both classes contain no hard registers
     available for allocation, the value is calculated with taking all
     hard-registers including fixed ones into account.  */
  enum reg_class x_ira_reg_class_subset[N_REG_CLASSES][N_REG_CLASSES];

  /* True if the two classes (that is calculated taking only hard
     registers available for allocation into account; are
     intersected.  */
  bool x_ira_reg_classes_intersect_p[N_REG_CLASSES][N_REG_CLASSES];

108 109 110 111
  /* If class CL has a single allocatable register of mode M,
     index [CL][M] gives the number of that register, otherwise it is -1.  */
  short x_ira_class_singleton[N_REG_CLASSES][MAX_MACHINE_MODE];

Vladimir Makarov committed
112 113 114
  /* Function specific hard registers can not be used for the register
     allocation.  */
  HARD_REG_SET x_ira_no_alloc_regs;
115 116 117 118 119

  /* Array whose values are hard regset of hard registers available for
     the allocation of given register class whose HARD_REGNO_MODE_OK
     values for given mode are zero.  */
  HARD_REG_SET x_ira_prohibited_class_mode_regs[N_REG_CLASSES][NUM_MACHINE_MODES];
120 121 122 123 124 125 126 127 128
};

extern struct target_ira default_target_ira;
#if SWITCHABLE_TARGET
extern struct target_ira *this_target_ira;
#else
#define this_target_ira (&default_target_ira)
#endif

Vladimir Makarov committed
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
#define ira_hard_regno_allocno_class \
  (this_target_ira->x_ira_hard_regno_allocno_class)
#define ira_allocno_classes_num \
  (this_target_ira->x_ira_allocno_classes_num)
#define ira_allocno_classes \
  (this_target_ira->x_ira_allocno_classes)
#define ira_allocno_class_translate \
  (this_target_ira->x_ira_allocno_class_translate)
#define ira_pressure_classes_num \
  (this_target_ira->x_ira_pressure_classes_num)
#define ira_pressure_classes \
  (this_target_ira->x_ira_pressure_classes)
#define ira_pressure_class_translate \
  (this_target_ira->x_ira_pressure_class_translate)
#define ira_stack_reg_pressure_class \
  (this_target_ira->x_ira_stack_reg_pressure_class)
#define ira_reg_class_max_nregs \
  (this_target_ira->x_ira_reg_class_max_nregs)
#define ira_reg_class_min_nregs \
  (this_target_ira->x_ira_reg_class_min_nregs)
149 150 151 152 153 154
#define ira_memory_move_cost \
  (this_target_ira->x_ira_memory_move_cost)
#define ira_class_hard_regs \
  (this_target_ira->x_ira_class_hard_regs)
#define ira_class_hard_regs_num \
  (this_target_ira->x_ira_class_hard_regs_num)
155 156 157 158 159 160
#define ira_class_subset_p \
  (this_target_ira->x_ira_class_subset_p)
#define ira_reg_class_subset \
  (this_target_ira->x_ira_reg_class_subset)
#define ira_reg_classes_intersect_p \
  (this_target_ira->x_ira_reg_classes_intersect_p)
161 162
#define ira_class_singleton \
  (this_target_ira->x_ira_class_singleton)
Vladimir Makarov committed
163 164
#define ira_no_alloc_regs \
  (this_target_ira->x_ira_no_alloc_regs)
165 166
#define ira_prohibited_class_mode_regs \
  (this_target_ira->x_ira_prohibited_class_mode_regs)
167

168
/* Major structure describing equivalence info for a pseudo.  */
169
struct ira_reg_equiv_s
170 171 172 173 174 175 176 177 178 179 180
{
  /* True if we can use this equivalence.  */
  bool defined_p;
  /* True if the usage of the equivalence is profitable.  */
  bool profitable_p;
  /* Equiv. memory, constant, invariant, and initializing insns of
     given pseudo-register or NULL_RTX.  */
  rtx memory;
  rtx constant;
  rtx invariant;
  /* Always NULL_RTX if defined_p is false.  */
181
  rtx_insn_list *init_insns;
182 183 184 185 186 187
};

/* The length of the following array.  */
extern int ira_reg_equiv_len;

/* Info about equiv. info for each register.  */
188
extern struct ira_reg_equiv_s *ira_reg_equiv;
189

Vladimir Makarov committed
190 191
extern void ira_init_once (void);
extern void ira_init (void);
192
extern void ira_setup_eliminable_regset (void);
193
extern rtx ira_eliminate_regs (rtx, machine_mode);
194
extern void ira_set_pseudo_classes (bool, FILE *);
195
extern void ira_implicitly_set_insn_hard_regs (HARD_REG_SET *);
196
extern void ira_expand_reg_equiv (void);
197
extern void ira_update_equiv_info_by_shuffle_insn (int, int, rtx_insn *);
Vladimir Makarov committed
198 199 200 201 202 203 204 205

extern void ira_sort_regnos_for_alter_reg (int *, int, unsigned int *);
extern void ira_mark_allocation_change (int);
extern void ira_mark_memory_move_deletion (int, int);
extern bool ira_reassign_pseudos (int *, int, HARD_REG_SET, HARD_REG_SET *,
				  HARD_REG_SET *, bitmap);
extern rtx ira_reuse_stack_slot (int, unsigned int, unsigned int);
extern void ira_mark_new_stack_slot (rtx, int, unsigned int);
206
extern bool ira_better_spill_reload_regno_p (int *, int *, rtx, rtx, rtx_insn *);
207
extern bool ira_bad_reload_regno (int, rtx, rtx);
Vladimir Makarov committed
208

209
extern void ira_adjust_equiv_reg_cost (unsigned, int);
210

211 212 213
/* ira-costs.c */
extern void ira_costs_c_finalize (void);

214 215 216 217 218 219 220 221 222 223 224
/* Spilling static chain pseudo may result in generation of wrong
   non-local goto code using frame-pointer to address saved stack
   pointer value after restoring old frame pointer value.  The
   function returns TRUE if REGNO is such a static chain pseudo.  */
static inline bool
non_spilled_static_chain_regno_p (int regno)
{
  return (cfun->static_chain_decl && crtl->has_nonlocal_goto
	  && REG_EXPR (regno_reg_rtx[regno]) == cfun->static_chain_decl);
}

225
#endif /* GCC_IRA_H */