OSDN Git Service

(struct function): New field `machine'.
[pf3gnuchains/gcc-fork.git] / gcc / function.h
1 /* Structure for saving state for a nested function.
2    Copyright (C) 1989, 1992 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20
21 #ifndef NULL_TREE
22 #define tree int *
23 #endif
24 #ifndef GET_CODE
25 #define rtx int *
26 #endif
27
28 struct var_refs_queue
29   {
30     rtx modified;
31     enum machine_mode promoted_mode;
32     int unsignedp;
33     struct var_refs_queue *next;
34   };
35
36 /* Stack of pending (incomplete) sequences saved by `start_sequence'.
37    Each element describes one pending sequence.
38    The main insn-chain is saved in the last element of the chain,
39    unless the chain is empty.  */
40
41 struct sequence_stack
42 {
43   /* First and last insns in the chain of the saved sequence.  */
44   rtx first, last;
45   struct sequence_stack *next;
46 };
47
48 extern struct sequence_stack *sequence_stack;
49 \f
50 /* This structure can save all the important global and static variables
51    describing the status of the current function.  */
52
53 struct function
54 {
55   struct function *next;
56
57   /* For function.c.  */
58   char *name;
59   tree decl;
60   int pops_args;
61   int returns_struct;
62   int returns_pcc_struct;
63   int needs_context;
64   int calls_setjmp;
65   int calls_longjmp;
66   int calls_alloca;
67   int has_nonlocal_label;
68   int has_nonlocal_goto;
69   rtx nonlocal_goto_handler_slot;
70   rtx nonlocal_goto_stack_level;
71   tree nonlocal_labels;
72   int args_size;
73   int pretend_args_size;
74   rtx arg_offset_rtx;
75   int max_parm_reg;
76   rtx *parm_reg_stack_loc;
77   int outgoing_args_size;
78   rtx return_rtx;
79   rtx cleanup_label;
80   rtx return_label;
81   rtx save_expr_regs;
82   rtx stack_slot_list;
83   rtx parm_birth_insn;
84   int frame_offset;
85   rtx tail_recursion_label;
86   rtx tail_recursion_reentry;
87   rtx internal_arg_pointer;
88   rtx arg_pointer_save_area;
89   tree rtl_expr_chain;
90   rtx last_parm_insn;
91   tree context_display;
92   tree trampoline_list;
93   int function_call_count;
94   struct temp_slot *temp_slots;
95   int temp_slot_level;
96   /* This slot is initialized as 0 and is added to
97      during the nested function.  */
98   struct var_refs_queue *fixup_var_refs_queue;
99
100   /* For stmt.c  */
101   struct nesting *block_stack;
102   struct nesting *stack_block_stack;
103   struct nesting *cond_stack;
104   struct nesting *loop_stack;
105   struct nesting *case_stack;
106   struct nesting *nesting_stack;
107   int nesting_depth;
108   int block_start_count;
109   tree last_expr_type;
110   rtx last_expr_value;
111   int expr_stmts_for_value;
112   char *emit_filename;
113   int emit_lineno;
114   struct goto_fixup *goto_fixup_chain;
115
116   /* For expr.c.  */
117   int pending_stack_adjust;
118   int inhibit_defer_pop;
119   tree cleanups_this_call;
120   rtx saveregs_value;
121   rtx apply_args_value;
122   rtx forced_labels;
123
124   /* For emit-rtl.c.  */
125   int reg_rtx_no;
126   int first_label_num;
127   rtx first_insn;
128   rtx last_insn;
129   struct sequence_stack *sequence_stack;
130   int cur_insn_uid;
131   int last_linenum;
132   char *last_filename;
133   char *regno_pointer_flag;
134   int regno_pointer_flag_length;
135   rtx *regno_reg_rtx;
136
137   /* For stor-layout.c.  */
138   tree permanent_type_chain;
139   tree temporary_type_chain;
140   tree permanent_type_end;
141   tree temporary_type_end;
142   tree pending_sizes;
143   int immediate_size_expand;
144
145   /* For tree.c.  */
146   int all_types_permanent;
147   struct momentary_level *momentary_stack;
148   char *maybepermanent_firstobj;
149   char *temporary_firstobj;
150   char *momentary_firstobj;
151   struct obstack *current_obstack;
152   struct obstack *function_obstack;
153   struct obstack *function_maybepermanent_obstack;
154   struct obstack *expression_obstack;
155   struct obstack *saveable_obstack;
156   struct obstack *rtl_obstack;
157
158   /* For integrate.c.  */
159   int uses_const_pool;
160
161   /* For md files.  */
162   int uses_pic_offset_table;
163   /* tm.h can use this to store whatever it likes.  */
164   struct machine_function *machine;
165
166   /* For reorg.  */
167   rtx epilogue_delay_list;
168
169   /* For varasm.  */
170   struct constant_descriptor **const_rtx_hash_table;
171   struct pool_sym **const_rtx_sym_hash_table;
172   struct pool_constant *first_pool, *last_pool;
173   int pool_offset;
174 };
175
176 /* The FUNCTION_DECL for an inline function currently being expanded.  */
177 extern tree inline_function_decl;
178
179 /* Label that will go on function epilogue.
180    Jumping to this label serves as a "return" instruction
181    on machines which require execution of the epilogue on all returns.  */
182 extern rtx return_label;
183
184 /* List (chain of EXPR_LISTs) of all stack slots in this function.
185    Made for the sake of unshare_all_rtl.  */
186 extern rtx stack_slot_list;
187
188 /* Given a function decl for a containing function,
189    return the `struct function' for it.  */
190 struct function *find_function_data PROTO((tree));
191
192 /* Pointer to chain of `struct function' for containing functions.  */
193 extern struct function *outer_function_chain;
194
195 /* Put all this function's BLOCK nodes into a vector and return it.
196    Also store in each NOTE for the beginning or end of a block
197    the index of that block in the vector.  */
198 extern tree *identify_blocks PROTO((tree, rtx));
199
200 /* These variables hold pointers to functions to
201    save and restore machine-specific data,
202    in push_function_context and pop_function_context.  */
203 extern void (*save_machine_status) ();
204 extern void (*restore_machine_status) ();
205
206 #ifdef rtx
207 #undef rtx
208 #endif
209
210 #ifdef tree
211 #undef tree
212 #endif