annotate gcc/function.h @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents f6334be47118
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Structure for saving state for a nested function.
111
kono
parents: 67
diff changeset
2 Copyright (C) 1989-2017 Free Software Foundation, Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 This file is part of GCC.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 GCC is free software; you can redistribute it and/or modify it under
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 the terms of the GNU General Public License as published by the Free
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 Software Foundation; either version 3, or (at your option) any later
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 along with GCC; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 <http://www.gnu.org/licenses/>. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 #ifndef GCC_FUNCTION_H
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21 #define GCC_FUNCTION_H
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
23
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
24 /* Stack of pending (incomplete) sequences saved by `start_sequence'.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
25 Each element describes one pending sequence.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
26 The main insn-chain is saved in the last element of the chain,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
27 unless the chain is empty. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
28
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
29 struct GTY(()) sequence_stack {
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
30 /* First and last insns in the chain of the saved sequence. */
111
kono
parents: 67
diff changeset
31 rtx_insn *first;
kono
parents: 67
diff changeset
32 rtx_insn *last;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
33 struct sequence_stack *next;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
34 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
35
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
36 struct GTY(()) emit_status {
111
kono
parents: 67
diff changeset
37 void ensure_regno_capacity ();
kono
parents: 67
diff changeset
38
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
39 /* This is reset to LAST_VIRTUAL_REGISTER + 1 at the start of each function.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
40 After rtl generation, it is 1 plus the largest register number used. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
41 int x_reg_rtx_no;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
42
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
43 /* Lowest label number in current function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
44 int x_first_label_num;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
45
111
kono
parents: 67
diff changeset
46 /* seq.first and seq.last are the ends of the doubly-linked chain of
kono
parents: 67
diff changeset
47 rtl for the current function. Both are reset to null at the
kono
parents: 67
diff changeset
48 start of rtl generation for the function.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
49
111
kono
parents: 67
diff changeset
50 start_sequence saves both of these on seq.next and then starts
kono
parents: 67
diff changeset
51 a new, nested sequence of insns.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
52
111
kono
parents: 67
diff changeset
53 seq.next is a stack of pending (incomplete) sequences saved by
kono
parents: 67
diff changeset
54 start_sequence. Each element describes one pending sequence.
kono
parents: 67
diff changeset
55 The main insn-chain is the last element of the chain. */
kono
parents: 67
diff changeset
56 struct sequence_stack seq;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
57
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58 /* INSN_UID for next insn emitted.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
59 Reset to 1 for each function compiled. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
60 int x_cur_insn_uid;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
61
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
62 /* INSN_UID for next debug insn emitted. Only used if
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
63 --param min-nondebug-insn-uid=<value> is given with nonzero value. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
64 int x_cur_debug_insn_uid;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
65
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
66 /* The length of the regno_pointer_align, regno_decl, and x_regno_reg_rtx
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
67 vectors. Since these vectors are needed during the expansion phase when
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
68 the total number of registers in the function is not yet known, the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
69 vectors are copied and made bigger when necessary. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
70 int regno_pointer_align_length;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
71
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
72 /* Indexed by pseudo register number, if nonzero gives the known alignment
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
73 for that pseudo (if REG_POINTER is set in x_regno_reg_rtx).
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
74 Allocated in parallel with x_regno_reg_rtx. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
75 unsigned char * GTY((skip)) regno_pointer_align;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
77
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
78
111
kono
parents: 67
diff changeset
79 /* Indexed by register number, gives an rtx for that register (and only
kono
parents: 67
diff changeset
80 that register). For pseudo registers, it is the unique rtx for
kono
parents: 67
diff changeset
81 that pseudo. For hard registers, it is an rtx of the mode specified
kono
parents: 67
diff changeset
82 by reg_raw_mode.
kono
parents: 67
diff changeset
83
kono
parents: 67
diff changeset
84 FIXME: We could put it into emit_status struct, but gengtype is not
kono
parents: 67
diff changeset
85 able to deal with length attribute nested in top level structures. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
86
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
87 extern GTY ((length ("crtl->emit.x_reg_rtx_no"))) rtx * regno_reg_rtx;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
88
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
89 /* For backward compatibility... eventually these should all go away. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
90 #define reg_rtx_no (crtl->emit.x_reg_rtx_no)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
91
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
92 #define REGNO_POINTER_ALIGN(REGNO) (crtl->emit.regno_pointer_align[REGNO])
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
93
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
94 struct GTY(()) expr_status {
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
95 /* Number of units that we should eventually pop off the stack.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
96 These are the arguments to function calls that have already returned. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
97 int x_pending_stack_adjust;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
98
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
99 /* Under some ABIs, it is the caller's responsibility to pop arguments
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
100 pushed for function calls. A naive implementation would simply pop
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
101 the arguments immediately after each call. However, if several
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
102 function calls are made in a row, it is typically cheaper to pop
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
103 all the arguments after all of the calls are complete since a
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
104 single pop instruction can be used. Therefore, GCC attempts to
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
105 defer popping the arguments until absolutely necessary. (For
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
106 example, at the end of a conditional, the arguments must be popped,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
107 since code outside the conditional won't know whether or not the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
108 arguments need to be popped.)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
109
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
110 When INHIBIT_DEFER_POP is nonzero, however, the compiler does not
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
111 attempt to defer pops. Instead, the stack is popped immediately
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
112 after each call. Rather then setting this variable directly, use
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
113 NO_DEFER_POP and OK_DEFER_POP. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
114 int x_inhibit_defer_pop;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
115
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
116 /* If PREFERRED_STACK_BOUNDARY and PUSH_ROUNDING are defined, the stack
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
117 boundary can be momentarily unaligned while pushing the arguments.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
118 Record the delta since last aligned boundary here in order to get
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
119 stack alignment in the nested function calls working right. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
120 int x_stack_pointer_delta;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
121
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
122 /* Nonzero means __builtin_saveregs has already been done in this function.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
123 The value is the pseudoreg containing the value __builtin_saveregs
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
124 returned. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
125 rtx x_saveregs_value;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
126
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
127 /* Similarly for __builtin_apply_args. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
128 rtx x_apply_args_value;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
129
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
130 /* List of labels that must never be deleted. */
111
kono
parents: 67
diff changeset
131 vec<rtx_insn *, va_gc> *x_forced_labels;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
132 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
133
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
134 typedef struct call_site_record_d *call_site_record;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
135
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
136 /* RTL representation of exception handling. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
137 struct GTY(()) rtl_eh {
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
138 rtx ehr_stackadj;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
139 rtx ehr_handler;
111
kono
parents: 67
diff changeset
140 rtx_code_label *ehr_label;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
141
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
142 rtx sjlj_fc;
111
kono
parents: 67
diff changeset
143 rtx_insn *sjlj_exit_after;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
144
111
kono
parents: 67
diff changeset
145 vec<uchar, va_gc> *action_record_data;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
146
111
kono
parents: 67
diff changeset
147 vec<call_site_record, va_gc> *call_site_record_v[2];
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
148 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
149
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
150 #define pending_stack_adjust (crtl->expr.x_pending_stack_adjust)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
151 #define inhibit_defer_pop (crtl->expr.x_inhibit_defer_pop)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
152 #define saveregs_value (crtl->expr.x_saveregs_value)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
153 #define apply_args_value (crtl->expr.x_apply_args_value)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
154 #define forced_labels (crtl->expr.x_forced_labels)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
155 #define stack_pointer_delta (crtl->expr.x_stack_pointer_delta)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
156
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
157 struct gimple_df;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
158 struct call_site_record_d;
111
kono
parents: 67
diff changeset
159 struct dw_fde_node;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
160
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
161 struct GTY(()) varasm_status {
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
162 /* If we're using a per-function constant pool, this is it. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
163 struct rtx_constant_pool *pool;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
164
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
165 /* Number of tree-constants deferred during the expansion of this
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
166 function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
167 unsigned int deferred_constants;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
168 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
169
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
170
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
171 /* Data for function partitioning. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
172 struct GTY(()) function_subsections {
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
173 /* Assembly labels for the hot and cold text sections, to
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
174 be used by debugger functions for determining the size of text
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
175 sections. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
176
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
177 const char *hot_section_label;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
178 const char *cold_section_label;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
179 const char *hot_section_end_label;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
180 const char *cold_section_end_label;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
181 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
182
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
183 /* Describe an empty area of space in the stack frame. These can be chained
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
184 into a list; this is used to keep track of space wasted for alignment
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
185 reasons. */
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
186 struct GTY(()) frame_space
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
187 {
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
188 struct frame_space *next;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
189
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
190 HOST_WIDE_INT start;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
191 HOST_WIDE_INT length;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
192 };
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
193
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
194 struct GTY(()) stack_usage
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
195 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
196 /* # of bytes of static stack space allocated by the function. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
197 HOST_WIDE_INT static_stack_size;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
198
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
199 /* # of bytes of dynamic stack space allocated by the function. This is
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
200 meaningful only if has_unbounded_dynamic_stack_size is zero. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
201 HOST_WIDE_INT dynamic_stack_size;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
202
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
203 /* # of bytes of space pushed onto the stack after the prologue. If
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
204 !ACCUMULATE_OUTGOING_ARGS, it contains the outgoing arguments. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
205 int pushed_stack_size;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
206
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
207 /* Nonzero if the amount of stack space allocated dynamically cannot
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
208 be bounded at compile-time. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
209 unsigned int has_unbounded_dynamic_stack_size : 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
210 };
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
211
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
212 #define current_function_static_stack_size (cfun->su->static_stack_size)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
213 #define current_function_dynamic_stack_size (cfun->su->dynamic_stack_size)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
214 #define current_function_pushed_stack_size (cfun->su->pushed_stack_size)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
215 #define current_function_has_unbounded_dynamic_stack_size \
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
216 (cfun->su->has_unbounded_dynamic_stack_size)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
217 #define current_function_allocates_dynamic_stack_space \
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
218 (current_function_dynamic_stack_size != 0 \
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
219 || current_function_has_unbounded_dynamic_stack_size)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
220
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
221 /* This structure can save all the important global and static variables
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
222 describing the status of the current function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
223
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
224 struct GTY(()) function {
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
225 struct eh_status *eh;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
226
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
227 /* The control flow graph for this function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
228 struct control_flow_graph *cfg;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
229
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
230 /* GIMPLE body for this function. */
111
kono
parents: 67
diff changeset
231 gimple_seq gimple_body;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
232
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
233 /* SSA and dataflow information. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
234 struct gimple_df *gimple_df;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
235
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
236 /* The loops in this function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
237 struct loops *x_current_loops;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
238
111
kono
parents: 67
diff changeset
239 /* Filled by the GIMPLE and RTL FEs, pass to start compilation with. */
kono
parents: 67
diff changeset
240 char *pass_startwith;
kono
parents: 67
diff changeset
241
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
242 /* The stack usage of this function. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
243 struct stack_usage *su;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
244
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
245 /* Value histograms attached to particular statements. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
246 htab_t GTY((skip)) value_histograms;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
247
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
248 /* For function.c. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
249
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
250 /* Points to the FUNCTION_DECL of this function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
251 tree decl;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
252
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
253 /* A PARM_DECL that should contain the static chain for this function.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
254 It will be initialized at the beginning of the function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
255 tree static_chain_decl;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
256
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
257 /* An expression that contains the non-local goto save area. The first
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
258 word is the saved frame pointer and the second is the saved stack
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
259 pointer. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
260 tree nonlocal_goto_save_area;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
261
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
262 /* Vector of function local variables, functions, types and constants. */
111
kono
parents: 67
diff changeset
263 vec<tree, va_gc> *local_decls;
kono
parents: 67
diff changeset
264
kono
parents: 67
diff changeset
265 /* In a Cilk function, the VAR_DECL for the frame descriptor. */
kono
parents: 67
diff changeset
266 tree cilk_frame_decl;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
267
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
268 /* For md files. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
269
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
270 /* tm.h can use this to store whatever it likes. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
271 struct machine_function * GTY ((maybe_undef)) machine;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
272
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
273 /* Language-specific code can use this to store whatever it likes. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
274 struct language_function * language;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
275
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
276 /* Used types hash table. */
111
kono
parents: 67
diff changeset
277 hash_set<tree> *GTY (()) used_types_hash;
kono
parents: 67
diff changeset
278
kono
parents: 67
diff changeset
279 /* Dwarf2 Frame Description Entry, containing the Call Frame Instructions
kono
parents: 67
diff changeset
280 used for unwinding. Only set when either dwarf2 unwinding or dwarf2
kono
parents: 67
diff changeset
281 debugging is enabled. */
kono
parents: 67
diff changeset
282 struct dw_fde_node *fde;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
283
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
284 /* Last statement uid. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
285 int last_stmt_uid;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
286
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
287 /* Function sequence number for profiling, debugging, etc. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
288 int funcdef_no;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
289
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
290 /* Line number of the start of the function for debugging purposes. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
291 location_t function_start_locus;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
292
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
293 /* Line number of the end of the function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
294 location_t function_end_locus;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
295
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
296 /* Properties used by the pass manager. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
297 unsigned int curr_properties;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
298 unsigned int last_verified;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
299
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
300 /* Non-null if the function does something that would prevent it from
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
301 being copied; this applies to both versioning and inlining. Set to
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
302 a string describing the reason for failure. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
303 const char * GTY((skip)) cannot_be_copied_reason;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
304
111
kono
parents: 67
diff changeset
305 /* Last assigned dependence info clique. */
kono
parents: 67
diff changeset
306 unsigned short last_clique;
kono
parents: 67
diff changeset
307
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
308 /* Collected bit flags. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
309
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
310 /* Number of units of general registers that need saving in stdarg
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
311 function. What unit is depends on the backend, either it is number
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
312 of bytes, or it can be number of registers. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
313 unsigned int va_list_gpr_size : 8;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
314
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
315 /* Number of units of floating point registers that need saving in stdarg
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
316 function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
317 unsigned int va_list_fpr_size : 8;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
318
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
319 /* Nonzero if function being compiled can call setjmp. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
320 unsigned int calls_setjmp : 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
321
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
322 /* Nonzero if function being compiled can call alloca,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
323 either as a subroutine or builtin. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
324 unsigned int calls_alloca : 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
325
111
kono
parents: 67
diff changeset
326 /* This will indicate whether a function is a cilk function */
kono
parents: 67
diff changeset
327 unsigned int is_cilk_function : 1;
kono
parents: 67
diff changeset
328
kono
parents: 67
diff changeset
329 /* Nonzero if this is a Cilk function that spawns. */
kono
parents: 67
diff changeset
330 unsigned int calls_cilk_spawn : 1;
kono
parents: 67
diff changeset
331
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
332 /* Nonzero if function being compiled receives nonlocal gotos
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
333 from nested functions. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
334 unsigned int has_nonlocal_label : 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
335
111
kono
parents: 67
diff changeset
336 /* Nonzero if function being compiled has a forced label
kono
parents: 67
diff changeset
337 placed into static storage. */
kono
parents: 67
diff changeset
338 unsigned int has_forced_label_in_static : 1;
kono
parents: 67
diff changeset
339
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
340 /* Nonzero if we've set cannot_be_copied_reason. I.e. if
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
341 (cannot_be_copied_set && !cannot_be_copied_reason), the function
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
342 can in fact be copied. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
343 unsigned int cannot_be_copied_set : 1;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 36
diff changeset
344
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
345 /* Nonzero if current function uses stdarg.h or equivalent. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
346 unsigned int stdarg : 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
347
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
348 unsigned int after_inlining : 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
349 unsigned int always_inline_functions_inlined : 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
350
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
351 /* Nonzero if function being compiled can throw synchronous non-call
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
352 exceptions. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
353 unsigned int can_throw_non_call_exceptions : 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
354
111
kono
parents: 67
diff changeset
355 /* Nonzero if instructions that may throw exceptions but don't otherwise
kono
parents: 67
diff changeset
356 contribute to the execution of the program can be deleted. */
kono
parents: 67
diff changeset
357 unsigned int can_delete_dead_exceptions : 1;
kono
parents: 67
diff changeset
358
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
359 /* Fields below this point are not set for abstract functions; see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
360 allocate_struct_function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
361
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
362 /* Nonzero if function being compiled needs to be given an address
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
363 where the value should be stored. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
364 unsigned int returns_struct : 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
365
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
366 /* Nonzero if function being compiled needs to
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
367 return the address of where it has put a structure value. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
368 unsigned int returns_pcc_struct : 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
369
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
370 /* Nonzero if this function has local DECL_HARD_REGISTER variables.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
371 In this case code motion has to be done more carefully. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
372 unsigned int has_local_explicit_reg_vars : 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
373
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
374 /* Nonzero if the current function is a thunk, i.e., a lightweight
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
375 function implemented by the output_mi_thunk hook) that just
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
376 adjusts one of its arguments and forwards to another
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
377 function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
378 unsigned int is_thunk : 1;
111
kono
parents: 67
diff changeset
379
kono
parents: 67
diff changeset
380 /* Nonzero if the current function contains any loops with
kono
parents: 67
diff changeset
381 loop->force_vectorize set. */
kono
parents: 67
diff changeset
382 unsigned int has_force_vectorize_loops : 1;
kono
parents: 67
diff changeset
383
kono
parents: 67
diff changeset
384 /* Nonzero if the current function contains any loops with
kono
parents: 67
diff changeset
385 nonzero value in loop->simduid. */
kono
parents: 67
diff changeset
386 unsigned int has_simduid_loops : 1;
kono
parents: 67
diff changeset
387
kono
parents: 67
diff changeset
388 /* Set when the tail call has been identified. */
kono
parents: 67
diff changeset
389 unsigned int tail_call_marked : 1;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
390 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
391
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
392 /* Add the decl D to the local_decls list of FUN. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
393
111
kono
parents: 67
diff changeset
394 void add_local_decl (struct function *fun, tree d);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
395
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
396 #define FOR_EACH_LOCAL_DECL(FUN, I, D) \
111
kono
parents: 67
diff changeset
397 FOR_EACH_VEC_SAFE_ELT_REVERSE ((FUN)->local_decls, I, D)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
398
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
399 /* If va_list_[gf]pr_size is set to this, it means we don't know how
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
400 many units need to be saved. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
401 #define VA_LIST_MAX_GPR_SIZE 255
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
402 #define VA_LIST_MAX_FPR_SIZE 255
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
403
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
404 /* The function currently being compiled. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
405 extern GTY(()) struct function *cfun;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
406
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
407 /* In order to ensure that cfun is not set directly, we redefine it so
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
408 that it is not an lvalue. Rather than assign to cfun, use
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
409 push_cfun or set_cfun. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
410 #define cfun (cfun + 0)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
411
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
412 /* Nonzero if we've already converted virtual regs to hard regs. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
413 extern int virtuals_instantiated;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
414
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
415 /* Nonzero if at least one trampoline has been created. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
416 extern int trampolines_created;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
417
111
kono
parents: 67
diff changeset
418 struct GTY((for_user)) types_used_by_vars_entry {
36
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
419 tree type;
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
420 tree var_decl;
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
421 };
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
422
111
kono
parents: 67
diff changeset
423 struct used_type_hasher : ggc_ptr_hash<types_used_by_vars_entry>
kono
parents: 67
diff changeset
424 {
kono
parents: 67
diff changeset
425 static hashval_t hash (types_used_by_vars_entry *);
kono
parents: 67
diff changeset
426 static bool equal (types_used_by_vars_entry *, types_used_by_vars_entry *);
kono
parents: 67
diff changeset
427 };
kono
parents: 67
diff changeset
428
36
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
429 /* Hash table making the relationship between a global variable
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
430 and the types it references in its initializer. The key of the
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
431 entry is a referenced type, and the value is the DECL of the global
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
432 variable. types_use_by_vars_do_hash and types_used_by_vars_eq below are
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
433 the hash and equality functions to use for this hash table. */
111
kono
parents: 67
diff changeset
434 extern GTY(()) hash_table<used_type_hasher> *types_used_by_vars_hash;
36
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
435
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
436 void types_used_by_var_decl_insert (tree type, tree var_decl);
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
437
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
438 /* During parsing of a global variable, this vector contains the types
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
439 referenced by the global variable. */
111
kono
parents: 67
diff changeset
440 extern GTY(()) vec<tree, va_gc> *types_used_by_cur_var_decl;
36
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
441
855418dad1a3 gcc-4.4-20091020
e075725
parents: 0
diff changeset
442
111
kono
parents: 67
diff changeset
443 /* Return the loop tree of FN. */
kono
parents: 67
diff changeset
444
kono
parents: 67
diff changeset
445 inline struct loops *
kono
parents: 67
diff changeset
446 loops_for_fn (struct function *fn)
kono
parents: 67
diff changeset
447 {
kono
parents: 67
diff changeset
448 return fn->x_current_loops;
kono
parents: 67
diff changeset
449 }
kono
parents: 67
diff changeset
450
kono
parents: 67
diff changeset
451 /* Set the loop tree of FN to LOOPS. */
kono
parents: 67
diff changeset
452
kono
parents: 67
diff changeset
453 inline void
kono
parents: 67
diff changeset
454 set_loops_for_fn (struct function *fn, struct loops *loops)
kono
parents: 67
diff changeset
455 {
kono
parents: 67
diff changeset
456 gcc_checking_assert (fn->x_current_loops == NULL || loops == NULL);
kono
parents: 67
diff changeset
457 fn->x_current_loops = loops;
kono
parents: 67
diff changeset
458 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
459
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
460 /* For backward compatibility... eventually these should all go away. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
461 #define current_function_funcdef_no (cfun->funcdef_no)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
462
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
463 #define current_loops (cfun->x_current_loops)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
464 #define dom_computed (cfun->cfg->x_dom_computed)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
465 #define n_bbs_in_dom_tree (cfun->cfg->x_n_bbs_in_dom_tree)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
466 #define VALUE_HISTOGRAMS(fun) (fun)->value_histograms
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
467
111
kono
parents: 67
diff changeset
468 /* A pointer to a function to create target specific, per-function
kono
parents: 67
diff changeset
469 data structures. */
kono
parents: 67
diff changeset
470 extern struct machine_function * (*init_machine_status) (void);
kono
parents: 67
diff changeset
471
kono
parents: 67
diff changeset
472 /* Structure to record the size of a sequence of arguments
kono
parents: 67
diff changeset
473 as the sum of a tree-expression and a constant. This structure is
kono
parents: 67
diff changeset
474 also used to store offsets from the stack, which might be negative,
kono
parents: 67
diff changeset
475 so the variable part must be ssizetype, not sizetype. */
kono
parents: 67
diff changeset
476
kono
parents: 67
diff changeset
477 struct args_size
kono
parents: 67
diff changeset
478 {
kono
parents: 67
diff changeset
479 HOST_WIDE_INT constant;
kono
parents: 67
diff changeset
480 tree var;
kono
parents: 67
diff changeset
481 };
kono
parents: 67
diff changeset
482
kono
parents: 67
diff changeset
483 /* Package up various arg related fields of struct args for
kono
parents: 67
diff changeset
484 locate_and_pad_parm. */
kono
parents: 67
diff changeset
485 struct locate_and_pad_arg_data
kono
parents: 67
diff changeset
486 {
kono
parents: 67
diff changeset
487 /* Size of this argument on the stack, rounded up for any padding it
kono
parents: 67
diff changeset
488 gets. If REG_PARM_STACK_SPACE is defined, then register parms are
kono
parents: 67
diff changeset
489 counted here, otherwise they aren't. */
kono
parents: 67
diff changeset
490 struct args_size size;
kono
parents: 67
diff changeset
491 /* Offset of this argument from beginning of stack-args. */
kono
parents: 67
diff changeset
492 struct args_size offset;
kono
parents: 67
diff changeset
493 /* Offset to the start of the stack slot. Different from OFFSET
kono
parents: 67
diff changeset
494 if this arg pads downward. */
kono
parents: 67
diff changeset
495 struct args_size slot_offset;
kono
parents: 67
diff changeset
496 /* The amount that the stack pointer needs to be adjusted to
kono
parents: 67
diff changeset
497 force alignment for the next argument. */
kono
parents: 67
diff changeset
498 struct args_size alignment_pad;
kono
parents: 67
diff changeset
499 /* Which way we should pad this arg. */
kono
parents: 67
diff changeset
500 pad_direction where_pad;
kono
parents: 67
diff changeset
501 /* slot_offset is at least this aligned. */
kono
parents: 67
diff changeset
502 unsigned int boundary;
kono
parents: 67
diff changeset
503 };
kono
parents: 67
diff changeset
504
kono
parents: 67
diff changeset
505 /* Add the value of the tree INC to the `struct args_size' TO. */
kono
parents: 67
diff changeset
506
kono
parents: 67
diff changeset
507 #define ADD_PARM_SIZE(TO, INC) \
kono
parents: 67
diff changeset
508 do { \
kono
parents: 67
diff changeset
509 tree inc = (INC); \
kono
parents: 67
diff changeset
510 if (tree_fits_shwi_p (inc)) \
kono
parents: 67
diff changeset
511 (TO).constant += tree_to_shwi (inc); \
kono
parents: 67
diff changeset
512 else if ((TO).var == 0) \
kono
parents: 67
diff changeset
513 (TO).var = fold_convert (ssizetype, inc); \
kono
parents: 67
diff changeset
514 else \
kono
parents: 67
diff changeset
515 (TO).var = size_binop (PLUS_EXPR, (TO).var, \
kono
parents: 67
diff changeset
516 fold_convert (ssizetype, inc)); \
kono
parents: 67
diff changeset
517 } while (0)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
518
111
kono
parents: 67
diff changeset
519 #define SUB_PARM_SIZE(TO, DEC) \
kono
parents: 67
diff changeset
520 do { \
kono
parents: 67
diff changeset
521 tree dec = (DEC); \
kono
parents: 67
diff changeset
522 if (tree_fits_shwi_p (dec)) \
kono
parents: 67
diff changeset
523 (TO).constant -= tree_to_shwi (dec); \
kono
parents: 67
diff changeset
524 else if ((TO).var == 0) \
kono
parents: 67
diff changeset
525 (TO).var = size_binop (MINUS_EXPR, ssize_int (0), \
kono
parents: 67
diff changeset
526 fold_convert (ssizetype, dec)); \
kono
parents: 67
diff changeset
527 else \
kono
parents: 67
diff changeset
528 (TO).var = size_binop (MINUS_EXPR, (TO).var, \
kono
parents: 67
diff changeset
529 fold_convert (ssizetype, dec)); \
kono
parents: 67
diff changeset
530 } while (0)
kono
parents: 67
diff changeset
531
kono
parents: 67
diff changeset
532 /* Convert the implicit sum in a `struct args_size' into a tree
kono
parents: 67
diff changeset
533 of type ssizetype. */
kono
parents: 67
diff changeset
534 #define ARGS_SIZE_TREE(SIZE) \
kono
parents: 67
diff changeset
535 ((SIZE).var == 0 ? ssize_int ((SIZE).constant) \
kono
parents: 67
diff changeset
536 : size_binop (PLUS_EXPR, fold_convert (ssizetype, (SIZE).var), \
kono
parents: 67
diff changeset
537 ssize_int ((SIZE).constant)))
kono
parents: 67
diff changeset
538
kono
parents: 67
diff changeset
539 /* Convert the implicit sum in a `struct args_size' into an rtx. */
kono
parents: 67
diff changeset
540 #define ARGS_SIZE_RTX(SIZE) \
kono
parents: 67
diff changeset
541 ((SIZE).var == 0 ? GEN_INT ((SIZE).constant) \
kono
parents: 67
diff changeset
542 : expand_normal (ARGS_SIZE_TREE (SIZE)))
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
543
111
kono
parents: 67
diff changeset
544 #define ASLK_REDUCE_ALIGN 1
kono
parents: 67
diff changeset
545 #define ASLK_RECORD_PAD 2
kono
parents: 67
diff changeset
546
kono
parents: 67
diff changeset
547 /* If pointers to member functions use the least significant bit to
kono
parents: 67
diff changeset
548 indicate whether a function is virtual, ensure a pointer
kono
parents: 67
diff changeset
549 to this function will have that bit clear. */
kono
parents: 67
diff changeset
550 #define MINIMUM_METHOD_BOUNDARY \
kono
parents: 67
diff changeset
551 ((TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn) \
kono
parents: 67
diff changeset
552 ? MAX (FUNCTION_BOUNDARY, 2 * BITS_PER_UNIT) : FUNCTION_BOUNDARY)
kono
parents: 67
diff changeset
553
kono
parents: 67
diff changeset
554 enum stack_clash_probes {
kono
parents: 67
diff changeset
555 NO_PROBE_NO_FRAME,
kono
parents: 67
diff changeset
556 NO_PROBE_SMALL_FRAME,
kono
parents: 67
diff changeset
557 PROBE_INLINE,
kono
parents: 67
diff changeset
558 PROBE_LOOP
kono
parents: 67
diff changeset
559 };
kono
parents: 67
diff changeset
560
kono
parents: 67
diff changeset
561 extern void dump_stack_clash_frame_info (enum stack_clash_probes, bool);
kono
parents: 67
diff changeset
562
kono
parents: 67
diff changeset
563
kono
parents: 67
diff changeset
564 extern void push_function_context (void);
kono
parents: 67
diff changeset
565 extern void pop_function_context (void);
kono
parents: 67
diff changeset
566
kono
parents: 67
diff changeset
567 /* Save and restore status information for a nested function. */
kono
parents: 67
diff changeset
568 extern void free_after_parsing (struct function *);
kono
parents: 67
diff changeset
569 extern void free_after_compilation (struct function *);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
570
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
571 /* Return size needed for stack frame based on slots so far allocated.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
572 This size counts from zero. It is not rounded to STACK_BOUNDARY;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
573 the caller may have to do that. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
574 extern HOST_WIDE_INT get_frame_size (void);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
575
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
576 /* Issue an error message and return TRUE if frame OFFSET overflows in
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
577 the signed target pointer arithmetics for function FUNC. Otherwise
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
578 return FALSE. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
579 extern bool frame_offset_overflow (HOST_WIDE_INT, tree);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
580
111
kono
parents: 67
diff changeset
581 extern unsigned int spill_slot_alignment (machine_mode);
kono
parents: 67
diff changeset
582
kono
parents: 67
diff changeset
583 extern rtx assign_stack_local_1 (machine_mode, HOST_WIDE_INT, int, int);
kono
parents: 67
diff changeset
584 extern rtx assign_stack_local (machine_mode, HOST_WIDE_INT, int);
kono
parents: 67
diff changeset
585 extern rtx assign_stack_temp_for_type (machine_mode, HOST_WIDE_INT, tree);
kono
parents: 67
diff changeset
586 extern rtx assign_stack_temp (machine_mode, HOST_WIDE_INT);
kono
parents: 67
diff changeset
587 extern rtx assign_temp (tree, int, int);
kono
parents: 67
diff changeset
588 extern void update_temp_slot_address (rtx, rtx);
kono
parents: 67
diff changeset
589 extern void preserve_temp_slots (rtx);
kono
parents: 67
diff changeset
590 extern void free_temp_slots (void);
kono
parents: 67
diff changeset
591 extern void push_temp_slots (void);
kono
parents: 67
diff changeset
592 extern void pop_temp_slots (void);
kono
parents: 67
diff changeset
593 extern void init_temp_slots (void);
kono
parents: 67
diff changeset
594 extern rtx get_hard_reg_initial_reg (rtx);
kono
parents: 67
diff changeset
595 extern rtx get_hard_reg_initial_val (machine_mode, unsigned int);
kono
parents: 67
diff changeset
596 extern rtx has_hard_reg_initial_val (machine_mode, unsigned int);
kono
parents: 67
diff changeset
597
kono
parents: 67
diff changeset
598 /* Called from gimple_expand_cfg. */
kono
parents: 67
diff changeset
599 extern unsigned int emit_initial_value_sets (void);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
600
111
kono
parents: 67
diff changeset
601 extern bool initial_value_entry (int i, rtx *, rtx *);
kono
parents: 67
diff changeset
602 extern void instantiate_decl_rtl (rtx x);
kono
parents: 67
diff changeset
603 extern int aggregate_value_p (const_tree, const_tree);
kono
parents: 67
diff changeset
604 extern bool use_register_for_decl (const_tree);
kono
parents: 67
diff changeset
605 extern gimple_seq gimplify_parameters (void);
kono
parents: 67
diff changeset
606 extern void locate_and_pad_parm (machine_mode, tree, int, int, int,
kono
parents: 67
diff changeset
607 tree, struct args_size *,
kono
parents: 67
diff changeset
608 struct locate_and_pad_arg_data *);
kono
parents: 67
diff changeset
609 extern void generate_setjmp_warnings (void);
kono
parents: 67
diff changeset
610
kono
parents: 67
diff changeset
611 /* Identify BLOCKs referenced by more than one NOTE_INSN_BLOCK_{BEG,END},
kono
parents: 67
diff changeset
612 and create duplicate blocks. */
kono
parents: 67
diff changeset
613 extern void reorder_blocks (void);
kono
parents: 67
diff changeset
614 extern void clear_block_marks (tree);
kono
parents: 67
diff changeset
615 extern tree blocks_nreverse (tree);
kono
parents: 67
diff changeset
616 extern tree block_chainon (tree, tree);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
617
111
kono
parents: 67
diff changeset
618 /* Set BLOCK_NUMBER for all the blocks in FN. */
kono
parents: 67
diff changeset
619 extern void number_blocks (tree);
kono
parents: 67
diff changeset
620
kono
parents: 67
diff changeset
621 /* cfun shouldn't be set directly; use one of these functions instead. */
kono
parents: 67
diff changeset
622 extern void set_cfun (struct function *new_cfun, bool force = false);
kono
parents: 67
diff changeset
623 extern void push_cfun (struct function *new_cfun);
kono
parents: 67
diff changeset
624 extern void pop_cfun (void);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
625
111
kono
parents: 67
diff changeset
626 extern int get_next_funcdef_no (void);
kono
parents: 67
diff changeset
627 extern int get_last_funcdef_no (void);
kono
parents: 67
diff changeset
628 extern void allocate_struct_function (tree, bool);
kono
parents: 67
diff changeset
629 extern void push_struct_function (tree fndecl);
kono
parents: 67
diff changeset
630 extern void push_dummy_function (bool);
kono
parents: 67
diff changeset
631 extern void pop_dummy_function (void);
kono
parents: 67
diff changeset
632 extern void init_dummy_function_start (void);
kono
parents: 67
diff changeset
633 extern void init_function_start (tree);
kono
parents: 67
diff changeset
634 extern void stack_protect_epilogue (void);
kono
parents: 67
diff changeset
635 extern void expand_function_start (tree);
kono
parents: 67
diff changeset
636 extern void expand_dummy_function_end (void);
kono
parents: 67
diff changeset
637
kono
parents: 67
diff changeset
638 extern void thread_prologue_and_epilogue_insns (void);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
639 extern void diddle_return_value (void (*)(rtx, void*), void*);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
640 extern void clobber_return_register (void);
111
kono
parents: 67
diff changeset
641 extern void expand_function_end (void);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
642 extern rtx get_arg_pointer_save_area (void);
111
kono
parents: 67
diff changeset
643 extern void maybe_copy_prologue_epilogue_insn (rtx, rtx);
kono
parents: 67
diff changeset
644 extern int prologue_contains (const rtx_insn *);
kono
parents: 67
diff changeset
645 extern int epilogue_contains (const rtx_insn *);
kono
parents: 67
diff changeset
646 extern int prologue_epilogue_contains (const rtx_insn *);
kono
parents: 67
diff changeset
647 extern void record_prologue_seq (rtx_insn *);
kono
parents: 67
diff changeset
648 extern void record_epilogue_seq (rtx_insn *);
kono
parents: 67
diff changeset
649 extern void emit_return_into_block (bool simple_p, basic_block bb);
kono
parents: 67
diff changeset
650 extern void set_return_jump_label (rtx_insn *);
kono
parents: 67
diff changeset
651 extern bool active_insn_between (rtx_insn *head, rtx_insn *tail);
kono
parents: 67
diff changeset
652 extern vec<edge> convert_jumps_to_returns (basic_block last_bb, bool simple_p,
kono
parents: 67
diff changeset
653 vec<edge> unconverted);
kono
parents: 67
diff changeset
654 extern basic_block emit_return_for_exit (edge exit_fallthru_edge,
kono
parents: 67
diff changeset
655 bool simple_p);
kono
parents: 67
diff changeset
656 extern void reposition_prologue_and_epilogue_notes (void);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
657
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
658 /* Returns the name of the current function. */
111
kono
parents: 67
diff changeset
659 extern const char *fndecl_name (tree);
kono
parents: 67
diff changeset
660 extern const char *function_name (struct function *);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
661 extern const char *current_function_name (void);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
662
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
663 extern void used_types_insert (tree);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
664
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
665 #endif /* GCC_FUNCTION_H */