]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/regrename.h
Update copyright years.
[thirdparty/gcc.git] / gcc / regrename.h
CommitLineData
7de639a2 1/* This file contains definitions for the register renamer.
f1717362 2 Copyright (C) 2011-2016 Free Software Foundation, Inc.
7de639a2 3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 3, or (at your option) any later
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
20#ifndef GCC_REGRENAME_H
21#define GCC_REGRENAME_H
22
23/* We keep linked lists of DU_HEAD structures, each of which describes
24 a chain of occurrences of a reg. */
25struct du_head
26{
27 /* The next chain. */
28 struct du_head *next_chain;
29 /* The first and last elements of this chain. */
30 struct du_chain *first, *last;
19694471 31 /* The chain that this chain is tied to. */
32 struct du_head *tied_chain;
7de639a2 33 /* Describes the register being tracked. */
34 unsigned regno;
35 int nregs;
36
37 /* A unique id to be used as an index into the conflicts bitmaps. */
38 unsigned id;
39 /* A bitmap to record conflicts with other chains. */
40 bitmap_head conflicts;
41 /* Conflicts with untracked hard registers. */
42 HARD_REG_SET hard_conflicts;
43
44 /* Nonzero if the chain crosses a call. */
45 unsigned int need_caller_save_reg:1;
46 /* Nonzero if the register is used in a way that prevents renaming,
47 such as the SET_DEST of a CALL_INSN or an asm operand that used
48 to be a hard register. */
49 unsigned int cannot_rename:1;
19694471 50 /* Nonzero if the chain has already been renamed. */
51 unsigned int renamed:1;
19f3f4dc 52
53 /* Fields for use by target code. */
54 unsigned int target_data_1;
55 unsigned int target_data_2;
7de639a2 56};
57
58typedef struct du_head *du_head_p;
7de639a2 59
60/* This struct describes a single occurrence of a register. */
61struct du_chain
62{
63 /* Links to the next occurrence of the register. */
64 struct du_chain *next_use;
65
66 /* The insn where the register appears. */
eb1d81d5 67 rtx_insn *insn;
7de639a2 68 /* The location inside the insn. */
69 rtx *loc;
70 /* The register class required by the insn at this location. */
71 ENUM_BITFIELD(reg_class) cl : 16;
72};
73
74/* This struct describes data gathered during regrename_analyze about
75 a single operand of an insn. */
b3e7c666 76struct operand_rr_info
7de639a2 77{
78 /* The number of chains recorded for this operand. */
3c28a3eb 79 short n_chains;
80 bool failed;
7de639a2 81 /* Holds either the chain for the operand itself, or for the registers in
82 a memory operand. */
83 struct du_chain *chains[MAX_REGS_PER_ADDRESS];
84 struct du_head *heads[MAX_REGS_PER_ADDRESS];
b3e7c666 85};
7de639a2 86
87/* A struct to hold a vector of operand_rr_info structures describing the
88 operands of an insn. */
b3e7c666 89struct insn_rr_info
7de639a2 90{
91 operand_rr_info *op_info;
b3e7c666 92};
7de639a2 93
7de639a2 94
f1f41a6c 95extern vec<insn_rr_info> insn_rr;
7de639a2 96
97extern void regrename_init (bool);
98extern void regrename_finish (void);
99extern void regrename_analyze (bitmap);
100extern du_head_p regrename_chain_from_id (unsigned int);
46f1d251 101extern int find_rename_reg (du_head_p, enum reg_class, HARD_REG_SET *, int,
102 bool);
688586d5 103extern bool regrename_do_replace (du_head_p, int);
d29d9ce9 104extern reg_class regrename_find_superclass (du_head_p, int *,
105 HARD_REG_SET *);
7de639a2 106
107#endif